class Azure::Network::Mgmt::V2016_03_30::Models::ApplicationGatewayIPConfiguration
IP configuration of application gateway
Attributes
etag[RW]
@return [String] A unique read-only string that changes whenever the resource is updated
name[RW]
@return [String] Gets name of the resource that is unique within a resource group. This name can be used to access the resource
provisioning_state[RW]
@return [String] Gets or sets Provisioning state of the application gateway subnet resource Updating/Deleting/Failed
subnet[RW]
@return [SubResource] Gets or sets the reference of the subnet resource.A subnet from where application gateway gets its private address
Public Class Methods
mapper()
click to toggle source
Mapper for ApplicationGatewayIPConfiguration class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2016-03-30/generated/azure_mgmt_network/models/application_gateway_ipconfiguration.rb, line 36 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApplicationGatewayIPConfiguration', type: { name: 'Composite', class_name: 'ApplicationGatewayIPConfiguration', 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: 'SubResource' } }, provisioning_state: { client_side_validation: true, required: false, 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, serialized_name: 'etag', type: { name: 'String' } } } } } end