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
|
# TargetGroupTarget
## Properties
|Name | Type | Description | Notes|
|------------ | ------------- | ------------- | -------------|
|**Ip** | **string** | The IP address of the balanced target. | |
|**Port** | **int32** | The port of the balanced target service; the valid range is 1 to 65535. | |
|**Weight** | **int32** | The traffic is distributed proportionally to target weight, which is the ratio of the total weight of all targets. A target with higher weight receives a larger share of traffic. The valid range is from 0 to 256; the default value is '1'. Targets with a weight of '0' do not participate in load balancing but still accept persistent connections. We recommend using values in the middle range to leave room for later adjustments. | |
|**ProxyProtocol** | Pointer to **string** | Proxy protocol version. | [optional] [default to "none"]|
|**HealthCheckEnabled** | Pointer to **bool** | When the health check is enabled, the target is available only when it accepts regular TCP or HTTP connection attempts for state checking. The state check consists of one connection attempt with the target's address and port. The default value is 'TRUE'. | [optional] |
|**MaintenanceEnabled** | Pointer to **bool** | When the maintenance mode is enabled, the target is prevented from receiving traffic; the default value is 'FALSE'. | [optional] |
## Methods
### NewTargetGroupTarget
`func NewTargetGroupTarget(ip string, port int32, weight int32, ) *TargetGroupTarget`
NewTargetGroupTarget instantiates a new TargetGroupTarget 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
### NewTargetGroupTargetWithDefaults
`func NewTargetGroupTargetWithDefaults() *TargetGroupTarget`
NewTargetGroupTargetWithDefaults instantiates a new TargetGroupTarget 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
### GetIp
`func (o *TargetGroupTarget) GetIp() string`
GetIp returns the Ip field if non-nil, zero value otherwise.
### GetIpOk
`func (o *TargetGroupTarget) GetIpOk() (*string, bool)`
GetIpOk returns a tuple with the Ip field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetIp
`func (o *TargetGroupTarget) SetIp(v string)`
SetIp sets Ip field to given value.
### GetPort
`func (o *TargetGroupTarget) GetPort() int32`
GetPort returns the Port field if non-nil, zero value otherwise.
### GetPortOk
`func (o *TargetGroupTarget) GetPortOk() (*int32, bool)`
GetPortOk returns a tuple with the Port field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetPort
`func (o *TargetGroupTarget) SetPort(v int32)`
SetPort sets Port field to given value.
### GetWeight
`func (o *TargetGroupTarget) GetWeight() int32`
GetWeight returns the Weight field if non-nil, zero value otherwise.
### GetWeightOk
`func (o *TargetGroupTarget) GetWeightOk() (*int32, bool)`
GetWeightOk returns a tuple with the Weight field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetWeight
`func (o *TargetGroupTarget) SetWeight(v int32)`
SetWeight sets Weight field to given value.
### GetProxyProtocol
`func (o *TargetGroupTarget) GetProxyProtocol() string`
GetProxyProtocol returns the ProxyProtocol field if non-nil, zero value otherwise.
### GetProxyProtocolOk
`func (o *TargetGroupTarget) GetProxyProtocolOk() (*string, bool)`
GetProxyProtocolOk returns a tuple with the ProxyProtocol field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetProxyProtocol
`func (o *TargetGroupTarget) SetProxyProtocol(v string)`
SetProxyProtocol sets ProxyProtocol field to given value.
### HasProxyProtocol
`func (o *TargetGroupTarget) HasProxyProtocol() bool`
HasProxyProtocol returns a boolean if a field has been set.
### GetHealthCheckEnabled
`func (o *TargetGroupTarget) GetHealthCheckEnabled() bool`
GetHealthCheckEnabled returns the HealthCheckEnabled field if non-nil, zero value otherwise.
### GetHealthCheckEnabledOk
`func (o *TargetGroupTarget) GetHealthCheckEnabledOk() (*bool, bool)`
GetHealthCheckEnabledOk returns a tuple with the HealthCheckEnabled field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHealthCheckEnabled
`func (o *TargetGroupTarget) SetHealthCheckEnabled(v bool)`
SetHealthCheckEnabled sets HealthCheckEnabled field to given value.
### HasHealthCheckEnabled
`func (o *TargetGroupTarget) HasHealthCheckEnabled() bool`
HasHealthCheckEnabled returns a boolean if a field has been set.
### GetMaintenanceEnabled
`func (o *TargetGroupTarget) GetMaintenanceEnabled() bool`
GetMaintenanceEnabled returns the MaintenanceEnabled field if non-nil, zero value otherwise.
### GetMaintenanceEnabledOk
`func (o *TargetGroupTarget) GetMaintenanceEnabledOk() (*bool, bool)`
GetMaintenanceEnabledOk returns a tuple with the MaintenanceEnabled field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetMaintenanceEnabled
`func (o *TargetGroupTarget) SetMaintenanceEnabled(v bool)`
SetMaintenanceEnabled sets MaintenanceEnabled field to given value.
### HasMaintenanceEnabled
`func (o *TargetGroupTarget) HasMaintenanceEnabled() bool`
HasMaintenanceEnabled returns a boolean if a field has been set.
|