1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
|
# TargetGroupProperties
## Properties
|Name | Type | Description | Notes|
|------------ | ------------- | ------------- | -------------|
|**Name** | **string** | The target group name. | |
|**Algorithm** | **string** | The balancing algorithm. A balancing algorithm consists of predefined rules with the logic that a load balancer uses to distribute network traffic between servers. - **Round Robin**: Targets are served alternately according to their weighting. - **Least Connection**: The target with the least active connection is served. - **Random**: The targets are served based on a consistent pseudorandom algorithm. - **Source IP**: It is ensured that the same client IP address reaches the same target. | |
|**Protocol** | **string** | The forwarding protocol. Only the value 'HTTP' is allowed. | |
|**ProtocolVersion** | Pointer to **string** | The forwarding protocol version. Value is ignored when protocol is not 'HTTP'. | [optional] |
|**Targets** | Pointer to [**[]TargetGroupTarget**](TargetGroupTarget.md) | Array of items in the collection. | [optional] |
|**HealthCheck** | Pointer to [**TargetGroupHealthCheck**](TargetGroupHealthCheck.md) | | [optional] |
|**HttpHealthCheck** | Pointer to [**TargetGroupHttpHealthCheck**](TargetGroupHttpHealthCheck.md) | | [optional] |
## Methods
### NewTargetGroupProperties
`func NewTargetGroupProperties(name string, algorithm string, protocol string, ) *TargetGroupProperties`
NewTargetGroupProperties instantiates a new TargetGroupProperties 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
### NewTargetGroupPropertiesWithDefaults
`func NewTargetGroupPropertiesWithDefaults() *TargetGroupProperties`
NewTargetGroupPropertiesWithDefaults instantiates a new TargetGroupProperties 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
### GetName
`func (o *TargetGroupProperties) GetName() string`
GetName returns the Name field if non-nil, zero value otherwise.
### GetNameOk
`func (o *TargetGroupProperties) GetNameOk() (*string, bool)`
GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetName
`func (o *TargetGroupProperties) SetName(v string)`
SetName sets Name field to given value.
### GetAlgorithm
`func (o *TargetGroupProperties) GetAlgorithm() string`
GetAlgorithm returns the Algorithm field if non-nil, zero value otherwise.
### GetAlgorithmOk
`func (o *TargetGroupProperties) GetAlgorithmOk() (*string, bool)`
GetAlgorithmOk returns a tuple with the Algorithm field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetAlgorithm
`func (o *TargetGroupProperties) SetAlgorithm(v string)`
SetAlgorithm sets Algorithm field to given value.
### GetProtocol
`func (o *TargetGroupProperties) GetProtocol() string`
GetProtocol returns the Protocol field if non-nil, zero value otherwise.
### GetProtocolOk
`func (o *TargetGroupProperties) GetProtocolOk() (*string, bool)`
GetProtocolOk returns a tuple with the Protocol field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetProtocol
`func (o *TargetGroupProperties) SetProtocol(v string)`
SetProtocol sets Protocol field to given value.
### GetProtocolVersion
`func (o *TargetGroupProperties) GetProtocolVersion() string`
GetProtocolVersion returns the ProtocolVersion field if non-nil, zero value otherwise.
### GetProtocolVersionOk
`func (o *TargetGroupProperties) GetProtocolVersionOk() (*string, bool)`
GetProtocolVersionOk returns a tuple with the ProtocolVersion field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetProtocolVersion
`func (o *TargetGroupProperties) SetProtocolVersion(v string)`
SetProtocolVersion sets ProtocolVersion field to given value.
### HasProtocolVersion
`func (o *TargetGroupProperties) HasProtocolVersion() bool`
HasProtocolVersion returns a boolean if a field has been set.
### GetTargets
`func (o *TargetGroupProperties) GetTargets() []TargetGroupTarget`
GetTargets returns the Targets field if non-nil, zero value otherwise.
### GetTargetsOk
`func (o *TargetGroupProperties) GetTargetsOk() (*[]TargetGroupTarget, bool)`
GetTargetsOk returns a tuple with the Targets field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetTargets
`func (o *TargetGroupProperties) SetTargets(v []TargetGroupTarget)`
SetTargets sets Targets field to given value.
### HasTargets
`func (o *TargetGroupProperties) HasTargets() bool`
HasTargets returns a boolean if a field has been set.
### GetHealthCheck
`func (o *TargetGroupProperties) GetHealthCheck() TargetGroupHealthCheck`
GetHealthCheck returns the HealthCheck field if non-nil, zero value otherwise.
### GetHealthCheckOk
`func (o *TargetGroupProperties) GetHealthCheckOk() (*TargetGroupHealthCheck, bool)`
GetHealthCheckOk returns a tuple with the HealthCheck field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHealthCheck
`func (o *TargetGroupProperties) SetHealthCheck(v TargetGroupHealthCheck)`
SetHealthCheck sets HealthCheck field to given value.
### HasHealthCheck
`func (o *TargetGroupProperties) HasHealthCheck() bool`
HasHealthCheck returns a boolean if a field has been set.
### GetHttpHealthCheck
`func (o *TargetGroupProperties) GetHttpHealthCheck() TargetGroupHttpHealthCheck`
GetHttpHealthCheck returns the HttpHealthCheck field if non-nil, zero value otherwise.
### GetHttpHealthCheckOk
`func (o *TargetGroupProperties) GetHttpHealthCheckOk() (*TargetGroupHttpHealthCheck, bool)`
GetHttpHealthCheckOk returns a tuple with the HttpHealthCheck field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHttpHealthCheck
`func (o *TargetGroupProperties) SetHttpHealthCheck(v TargetGroupHttpHealthCheck)`
SetHttpHealthCheck sets HttpHealthCheck field to given value.
### HasHttpHealthCheck
`func (o *TargetGroupProperties) HasHttpHealthCheck() bool`
HasHttpHealthCheck returns a boolean if a field has been set.
|