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] |
DeploymentLifecyclePostStartExecCommand | Pointer to []string | Allows you to run a command after the application is started. The command should be a shell command or script. | [optional] |
DeploymentLifecyclePreStopExecCommand | Pointer to []string | Allows you to run a command before the application is stopped. The command should be a shell command or script. Qovery requires the sh shell by default and sets a sleep of 15 seconds to let Nginx update its config. Avoiding error codes returned during a rolling update. | [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] |
BuildTimeoutMaxSec | Pointer to int32 | [optional] | |
BuildCpuMaxInMilli | Pointer to int32 | define the max cpu resources (in milli) | [optional] |
BuildRamMaxInGib | Pointer to int32 | define the max ram resources (in gib) | [optional] |
NetworkIngressProxyBodySizeMb | Pointer to int32 | [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-request-buffering` | [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] |
NetworkIngressBasicAuthEnvVar | Pointer to string | Set the name of an environment variable to use as a basic authentication (`login:crypted_password`) from `htpasswd` command. | [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] |
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] |
NetworkIngressExtraHeaders | Pointer to string | Allows to define response headers | [optional] |
HpaCpuAverageUtilizationPercent | Pointer to int32 | Percentage value of cpu usage at which point pods should scale up. | [optional] |
SecurityServiceAccountName | Pointer to string | Allows you to set an existing Kubernetes service account name | [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 NewApplicationAdvancedSettings() *ApplicationAdvancedSettings
NewApplicationAdvancedSettings instantiates a new ApplicationAdvancedSettings 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 NewApplicationAdvancedSettingsWithDefaults() *ApplicationAdvancedSettings
NewApplicationAdvancedSettingsWithDefaults instantiates a new ApplicationAdvancedSettings 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 *ApplicationAdvancedSettings) GetDeploymentCustomDomainCheckEnabled() bool
GetDeploymentCustomDomainCheckEnabled returns the DeploymentCustomDomainCheckEnabled field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetDeploymentCustomDomainCheckEnabled(v bool)
SetDeploymentCustomDomainCheckEnabled sets DeploymentCustomDomainCheckEnabled field to given value.
func (o *ApplicationAdvancedSettings) HasDeploymentCustomDomainCheckEnabled() bool
HasDeploymentCustomDomainCheckEnabled returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetDeploymentTerminationGracePeriodSeconds() int32
GetDeploymentTerminationGracePeriodSeconds returns the DeploymentTerminationGracePeriodSeconds field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetDeploymentTerminationGracePeriodSeconds(v int32)
SetDeploymentTerminationGracePeriodSeconds sets DeploymentTerminationGracePeriodSeconds field to given value.
func (o *ApplicationAdvancedSettings) HasDeploymentTerminationGracePeriodSeconds() bool
HasDeploymentTerminationGracePeriodSeconds returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetDeploymentAffinityNodeRequired() map[string]string
GetDeploymentAffinityNodeRequired returns the DeploymentAffinityNodeRequired field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetDeploymentAffinityNodeRequired(v map[string]string)
SetDeploymentAffinityNodeRequired sets DeploymentAffinityNodeRequired field to given value.
func (o *ApplicationAdvancedSettings) HasDeploymentAffinityNodeRequired() bool
HasDeploymentAffinityNodeRequired returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetDeploymentAntiaffinityPod() string
GetDeploymentAntiaffinityPod returns the DeploymentAntiaffinityPod field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetDeploymentAntiaffinityPod(v string)
SetDeploymentAntiaffinityPod sets DeploymentAntiaffinityPod field to given value.
func (o *ApplicationAdvancedSettings) HasDeploymentAntiaffinityPod() bool
HasDeploymentAntiaffinityPod returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetDeploymentLifecyclePostStartExecCommand() []string
GetDeploymentLifecyclePostStartExecCommand returns the DeploymentLifecyclePostStartExecCommand field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) GetDeploymentLifecyclePostStartExecCommandOk() (*[]string, bool)
GetDeploymentLifecyclePostStartExecCommandOk returns a tuple with the DeploymentLifecyclePostStartExecCommand field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ApplicationAdvancedSettings) SetDeploymentLifecyclePostStartExecCommand(v []string)
SetDeploymentLifecyclePostStartExecCommand sets DeploymentLifecyclePostStartExecCommand field to given value.
func (o *ApplicationAdvancedSettings) HasDeploymentLifecyclePostStartExecCommand() bool
HasDeploymentLifecyclePostStartExecCommand returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetDeploymentLifecyclePreStopExecCommand() []string
GetDeploymentLifecyclePreStopExecCommand returns the DeploymentLifecyclePreStopExecCommand field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) GetDeploymentLifecyclePreStopExecCommandOk() (*[]string, bool)
GetDeploymentLifecyclePreStopExecCommandOk returns a tuple with the DeploymentLifecyclePreStopExecCommand field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ApplicationAdvancedSettings) SetDeploymentLifecyclePreStopExecCommand(v []string)
SetDeploymentLifecyclePreStopExecCommand sets DeploymentLifecyclePreStopExecCommand field to given value.
func (o *ApplicationAdvancedSettings) HasDeploymentLifecyclePreStopExecCommand() bool
HasDeploymentLifecyclePreStopExecCommand returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetDeploymentUpdateStrategyType() string
GetDeploymentUpdateStrategyType returns the DeploymentUpdateStrategyType field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetDeploymentUpdateStrategyType(v string)
SetDeploymentUpdateStrategyType sets DeploymentUpdateStrategyType field to given value.
func (o *ApplicationAdvancedSettings) HasDeploymentUpdateStrategyType() bool
HasDeploymentUpdateStrategyType returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetDeploymentUpdateStrategyRollingUpdateMaxUnavailablePercent() int32
GetDeploymentUpdateStrategyRollingUpdateMaxUnavailablePercent returns the DeploymentUpdateStrategyRollingUpdateMaxUnavailablePercent field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetDeploymentUpdateStrategyRollingUpdateMaxUnavailablePercent(v int32)
SetDeploymentUpdateStrategyRollingUpdateMaxUnavailablePercent sets DeploymentUpdateStrategyRollingUpdateMaxUnavailablePercent field to given value.
func (o *ApplicationAdvancedSettings) HasDeploymentUpdateStrategyRollingUpdateMaxUnavailablePercent() bool
HasDeploymentUpdateStrategyRollingUpdateMaxUnavailablePercent returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetDeploymentUpdateStrategyRollingUpdateMaxSurgePercent() int32
GetDeploymentUpdateStrategyRollingUpdateMaxSurgePercent returns the DeploymentUpdateStrategyRollingUpdateMaxSurgePercent field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetDeploymentUpdateStrategyRollingUpdateMaxSurgePercent(v int32)
SetDeploymentUpdateStrategyRollingUpdateMaxSurgePercent sets DeploymentUpdateStrategyRollingUpdateMaxSurgePercent field to given value.
func (o *ApplicationAdvancedSettings) HasDeploymentUpdateStrategyRollingUpdateMaxSurgePercent() bool
HasDeploymentUpdateStrategyRollingUpdateMaxSurgePercent returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetBuildTimeoutMaxSec() int32
GetBuildTimeoutMaxSec returns the BuildTimeoutMaxSec field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) GetBuildTimeoutMaxSecOk() (*int32, bool)
GetBuildTimeoutMaxSecOk returns a tuple with the BuildTimeoutMaxSec field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ApplicationAdvancedSettings) SetBuildTimeoutMaxSec(v int32)
SetBuildTimeoutMaxSec sets BuildTimeoutMaxSec field to given value.
func (o *ApplicationAdvancedSettings) HasBuildTimeoutMaxSec() bool
HasBuildTimeoutMaxSec returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetBuildCpuMaxInMilli() int32
GetBuildCpuMaxInMilli returns the BuildCpuMaxInMilli field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) GetBuildCpuMaxInMilliOk() (*int32, bool)
GetBuildCpuMaxInMilliOk returns a tuple with the BuildCpuMaxInMilli field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ApplicationAdvancedSettings) SetBuildCpuMaxInMilli(v int32)
SetBuildCpuMaxInMilli sets BuildCpuMaxInMilli field to given value.
func (o *ApplicationAdvancedSettings) HasBuildCpuMaxInMilli() bool
HasBuildCpuMaxInMilli returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetBuildRamMaxInGib() int32
GetBuildRamMaxInGib returns the BuildRamMaxInGib field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) GetBuildRamMaxInGibOk() (*int32, bool)
GetBuildRamMaxInGibOk returns a tuple with the BuildRamMaxInGib field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ApplicationAdvancedSettings) SetBuildRamMaxInGib(v int32)
SetBuildRamMaxInGib sets BuildRamMaxInGib field to given value.
func (o *ApplicationAdvancedSettings) HasBuildRamMaxInGib() bool
HasBuildRamMaxInGib returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetNetworkIngressProxyBodySizeMb() int32
GetNetworkIngressProxyBodySizeMb returns the NetworkIngressProxyBodySizeMb field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetNetworkIngressProxyBodySizeMb(v int32)
SetNetworkIngressProxyBodySizeMb sets NetworkIngressProxyBodySizeMb field to given value.
func (o *ApplicationAdvancedSettings) HasNetworkIngressProxyBodySizeMb() bool
HasNetworkIngressProxyBodySizeMb returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetNetworkIngressEnableCors() bool
GetNetworkIngressEnableCors returns the NetworkIngressEnableCors field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetNetworkIngressEnableCors(v bool)
SetNetworkIngressEnableCors sets NetworkIngressEnableCors field to given value.
func (o *ApplicationAdvancedSettings) HasNetworkIngressEnableCors() bool
HasNetworkIngressEnableCors returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetNetworkIngressCorsAllowOrigin() string
GetNetworkIngressCorsAllowOrigin returns the NetworkIngressCorsAllowOrigin field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetNetworkIngressCorsAllowOrigin(v string)
SetNetworkIngressCorsAllowOrigin sets NetworkIngressCorsAllowOrigin field to given value.
func (o *ApplicationAdvancedSettings) HasNetworkIngressCorsAllowOrigin() bool
HasNetworkIngressCorsAllowOrigin returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetNetworkIngressCorsAllowMethods() string
GetNetworkIngressCorsAllowMethods returns the NetworkIngressCorsAllowMethods field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetNetworkIngressCorsAllowMethods(v string)
SetNetworkIngressCorsAllowMethods sets NetworkIngressCorsAllowMethods field to given value.
func (o *ApplicationAdvancedSettings) HasNetworkIngressCorsAllowMethods() bool
HasNetworkIngressCorsAllowMethods returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetNetworkIngressCorsAllowHeaders() string
GetNetworkIngressCorsAllowHeaders returns the NetworkIngressCorsAllowHeaders field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetNetworkIngressCorsAllowHeaders(v string)
SetNetworkIngressCorsAllowHeaders sets NetworkIngressCorsAllowHeaders field to given value.
func (o *ApplicationAdvancedSettings) HasNetworkIngressCorsAllowHeaders() bool
HasNetworkIngressCorsAllowHeaders returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetNetworkIngressProxyBufferSizeKb() int32
GetNetworkIngressProxyBufferSizeKb returns the NetworkIngressProxyBufferSizeKb field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetNetworkIngressProxyBufferSizeKb(v int32)
SetNetworkIngressProxyBufferSizeKb sets NetworkIngressProxyBufferSizeKb field to given value.
func (o *ApplicationAdvancedSettings) HasNetworkIngressProxyBufferSizeKb() bool
HasNetworkIngressProxyBufferSizeKb returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetNetworkIngressKeepaliveTimeSeconds() int32
GetNetworkIngressKeepaliveTimeSeconds returns the NetworkIngressKeepaliveTimeSeconds field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetNetworkIngressKeepaliveTimeSeconds(v int32)
SetNetworkIngressKeepaliveTimeSeconds sets NetworkIngressKeepaliveTimeSeconds field to given value.
func (o *ApplicationAdvancedSettings) HasNetworkIngressKeepaliveTimeSeconds() bool
HasNetworkIngressKeepaliveTimeSeconds returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetNetworkIngressKeepaliveTimeoutSeconds() int32
GetNetworkIngressKeepaliveTimeoutSeconds returns the NetworkIngressKeepaliveTimeoutSeconds field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetNetworkIngressKeepaliveTimeoutSeconds(v int32)
SetNetworkIngressKeepaliveTimeoutSeconds sets NetworkIngressKeepaliveTimeoutSeconds field to given value.
func (o *ApplicationAdvancedSettings) HasNetworkIngressKeepaliveTimeoutSeconds() bool
HasNetworkIngressKeepaliveTimeoutSeconds returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetNetworkIngressSendTimeoutSeconds() int32
GetNetworkIngressSendTimeoutSeconds returns the NetworkIngressSendTimeoutSeconds field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetNetworkIngressSendTimeoutSeconds(v int32)
SetNetworkIngressSendTimeoutSeconds sets NetworkIngressSendTimeoutSeconds field to given value.
func (o *ApplicationAdvancedSettings) HasNetworkIngressSendTimeoutSeconds() bool
HasNetworkIngressSendTimeoutSeconds returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetNetworkIngressProxyConnectTimeoutSeconds() int32
GetNetworkIngressProxyConnectTimeoutSeconds returns the NetworkIngressProxyConnectTimeoutSeconds field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetNetworkIngressProxyConnectTimeoutSeconds(v int32)
SetNetworkIngressProxyConnectTimeoutSeconds sets NetworkIngressProxyConnectTimeoutSeconds field to given value.
func (o *ApplicationAdvancedSettings) HasNetworkIngressProxyConnectTimeoutSeconds() bool
HasNetworkIngressProxyConnectTimeoutSeconds returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetNetworkIngressProxySendTimeoutSeconds() int32
GetNetworkIngressProxySendTimeoutSeconds returns the NetworkIngressProxySendTimeoutSeconds field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetNetworkIngressProxySendTimeoutSeconds(v int32)
SetNetworkIngressProxySendTimeoutSeconds sets NetworkIngressProxySendTimeoutSeconds field to given value.
func (o *ApplicationAdvancedSettings) HasNetworkIngressProxySendTimeoutSeconds() bool
HasNetworkIngressProxySendTimeoutSeconds returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetNetworkIngressProxyReadTimeoutSeconds() int32
GetNetworkIngressProxyReadTimeoutSeconds returns the NetworkIngressProxyReadTimeoutSeconds field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetNetworkIngressProxyReadTimeoutSeconds(v int32)
SetNetworkIngressProxyReadTimeoutSeconds sets NetworkIngressProxyReadTimeoutSeconds field to given value.
func (o *ApplicationAdvancedSettings) HasNetworkIngressProxyReadTimeoutSeconds() bool
HasNetworkIngressProxyReadTimeoutSeconds returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetNetworkIngressProxyBuffering() string
GetNetworkIngressProxyBuffering returns the NetworkIngressProxyBuffering field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetNetworkIngressProxyBuffering(v string)
SetNetworkIngressProxyBuffering sets NetworkIngressProxyBuffering field to given value.
func (o *ApplicationAdvancedSettings) HasNetworkIngressProxyBuffering() bool
HasNetworkIngressProxyBuffering returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetNetworkIngressWhitelistSourceRange() string
GetNetworkIngressWhitelistSourceRange returns the NetworkIngressWhitelistSourceRange field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetNetworkIngressWhitelistSourceRange(v string)
SetNetworkIngressWhitelistSourceRange sets NetworkIngressWhitelistSourceRange field to given value.
func (o *ApplicationAdvancedSettings) HasNetworkIngressWhitelistSourceRange() bool
HasNetworkIngressWhitelistSourceRange returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetNetworkIngressDenylistSourceRange() string
GetNetworkIngressDenylistSourceRange returns the NetworkIngressDenylistSourceRange field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetNetworkIngressDenylistSourceRange(v string)
SetNetworkIngressDenylistSourceRange sets NetworkIngressDenylistSourceRange field to given value.
func (o *ApplicationAdvancedSettings) HasNetworkIngressDenylistSourceRange() bool
HasNetworkIngressDenylistSourceRange returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetNetworkIngressBasicAuthEnvVar() string
GetNetworkIngressBasicAuthEnvVar returns the NetworkIngressBasicAuthEnvVar field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetNetworkIngressBasicAuthEnvVar(v string)
SetNetworkIngressBasicAuthEnvVar sets NetworkIngressBasicAuthEnvVar field to given value.
func (o *ApplicationAdvancedSettings) HasNetworkIngressBasicAuthEnvVar() bool
HasNetworkIngressBasicAuthEnvVar returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetNetworkIngressEnableStickySession() bool
GetNetworkIngressEnableStickySession returns the NetworkIngressEnableStickySession field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetNetworkIngressEnableStickySession(v bool)
SetNetworkIngressEnableStickySession sets NetworkIngressEnableStickySession field to given value.
func (o *ApplicationAdvancedSettings) HasNetworkIngressEnableStickySession() bool
HasNetworkIngressEnableStickySession returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetNetworkIngressGrpcSendTimeoutSeconds() int32
GetNetworkIngressGrpcSendTimeoutSeconds returns the NetworkIngressGrpcSendTimeoutSeconds field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetNetworkIngressGrpcSendTimeoutSeconds(v int32)
SetNetworkIngressGrpcSendTimeoutSeconds sets NetworkIngressGrpcSendTimeoutSeconds field to given value.
func (o *ApplicationAdvancedSettings) HasNetworkIngressGrpcSendTimeoutSeconds() bool
HasNetworkIngressGrpcSendTimeoutSeconds returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetNetworkIngressGrpcReadTimeoutSeconds() int32
GetNetworkIngressGrpcReadTimeoutSeconds returns the NetworkIngressGrpcReadTimeoutSeconds field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetNetworkIngressGrpcReadTimeoutSeconds(v int32)
SetNetworkIngressGrpcReadTimeoutSeconds sets NetworkIngressGrpcReadTimeoutSeconds field to given value.
func (o *ApplicationAdvancedSettings) HasNetworkIngressGrpcReadTimeoutSeconds() bool
HasNetworkIngressGrpcReadTimeoutSeconds returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetNetworkIngressExtraHeaders() string
GetNetworkIngressExtraHeaders returns the NetworkIngressExtraHeaders field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetNetworkIngressExtraHeaders(v string)
SetNetworkIngressExtraHeaders sets NetworkIngressExtraHeaders field to given value.
func (o *ApplicationAdvancedSettings) HasNetworkIngressExtraHeaders() bool
HasNetworkIngressExtraHeaders returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetHpaCpuAverageUtilizationPercent() int32
GetHpaCpuAverageUtilizationPercent returns the HpaCpuAverageUtilizationPercent field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetHpaCpuAverageUtilizationPercent(v int32)
SetHpaCpuAverageUtilizationPercent sets HpaCpuAverageUtilizationPercent field to given value.
func (o *ApplicationAdvancedSettings) HasHpaCpuAverageUtilizationPercent() bool
HasHpaCpuAverageUtilizationPercent returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetSecurityServiceAccountName() string
GetSecurityServiceAccountName returns the SecurityServiceAccountName field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetSecurityServiceAccountName(v string)
SetSecurityServiceAccountName sets SecurityServiceAccountName field to given value.
func (o *ApplicationAdvancedSettings) HasSecurityServiceAccountName() bool
HasSecurityServiceAccountName returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetSecurityAutomountServiceAccountToken() bool
GetSecurityAutomountServiceAccountToken returns the SecurityAutomountServiceAccountToken field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetSecurityAutomountServiceAccountToken(v bool)
SetSecurityAutomountServiceAccountToken sets SecurityAutomountServiceAccountToken field to given value.
func (o *ApplicationAdvancedSettings) HasSecurityAutomountServiceAccountToken() bool
HasSecurityAutomountServiceAccountToken returns a boolean if a field has been set.
func (o *ApplicationAdvancedSettings) GetSecurityReadOnlyRootFilesystem() bool
GetSecurityReadOnlyRootFilesystem returns the SecurityReadOnlyRootFilesystem field if non-nil, zero value otherwise.
func (o *ApplicationAdvancedSettings) 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 *ApplicationAdvancedSettings) SetSecurityReadOnlyRootFilesystem(v bool)
SetSecurityReadOnlyRootFilesystem sets SecurityReadOnlyRootFilesystem field to given value.
func (o *ApplicationAdvancedSettings) HasSecurityReadOnlyRootFilesystem() bool
HasSecurityReadOnlyRootFilesystem returns a boolean if a field has been set.