class Azure::EventGrid::Mgmt::V2020_06_01::Models::PrivateEndpointConnection
Model object.
Attributes
group_ids[RW]
@return [Array<String>] GroupIds from the private link service resource.
private_endpoint[RW]
@return [PrivateEndpoint] The Private Endpoint resource for this Connection.
private_link_service_connection_state[RW]
@return [ConnectionState] Details about the state of the connection.
provisioning_state[RW]
@return [ResourceProvisioningState] Provisioning state of the Private Endpoint Connection. Possible values include: 'Creating', 'Updating', 'Deleting', 'Succeeded', 'Canceled', 'Failed'
Public Class Methods
mapper()
click to toggle source
Mapper for PrivateEndpointConnection
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2020-06-01/generated/azure_mgmt_event_grid/models/private_endpoint_connection.rb, line 37 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, 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' } }, private_endpoint: { client_side_validation: true, required: false, serialized_name: 'properties.privateEndpoint', type: { name: 'Composite', class_name: 'PrivateEndpoint' } }, group_ids: { client_side_validation: true, required: false, serialized_name: 'properties.groupIds', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, private_link_service_connection_state: { client_side_validation: true, required: false, serialized_name: 'properties.privateLinkServiceConnectionState', type: { name: 'Composite', class_name: 'ConnectionState' } }, provisioning_state: { client_side_validation: true, required: false, serialized_name: 'properties.provisioningState', type: { name: 'String' } } } } } end