IpBlockProperties

Properties

NameTypeDescriptionNotes

IpConsumers

Pointer to []IpConsumer

Read-Only attribute. Lists consumption detail for an individual IP

[optional] [readonly]

Ips

Pointer to []string

Collection of IPs, associated with the IP Block.

[optional] [readonly]

Location

string

Location of that IP block. Property cannot be modified after it is created (disallowed in update requests).

Name

Pointer to string

The name of the resource.

[optional]

Size

int32

The size of the IP block.

Methods

NewIpBlockProperties

func NewIpBlockProperties(location string, size int32, ) *IpBlockProperties

NewIpBlockProperties instantiates a new IpBlockProperties 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

NewIpBlockPropertiesWithDefaults

func NewIpBlockPropertiesWithDefaults() *IpBlockProperties

NewIpBlockPropertiesWithDefaults instantiates a new IpBlockProperties 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

GetIpConsumers

func (o *IpBlockProperties) GetIpConsumers() []IpConsumer

GetIpConsumers returns the IpConsumers field if non-nil, zero value otherwise.

GetIpConsumersOk

func (o *IpBlockProperties) GetIpConsumersOk() (*[]IpConsumer, bool)

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

SetIpConsumers

func (o *IpBlockProperties) SetIpConsumers(v []IpConsumer)

SetIpConsumers sets IpConsumers field to given value.

HasIpConsumers

func (o *IpBlockProperties) HasIpConsumers() bool

HasIpConsumers returns a boolean if a field has been set.

GetIps

func (o *IpBlockProperties) GetIps() []string

GetIps returns the Ips field if non-nil, zero value otherwise.

GetIpsOk

func (o *IpBlockProperties) GetIpsOk() (*[]string, bool)

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

SetIps

func (o *IpBlockProperties) SetIps(v []string)

SetIps sets Ips field to given value.

HasIps

func (o *IpBlockProperties) HasIps() bool

HasIps returns a boolean if a field has been set.

GetLocation

func (o *IpBlockProperties) GetLocation() string

GetLocation returns the Location field if non-nil, zero value otherwise.

GetLocationOk

func (o *IpBlockProperties) GetLocationOk() (*string, bool)

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

SetLocation

func (o *IpBlockProperties) SetLocation(v string)

SetLocation sets Location field to given value.

GetName

func (o *IpBlockProperties) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *IpBlockProperties) 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 *IpBlockProperties) SetName(v string)

SetName sets Name field to given value.

HasName

func (o *IpBlockProperties) HasName() bool

HasName returns a boolean if a field has been set.

GetSize

func (o *IpBlockProperties) GetSize() int32

GetSize returns the Size field if non-nil, zero value otherwise.

GetSizeOk

func (o *IpBlockProperties) GetSizeOk() (*int32, bool)

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

SetSize

func (o *IpBlockProperties) SetSize(v int32)

SetSize sets Size field to given value.

Last updated