class Azure::EventHub::Mgmt::V2018_01_01_preview::Models::Identity
Properties to configure Identity
for Bring your Own Keys
Attributes
principal_id[RW]
@return [String] ObjectId from the KeyVault
tenant_id[RW]
@return [String] TenantId from the KeyVault
type[RW]
@return [IdentityType] Enumerates the possible value Identity
type, which currently supports only 'SystemAssigned'. Possible values include: 'SystemAssigned'. Default value: 'SystemAssigned' .
Private Class Methods
mapper()
click to toggle source
Mapper for Identity
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-01-01-preview/generated/azure_mgmt_event_hub/models/identity.rb, line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Identity', type: { name: 'Composite', class_name: 'Identity', model_properties: { principal_id: { client_side_validation: true, required: false, serialized_name: 'principalId', type: { name: 'String' } }, tenant_id: { client_side_validation: true, required: false, serialized_name: 'tenantId', type: { name: 'String' } }, type: { client_side_validation: true, required: false, serialized_name: 'type', default_value: 'SystemAssigned', type: { name: 'Enum', module: 'IdentityType' } } } } } end