WithProvider returns a new Option that sets the provider for the client configuration.
(val core.Platform)
| 118 | |
| 119 | // WithProvider returns a new Option that sets the provider for the client configuration. |
| 120 | func WithProvider(val core.Platform) Option { |
| 121 | return optionFunc(func(c *config) { |
| 122 | c.provider = val |
| 123 | }) |
| 124 | } |
| 125 | |
| 126 | // WithSkipVerify returns a new Option that sets the skipVerify for the client configuration. |
| 127 | func WithSkipVerify(val bool) Option { |