class Azure::ServiceFabric::V6_2_0_9::Models::AadMetadata
Azure
Active Directory metadata used for secured connection to cluster.
Attributes
client[RW]
@return [String] The AAD client application Id.
cluster[RW]
@return [String] The AAD cluster application Id.
login[RW]
@return [String] The AAD login url.
redirect[RW]
@return [String] The client application redirect address.
tenant[RW]
@return [String] The AAD tenant Id.
Public Class Methods
mapper()
click to toggle source
Mapper for AadMetadata
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/6.2.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