Skip to content

Latest commit

 

History

History
212 lines (115 loc) · 5.56 KB

File metadata and controls

212 lines (115 loc) · 5.56 KB

ProxyConfig

Properties

Name Type Description Notes
AllowInsecureBootstrap Pointer to bool [optional]
BootstrapCA Pointer to string [optional]
Enabled Pointer to bool [optional]
HttpProxy Pointer to string [optional]
HttpsProxy Pointer to string [optional]
NoProxy Pointer to string [optional]
ProxyAuth Pointer to string [optional]

Methods

NewProxyConfig

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

NewProxyConfigWithDefaults

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

GetAllowInsecureBootstrap

func (o *ProxyConfig) GetAllowInsecureBootstrap() bool

GetAllowInsecureBootstrap returns the AllowInsecureBootstrap field if non-nil, zero value otherwise.

GetAllowInsecureBootstrapOk

func (o *ProxyConfig) GetAllowInsecureBootstrapOk() (*bool, bool)

GetAllowInsecureBootstrapOk returns a tuple with the AllowInsecureBootstrap field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetAllowInsecureBootstrap

func (o *ProxyConfig) SetAllowInsecureBootstrap(v bool)

SetAllowInsecureBootstrap sets AllowInsecureBootstrap field to given value.

HasAllowInsecureBootstrap

func (o *ProxyConfig) HasAllowInsecureBootstrap() bool

HasAllowInsecureBootstrap returns a boolean if a field has been set.

GetBootstrapCA

func (o *ProxyConfig) GetBootstrapCA() string

GetBootstrapCA returns the BootstrapCA field if non-nil, zero value otherwise.

GetBootstrapCAOk

func (o *ProxyConfig) GetBootstrapCAOk() (*string, bool)

GetBootstrapCAOk returns a tuple with the BootstrapCA field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetBootstrapCA

func (o *ProxyConfig) SetBootstrapCA(v string)

SetBootstrapCA sets BootstrapCA field to given value.

HasBootstrapCA

func (o *ProxyConfig) HasBootstrapCA() bool

HasBootstrapCA returns a boolean if a field has been set.

GetEnabled

func (o *ProxyConfig) GetEnabled() bool

GetEnabled returns the Enabled field if non-nil, zero value otherwise.

GetEnabledOk

func (o *ProxyConfig) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetEnabled

func (o *ProxyConfig) SetEnabled(v bool)

SetEnabled sets Enabled field to given value.

HasEnabled

func (o *ProxyConfig) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

GetHttpProxy

func (o *ProxyConfig) GetHttpProxy() string

GetHttpProxy returns the HttpProxy field if non-nil, zero value otherwise.

GetHttpProxyOk

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.

SetHttpProxy

func (o *ProxyConfig) SetHttpProxy(v string)

SetHttpProxy sets HttpProxy field to given value.

HasHttpProxy

func (o *ProxyConfig) HasHttpProxy() bool

HasHttpProxy returns a boolean if a field has been set.

GetHttpsProxy

func (o *ProxyConfig) GetHttpsProxy() string

GetHttpsProxy returns the HttpsProxy field if non-nil, zero value otherwise.

GetHttpsProxyOk

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.

SetHttpsProxy

func (o *ProxyConfig) SetHttpsProxy(v string)

SetHttpsProxy sets HttpsProxy field to given value.

HasHttpsProxy

func (o *ProxyConfig) HasHttpsProxy() bool

HasHttpsProxy returns a boolean if a field has been set.

GetNoProxy

func (o *ProxyConfig) GetNoProxy() string

GetNoProxy returns the NoProxy field if non-nil, zero value otherwise.

GetNoProxyOk

func (o *ProxyConfig) GetNoProxyOk() (*string, bool)

GetNoProxyOk returns a tuple with the NoProxy field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetNoProxy

func (o *ProxyConfig) SetNoProxy(v string)

SetNoProxy sets NoProxy field to given value.

HasNoProxy

func (o *ProxyConfig) HasNoProxy() bool

HasNoProxy returns a boolean if a field has been set.

GetProxyAuth

func (o *ProxyConfig) GetProxyAuth() string

GetProxyAuth returns the ProxyAuth field if non-nil, zero value otherwise.

GetProxyAuthOk

func (o *ProxyConfig) GetProxyAuthOk() (*string, bool)

GetProxyAuthOk returns a tuple with the ProxyAuth field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetProxyAuth

func (o *ProxyConfig) SetProxyAuth(v string)

SetProxyAuth sets ProxyAuth field to given value.

HasProxyAuth

func (o *ProxyConfig) HasProxyAuth() bool

HasProxyAuth returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]