class Azure::Network::Mgmt::V2020_07_01::Models::ApplicationGatewayPrivateLinkConfiguration

Private Link Configuration on an application gateway.

Attributes

etag[RW]

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

ip_configurations[RW]

@return [Array<ApplicationGatewayPrivateLinkIpConfiguration>] An array of application gateway private link ip configurations.

name[RW]

@return [String] Name of the private link configuration that is unique within an Application Gateway.

provisioning_state[RW]

@return [ProvisioningState] The provisioning state of the application gateway private link configuration. Possible values include: 'Succeeded', 'Updating', 'Deleting', 'Failed'

type[RW]

@return [String] Type of the resource.

Public Class Methods

mapper() click to toggle source

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

# File lib/2020-07-01/generated/azure_mgmt_network/models/application_gateway_private_link_configuration.rb, line 41
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApplicationGatewayPrivateLinkConfiguration',
    type: {
      name: 'Composite',
      class_name: 'ApplicationGatewayPrivateLinkConfiguration',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        ip_configurations: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.ipConfigurations',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'ApplicationGatewayPrivateLinkIpConfigurationElementType',
                type: {
                  name: 'Composite',
                  class_name: 'ApplicationGatewayPrivateLinkIpConfiguration'
                }
            }
          }
        },
        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'
          }
        },
        etag: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'etag',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end