class Azure::Appconfiguration::Mgmt::V2019_11_01_preview::Models::UserIdentity
A resource identity that is managed by the user of the service.
Attributes
client_id[RW]
@return [String] The client ID of the user-assigned identity.
principal_id[RW]
@return [String] The principal ID of the user-assigned identity.
Public Class Methods
mapper()
click to toggle source
Mapper for UserIdentity
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-11-01-preview/generated/azure_mgmt_appconfiguration/models/user_identity.rb, line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'UserIdentity', type: { name: 'Composite', class_name: 'UserIdentity', model_properties: { principal_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'principalId', type: { name: 'String' } }, client_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'clientId', type: { name: 'String' } } } } } end