Class: Azure::ARM::Network::Models::ApplicationGatewayIPConfiguration
- Inherits:
-
MsRestAzure::SubResource
- Object
- MsRestAzure::SubResource
- Azure::ARM::Network::Models::ApplicationGatewayIPConfiguration
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/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
group.
-
#provisioning_state ⇒ String
resource.
-
#subnet ⇒ SubResource
where application gateway gets its private address.
-
#type ⇒ String
Type of the resource.
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/generated/azure_mgmt_network/models/application_gateway_ipconfiguration.rb', line 31 def etag @etag end |
#name ⇒ String
group. This name can be used to access the resource.
27 28 29 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_ipconfiguration.rb', line 27 def name @name end |
#provisioning_state ⇒ String
resource. Possible values are: ‘Updating’, ‘Deleting’, and ‘Failed’.
23 24 25 |
# File 'lib/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.
19 20 21 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_ipconfiguration.rb', line 19 def subnet @subnet end |
#type ⇒ String
Returns Type of the resource.
34 35 36 |
# File 'lib/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 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_ipconfiguration.rb', line 41 def self.mapper() { required: false, serialized_name: 'ApplicationGatewayIPConfiguration', type: { name: 'Composite', class_name: 'ApplicationGatewayIPConfiguration', model_properties: { id: { required: false, serialized_name: 'id', type: { name: 'String' } }, subnet: { required: false, serialized_name: 'properties.subnet', type: { name: 'Composite', class_name: 'SubResource' } }, provisioning_state: { required: false, serialized_name: 'properties.provisioningState', type: { name: 'String' } }, name: { required: false, serialized_name: 'name', type: { name: 'String' } }, etag: { required: false, serialized_name: 'etag', type: { name: 'String' } }, type: { required: false, serialized_name: 'type', type: { name: 'String' } } } } } end |