(resource *schema.Resource, state *transaction.ResourceState)
| 701 | } |
| 702 | |
| 703 | func (tx *Transaction) StateUpdate(resource *schema.Resource, state *transaction.ResourceState) error { |
| 704 | return tx.StateUpdateContext(context.Background(), resource, state) |
| 705 | } |
| 706 | |
| 707 | //StateUpdate update resource state |
| 708 | func (tx *Transaction) StateUpdateContext(ctx context.Context, resource *schema.Resource, state *transaction.ResourceState) error { |
nothing calls this directly
no test coverage detected