class Azure::Web::Mgmt::V2016_03_01::Models::ManagedServiceIdentity

Managed service identity.

Attributes

principal_id[RW]

@return [String] Principal Id of managed service identity.

tenant_id[RW]

@return [String] Tenant of managed service identity.

type[RW]

@return [ManagedServiceIdentityType] Type of managed service identity. Possible values include: 'SystemAssigned'

Public Class Methods

mapper() click to toggle source

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

# File lib/2016-03-01/generated/azure_mgmt_web/models/managed_service_identity.rb, line 30
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ManagedServiceIdentity',
    type: {
      name: 'Composite',
      class_name: 'ManagedServiceIdentity',
      model_properties: {
        type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        tenant_id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'tenantId',
          type: {
            name: 'String'
          }
        },
        principal_id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'principalId',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end