Class: Azure::Graph::Profiles::Latest::Mgmt::GraphClass
- Inherits:
-
Object
- Object
- Azure::Graph::Profiles::Latest::Mgmt::GraphClass
- Defined in:
- lib/profiles/latest/modules/graph_profile_module.rb
Overview
Graph
Direct Known Subclasses
Defined Under Namespace
Classes: ModelClasses
Instance Attribute Summary collapse
-
#applications ⇒ Object
readonly
Returns the value of attribute applications.
-
#base_url ⇒ Object
readonly
Returns the value of attribute base_url.
-
#configurable ⇒ Object
readonly
Returns the value of attribute configurable.
-
#domains ⇒ Object
readonly
Returns the value of attribute domains.
-
#groups ⇒ Object
readonly
Returns the value of attribute groups.
-
#model_classes ⇒ Object
readonly
Returns the value of attribute model_classes.
-
#objects ⇒ Object
readonly
Returns the value of attribute objects.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#service_principals ⇒ Object
readonly
Returns the value of attribute service_principals.
-
#users ⇒ Object
readonly
Returns the value of attribute users.
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ GraphClass
constructor
A new instance of GraphClass.
Constructor Details
#initialize(options = {}) ⇒ GraphClass
Returns a new instance of GraphClass.
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/profiles/latest/modules/graph_profile_module.rb', line 63 def initialize( = {}) if .is_a?(Hash) && .length == 0 = else = end reset!() @configurable, @base_url, = self, nil, nil client_0 = Azure::Graph::Mgmt::V1_6::GraphRbacManagementClient.new(configurable.credentials, base_url, ) if(client_0.respond_to?(:subscription_id)) client_0.subscription_id = configurable.subscription_id end @objects = client_0.objects @applications = client_0.applications @groups = client_0.groups @service_principals = client_0.service_principals @users = client_0.users @domains = client_0.domains @model_classes = ModelClasses.new end |
Instance Attribute Details
#applications ⇒ Object (readonly)
Returns the value of attribute applications.
61 62 63 |
# File 'lib/profiles/latest/modules/graph_profile_module.rb', line 61 def applications @applications end |
#base_url ⇒ Object (readonly)
Returns the value of attribute base_url.
61 62 63 |
# File 'lib/profiles/latest/modules/graph_profile_module.rb', line 61 def base_url @base_url end |
#configurable ⇒ Object (readonly)
Returns the value of attribute configurable.
61 62 63 |
# File 'lib/profiles/latest/modules/graph_profile_module.rb', line 61 def configurable @configurable end |
#domains ⇒ Object (readonly)
Returns the value of attribute domains.
61 62 63 |
# File 'lib/profiles/latest/modules/graph_profile_module.rb', line 61 def domains @domains end |
#groups ⇒ Object (readonly)
Returns the value of attribute groups.
61 62 63 |
# File 'lib/profiles/latest/modules/graph_profile_module.rb', line 61 def groups @groups end |
#model_classes ⇒ Object (readonly)
Returns the value of attribute model_classes.
61 62 63 |
# File 'lib/profiles/latest/modules/graph_profile_module.rb', line 61 def model_classes @model_classes end |
#objects ⇒ Object (readonly)
Returns the value of attribute objects.
61 62 63 |
# File 'lib/profiles/latest/modules/graph_profile_module.rb', line 61 def objects @objects end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
61 62 63 |
# File 'lib/profiles/latest/modules/graph_profile_module.rb', line 61 def end |
#service_principals ⇒ Object (readonly)
Returns the value of attribute service_principals.
61 62 63 |
# File 'lib/profiles/latest/modules/graph_profile_module.rb', line 61 def service_principals @service_principals end |
#users ⇒ Object (readonly)
Returns the value of attribute users.
61 62 63 |
# File 'lib/profiles/latest/modules/graph_profile_module.rb', line 61 def users @users end |