(ctx context.Context, client Client)
| 86 | } |
| 87 | |
| 88 | func WithClient(ctx context.Context, client Client) context.Context { |
| 89 | return context.WithValue(ctx, clientContextKey, client) |
| 90 | } |
| 91 | |
| 92 | // NewClient constructs a new application_snapshot_image with the default client. |
| 93 | func NewClient(ctx context.Context, opts ...remote.Option) Client { |
no outgoing calls