class Azure::ServiceFabric::Mgmt::V2018_02_01::Models::AzureActiveDirectory

The settings to enable AAD authentication on the cluster.

Attributes

client_application[RW]

@return [String] Azure active directory client application id.

cluster_application[RW]

@return [String] Azure active directory cluster application id.

tenant_id[RW]

@return [String] Azure active directory tenant id.

Private Class Methods

mapper() click to toggle source

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

# 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