class Azure::Network::Mgmt::V2019_06_01::Models::PrivateEndpointConnection
PrivateEndpointConnection resource.
Attributes
name[RW]
@return [String] The name of the resource that is unique within a resource group. This name can be used to access the resource.
private_endpoint[RW]
@return [PrivateEndpoint] The resource of private end point.
private_link_service_connection_state[RW]
@return [PrivateLinkServiceConnectionState] A collection of information about the state of the connection between service consumer and provider.
Private Class Methods
mapper()
click to toggle source
Mapper for PrivateEndpointConnection class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-06-01/generated/azure_mgmt_network/models/private_endpoint_connection.rb, line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'PrivateEndpointConnection', type: { name: 'Composite', class_name: 'PrivateEndpointConnection', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', type: { name: 'String' } }, private_endpoint: { client_side_validation: true, required: false, 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' } }, name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } } } } } end