Sha256: 1e9ca4e2885a3a7418170a1707b339b1bae445f9c2c8463570311ec36acd624c
Contents?: true
Size: 1.88 KB
Versions: 28
Compression:
Stored size: 1.88 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::Storage::Mgmt::V2018_02_01 module Models # # Identity for the resource. # class Identity include MsRestAzure # @return [String] The principal ID of resource identity. attr_accessor :principal_id # @return [String] The tenant ID of resource. attr_accessor :tenant_id # @return [String] The identity type. Default value: 'SystemAssigned' . attr_accessor :type # # Mapper for Identity class as Ruby Hash. # This will be used for serialization/deserialization. # 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, 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: true, is_constant: true, serialized_name: 'type', default_value: 'SystemAssigned', type: { name: 'String' } } } } } end end end end
Version data entries
28 entries across 28 versions & 1 rubygems