class Azure::Signalr::Mgmt::V2020_05_01::Models::PrivateLinkServiceConnectionState

Connection state of the private endpoint connection

Attributes

actions_required[RW]

@return [String] A message indicating if changes on the service provider require any updates on the consumer.

description[RW]

@return [String] The reason for approval/rejection of the connection.

status[RW]

@return [PrivateLinkServiceConnectionStatus] Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service. Possible values include: 'Pending', 'Approved', 'Rejected', 'Disconnected'

Private Class Methods

mapper() click to toggle source

Mapper for PrivateLinkServiceConnectionState class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2020-05-01/generated/azure_mgmt_signalr/models/private_link_service_connection_state.rb, line 33
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'PrivateLinkServiceConnectionState',
    type: {
      name: 'Composite',
      class_name: 'PrivateLinkServiceConnectionState',
      model_properties: {
        status: {
          client_side_validation: true,
          required: false,
          serialized_name: 'status',
          type: {
            name: 'String'
          }
        },
        description: {
          client_side_validation: true,
          required: false,
          serialized_name: 'description',
          type: {
            name: 'String'
          }
        },
        actions_required: {
          client_side_validation: true,
          required: false,
          serialized_name: 'actionsRequired',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end