Class: Azure::Network::Mgmt::V2020_06_01::Models::ApplicationGatewayPrivateLinkConfiguration
- Inherits:
-
SubResource
- Object
- SubResource
- Azure::Network::Mgmt::V2020_06_01::Models::ApplicationGatewayPrivateLinkConfiguration
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-06-01/generated/azure_mgmt_network/models/application_gateway_private_link_configuration.rb
Overview
Private Link Configuration on an application gateway.
Instance Attribute Summary collapse
-
#etag ⇒ String
resource is updated.
-
#ip_configurations ⇒ Array<ApplicationGatewayPrivateLinkIpConfiguration>
of application gateway private link ip configurations.
-
#name ⇒ String
within an Application Gateway.
-
#provisioning_state ⇒ ProvisioningState
gateway private link configuration.
-
#type ⇒ String
Type of the resource.
Attributes inherited from SubResource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ApplicationGatewayPrivateLinkConfiguration class as Ruby Hash.
Instance Attribute Details
#etag ⇒ String
resource is updated.
30 31 32 |
# File 'lib/2020-06-01/generated/azure_mgmt_network/models/application_gateway_private_link_configuration.rb', line 30 def etag @etag end |
#ip_configurations ⇒ Array<ApplicationGatewayPrivateLinkIpConfiguration>
of application gateway private link ip configurations.
17 18 19 |
# File 'lib/2020-06-01/generated/azure_mgmt_network/models/application_gateway_private_link_configuration.rb', line 17 def ip_configurations @ip_configurations end |
#name ⇒ String
within an Application Gateway.
26 27 28 |
# File 'lib/2020-06-01/generated/azure_mgmt_network/models/application_gateway_private_link_configuration.rb', line 26 def name @name end |
#provisioning_state ⇒ ProvisioningState
gateway private link configuration. Possible values include: ‘Succeeded’, ‘Updating’, ‘Deleting’, ‘Failed’
22 23 24 |
# File 'lib/2020-06-01/generated/azure_mgmt_network/models/application_gateway_private_link_configuration.rb', line 22 def provisioning_state @provisioning_state end |
#type ⇒ String
Returns Type of the resource.
33 34 35 |
# File 'lib/2020-06-01/generated/azure_mgmt_network/models/application_gateway_private_link_configuration.rb', line 33 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for ApplicationGatewayPrivateLinkConfiguration 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 106 107 108 109 110 111 112 113 |
# File 'lib/2020-06-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 |