class Azure::Cosmosdb::Mgmt::V2020_04_01::Models::PrivateLinkServiceConnectionStateProperty

Connection State of the Private Endpoint Connection.

Attributes

actions_required[RW]

@return [String] Any action that is required beyond basic workflow (approve/ reject/ disconnect)

status[RW]

@return [String] The private link service connection status.

Public Class Methods

mapper() click to toggle source

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

# File lib/2020-04-01/generated/azure_mgmt_cosmosdb/models/private_link_service_connection_state_property.rb, line 28
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'PrivateLinkServiceConnectionStateProperty',
    type: {
      name: 'Composite',
      class_name: 'PrivateLinkServiceConnectionStateProperty',
      model_properties: {
        status: {
          client_side_validation: true,
          required: false,
          serialized_name: 'status',
          type: {
            name: 'String'
          }
        },
        actions_required: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'actionsRequired',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end