Class: Azure::Network::Mgmt::V2020_08_01::Models::ApplicationGatewayPrivateEndpointConnection
- Inherits:
-
SubResource
- Object
- SubResource
- Azure::Network::Mgmt::V2020_08_01::Models::ApplicationGatewayPrivateEndpointConnection
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-08-01/generated/azure_mgmt_network/models/application_gateway_private_endpoint_connection.rb
Overview
Private Endpoint connection on an application gateway.
Instance Attribute Summary collapse
-
#etag ⇒ String
resource is updated.
-
#link_identifier ⇒ String
The consumer link id.
-
#name ⇒ String
application gateway.
-
#private_endpoint ⇒ PrivateEndpoint
The resource of private end point.
-
#private_link_service_connection_state ⇒ PrivateLinkServiceConnectionState
about the state of the connection between service consumer and provider.
-
#provisioning_state ⇒ ProvisioningState
gateway private endpoint connection resource.
-
#type ⇒ String
Type of the resource.
Attributes inherited from SubResource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ApplicationGatewayPrivateEndpointConnection class as Ruby Hash.
Instance Attribute Details
#etag ⇒ String
resource is updated.
37 38 39 |
# File 'lib/2020-08-01/generated/azure_mgmt_network/models/application_gateway_private_endpoint_connection.rb', line 37 def etag @etag end |
#link_identifier ⇒ String
29 30 31 |
# File 'lib/2020-08-01/generated/azure_mgmt_network/models/application_gateway_private_endpoint_connection.rb', line 29 def link_identifier @link_identifier end |
#name ⇒ String
application gateway.
33 34 35 |
# File 'lib/2020-08-01/generated/azure_mgmt_network/models/application_gateway_private_endpoint_connection.rb', line 33 def name @name end |
#private_endpoint ⇒ PrivateEndpoint
16 17 18 |
# File 'lib/2020-08-01/generated/azure_mgmt_network/models/application_gateway_private_endpoint_connection.rb', line 16 def private_endpoint @private_endpoint end |
#private_link_service_connection_state ⇒ PrivateLinkServiceConnectionState
about the state of the connection between service consumer and provider.
21 22 23 |
# File 'lib/2020-08-01/generated/azure_mgmt_network/models/application_gateway_private_endpoint_connection.rb', line 21 def private_link_service_connection_state @private_link_service_connection_state end |
#provisioning_state ⇒ ProvisioningState
gateway private endpoint connection resource. Possible values include: ‘Succeeded’, ‘Updating’, ‘Deleting’, ‘Failed’
26 27 28 |
# File 'lib/2020-08-01/generated/azure_mgmt_network/models/application_gateway_private_endpoint_connection.rb', line 26 def provisioning_state @provisioning_state end |
#type ⇒ String
40 41 42 |
# File 'lib/2020-08-01/generated/azure_mgmt_network/models/application_gateway_private_endpoint_connection.rb', line 40 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for ApplicationGatewayPrivateEndpointConnection class as Ruby Hash. This will be used for serialization/deserialization.
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 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 |
# File 'lib/2020-08-01/generated/azure_mgmt_network/models/application_gateway_private_endpoint_connection.rb', line 48 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApplicationGatewayPrivateEndpointConnection', type: { name: 'Composite', class_name: 'ApplicationGatewayPrivateEndpointConnection', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', type: { name: 'String' } }, private_endpoint: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.privateEndpoint', type: { name: 'Composite', class_name: 'PrivateEndpoint' } }, private_link_service_connection_state: { client_side_validation: true, required: false, serialized_name: 'properties.privateLinkServiceConnectionState', type: { name: 'Composite', class_name: 'PrivateLinkServiceConnectionState' } }, provisioning_state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.provisioningState', type: { name: 'String' } }, link_identifier: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.linkIdentifier', 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 |