| Name | Type | Description | Notes |
|---|---|---|---|
| DeploymentCustomDomainCheckEnabled | Pointer to bool | disable custom domain check when deploying an application | [optional] |
| DeploymentTerminationGracePeriodSeconds | Pointer to int32 | define how long in seconds an application is supposed to be stopped gracefully | [optional] |
| DeploymentAffinityNodeRequired | Pointer to map[string]string | Set pod placement on specific Kubernetes nodes labels | [optional] |
| DeploymentAntiaffinityPod | Pointer to string | Define how you want pods affinity to behave: * `Preferred` allows, but does not require, pods of a given service are not co-located (or co-hosted) on a single node * `Requirred` ensures that the pods of a given service are not co-located (or co-hosted) on a single node (safer in term of availability but can be expensive depending on the number of replicas) | [optional] |
| DeploymentTopologySpreadZone | Pointer to string | Define how you want pods to be spread across availability zones: * `Disabled` no topology spread constraints are applied * `ScheduleAnyway` pods are spread across zones on a best-effort basis (soft constraint) * `DoNotSchedule` pods must be evenly spread across zones with a maxSkew of 1 (hard constraint) | [optional] |
| DeploymentUpdateStrategyType | Pointer to string | * `RollingUpdate` gracefully rollout new versions, and automatically rollback if the new version fails to start * `Recreate` stop all current versions and create new ones once all old ones have been shutdown | [optional] |
| DeploymentUpdateStrategyRollingUpdateMaxUnavailablePercent | Pointer to int32 | Define the percentage of a maximum number of pods that can be unavailable during the update process | [optional] |
| DeploymentUpdateStrategyRollingUpdateMaxSurgePercent | Pointer to int32 | Define the percentage of the maximum number of pods that can be created over the desired number of pods | [optional] |
| NetworkIngressProxyBodySizeMb | Pointer to int32 | [optional] | |
| NetworkIngressForceSslRedirect | Pointer to bool | When using SSL offloading outside of cluster, you can enforce a redirect to HTTPS even when there is no TLS certificate available | [optional] |
| NetworkIngressEnableCors | Pointer to bool | [optional] | |
| NetworkIngressCorsAllowOrigin | Pointer to string | [optional] | |
| NetworkIngressCorsAllowMethods | Pointer to string | [optional] | |
| NetworkIngressCorsAllowHeaders | Pointer to string | [optional] | |
| NetworkIngressProxyBufferSizeKb | Pointer to int32 | header buffer size used while reading response header from upstream | [optional] |
| NetworkIngressKeepaliveTimeSeconds | Pointer to int32 | Limits the maximum time (in seconds) during which requests can be processed through one keepalive connection | [optional] |
| NetworkIngressKeepaliveTimeoutSeconds | Pointer to int32 | Sets a timeout (in seconds) during which an idle keepalive connection to an upstream server will stay open. | [optional] |
| NetworkIngressSendTimeoutSeconds | Pointer to int32 | Sets a timeout (in seconds) for transmitting a response to the client | [optional] |
| NetworkIngressProxyConnectTimeoutSeconds | Pointer to int32 | Sets a timeout (in seconds) for establishing a connection to a proxied server | [optional] |
| NetworkIngressProxySendTimeoutSeconds | Pointer to int32 | Sets a timeout (in seconds) for transmitting a request to the proxied server | [optional] |
| NetworkIngressProxyReadTimeoutSeconds | Pointer to int32 | Sets a timeout (in seconds) for reading a response from the proxied server | [optional] |
| NetworkIngressProxyBuffering | Pointer to string | Allows to enable or disable nginx `proxy-buffering` | [optional] |
| NetworkIngressProxyRequestBuffering | Pointer to string | Allows to enable or disable nginx `proxy-request-buffering` | [optional] |
| NetworkIngressGrpcSendTimeoutSeconds | Pointer to int32 | Sets a timeout (in seconds) for transmitting a request to the grpc server | [optional] |
| NetworkIngressGrpcReadTimeoutSeconds | Pointer to int32 | Sets a timeout (in seconds) for transmitting a request to the grpc server | [optional] |
| NetworkIngressWhitelistSourceRange | Pointer to string | list of source ranges to allow access to ingress proxy. This property can be used to whitelist source IP ranges for ingress proxy. The value is a comma separated list of CIDRs, e.g. 10.0.0.0/24,172.10.0.1 To allow all source ranges, set 0.0.0.0/0. | [optional] |
| NetworkIngressDenylistSourceRange | Pointer to string | list of source ranges to deny access to ingress proxy. This property can be used to blacklist source IP ranges for ingress proxy. The value is a comma separated list of CIDRs, e.g. 10.0.0.0/24,172.10.0.1 | [optional] |
| NetworkIngressExtraHeaders | Pointer to string | Allows to define response headers | [optional] |
| NetworkGatewayApiHttpRequestTimeoutSeconds | Pointer to NullableInt32 | Sets a timeout (in seconds) for requests proxied through the Gateway API route. | [optional] |
| NetworkGatewayApiHttpConnectionIdleTimeoutSeconds | Pointer to NullableInt32 | Sets the idle timeout (in seconds) for HTTP connections proxied through the Gateway API route. | [optional] |
| NetworkGatewayApiRetryNumRetries | Pointer to NullableInt32 | Sets the number of retry attempts for requests proxied through the Gateway API route. | [optional] |
| NetworkGatewayApiRetryRetryOn | Pointer to NullableString | Comma-separated retry triggers (for example connect-failure,reset,refused-stream,retriable-status-codes) for requests proxied through the Gateway API route. | [optional] |
| NetworkGatewayApiRetryHttpStatusCodes | Pointer to NullableString | Comma-separated HTTP status codes (100..599) retried when retry_on includes retriable-status-codes. | [optional] |
| NetworkGatewayApiRetryPerTryTimeoutSeconds | Pointer to NullableInt32 | Sets the timeout (in seconds) applied to each retry attempt for requests proxied through the Gateway API route. | [optional] |
| NetworkIngressBasicAuthEnvVar | Pointer to string | Set the name of an environment variable to use as a basic authentication (`login:crypted_password`) from `htpasswd` command. You can add multiples comma separated values. | [optional] |
| NetworkIngressEnableStickySession | Pointer to bool | Enable the load balancer to bind a user's session to a specific target. This ensures that all requests from the user during the session are sent to the same target | [optional] |
| SecurityServiceAccountName | Pointer to string | Allows you to set an existing Kubernetes service account name | [optional] |
| HpaCpuAverageUtilizationPercent | Pointer to int32 | Percentage value of cpu usage at which point pods should scale up. | [optional] |
| HpaMemoryAverageUtilizationPercent | Pointer to NullableInt32 | Percentage value of memory usage at which point pods should scale up. | [optional] |
| SecurityAutomountServiceAccountToken | Pointer to bool | Automount Kubernetes service account token to have access to Kubernetes API from pods | [optional] |
| SecurityReadOnlyRootFilesystem | Pointer to bool | Mounts the container's root filesystem as read-only | [optional] |
func NewContainerAdvancedSettings() *ContainerAdvancedSettings
NewContainerAdvancedSettings instantiates a new ContainerAdvancedSettings 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 NewContainerAdvancedSettingsWithDefaults() *ContainerAdvancedSettings
NewContainerAdvancedSettingsWithDefaults instantiates a new ContainerAdvancedSettings 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 *ContainerAdvancedSettings) GetDeploymentCustomDomainCheckEnabled() bool
GetDeploymentCustomDomainCheckEnabled returns the DeploymentCustomDomainCheckEnabled field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetDeploymentCustomDomainCheckEnabledOk() (*bool, bool)
GetDeploymentCustomDomainCheckEnabledOk returns a tuple with the DeploymentCustomDomainCheckEnabled field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetDeploymentCustomDomainCheckEnabled(v bool)
SetDeploymentCustomDomainCheckEnabled sets DeploymentCustomDomainCheckEnabled field to given value.
func (o *ContainerAdvancedSettings) HasDeploymentCustomDomainCheckEnabled() bool
HasDeploymentCustomDomainCheckEnabled returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetDeploymentTerminationGracePeriodSeconds() int32
GetDeploymentTerminationGracePeriodSeconds returns the DeploymentTerminationGracePeriodSeconds field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetDeploymentTerminationGracePeriodSecondsOk() (*int32, bool)
GetDeploymentTerminationGracePeriodSecondsOk returns a tuple with the DeploymentTerminationGracePeriodSeconds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetDeploymentTerminationGracePeriodSeconds(v int32)
SetDeploymentTerminationGracePeriodSeconds sets DeploymentTerminationGracePeriodSeconds field to given value.
func (o *ContainerAdvancedSettings) HasDeploymentTerminationGracePeriodSeconds() bool
HasDeploymentTerminationGracePeriodSeconds returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetDeploymentAffinityNodeRequired() map[string]string
GetDeploymentAffinityNodeRequired returns the DeploymentAffinityNodeRequired field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetDeploymentAffinityNodeRequiredOk() (*map[string]string, bool)
GetDeploymentAffinityNodeRequiredOk returns a tuple with the DeploymentAffinityNodeRequired field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetDeploymentAffinityNodeRequired(v map[string]string)
SetDeploymentAffinityNodeRequired sets DeploymentAffinityNodeRequired field to given value.
func (o *ContainerAdvancedSettings) HasDeploymentAffinityNodeRequired() bool
HasDeploymentAffinityNodeRequired returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetDeploymentAntiaffinityPod() string
GetDeploymentAntiaffinityPod returns the DeploymentAntiaffinityPod field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetDeploymentAntiaffinityPodOk() (*string, bool)
GetDeploymentAntiaffinityPodOk returns a tuple with the DeploymentAntiaffinityPod field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetDeploymentAntiaffinityPod(v string)
SetDeploymentAntiaffinityPod sets DeploymentAntiaffinityPod field to given value.
func (o *ContainerAdvancedSettings) HasDeploymentAntiaffinityPod() bool
HasDeploymentAntiaffinityPod returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetDeploymentTopologySpreadZone() string
GetDeploymentTopologySpreadZone returns the DeploymentTopologySpreadZone field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetDeploymentTopologySpreadZoneOk() (*string, bool)
GetDeploymentTopologySpreadZoneOk returns a tuple with the DeploymentTopologySpreadZone field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetDeploymentTopologySpreadZone(v string)
SetDeploymentTopologySpreadZone sets DeploymentTopologySpreadZone field to given value.
func (o *ContainerAdvancedSettings) HasDeploymentTopologySpreadZone() bool
HasDeploymentTopologySpreadZone returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetDeploymentUpdateStrategyType() string
GetDeploymentUpdateStrategyType returns the DeploymentUpdateStrategyType field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetDeploymentUpdateStrategyTypeOk() (*string, bool)
GetDeploymentUpdateStrategyTypeOk returns a tuple with the DeploymentUpdateStrategyType field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetDeploymentUpdateStrategyType(v string)
SetDeploymentUpdateStrategyType sets DeploymentUpdateStrategyType field to given value.
func (o *ContainerAdvancedSettings) HasDeploymentUpdateStrategyType() bool
HasDeploymentUpdateStrategyType returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetDeploymentUpdateStrategyRollingUpdateMaxUnavailablePercent() int32
GetDeploymentUpdateStrategyRollingUpdateMaxUnavailablePercent returns the DeploymentUpdateStrategyRollingUpdateMaxUnavailablePercent field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetDeploymentUpdateStrategyRollingUpdateMaxUnavailablePercentOk() (*int32, bool)
GetDeploymentUpdateStrategyRollingUpdateMaxUnavailablePercentOk returns a tuple with the DeploymentUpdateStrategyRollingUpdateMaxUnavailablePercent field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetDeploymentUpdateStrategyRollingUpdateMaxUnavailablePercent(v int32)
SetDeploymentUpdateStrategyRollingUpdateMaxUnavailablePercent sets DeploymentUpdateStrategyRollingUpdateMaxUnavailablePercent field to given value.
func (o *ContainerAdvancedSettings) HasDeploymentUpdateStrategyRollingUpdateMaxUnavailablePercent() bool
HasDeploymentUpdateStrategyRollingUpdateMaxUnavailablePercent returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetDeploymentUpdateStrategyRollingUpdateMaxSurgePercent() int32
GetDeploymentUpdateStrategyRollingUpdateMaxSurgePercent returns the DeploymentUpdateStrategyRollingUpdateMaxSurgePercent field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetDeploymentUpdateStrategyRollingUpdateMaxSurgePercentOk() (*int32, bool)
GetDeploymentUpdateStrategyRollingUpdateMaxSurgePercentOk returns a tuple with the DeploymentUpdateStrategyRollingUpdateMaxSurgePercent field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetDeploymentUpdateStrategyRollingUpdateMaxSurgePercent(v int32)
SetDeploymentUpdateStrategyRollingUpdateMaxSurgePercent sets DeploymentUpdateStrategyRollingUpdateMaxSurgePercent field to given value.
func (o *ContainerAdvancedSettings) HasDeploymentUpdateStrategyRollingUpdateMaxSurgePercent() bool
HasDeploymentUpdateStrategyRollingUpdateMaxSurgePercent returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetNetworkIngressProxyBodySizeMb() int32
GetNetworkIngressProxyBodySizeMb returns the NetworkIngressProxyBodySizeMb field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkIngressProxyBodySizeMbOk() (*int32, bool)
GetNetworkIngressProxyBodySizeMbOk returns a tuple with the NetworkIngressProxyBodySizeMb field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkIngressProxyBodySizeMb(v int32)
SetNetworkIngressProxyBodySizeMb sets NetworkIngressProxyBodySizeMb field to given value.
func (o *ContainerAdvancedSettings) HasNetworkIngressProxyBodySizeMb() bool
HasNetworkIngressProxyBodySizeMb returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetNetworkIngressForceSslRedirect() bool
GetNetworkIngressForceSslRedirect returns the NetworkIngressForceSslRedirect field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkIngressForceSslRedirectOk() (*bool, bool)
GetNetworkIngressForceSslRedirectOk returns a tuple with the NetworkIngressForceSslRedirect field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkIngressForceSslRedirect(v bool)
SetNetworkIngressForceSslRedirect sets NetworkIngressForceSslRedirect field to given value.
func (o *ContainerAdvancedSettings) HasNetworkIngressForceSslRedirect() bool
HasNetworkIngressForceSslRedirect returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetNetworkIngressEnableCors() bool
GetNetworkIngressEnableCors returns the NetworkIngressEnableCors field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkIngressEnableCorsOk() (*bool, bool)
GetNetworkIngressEnableCorsOk returns a tuple with the NetworkIngressEnableCors field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkIngressEnableCors(v bool)
SetNetworkIngressEnableCors sets NetworkIngressEnableCors field to given value.
func (o *ContainerAdvancedSettings) HasNetworkIngressEnableCors() bool
HasNetworkIngressEnableCors returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetNetworkIngressCorsAllowOrigin() string
GetNetworkIngressCorsAllowOrigin returns the NetworkIngressCorsAllowOrigin field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkIngressCorsAllowOriginOk() (*string, bool)
GetNetworkIngressCorsAllowOriginOk returns a tuple with the NetworkIngressCorsAllowOrigin field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkIngressCorsAllowOrigin(v string)
SetNetworkIngressCorsAllowOrigin sets NetworkIngressCorsAllowOrigin field to given value.
func (o *ContainerAdvancedSettings) HasNetworkIngressCorsAllowOrigin() bool
HasNetworkIngressCorsAllowOrigin returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetNetworkIngressCorsAllowMethods() string
GetNetworkIngressCorsAllowMethods returns the NetworkIngressCorsAllowMethods field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkIngressCorsAllowMethodsOk() (*string, bool)
GetNetworkIngressCorsAllowMethodsOk returns a tuple with the NetworkIngressCorsAllowMethods field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkIngressCorsAllowMethods(v string)
SetNetworkIngressCorsAllowMethods sets NetworkIngressCorsAllowMethods field to given value.
func (o *ContainerAdvancedSettings) HasNetworkIngressCorsAllowMethods() bool
HasNetworkIngressCorsAllowMethods returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetNetworkIngressCorsAllowHeaders() string
GetNetworkIngressCorsAllowHeaders returns the NetworkIngressCorsAllowHeaders field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkIngressCorsAllowHeadersOk() (*string, bool)
GetNetworkIngressCorsAllowHeadersOk returns a tuple with the NetworkIngressCorsAllowHeaders field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkIngressCorsAllowHeaders(v string)
SetNetworkIngressCorsAllowHeaders sets NetworkIngressCorsAllowHeaders field to given value.
func (o *ContainerAdvancedSettings) HasNetworkIngressCorsAllowHeaders() bool
HasNetworkIngressCorsAllowHeaders returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetNetworkIngressProxyBufferSizeKb() int32
GetNetworkIngressProxyBufferSizeKb returns the NetworkIngressProxyBufferSizeKb field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkIngressProxyBufferSizeKbOk() (*int32, bool)
GetNetworkIngressProxyBufferSizeKbOk returns a tuple with the NetworkIngressProxyBufferSizeKb field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkIngressProxyBufferSizeKb(v int32)
SetNetworkIngressProxyBufferSizeKb sets NetworkIngressProxyBufferSizeKb field to given value.
func (o *ContainerAdvancedSettings) HasNetworkIngressProxyBufferSizeKb() bool
HasNetworkIngressProxyBufferSizeKb returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetNetworkIngressKeepaliveTimeSeconds() int32
GetNetworkIngressKeepaliveTimeSeconds returns the NetworkIngressKeepaliveTimeSeconds field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkIngressKeepaliveTimeSecondsOk() (*int32, bool)
GetNetworkIngressKeepaliveTimeSecondsOk returns a tuple with the NetworkIngressKeepaliveTimeSeconds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkIngressKeepaliveTimeSeconds(v int32)
SetNetworkIngressKeepaliveTimeSeconds sets NetworkIngressKeepaliveTimeSeconds field to given value.
func (o *ContainerAdvancedSettings) HasNetworkIngressKeepaliveTimeSeconds() bool
HasNetworkIngressKeepaliveTimeSeconds returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetNetworkIngressKeepaliveTimeoutSeconds() int32
GetNetworkIngressKeepaliveTimeoutSeconds returns the NetworkIngressKeepaliveTimeoutSeconds field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkIngressKeepaliveTimeoutSecondsOk() (*int32, bool)
GetNetworkIngressKeepaliveTimeoutSecondsOk returns a tuple with the NetworkIngressKeepaliveTimeoutSeconds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkIngressKeepaliveTimeoutSeconds(v int32)
SetNetworkIngressKeepaliveTimeoutSeconds sets NetworkIngressKeepaliveTimeoutSeconds field to given value.
func (o *ContainerAdvancedSettings) HasNetworkIngressKeepaliveTimeoutSeconds() bool
HasNetworkIngressKeepaliveTimeoutSeconds returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetNetworkIngressSendTimeoutSeconds() int32
GetNetworkIngressSendTimeoutSeconds returns the NetworkIngressSendTimeoutSeconds field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkIngressSendTimeoutSecondsOk() (*int32, bool)
GetNetworkIngressSendTimeoutSecondsOk returns a tuple with the NetworkIngressSendTimeoutSeconds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkIngressSendTimeoutSeconds(v int32)
SetNetworkIngressSendTimeoutSeconds sets NetworkIngressSendTimeoutSeconds field to given value.
func (o *ContainerAdvancedSettings) HasNetworkIngressSendTimeoutSeconds() bool
HasNetworkIngressSendTimeoutSeconds returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetNetworkIngressProxyConnectTimeoutSeconds() int32
GetNetworkIngressProxyConnectTimeoutSeconds returns the NetworkIngressProxyConnectTimeoutSeconds field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkIngressProxyConnectTimeoutSecondsOk() (*int32, bool)
GetNetworkIngressProxyConnectTimeoutSecondsOk returns a tuple with the NetworkIngressProxyConnectTimeoutSeconds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkIngressProxyConnectTimeoutSeconds(v int32)
SetNetworkIngressProxyConnectTimeoutSeconds sets NetworkIngressProxyConnectTimeoutSeconds field to given value.
func (o *ContainerAdvancedSettings) HasNetworkIngressProxyConnectTimeoutSeconds() bool
HasNetworkIngressProxyConnectTimeoutSeconds returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetNetworkIngressProxySendTimeoutSeconds() int32
GetNetworkIngressProxySendTimeoutSeconds returns the NetworkIngressProxySendTimeoutSeconds field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkIngressProxySendTimeoutSecondsOk() (*int32, bool)
GetNetworkIngressProxySendTimeoutSecondsOk returns a tuple with the NetworkIngressProxySendTimeoutSeconds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkIngressProxySendTimeoutSeconds(v int32)
SetNetworkIngressProxySendTimeoutSeconds sets NetworkIngressProxySendTimeoutSeconds field to given value.
func (o *ContainerAdvancedSettings) HasNetworkIngressProxySendTimeoutSeconds() bool
HasNetworkIngressProxySendTimeoutSeconds returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetNetworkIngressProxyReadTimeoutSeconds() int32
GetNetworkIngressProxyReadTimeoutSeconds returns the NetworkIngressProxyReadTimeoutSeconds field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkIngressProxyReadTimeoutSecondsOk() (*int32, bool)
GetNetworkIngressProxyReadTimeoutSecondsOk returns a tuple with the NetworkIngressProxyReadTimeoutSeconds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkIngressProxyReadTimeoutSeconds(v int32)
SetNetworkIngressProxyReadTimeoutSeconds sets NetworkIngressProxyReadTimeoutSeconds field to given value.
func (o *ContainerAdvancedSettings) HasNetworkIngressProxyReadTimeoutSeconds() bool
HasNetworkIngressProxyReadTimeoutSeconds returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetNetworkIngressProxyBuffering() string
GetNetworkIngressProxyBuffering returns the NetworkIngressProxyBuffering field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkIngressProxyBufferingOk() (*string, bool)
GetNetworkIngressProxyBufferingOk returns a tuple with the NetworkIngressProxyBuffering field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkIngressProxyBuffering(v string)
SetNetworkIngressProxyBuffering sets NetworkIngressProxyBuffering field to given value.
func (o *ContainerAdvancedSettings) HasNetworkIngressProxyBuffering() bool
HasNetworkIngressProxyBuffering returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetNetworkIngressProxyRequestBuffering() string
GetNetworkIngressProxyRequestBuffering returns the NetworkIngressProxyRequestBuffering field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkIngressProxyRequestBufferingOk() (*string, bool)
GetNetworkIngressProxyRequestBufferingOk returns a tuple with the NetworkIngressProxyRequestBuffering field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkIngressProxyRequestBuffering(v string)
SetNetworkIngressProxyRequestBuffering sets NetworkIngressProxyRequestBuffering field to given value.
func (o *ContainerAdvancedSettings) HasNetworkIngressProxyRequestBuffering() bool
HasNetworkIngressProxyRequestBuffering returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetNetworkIngressGrpcSendTimeoutSeconds() int32
GetNetworkIngressGrpcSendTimeoutSeconds returns the NetworkIngressGrpcSendTimeoutSeconds field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkIngressGrpcSendTimeoutSecondsOk() (*int32, bool)
GetNetworkIngressGrpcSendTimeoutSecondsOk returns a tuple with the NetworkIngressGrpcSendTimeoutSeconds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkIngressGrpcSendTimeoutSeconds(v int32)
SetNetworkIngressGrpcSendTimeoutSeconds sets NetworkIngressGrpcSendTimeoutSeconds field to given value.
func (o *ContainerAdvancedSettings) HasNetworkIngressGrpcSendTimeoutSeconds() bool
HasNetworkIngressGrpcSendTimeoutSeconds returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetNetworkIngressGrpcReadTimeoutSeconds() int32
GetNetworkIngressGrpcReadTimeoutSeconds returns the NetworkIngressGrpcReadTimeoutSeconds field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkIngressGrpcReadTimeoutSecondsOk() (*int32, bool)
GetNetworkIngressGrpcReadTimeoutSecondsOk returns a tuple with the NetworkIngressGrpcReadTimeoutSeconds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkIngressGrpcReadTimeoutSeconds(v int32)
SetNetworkIngressGrpcReadTimeoutSeconds sets NetworkIngressGrpcReadTimeoutSeconds field to given value.
func (o *ContainerAdvancedSettings) HasNetworkIngressGrpcReadTimeoutSeconds() bool
HasNetworkIngressGrpcReadTimeoutSeconds returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetNetworkIngressWhitelistSourceRange() string
GetNetworkIngressWhitelistSourceRange returns the NetworkIngressWhitelistSourceRange field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkIngressWhitelistSourceRangeOk() (*string, bool)
GetNetworkIngressWhitelistSourceRangeOk returns a tuple with the NetworkIngressWhitelistSourceRange field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkIngressWhitelistSourceRange(v string)
SetNetworkIngressWhitelistSourceRange sets NetworkIngressWhitelistSourceRange field to given value.
func (o *ContainerAdvancedSettings) HasNetworkIngressWhitelistSourceRange() bool
HasNetworkIngressWhitelistSourceRange returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetNetworkIngressDenylistSourceRange() string
GetNetworkIngressDenylistSourceRange returns the NetworkIngressDenylistSourceRange field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkIngressDenylistSourceRangeOk() (*string, bool)
GetNetworkIngressDenylistSourceRangeOk returns a tuple with the NetworkIngressDenylistSourceRange field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkIngressDenylistSourceRange(v string)
SetNetworkIngressDenylistSourceRange sets NetworkIngressDenylistSourceRange field to given value.
func (o *ContainerAdvancedSettings) HasNetworkIngressDenylistSourceRange() bool
HasNetworkIngressDenylistSourceRange returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetNetworkIngressExtraHeaders() string
GetNetworkIngressExtraHeaders returns the NetworkIngressExtraHeaders field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkIngressExtraHeadersOk() (*string, bool)
GetNetworkIngressExtraHeadersOk returns a tuple with the NetworkIngressExtraHeaders field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkIngressExtraHeaders(v string)
SetNetworkIngressExtraHeaders sets NetworkIngressExtraHeaders field to given value.
func (o *ContainerAdvancedSettings) HasNetworkIngressExtraHeaders() bool
HasNetworkIngressExtraHeaders returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetNetworkGatewayApiHttpRequestTimeoutSeconds() int32
GetNetworkGatewayApiHttpRequestTimeoutSeconds returns the NetworkGatewayApiHttpRequestTimeoutSeconds field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkGatewayApiHttpRequestTimeoutSecondsOk() (*int32, bool)
GetNetworkGatewayApiHttpRequestTimeoutSecondsOk returns a tuple with the NetworkGatewayApiHttpRequestTimeoutSeconds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkGatewayApiHttpRequestTimeoutSeconds(v int32)
SetNetworkGatewayApiHttpRequestTimeoutSeconds sets NetworkGatewayApiHttpRequestTimeoutSeconds field to given value.
func (o *ContainerAdvancedSettings) HasNetworkGatewayApiHttpRequestTimeoutSeconds() bool
HasNetworkGatewayApiHttpRequestTimeoutSeconds returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) SetNetworkGatewayApiHttpRequestTimeoutSecondsNil(b bool)
SetNetworkGatewayApiHttpRequestTimeoutSecondsNil sets the value for NetworkGatewayApiHttpRequestTimeoutSeconds to be an explicit nil
func (o *ContainerAdvancedSettings) UnsetNetworkGatewayApiHttpRequestTimeoutSeconds()
UnsetNetworkGatewayApiHttpRequestTimeoutSeconds ensures that no value is present for NetworkGatewayApiHttpRequestTimeoutSeconds, not even an explicit nil
func (o *ContainerAdvancedSettings) GetNetworkGatewayApiHttpConnectionIdleTimeoutSeconds() int32
GetNetworkGatewayApiHttpConnectionIdleTimeoutSeconds returns the NetworkGatewayApiHttpConnectionIdleTimeoutSeconds field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkGatewayApiHttpConnectionIdleTimeoutSecondsOk() (*int32, bool)
GetNetworkGatewayApiHttpConnectionIdleTimeoutSecondsOk returns a tuple with the NetworkGatewayApiHttpConnectionIdleTimeoutSeconds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkGatewayApiHttpConnectionIdleTimeoutSeconds(v int32)
SetNetworkGatewayApiHttpConnectionIdleTimeoutSeconds sets NetworkGatewayApiHttpConnectionIdleTimeoutSeconds field to given value.
func (o *ContainerAdvancedSettings) HasNetworkGatewayApiHttpConnectionIdleTimeoutSeconds() bool
HasNetworkGatewayApiHttpConnectionIdleTimeoutSeconds returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) SetNetworkGatewayApiHttpConnectionIdleTimeoutSecondsNil(b bool)
SetNetworkGatewayApiHttpConnectionIdleTimeoutSecondsNil sets the value for NetworkGatewayApiHttpConnectionIdleTimeoutSeconds to be an explicit nil
func (o *ContainerAdvancedSettings) UnsetNetworkGatewayApiHttpConnectionIdleTimeoutSeconds()
UnsetNetworkGatewayApiHttpConnectionIdleTimeoutSeconds ensures that no value is present for NetworkGatewayApiHttpConnectionIdleTimeoutSeconds, not even an explicit nil
func (o *ContainerAdvancedSettings) GetNetworkGatewayApiRetryNumRetries() int32
GetNetworkGatewayApiRetryNumRetries returns the NetworkGatewayApiRetryNumRetries field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkGatewayApiRetryNumRetriesOk() (*int32, bool)
GetNetworkGatewayApiRetryNumRetriesOk returns a tuple with the NetworkGatewayApiRetryNumRetries field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkGatewayApiRetryNumRetries(v int32)
SetNetworkGatewayApiRetryNumRetries sets NetworkGatewayApiRetryNumRetries field to given value.
func (o *ContainerAdvancedSettings) HasNetworkGatewayApiRetryNumRetries() bool
HasNetworkGatewayApiRetryNumRetries returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) SetNetworkGatewayApiRetryNumRetriesNil(b bool)
SetNetworkGatewayApiRetryNumRetriesNil sets the value for NetworkGatewayApiRetryNumRetries to be an explicit nil
func (o *ContainerAdvancedSettings) UnsetNetworkGatewayApiRetryNumRetries()
UnsetNetworkGatewayApiRetryNumRetries ensures that no value is present for NetworkGatewayApiRetryNumRetries, not even an explicit nil
func (o *ContainerAdvancedSettings) GetNetworkGatewayApiRetryRetryOn() string
GetNetworkGatewayApiRetryRetryOn returns the NetworkGatewayApiRetryRetryOn field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkGatewayApiRetryRetryOnOk() (*string, bool)
GetNetworkGatewayApiRetryRetryOnOk returns a tuple with the NetworkGatewayApiRetryRetryOn field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkGatewayApiRetryRetryOn(v string)
SetNetworkGatewayApiRetryRetryOn sets NetworkGatewayApiRetryRetryOn field to given value.
func (o *ContainerAdvancedSettings) HasNetworkGatewayApiRetryRetryOn() bool
HasNetworkGatewayApiRetryRetryOn returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) SetNetworkGatewayApiRetryRetryOnNil(b bool)
SetNetworkGatewayApiRetryRetryOnNil sets the value for NetworkGatewayApiRetryRetryOn to be an explicit nil
func (o *ContainerAdvancedSettings) UnsetNetworkGatewayApiRetryRetryOn()
UnsetNetworkGatewayApiRetryRetryOn ensures that no value is present for NetworkGatewayApiRetryRetryOn, not even an explicit nil
func (o *ContainerAdvancedSettings) GetNetworkGatewayApiRetryHttpStatusCodes() string
GetNetworkGatewayApiRetryHttpStatusCodes returns the NetworkGatewayApiRetryHttpStatusCodes field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkGatewayApiRetryHttpStatusCodesOk() (*string, bool)
GetNetworkGatewayApiRetryHttpStatusCodesOk returns a tuple with the NetworkGatewayApiRetryHttpStatusCodes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkGatewayApiRetryHttpStatusCodes(v string)
SetNetworkGatewayApiRetryHttpStatusCodes sets NetworkGatewayApiRetryHttpStatusCodes field to given value.
func (o *ContainerAdvancedSettings) HasNetworkGatewayApiRetryHttpStatusCodes() bool
HasNetworkGatewayApiRetryHttpStatusCodes returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) SetNetworkGatewayApiRetryHttpStatusCodesNil(b bool)
SetNetworkGatewayApiRetryHttpStatusCodesNil sets the value for NetworkGatewayApiRetryHttpStatusCodes to be an explicit nil
func (o *ContainerAdvancedSettings) UnsetNetworkGatewayApiRetryHttpStatusCodes()
UnsetNetworkGatewayApiRetryHttpStatusCodes ensures that no value is present for NetworkGatewayApiRetryHttpStatusCodes, not even an explicit nil
func (o *ContainerAdvancedSettings) GetNetworkGatewayApiRetryPerTryTimeoutSeconds() int32
GetNetworkGatewayApiRetryPerTryTimeoutSeconds returns the NetworkGatewayApiRetryPerTryTimeoutSeconds field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkGatewayApiRetryPerTryTimeoutSecondsOk() (*int32, bool)
GetNetworkGatewayApiRetryPerTryTimeoutSecondsOk returns a tuple with the NetworkGatewayApiRetryPerTryTimeoutSeconds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkGatewayApiRetryPerTryTimeoutSeconds(v int32)
SetNetworkGatewayApiRetryPerTryTimeoutSeconds sets NetworkGatewayApiRetryPerTryTimeoutSeconds field to given value.
func (o *ContainerAdvancedSettings) HasNetworkGatewayApiRetryPerTryTimeoutSeconds() bool
HasNetworkGatewayApiRetryPerTryTimeoutSeconds returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) SetNetworkGatewayApiRetryPerTryTimeoutSecondsNil(b bool)
SetNetworkGatewayApiRetryPerTryTimeoutSecondsNil sets the value for NetworkGatewayApiRetryPerTryTimeoutSeconds to be an explicit nil
func (o *ContainerAdvancedSettings) UnsetNetworkGatewayApiRetryPerTryTimeoutSeconds()
UnsetNetworkGatewayApiRetryPerTryTimeoutSeconds ensures that no value is present for NetworkGatewayApiRetryPerTryTimeoutSeconds, not even an explicit nil
func (o *ContainerAdvancedSettings) GetNetworkIngressBasicAuthEnvVar() string
GetNetworkIngressBasicAuthEnvVar returns the NetworkIngressBasicAuthEnvVar field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkIngressBasicAuthEnvVarOk() (*string, bool)
GetNetworkIngressBasicAuthEnvVarOk returns a tuple with the NetworkIngressBasicAuthEnvVar field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkIngressBasicAuthEnvVar(v string)
SetNetworkIngressBasicAuthEnvVar sets NetworkIngressBasicAuthEnvVar field to given value.
func (o *ContainerAdvancedSettings) HasNetworkIngressBasicAuthEnvVar() bool
HasNetworkIngressBasicAuthEnvVar returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetNetworkIngressEnableStickySession() bool
GetNetworkIngressEnableStickySession returns the NetworkIngressEnableStickySession field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetNetworkIngressEnableStickySessionOk() (*bool, bool)
GetNetworkIngressEnableStickySessionOk returns a tuple with the NetworkIngressEnableStickySession field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetNetworkIngressEnableStickySession(v bool)
SetNetworkIngressEnableStickySession sets NetworkIngressEnableStickySession field to given value.
func (o *ContainerAdvancedSettings) HasNetworkIngressEnableStickySession() bool
HasNetworkIngressEnableStickySession returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetSecurityServiceAccountName() string
GetSecurityServiceAccountName returns the SecurityServiceAccountName field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetSecurityServiceAccountNameOk() (*string, bool)
GetSecurityServiceAccountNameOk returns a tuple with the SecurityServiceAccountName field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetSecurityServiceAccountName(v string)
SetSecurityServiceAccountName sets SecurityServiceAccountName field to given value.
func (o *ContainerAdvancedSettings) HasSecurityServiceAccountName() bool
HasSecurityServiceAccountName returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetHpaCpuAverageUtilizationPercent() int32
GetHpaCpuAverageUtilizationPercent returns the HpaCpuAverageUtilizationPercent field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetHpaCpuAverageUtilizationPercentOk() (*int32, bool)
GetHpaCpuAverageUtilizationPercentOk returns a tuple with the HpaCpuAverageUtilizationPercent field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetHpaCpuAverageUtilizationPercent(v int32)
SetHpaCpuAverageUtilizationPercent sets HpaCpuAverageUtilizationPercent field to given value.
func (o *ContainerAdvancedSettings) HasHpaCpuAverageUtilizationPercent() bool
HasHpaCpuAverageUtilizationPercent returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetHpaMemoryAverageUtilizationPercent() int32
GetHpaMemoryAverageUtilizationPercent returns the HpaMemoryAverageUtilizationPercent field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetHpaMemoryAverageUtilizationPercentOk() (*int32, bool)
GetHpaMemoryAverageUtilizationPercentOk returns a tuple with the HpaMemoryAverageUtilizationPercent field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetHpaMemoryAverageUtilizationPercent(v int32)
SetHpaMemoryAverageUtilizationPercent sets HpaMemoryAverageUtilizationPercent field to given value.
func (o *ContainerAdvancedSettings) HasHpaMemoryAverageUtilizationPercent() bool
HasHpaMemoryAverageUtilizationPercent returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) SetHpaMemoryAverageUtilizationPercentNil(b bool)
SetHpaMemoryAverageUtilizationPercentNil sets the value for HpaMemoryAverageUtilizationPercent to be an explicit nil
func (o *ContainerAdvancedSettings) UnsetHpaMemoryAverageUtilizationPercent()
UnsetHpaMemoryAverageUtilizationPercent ensures that no value is present for HpaMemoryAverageUtilizationPercent, not even an explicit nil
func (o *ContainerAdvancedSettings) GetSecurityAutomountServiceAccountToken() bool
GetSecurityAutomountServiceAccountToken returns the SecurityAutomountServiceAccountToken field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetSecurityAutomountServiceAccountTokenOk() (*bool, bool)
GetSecurityAutomountServiceAccountTokenOk returns a tuple with the SecurityAutomountServiceAccountToken field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetSecurityAutomountServiceAccountToken(v bool)
SetSecurityAutomountServiceAccountToken sets SecurityAutomountServiceAccountToken field to given value.
func (o *ContainerAdvancedSettings) HasSecurityAutomountServiceAccountToken() bool
HasSecurityAutomountServiceAccountToken returns a boolean if a field has been set.
func (o *ContainerAdvancedSettings) GetSecurityReadOnlyRootFilesystem() bool
GetSecurityReadOnlyRootFilesystem returns the SecurityReadOnlyRootFilesystem field if non-nil, zero value otherwise.
func (o *ContainerAdvancedSettings) GetSecurityReadOnlyRootFilesystemOk() (*bool, bool)
GetSecurityReadOnlyRootFilesystemOk returns a tuple with the SecurityReadOnlyRootFilesystem field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ContainerAdvancedSettings) SetSecurityReadOnlyRootFilesystem(v bool)
SetSecurityReadOnlyRootFilesystem sets SecurityReadOnlyRootFilesystem field to given value.
func (o *ContainerAdvancedSettings) HasSecurityReadOnlyRootFilesystem() bool
HasSecurityReadOnlyRootFilesystem returns a boolean if a field has been set.