Class: Azure::Profiles::Latest::Hdinsight::Mgmt::HdinsightManagementClass

Inherits:
Object
  • Object
show all
Defined in:
lib/latest/modules/hdinsight_profile_module.rb

Defined Under Namespace

Classes: ModelClasses

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(configurable, base_url = nil, options = nil) ⇒ HdinsightManagementClass

Returns a new instance of HdinsightManagementClass.



127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# File 'lib/latest/modules/hdinsight_profile_module.rb', line 127

def initialize(configurable, base_url=nil, options=nil)
  @configurable, @base_url, @options = configurable, base_url, options

  @client_0 = Azure::Hdinsight::Mgmt::V2018_06_01_preview::HDInsightManagementClient.new(configurable.credentials, base_url, options)
  if(@client_0.respond_to?(:subscription_id))
    @client_0.subscription_id = configurable.subscription_id
  end
  add_telemetry(@client_0)
  @clusters = @client_0.clusters
  @applications = @client_0.applications
  @locations = @client_0.locations
  @configurations = @client_0.configurations
  @extensions = @client_0.extensions
  @script_actions = @client_0.script_actions
  @script_execution_history = @client_0.script_execution_history
  @operations = @client_0.operations
  @virtual_machines = @client_0.virtual_machines

  @model_classes = ModelClasses.new
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method, *args) ⇒ Object



153
154
155
156
157
158
159
# File 'lib/latest/modules/hdinsight_profile_module.rb', line 153

def method_missing(method, *args)
  if @client_0.respond_to?method
    @client_0.send(method, *args)
  else
    super
  end
end

Instance Attribute Details

#applicationsObject (readonly)

Returns the value of attribute applications.



125
126
127
# File 'lib/latest/modules/hdinsight_profile_module.rb', line 125

def applications
  @applications
end

#base_urlObject (readonly)

Returns the value of attribute base_url.



125
126
127
# File 'lib/latest/modules/hdinsight_profile_module.rb', line 125

def base_url
  @base_url
end

#clustersObject (readonly)

Returns the value of attribute clusters.



125
126
127
# File 'lib/latest/modules/hdinsight_profile_module.rb', line 125

def clusters
  @clusters
end

#configurableObject (readonly)

Returns the value of attribute configurable.



125
126
127
# File 'lib/latest/modules/hdinsight_profile_module.rb', line 125

def configurable
  @configurable
end

#configurationsObject (readonly)

Returns the value of attribute configurations.



125
126
127
# File 'lib/latest/modules/hdinsight_profile_module.rb', line 125

def configurations
  @configurations
end

#extensionsObject (readonly)

Returns the value of attribute extensions.



125
126
127
# File 'lib/latest/modules/hdinsight_profile_module.rb', line 125

def extensions
  @extensions
end

#locationsObject (readonly)

Returns the value of attribute locations.



125
126
127
# File 'lib/latest/modules/hdinsight_profile_module.rb', line 125

def locations
  @locations
end

#model_classesObject (readonly)

Returns the value of attribute model_classes.



125
126
127
# File 'lib/latest/modules/hdinsight_profile_module.rb', line 125

def model_classes
  @model_classes
end

#operationsObject (readonly)

Returns the value of attribute operations.



125
126
127
# File 'lib/latest/modules/hdinsight_profile_module.rb', line 125

def operations
  @operations
end

#optionsObject (readonly)

Returns the value of attribute options.



125
126
127
# File 'lib/latest/modules/hdinsight_profile_module.rb', line 125

def options
  @options
end

#script_actionsObject (readonly)

Returns the value of attribute script_actions.



125
126
127
# File 'lib/latest/modules/hdinsight_profile_module.rb', line 125

def script_actions
  @script_actions
end

#script_execution_historyObject (readonly)

Returns the value of attribute script_execution_history.



125
126
127
# File 'lib/latest/modules/hdinsight_profile_module.rb', line 125

def script_execution_history
  @script_execution_history
end

#virtual_machinesObject (readonly)

Returns the value of attribute virtual_machines.



125
126
127
# File 'lib/latest/modules/hdinsight_profile_module.rb', line 125

def virtual_machines
  @virtual_machines
end

Instance Method Details

#add_telemetry(client) ⇒ Object



148
149
150
151
# File 'lib/latest/modules/hdinsight_profile_module.rb', line 148

def add_telemetry(client)
  profile_information = "Profiles/azure_sdk/#{Azure::VERSION}/Latest/Hdinsight/Mgmt"
  client.add_user_agent_information(profile_information)
end