class Azure::Cosmosdb::Mgmt::V2021_01_15::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)

description[RW]

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

status[RW]

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

Private Class Methods

mapper() click to toggle source

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

# File lib/2021-01-15/generated/azure_mgmt_cosmosdb/models/private_link_service_connection_state_property.rb, line 31
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'
          }
        },
        description: {
          client_side_validation: true,
          required: false,
          serialized_name: 'description',
          type: {
            name: 'String'
          }
        },
        actions_required: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'actionsRequired',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end