class Azure::Compute::Mgmt::V2017_03_30::Models::VirtualMachineScaleSetIdentity
Identity for the virtual machine scale set.
Attributes
principal_id[RW]
@return [String] The principal id of virtual machine scale set identity.
tenant_id[RW]
@return [String] The tenant id associated with the virtual machine scale set.
type[RW]
@return [ResourceIdentityType] The type of identity used for the virtual machine scale set. Currently, the only supported type is 'SystemAssigned', which implicitly creates an identity. Possible values include: 'SystemAssigned'
Private Class Methods
mapper()
click to toggle source
Mapper for VirtualMachineScaleSetIdentity
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2017-03-30/generated/azure_mgmt_compute/models/virtual_machine_scale_set_identity.rb, line 34 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'VirtualMachineScaleSetIdentity', type: { name: 'Composite', class_name: 'VirtualMachineScaleSetIdentity', 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