class Azure::DevTestLabs::Mgmt::V2016_05_15::Models::IdentityProperties

Properties of a managed identity

Attributes

client_secret_url[RW]

@return [String] The client secret URL of the identity.

principal_id[RW]

@return [String] The principal id of resource identity.

tenant_id[RW]

@return [String] The tenant identifier of resource.

type[RW]

@return [String] Managed identity.

Public Class Methods

mapper() click to toggle source

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

# File lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/identity_properties.rb, line 32
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'IdentityProperties',
    type: {
      name: 'Composite',
      class_name: 'IdentityProperties',
      model_properties: {
        type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        principal_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'principalId',
          type: {
            name: 'String'
          }
        },
        tenant_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'tenantId',
          type: {
            name: 'String'
          }
        },
        client_secret_url: {
          client_side_validation: true,
          required: false,
          serialized_name: 'clientSecretUrl',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end