class Azure::ServiceFabric::V6_5_0_36::Models::ManagedApplicationIdentityDescription

Managed application identity description.

Attributes

managed_identities[RW]

@return [Array<ManagedApplicationIdentity>] A list of managed application identity objects.

token_service_endpoint[RW]

@return [String] Token service endpoint.

Public Class Methods

mapper() click to toggle source

Mapper for ManagedApplicationIdentityDescription 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_description.rb, line 27
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ManagedApplicationIdentityDescription',
    type: {
      name: 'Composite',
      class_name: 'ManagedApplicationIdentityDescription',
      model_properties: {
        token_service_endpoint: {
          client_side_validation: true,
          required: false,
          serialized_name: 'TokenServiceEndpoint',
          type: {
            name: 'String'
          }
        },
        managed_identities: {
          client_side_validation: true,
          required: false,
          serialized_name: 'ManagedIdentities',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'ManagedApplicationIdentityElementType',
                type: {
                  name: 'Composite',
                  class_name: 'ManagedApplicationIdentity'
                }
            }
          }
        }
      }
    }
  }
end