class Azure::Compute::Mgmt::V2020_09_30::Models::PrivateEndpointConnection
The Private Endpoint Connection resource.
Attributes
id[RW]
@return [String] private endpoint connection Id
name[RW]
@return [String] private endpoint connection name
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 DiskAccess
and Virtual Network.
provisioning_state[RW]
@return [PrivateEndpointConnectionProvisioningState] The provisioning state of the private endpoint connection resource. Possible values include: 'Succeeded', 'Creating', 'Deleting', 'Failed'
type[RW]
@return [String] private endpoint connection type
Private Class Methods
mapper()
click to toggle source
Mapper for PrivateEndpointConnection
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2020-09-30/generated/azure_mgmt_compute/models/private_endpoint_connection.rb, line 42 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'PrivateEndpointConnection', type: { name: 'Composite', class_name: 'PrivateEndpointConnection', model_properties: { 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: true, serialized_name: 'properties.privateLinkServiceConnectionState', type: { name: 'Composite', class_name: 'PrivateLinkServiceConnectionState' } }, provisioning_state: { client_side_validation: true, required: false, serialized_name: 'properties.provisioningState', type: { name: 'String' } }, id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } } } } } end