Class: Azure::OperationsManagement::Profiles::Latest::Mgmt::OperationsManagementManagementClass
- Inherits:
-
Object
- Object
- Azure::OperationsManagement::Profiles::Latest::Mgmt::OperationsManagementManagementClass
- Defined in:
- lib/profiles/latest/modules/operationsmanagement_profile_module.rb
Overview
OperationsManagementManagementClass
Direct Known Subclasses
Instance Attribute Summary collapse
-
#base_url ⇒ Object
readonly
Returns the value of attribute base_url.
-
#configurable ⇒ Object
readonly
Returns the value of attribute configurable.
-
#management_associations ⇒ Object
readonly
Returns the value of attribute management_associations.
-
#management_configurations ⇒ Object
readonly
Returns the value of attribute management_configurations.
-
#model_classes ⇒ Object
readonly
Returns the value of attribute model_classes.
-
#operations ⇒ Object
readonly
Returns the value of attribute operations.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#solutions ⇒ Object
readonly
Returns the value of attribute solutions.
Instance Method Summary collapse
- #add_telemetry(client) ⇒ Object
-
#initialize(options = {}) ⇒ OperationsManagementManagementClass
constructor
A new instance of OperationsManagementManagementClass.
- #method_missing(method, *args) ⇒ Object
Constructor Details
#initialize(options = {}) ⇒ OperationsManagementManagementClass
Returns a new instance of OperationsManagementManagementClass.
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 |
# File 'lib/profiles/latest/modules/operationsmanagement_profile_module.rb', line 40 def initialize( = {}) if .is_a?(Hash) && .length == 0 @options = else @options = end reset!() @configurable = self @base_url = [:base_url].nil? ? nil:[:base_url] @options = [:options].nil? ? nil:[:options] @client_0 = Azure::OperationsManagement::Mgmt::V2015_11_01_preview::OperationsManagementClient.new(configurable.credentials, base_url, ) if(@client_0.respond_to?(:subscription_id)) @client_0.subscription_id = configurable.subscription_id end add_telemetry(@client_0) @solutions = @client_0.solutions @management_associations = @client_0.management_associations @management_configurations = @client_0.management_configurations @operations = @client_0.operations @model_classes = ModelClasses.new end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method, *args) ⇒ Object
71 72 73 74 75 76 77 |
# File 'lib/profiles/latest/modules/operationsmanagement_profile_module.rb', line 71 def method_missing(method, *args) if @client_0.respond_to?method @client_0.send(method, *args) else super end end |
Instance Attribute Details
#base_url ⇒ Object (readonly)
Returns the value of attribute base_url.
38 39 40 |
# File 'lib/profiles/latest/modules/operationsmanagement_profile_module.rb', line 38 def base_url @base_url end |
#configurable ⇒ Object (readonly)
Returns the value of attribute configurable.
38 39 40 |
# File 'lib/profiles/latest/modules/operationsmanagement_profile_module.rb', line 38 def configurable @configurable end |
#management_associations ⇒ Object (readonly)
Returns the value of attribute management_associations.
38 39 40 |
# File 'lib/profiles/latest/modules/operationsmanagement_profile_module.rb', line 38 def management_associations @management_associations end |
#management_configurations ⇒ Object (readonly)
Returns the value of attribute management_configurations.
38 39 40 |
# File 'lib/profiles/latest/modules/operationsmanagement_profile_module.rb', line 38 def management_configurations @management_configurations end |
#model_classes ⇒ Object (readonly)
Returns the value of attribute model_classes.
38 39 40 |
# File 'lib/profiles/latest/modules/operationsmanagement_profile_module.rb', line 38 def model_classes @model_classes end |
#operations ⇒ Object (readonly)
Returns the value of attribute operations.
38 39 40 |
# File 'lib/profiles/latest/modules/operationsmanagement_profile_module.rb', line 38 def operations @operations end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
38 39 40 |
# File 'lib/profiles/latest/modules/operationsmanagement_profile_module.rb', line 38 def @options end |
#solutions ⇒ Object (readonly)
Returns the value of attribute solutions.
38 39 40 |
# File 'lib/profiles/latest/modules/operationsmanagement_profile_module.rb', line 38 def solutions @solutions end |
Instance Method Details
#add_telemetry(client) ⇒ Object
66 67 68 69 |
# File 'lib/profiles/latest/modules/operationsmanagement_profile_module.rb', line 66 def add_telemetry(client) profile_information = 'Profiles/Latest/OperationsManagement/Mgmt' client.add_user_agent_information(profile_information) end |