Class: Azure::ServiceFabric::V6_5_0_36::Models::ManagedApplicationIdentityDescription

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/6.5.0.36/generated/azure_service_fabric/models/managed_application_identity_description.rb

Overview

Managed application identity description.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#managed_identitiesArray<ManagedApplicationIdentity>

application identity objects.

Returns:



20
21
22
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/managed_application_identity_description.rb', line 20

def managed_identities
  @managed_identities
end

#token_service_endpointString

Returns Token service endpoint.

Returns:

  • (String)

    Token service endpoint.



16
17
18
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/managed_application_identity_description.rb', line 16

def token_service_endpoint
  @token_service_endpoint
end

Class Method Details

.mapperObject

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



27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# 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