Name | Type | Description | Notes |
---|---|---|---|
func NewTargetGroupProperties(algorithm string, name 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
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
func (o *TargetGroupProperties) GetAlgorithm() string
GetAlgorithm returns the Algorithm field if non-nil, zero value otherwise.
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.
func (o *TargetGroupProperties) SetAlgorithm(v string)
SetAlgorithm sets Algorithm field to given value.
func (o *TargetGroupProperties) GetHealthCheck() TargetGroupHealthCheck
GetHealthCheck returns the HealthCheck field if non-nil, zero value otherwise.
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.
func (o *TargetGroupProperties) SetHealthCheck(v TargetGroupHealthCheck)
SetHealthCheck sets HealthCheck field to given value.
func (o *TargetGroupProperties) HasHealthCheck() bool
HasHealthCheck returns a boolean if a field has been set.
func (o *TargetGroupProperties) GetHttpHealthCheck() TargetGroupHttpHealthCheck
GetHttpHealthCheck returns the HttpHealthCheck field if non-nil, zero value otherwise.
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.
func (o *TargetGroupProperties) SetHttpHealthCheck(v TargetGroupHttpHealthCheck)
SetHttpHealthCheck sets HttpHealthCheck field to given value.
func (o *TargetGroupProperties) HasHttpHealthCheck() bool
HasHttpHealthCheck returns a boolean if a field has been set.
func (o *TargetGroupProperties) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
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.
func (o *TargetGroupProperties) SetName(v string)
SetName sets Name field to given value.
func (o *TargetGroupProperties) GetProtocol() string
GetProtocol returns the Protocol field if non-nil, zero value otherwise.
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.
func (o *TargetGroupProperties) SetProtocol(v string)
SetProtocol sets Protocol field to given value.
func (o *TargetGroupProperties) GetTargets() []TargetGroupTarget
GetTargets returns the Targets field if non-nil, zero value otherwise.
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.
func (o *TargetGroupProperties) SetTargets(v []TargetGroupTarget)
SetTargets sets Targets field to given value.
func (o *TargetGroupProperties) HasTargets() bool
HasTargets returns a boolean if a field has been set.
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.
HealthCheck
Pointer to TargetGroupHealthCheck
[optional]
HttpHealthCheck
Pointer to TargetGroupHttpHealthCheck
[optional]
Name
string
The target group name.
Protocol
string
The forwarding protocol. Only the value 'HTTP' is allowed.
Targets
Pointer to []TargetGroupTarget
Array of items in the collection.
[optional]