Class: Azure::GraphRbac::V1_6::Models::ApplicationAddOwnerParameters
- Inherits:
-
Object
- Object
- Azure::GraphRbac::V1_6::Models::ApplicationAddOwnerParameters
- Includes:
- MsRestAzure
- Defined in:
- lib/1.6/generated/azure_graph_rbac/models/application_add_owner_parameters.rb
Overview
Request parameters for adding a owner to an application.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
collection.
-
#url ⇒ String
“graph.windows.net/0b1f9851-1bf0-433f-aec3-cb9272f093dc/directoryObjects/f260bbc4-c254-447b-94cf-293b5ec434dd”, where “0b1f9851-1bf0-433f-aec3-cb9272f093dc” is the tenantId and “f260bbc4-c254-447b-94cf-293b5ec434dd” is the objectId of the owner (user, application, servicePrincipal, group) to be added.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ApplicationAddOwnerParameters class as Ruby Hash.
Instance Attribute Details
#additional_properties ⇒ Object
collection
17 18 19 |
# File 'lib/1.6/generated/azure_graph_rbac/models/application_add_owner_parameters.rb', line 17 def additional_properties @additional_properties end |
#url ⇒ String
“graph.windows.net/0b1f9851-1bf0-433f-aec3-cb9272f093dc/directoryObjects/f260bbc4-c254-447b-94cf-293b5ec434dd”, where “0b1f9851-1bf0-433f-aec3-cb9272f093dc” is the tenantId and “f260bbc4-c254-447b-94cf-293b5ec434dd” is the objectId of the owner (user, application, servicePrincipal, group) to be added.
24 25 26 |
# File 'lib/1.6/generated/azure_graph_rbac/models/application_add_owner_parameters.rb', line 24 def url @url end |
Class Method Details
.mapper ⇒ Object
Mapper for ApplicationAddOwnerParameters class as Ruby Hash. This will be used for serialization/deserialization.
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/1.6/generated/azure_graph_rbac/models/application_add_owner_parameters.rb', line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApplicationAddOwnerParameters', type: { name: 'Composite', class_name: 'ApplicationAddOwnerParameters', model_properties: { additional_properties: { client_side_validation: true, required: false, type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'ObjectElementType', type: { name: 'Object' } } } }, url: { client_side_validation: true, required: true, serialized_name: 'url', type: { name: 'String' } } } } } end |