class Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::UserIdentityProperties
The information about the user identity.
Attributes
client_id[RW]
@return [String] The client id of user assigned identity.
principal_id[RW]
@return [String] The principal id of user assigned identity.
Public Class Methods
mapper()
click to toggle source
Mapper for UserIdentityProperties
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2020-04-01-preview/generated/azure_mgmt_event_grid/models/user_identity_properties.rb, line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'UserIdentityProperties', type: { name: 'Composite', class_name: 'UserIdentityProperties', model_properties: { principal_id: { client_side_validation: true, required: false, serialized_name: 'principalId', type: { name: 'String' } }, client_id: { client_side_validation: true, required: false, serialized_name: 'clientId', type: { name: 'String' } } } } } end