class Azure::ContainerService::Mgmt::V2020_02_01::Models::ManagedClusterIdentity
Identity for the managed cluster.
Attributes
principal_id[RW]
@return [String] The principal id of the system assigned identity which is used by master components.
tenant_id[RW]
@return [String] The tenant id of the system assigned identity which is used by master components.
type[RW]
@return [ResourceIdentityType] The type of identity used for the managed cluster. Type 'SystemAssigned' will use an implicitly created identity in master components and an auto-created user assigned identity in MC_ resource group in agent nodes. Type 'None' will not use MSI for the managed cluster, service principal will be used instead. Possible values include: 'SystemAssigned', 'None'
Public Class Methods
mapper()
click to toggle source
Mapper for ManagedClusterIdentity
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2020-02-01/generated/azure_mgmt_container_service/models/managed_cluster_identity.rb, line 36 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ManagedClusterIdentity', type: { name: 'Composite', class_name: 'ManagedClusterIdentity', model_properties: { principal_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'principalId', type: { name: 'String' } }, tenant_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'tenantId', type: { name: 'String' } }, type: { client_side_validation: true, required: false, serialized_name: 'type', type: { name: 'Enum', module: 'ResourceIdentityType' } } } } } end