class Azure::ServiceFabric::V6_5_0_36::Models::ManagedApplicationIdentity

Describes a managed application identity.

Attributes

name[RW]

@return [String] The name of the identity.

principal_id[RW]

@return [String] The identity's PrincipalId.

Public Class Methods

mapper() click to toggle source

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

# File lib/6.5.0.36/generated/azure_service_fabric/models/managed_application_identity.rb, line 26
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ManagedApplicationIdentity',
    type: {
      name: 'Composite',
      class_name: 'ManagedApplicationIdentity',
      model_properties: {
        name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'Name',
          type: {
            name: 'String'
          }
        },
        principal_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'PrincipalId',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end