Sha256: ef8806f2cd69256c22cf4714735946a5d8159d26a764a73f3599c20eb8bbf923
Contents?: true
Size: 1.88 KB
Versions: 18
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_11_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
18 entries across 18 versions & 1 rubygems