Skip to content

Latest commit

 

History

History
212 lines (115 loc) · 5.97 KB

PostVpcRequest.md

File metadata and controls

212 lines (115 loc) · 5.97 KB

PostVpcRequest

Properties

Name Type Description Notes
Subnets Pointer to []GetVpcs200ResponseAllOfDataInnerSubnetsInner A list of subnets associated with the VPC. [optional]
Created Pointer to time.Time The date-time of VPC creation. [optional] [readonly]
Description Pointer to string A written description to help distinguish the VPC. [optional] [default to ""]
Id Pointer to int32 The unique ID of the VPC. [optional] [readonly]
Label string The VPC's label, for display purposes only. - Needs to be unique among the Account's VPCs. - Can only contain ASCII letters, numbers, and hyphens (`-`). You can't use two consecutive hyphens (`--`).
Region string The Region for the VPC.
Updated Pointer to NullableTime The date-time of the most recent VPC update. [optional] [readonly]

Methods

NewPostVpcRequest

func NewPostVpcRequest(label string, region string, ) *PostVpcRequest

NewPostVpcRequest instantiates a new PostVpcRequest 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

NewPostVpcRequestWithDefaults

func NewPostVpcRequestWithDefaults() *PostVpcRequest

NewPostVpcRequestWithDefaults instantiates a new PostVpcRequest 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

GetSubnets

func (o *PostVpcRequest) GetSubnets() []GetVpcs200ResponseAllOfDataInnerSubnetsInner

GetSubnets returns the Subnets field if non-nil, zero value otherwise.

GetSubnetsOk

func (o *PostVpcRequest) GetSubnetsOk() (*[]GetVpcs200ResponseAllOfDataInnerSubnetsInner, bool)

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

SetSubnets

func (o *PostVpcRequest) SetSubnets(v []GetVpcs200ResponseAllOfDataInnerSubnetsInner)

SetSubnets sets Subnets field to given value.

HasSubnets

func (o *PostVpcRequest) HasSubnets() bool

HasSubnets returns a boolean if a field has been set.

GetCreated

func (o *PostVpcRequest) GetCreated() time.Time

GetCreated returns the Created field if non-nil, zero value otherwise.

GetCreatedOk

func (o *PostVpcRequest) GetCreatedOk() (*time.Time, bool)

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

SetCreated

func (o *PostVpcRequest) SetCreated(v time.Time)

SetCreated sets Created field to given value.

HasCreated

func (o *PostVpcRequest) HasCreated() bool

HasCreated returns a boolean if a field has been set.

GetDescription

func (o *PostVpcRequest) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *PostVpcRequest) GetDescriptionOk() (*string, bool)

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

SetDescription

func (o *PostVpcRequest) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *PostVpcRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetId

func (o *PostVpcRequest) GetId() int32

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

GetIdOk

func (o *PostVpcRequest) 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 *PostVpcRequest) SetId(v int32)

SetId sets Id field to given value.

HasId

func (o *PostVpcRequest) HasId() bool

HasId returns a boolean if a field has been set.

GetLabel

func (o *PostVpcRequest) GetLabel() string

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

GetLabelOk

func (o *PostVpcRequest) 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 *PostVpcRequest) SetLabel(v string)

SetLabel sets Label field to given value.

GetRegion

func (o *PostVpcRequest) GetRegion() string

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

GetRegionOk

func (o *PostVpcRequest) 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 *PostVpcRequest) SetRegion(v string)

SetRegion sets Region field to given value.

GetUpdated

func (o *PostVpcRequest) GetUpdated() time.Time

GetUpdated returns the Updated field if non-nil, zero value otherwise.

GetUpdatedOk

func (o *PostVpcRequest) GetUpdatedOk() (*time.Time, bool)

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

SetUpdated

func (o *PostVpcRequest) SetUpdated(v time.Time)

SetUpdated sets Updated field to given value.

HasUpdated

func (o *PostVpcRequest) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

SetUpdatedNil

func (o *PostVpcRequest) SetUpdatedNil(b bool)

SetUpdatedNil sets the value for Updated to be an explicit nil

UnsetUpdated

func (o *PostVpcRequest) UnsetUpdated()

UnsetUpdated ensures that no value is present for Updated, not even an explicit nil

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