Class: Azure::ServiceFabric::V6_3_0_9::Models::AadMetadata

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

Overview

Azure Active Directory metadata used for secured connection to cluster.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#authorityString

Returns The AAD authority url.

Returns:

  • (String)

    The AAD authority url.



16
17
18
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/aad_metadata.rb', line 16

def authority
  @authority
end

#clientString

Returns The AAD client application Id.

Returns:

  • (String)

    The AAD client application Id.



19
20
21
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/aad_metadata.rb', line 19

def client
  @client
end

#clusterString

Returns The AAD cluster application Id.

Returns:

  • (String)

    The AAD cluster application Id.



22
23
24
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/aad_metadata.rb', line 22

def cluster
  @cluster
end

#loginString

Returns The AAD login url.

Returns:

  • (String)

    The AAD login url.



25
26
27
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/aad_metadata.rb', line 25

def 
  @login
end

#redirectString

Returns The client application redirect address.

Returns:

  • (String)

    The client application redirect address.



28
29
30
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/aad_metadata.rb', line 28

def redirect
  @redirect
end

#tenantString

Returns The AAD tenant Id.

Returns:

  • (String)

    The AAD tenant Id.



31
32
33
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/aad_metadata.rb', line 31

def tenant
  @tenant
end

Class Method Details

.mapperObject

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



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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/aad_metadata.rb', line 38

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'AadMetadata',
    type: {
      name: 'Composite',
      class_name: 'AadMetadata',
      model_properties: {
        authority: {
          client_side_validation: true,
          required: false,
          serialized_name: 'authority',
          type: {
            name: 'String'
          }
        },
        client: {
          client_side_validation: true,
          required: false,
          serialized_name: 'client',
          type: {
            name: 'String'
          }
        },
        cluster: {
          client_side_validation: true,
          required: false,
          serialized_name: 'cluster',
          type: {
            name: 'String'
          }
        },
        login: {
          client_side_validation: true,
          required: false,
          serialized_name: 'login',
          type: {
            name: 'String'
          }
        },
        redirect: {
          client_side_validation: true,
          required: false,
          serialized_name: 'redirect',
          type: {
            name: 'String'
          }
        },
        tenant: {
          client_side_validation: true,
          required: false,
          serialized_name: 'tenant',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end