Class: Azure::ServiceFabric::Mgmt::V2018_02_01::Models::AzureActiveDirectory

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-02-01/generated/azure_mgmt_service_fabric/models/azure_active_directory.rb

Overview

The settings to enable AAD authentication on the cluster.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#client_applicationString

Returns Azure active directory client application id.

Returns:

  • (String)

    Azure active directory client application id.



22
23
24
# File 'lib/2018-02-01/generated/azure_mgmt_service_fabric/models/azure_active_directory.rb', line 22

def client_application
  @client_application
end

#cluster_applicationString

Returns Azure active directory cluster application id.

Returns:

  • (String)

    Azure active directory cluster application id.



19
20
21
# File 'lib/2018-02-01/generated/azure_mgmt_service_fabric/models/azure_active_directory.rb', line 19

def cluster_application
  @cluster_application
end

#tenant_idString

Returns Azure active directory tenant id.

Returns:

  • (String)

    Azure active directory tenant id.



16
17
18
# File 'lib/2018-02-01/generated/azure_mgmt_service_fabric/models/azure_active_directory.rb', line 16

def tenant_id
  @tenant_id
end

Class Method Details

.mapperObject

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



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
65
# File 'lib/2018-02-01/generated/azure_mgmt_service_fabric/models/azure_active_directory.rb', line 29

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'AzureActiveDirectory',
    type: {
      name: 'Composite',
      class_name: 'AzureActiveDirectory',
      model_properties: {
        tenant_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'tenantId',
          type: {
            name: 'String'
          }
        },
        cluster_application: {
          client_side_validation: true,
          required: false,
          serialized_name: 'clusterApplication',
          type: {
            name: 'String'
          }
        },
        client_application: {
          client_side_validation: true,
          required: false,
          serialized_name: 'clientApplication',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end