class Azure::Synapse::Mgmt::V2019_06_01_preview::Models::PrivateEndpointConnectionForPrivateLinkHubBasic
Private Endpoint Connection For Private Link Hub - Basic
Attributes
id[RW]
@return [String] identifier
private_endpoint[RW]
@return [PrivateEndpoint] The private endpoint which the connection belongs to.
private_link_service_connection_state[RW]
@return [PrivateLinkServiceConnectionState] Connection state of the private endpoint connection.
provisioning_state[RW]
@return [String] Provisioning state of the private endpoint connection.
Private Class Methods
mapper()
click to toggle source
Mapper for PrivateEndpointConnectionForPrivateLinkHubBasic
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/private_endpoint_connection_for_private_link_hub_basic.rb, line 35 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'PrivateEndpointConnectionForPrivateLinkHubBasic', type: { name: 'Composite', class_name: 'PrivateEndpointConnectionForPrivateLinkHubBasic', model_properties: { id: { client_side_validation: true, required: false, read_only: true, 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' } }, provisioning_state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.provisioningState', type: { name: 'String' } } } } } end