Skip to content

Latest commit

 

History

History
212 lines (115 loc) · 9.56 KB

PostPlacementGroup200Response.md

File metadata and controls

212 lines (115 loc) · 9.56 KB

PostPlacementGroup200Response

Properties

Name Type Description Notes
Id Pointer to int32 The placement group's ID. You need to provide it for all operations that affect it. [optional]
IsCompliant Pointer to bool Whether all of the compute instances in your placement group are compliant. If `true`, all compute instances meet either the grouped-together or spread-apart model, which you determine through your selected `placement_group_type`. If `false`, a compute instance is out of this compliance. For example, assume you've set `anti-affinity:local` as your `placement_group_type` and your group already has three qualifying compute instances on separate hosts, to support the spread-apart model. If a fourth compute instance is assigned that's on the same host as one of the existing three, the placement group is non-compliant. Enforce compliance in your group by setting a `placement_group_policy`. > 📘 > > Fixing compliance is not self-service. You need to wait for our assistance to physically move compute instances to make the group compliant again. [optional]
Label Pointer to string The unique name set for the placement group. A label has these constraints: - It needs to begin and end with an alphanumeric character. - It can only consist of alphanumeric characters, hyphens (`-`), underscores (`_`) or periods (`.`). [optional]
Members Pointer to []GetPlacementGroups200ResponseDataInnerMembersInner An array of compute instances included in the placement group. [optional]
PlacementGroupPolicy Pointer to string How requests to add future compute instances to your placement group are handled, and whether it remains compliant: - `strict`. Don't assign a new compute instance if it breaks the grouped-together or spread-apart model set by the `placement_group_type`. Use this to ensure the placement group stays compliant (`is_compliant: true`). - `flexible`. Assign a new compute instance, even if it breaks the grouped-together or spread-apart model set by the `placement_group_type`. This makes the group non-compliant (`is_compliant: false`). You need to wait for Akamai to move the offending compute instance to make it compliant again, once the necessary capacity is available in the region. Offers flexibility to add future compute instances if compliance isn't an immediate concern. <<LB>> > 📘 > > In rare cases, non-compliance can occur with a `strict` placement group if Akamai needs to failover or migrate your compute instances for maintenance. Fixing non-compliance for a `strict` placement group is prioritized over a `flexible` group. [optional]
PlacementGroupType Pointer to string How compute instances are distributed in your placement group. A `placement_group_type` using anti-affinity (`anti-affinity:local`) places compute instances in separate hosts, but still in the same region. This best supports the spread-apart model for high availability. A `placement_group_type` using affinity places compute instances physically close together, possibly on the same host. This supports the grouped-together model for low-latency. > 📘 > > Currently, only `anti_affinity:local` is available for `placement_group_type`. [optional] [readonly]
Region Pointer to string The region where the placement group was deployed. [optional] [readonly]

Methods

NewPostPlacementGroup200Response

func NewPostPlacementGroup200Response() *PostPlacementGroup200Response

NewPostPlacementGroup200Response instantiates a new PostPlacementGroup200Response 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

NewPostPlacementGroup200ResponseWithDefaults

func NewPostPlacementGroup200ResponseWithDefaults() *PostPlacementGroup200Response

NewPostPlacementGroup200ResponseWithDefaults instantiates a new PostPlacementGroup200Response 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

GetId

func (o *PostPlacementGroup200Response) GetId() int32

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *PostPlacementGroup200Response) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetId

func (o *PostPlacementGroup200Response) SetId(v int32)

SetId sets Id field to given value.

HasId

func (o *PostPlacementGroup200Response) HasId() bool

HasId returns a boolean if a field has been set.

GetIsCompliant

func (o *PostPlacementGroup200Response) GetIsCompliant() bool

GetIsCompliant returns the IsCompliant field if non-nil, zero value otherwise.

GetIsCompliantOk

func (o *PostPlacementGroup200Response) GetIsCompliantOk() (*bool, bool)

GetIsCompliantOk returns a tuple with the IsCompliant field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetIsCompliant

func (o *PostPlacementGroup200Response) SetIsCompliant(v bool)

SetIsCompliant sets IsCompliant field to given value.

HasIsCompliant

func (o *PostPlacementGroup200Response) HasIsCompliant() bool

HasIsCompliant returns a boolean if a field has been set.

GetLabel

func (o *PostPlacementGroup200Response) GetLabel() string

GetLabel returns the Label field if non-nil, zero value otherwise.

GetLabelOk

func (o *PostPlacementGroup200Response) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetLabel

func (o *PostPlacementGroup200Response) SetLabel(v string)

SetLabel sets Label field to given value.

HasLabel

func (o *PostPlacementGroup200Response) HasLabel() bool

HasLabel returns a boolean if a field has been set.

GetMembers

func (o *PostPlacementGroup200Response) GetMembers() []GetPlacementGroups200ResponseDataInnerMembersInner

GetMembers returns the Members field if non-nil, zero value otherwise.

GetMembersOk

func (o *PostPlacementGroup200Response) GetMembersOk() (*[]GetPlacementGroups200ResponseDataInnerMembersInner, bool)

GetMembersOk returns a tuple with the Members field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetMembers

func (o *PostPlacementGroup200Response) SetMembers(v []GetPlacementGroups200ResponseDataInnerMembersInner)

SetMembers sets Members field to given value.

HasMembers

func (o *PostPlacementGroup200Response) HasMembers() bool

HasMembers returns a boolean if a field has been set.

GetPlacementGroupPolicy

func (o *PostPlacementGroup200Response) GetPlacementGroupPolicy() string

GetPlacementGroupPolicy returns the PlacementGroupPolicy field if non-nil, zero value otherwise.

GetPlacementGroupPolicyOk

func (o *PostPlacementGroup200Response) GetPlacementGroupPolicyOk() (*string, bool)

GetPlacementGroupPolicyOk returns a tuple with the PlacementGroupPolicy field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetPlacementGroupPolicy

func (o *PostPlacementGroup200Response) SetPlacementGroupPolicy(v string)

SetPlacementGroupPolicy sets PlacementGroupPolicy field to given value.

HasPlacementGroupPolicy

func (o *PostPlacementGroup200Response) HasPlacementGroupPolicy() bool

HasPlacementGroupPolicy returns a boolean if a field has been set.

GetPlacementGroupType

func (o *PostPlacementGroup200Response) GetPlacementGroupType() string

GetPlacementGroupType returns the PlacementGroupType field if non-nil, zero value otherwise.

GetPlacementGroupTypeOk

func (o *PostPlacementGroup200Response) GetPlacementGroupTypeOk() (*string, bool)

GetPlacementGroupTypeOk returns a tuple with the PlacementGroupType field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetPlacementGroupType

func (o *PostPlacementGroup200Response) SetPlacementGroupType(v string)

SetPlacementGroupType sets PlacementGroupType field to given value.

HasPlacementGroupType

func (o *PostPlacementGroup200Response) HasPlacementGroupType() bool

HasPlacementGroupType returns a boolean if a field has been set.

GetRegion

func (o *PostPlacementGroup200Response) GetRegion() string

GetRegion returns the Region field if non-nil, zero value otherwise.

GetRegionOk

func (o *PostPlacementGroup200Response) GetRegionOk() (*string, bool)

GetRegionOk returns a tuple with the Region field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetRegion

func (o *PostPlacementGroup200Response) SetRegion(v string)

SetRegion sets Region field to given value.

HasRegion

func (o *PostPlacementGroup200Response) HasRegion() bool

HasRegion returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]