class Azure::ContainerService::Mgmt::V2018_09_30_preview::Models::OpenShiftManagedClusterAADIdentityProvider
Defines the Identity provider for MS AAD.
Attributes
client_id[RW]
@return [String] The clientId password associated with the provider.
customer_admin_group_id[RW]
@return [String] The groupId to be granted cluster admin role.
kind[RW]
secret[RW]
@return [String] The secret password associated with the provider.
tenant_id[RW]
@return [String] The tenantId associated with the provider.
Public Class Methods
mapper()
click to toggle source
Mapper for OpenShiftManagedClusterAADIdentityProvider
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-09-30-preview/generated/azure_mgmt_container_service/models/open_shift_managed_cluster_aadidentity_provider.rb, line 40 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AADIdentityProvider', type: { name: 'Composite', class_name: 'OpenShiftManagedClusterAADIdentityProvider', model_properties: { kind: { client_side_validation: true, required: true, serialized_name: 'kind', type: { name: 'String' } }, client_id: { client_side_validation: true, required: false, serialized_name: 'clientId', type: { name: 'String' } }, secret: { client_side_validation: true, required: false, serialized_name: 'secret', type: { name: 'String' } }, tenant_id: { client_side_validation: true, required: false, serialized_name: 'tenantId', type: { name: 'String' } }, customer_admin_group_id: { client_side_validation: true, required: false, serialized_name: 'customerAdminGroupId', type: { name: 'String' } } } } } end
new()
click to toggle source
# File lib/2018-09-30-preview/generated/azure_mgmt_container_service/models/open_shift_managed_cluster_aadidentity_provider.rb, line 16 def initialize @kind = "AADIdentityProvider" end