Class: Azure::Network::Mgmt::V2020_08_01::Models::ApplicationGatewayIPConfiguration
- Inherits:
-
SubResource
- Object
- SubResource
- Azure::Network::Mgmt::V2020_08_01::Models::ApplicationGatewayIPConfiguration
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-08-01/generated/azure_mgmt_network/models/application_gateway_ipconfiguration.rb
Overview
IP configuration of an application gateway. Currently 1 public and 1 private IP configuration is allowed.
Instance Attribute Summary collapse
-
#etag ⇒ String
resource is updated.
-
#name ⇒ String
Application Gateway.
-
#provisioning_state ⇒ ProvisioningState
gateway IP configuration resource.
-
#subnet ⇒ SubResource
where application gateway gets its private address.
-
#type ⇒ String
Type of the resource.
Attributes inherited from SubResource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ApplicationGatewayIPConfiguration class as Ruby Hash.
Instance Attribute Details
#etag ⇒ String
resource is updated.
31 32 33 |
# File 'lib/2020-08-01/generated/azure_mgmt_network/models/application_gateway_ipconfiguration.rb', line 31 def etag @etag end |
#name ⇒ String
Application Gateway.
27 28 29 |
# File 'lib/2020-08-01/generated/azure_mgmt_network/models/application_gateway_ipconfiguration.rb', line 27 def name @name end |
#provisioning_state ⇒ ProvisioningState
gateway IP configuration resource. Possible values include: ‘Succeeded’, ‘Updating’, ‘Deleting’, ‘Failed’
23 24 25 |
# File 'lib/2020-08-01/generated/azure_mgmt_network/models/application_gateway_ipconfiguration.rb', line 23 def provisioning_state @provisioning_state end |
#subnet ⇒ SubResource
where application gateway gets its private address.
18 19 20 |
# File 'lib/2020-08-01/generated/azure_mgmt_network/models/application_gateway_ipconfiguration.rb', line 18 def subnet @subnet end |
#type ⇒ String
Returns Type of the resource.
34 35 36 |
# File 'lib/2020-08-01/generated/azure_mgmt_network/models/application_gateway_ipconfiguration.rb', line 34 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for ApplicationGatewayIPConfiguration class as Ruby Hash. This will be used for serialization/deserialization.
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
# File 'lib/2020-08-01/generated/azure_mgmt_network/models/application_gateway_ipconfiguration.rb', line 41 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, 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 |