(s *schema.Schema, filter transaction.Filter, options *transaction.ViewOptions)
| 188 | } |
| 189 | |
| 190 | func (tx *CachedTransaction) Fetch(s *schema.Schema, filter transaction.Filter, options *transaction.ViewOptions) (*schema.Resource, error) { |
| 191 | return tx.FetchContext(context.Background(), s, filter, options) |
| 192 | } |
| 193 | |
| 194 | func (tx *CachedTransaction) FetchContext(ctx context.Context, s *schema.Schema, filter transaction.Filter, options *transaction.ViewOptions) (*schema.Resource, error) { |
| 195 | list, _, err := tx.ListContext(ctx, s, filter, options, nil) |
nothing calls this directly
no test coverage detected