| Name | Type | Description | Notes |
|---|---|---|---|
| HttpProxy | Pointer to string | The HTTP_PROXY to use | [optional] |
| HttpsProxy | Pointer to string | The HTTPS_PROXY to use | [optional] |
| NoProxyList | Pointer to []string | The NO_PROXY settings. Should follow cURL no_proxy format | [optional] |
func NewProxyConfig() *ProxyConfig
NewProxyConfig instantiates a new ProxyConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewProxyConfigWithDefaults() *ProxyConfig
NewProxyConfigWithDefaults instantiates a new ProxyConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *ProxyConfig) GetHttpProxy() string
GetHttpProxy returns the HttpProxy field if non-nil, zero value otherwise.
func (o *ProxyConfig) GetHttpProxyOk() (*string, bool)
GetHttpProxyOk returns a tuple with the HttpProxy field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ProxyConfig) SetHttpProxy(v string)
SetHttpProxy sets HttpProxy field to given value.
func (o *ProxyConfig) HasHttpProxy() bool
HasHttpProxy returns a boolean if a field has been set.
func (o *ProxyConfig) GetHttpsProxy() string
GetHttpsProxy returns the HttpsProxy field if non-nil, zero value otherwise.
func (o *ProxyConfig) GetHttpsProxyOk() (*string, bool)
GetHttpsProxyOk returns a tuple with the HttpsProxy field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ProxyConfig) SetHttpsProxy(v string)
SetHttpsProxy sets HttpsProxy field to given value.
func (o *ProxyConfig) HasHttpsProxy() bool
HasHttpsProxy returns a boolean if a field has been set.
func (o *ProxyConfig) GetNoProxyList() []string
GetNoProxyList returns the NoProxyList field if non-nil, zero value otherwise.
func (o *ProxyConfig) GetNoProxyListOk() (*[]string, bool)
GetNoProxyListOk returns a tuple with the NoProxyList field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ProxyConfig) SetNoProxyList(v []string)
SetNoProxyList sets NoProxyList field to given value.
func (o *ProxyConfig) HasNoProxyList() bool
HasNoProxyList returns a boolean if a field has been set.