class Azure::Network::Mgmt::V2018_11_01::Models::IPConfigurationProfile

IP configuration profile child resource.

Attributes

etag[RW]

@return [String] A unique read-only string that changes whenever the resource is updated.

name[RW]

@return [String] The name of the resource. This name can be used to access the resource.

provisioning_state[RW]

@return [String] The provisioning state of the resource.

subnet[RW]

@return [Subnet] The reference of the subnet resource to create a container network interface ip configuration.

type[RW]

@return [String] Sub Resource type.

Public Class Methods

mapper() click to toggle source

Mapper for IPConfigurationProfile class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2018-11-01/generated/azure_mgmt_network/models/ipconfiguration_profile.rb, line 37
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'IPConfigurationProfile',
    type: {
      name: 'Composite',
      class_name: 'IPConfigurationProfile',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        subnet: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.subnet',
          type: {
            name: 'Composite',
            class_name: 'Subnet'
          }
        },
        provisioning_state: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.provisioningState',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        etag: {
          client_side_validation: true,
          required: false,
          serialized_name: 'etag',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end