Sha256: 1214613a14c7d90e3d36bc811e37536998e9ddf263b709724ea5207c5d3687c4
Contents?: true
Size: 1.58 KB
Versions: 1
Compression:
Stored size: 1.58 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::ARM::Graph module Models # # Specifies an OAuth 2.0 permission scope or an app role that an # application requires. The resourceAccess property of the # RequiredResourceAccess type is a collection of ResourceAccess. # class ResourceAccess include MsRestAzure # @return [String] The unique identifier for one of the OAuth2Permission # or AppRole instances that the resource application exposes. attr_accessor :id # @return [String] Specifies whether the id property references an # OAuth2Permission or an AppRole. Possible values are "scope" or "role". attr_accessor :type # # Mapper for ResourceAccess class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'ResourceAccess', type: { name: 'Composite', class_name: 'ResourceAccess', model_properties: { id: { required: true, serialized_name: 'id', type: { name: 'String' } }, type: { required: false, serialized_name: 'type', type: { name: 'String' } } } } } end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
azure_mgmt_graph-0.14.0 | lib/generated/azure_mgmt_graph/models/resource_access.rb |