Class: Morpheus::APIClient

Inherits:
Object
  • Object
show all
Defined in:
lib/morpheus/api/api_client.rb

Direct Known Subclasses

AccountGroupsInterface, AccountsInterface, ActivityInterface, ApplianceSettingsInterface, ApprovalsInterface, AppsInterface, ArchiveBucketsInterface, ArchiveFilesInterface, AuthInterface, BackupSettingsInterface, BillingInterface, BlueprintsInterface, BudgetsInterface, CloudDatastoresInterface, CloudFoldersInterface, CloudPoliciesInterface, CloudResourcePoolsInterface, CloudsInterface, ClustersInterface, ContainersInterface, CustomInstanceTypesInterface, CypherInterface, DashboardInterface, DatastoresInterface, DeployInterface, DocInterface, EnvironmentsInterface, ExecuteSchedulesInterface, ExecutionRequestInterface, FileCopyRequestInterface, ForgotPasswordInterface, GroupPoliciesInterface, GroupsInterface, GuidanceInterface, HealthInterface, ImageBuilderBootScriptsInterface, ImageBuilderImageBuildsInterface, ImageBuilderInterface, ImageBuilderPreseedScriptsInterface, InstanceTypesInterface, InstancesInterface, InvoicesInterface, JobsInterface, KeyPairsInterface, LibraryClusterLayoutsInterface, LibraryContainerScriptsInterface, LibraryContainerTemplatesInterface, LibraryContainerTypesInterface, LibraryContainerUpgradesInterface, LibraryInstanceTypesInterface, LibraryLayoutsInterface, LibrarySpecTemplateTypesInterface, LibrarySpecTemplatesInterface, LicenseInterface, LoadBalancersInterface, LogSettingsInterface, LogsInterface, MonitoringAlertsInterface, MonitoringAppsInterface, MonitoringChecksInterface, MonitoringContactsInterface, MonitoringGroupsInterface, MonitoringIncidentsInterface, MonitoringInterface, NetworkDomainRecordsInterface, NetworkDomainsInterface, NetworkGroupsInterface, NetworkPoolIpsInterface, NetworkPoolServersInterface, NetworkPoolsInterface, NetworkProxiesInterface, NetworkRoutersInterface, NetworkSecurityServersInterface, NetworkServicesInterface, NetworkSubnetsInterface, NetworkTypesInterface, NetworksInterface, OptionTypeListsInterface, OptionTypesInterface, OptionsInterface, PackagesInterface, PingInterface, PoliciesInterface, PowerSchedulesInterface, PriceSetsInterface, PricesInterface, ProcessesInterface, ProjectsInterface, ProvisionTypesInterface, ProvisioningLicenseTypesInterface, ProvisioningLicensesInterface, ProvisioningSettingsInterface, ReadInterface, ReportsInterface, RestInterface, RolesInterface, SearchInterface, SecurityGroupRulesInterface, SecurityGroupsInterface, ServerTypesInterface, ServersInterface, ServiceCatalogInterface, ServicePlansInterface, SetupInterface, StorageProvidersInterface, SubnetTypesInterface, SubnetsInterface, TaskSetsInterface, TasksInterface, UsageInterface, UserGroupsInterface, UserSettingsInterface, UserSourcesInterface, UsersInterface, VdiInterface, VirtualImagesInterface, WhitelabelSettingsInterface, WhoamiInterface, WikiInterface

Constant Summary collapse

CLIENT_ID =
'morph-cli'

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(access_token, refresh_token = nil, expires_in = nil, base_url = nil, verify_ssl = true, options = {}) ⇒ APIClient

Initialize a new APIClient

client = APIClient.new(url:"https://morpheus.yourcompany.com", verify_ssl:false)

This old method signature is being deprecated:

client = APIClient.new(access_token, refresh_token, expires_in, base_url, verify_ssl, options={})

def initialize(attrs={}, options={})



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/morpheus/api/api_client.rb', line 17

def initialize(access_token, refresh_token=nil,expires_in = nil, base_url=nil, verify_ssl=true, options={})
  self.client_id = CLIENT_ID
  attrs = {}
  if access_token.is_a?(Hash)
    attrs = access_token.clone()
    access_token = attrs[:access_token]
    refresh_token = attrs[:refresh_token]
    base_url = attrs[:url] || attrs[:base_url]
    expires_in = attrs[:expires_in]
    verify_ssl = attrs.key?(:verify_ssl) ? attrs[:verify_ssl] : true
    self.client_id = attrs[:client_id] ? attrs[:client_id] : CLIENT_ID
    if attrs[:client_id]
      self.client_id = attrs[:client_id]
    end
    options = refresh_token.is_a?(Hash) ? refresh_token.clone() : {}
  end
  @access_token = access_token
  @refresh_token = refresh_token
  @base_url = base_url
  if @base_url.to_s.empty?
    raise "#{self.class} initialized without a required option :url"
  end
  @base_url = @base_url.chomp("/")
  # todo: validate URI
  if expires_in != nil
    @expires_at = Time.now + expires_in
  end
  set_ssl_verification_enabled(verify_ssl)
  setopts(options)
end

Instance Attribute Details

#client_idObject

Returns the value of attribute client_id.



10
11
12
# File 'lib/morpheus/api/api_client.rb', line 10

def client_id
  @client_id
end

Instance Method Details

#account_groupsObject



385
386
387
# File 'lib/morpheus/api/api_client.rb', line 385

def 
  Morpheus::AccountGroupsInterface.new(common_interface_options).setopts(@options)
end

#accountsObject



517
518
519
# File 'lib/morpheus/api/api_client.rb', line 517

def accounts
  Morpheus::AccountsInterface.new(common_interface_options).setopts(@options)
end

#activityObject



373
374
375
# File 'lib/morpheus/api/api_client.rb', line 373

def activity
  Morpheus::ActivityInterface.new(common_interface_options).setopts(@options)
end

#appliance_settingsObject



417
418
419
# File 'lib/morpheus/api/api_client.rb', line 417

def appliance_settings
  Morpheus::ApplianceSettingsInterface.new(common_interface_options).setopts(@options)
end

#approvalsObject



521
522
523
# File 'lib/morpheus/api/api_client.rb', line 521

def approvals
  Morpheus::ApprovalsInterface.new(common_interface_options).setopts(@options)
end

#appsObject



489
490
491
# File 'lib/morpheus/api/api_client.rb', line 489

def apps
  Morpheus::AppsInterface.new(common_interface_options).setopts(@options)
end

#archive_bucketsObject



659
660
661
# File 'lib/morpheus/api/api_client.rb', line 659

def archive_buckets
  Morpheus::ArchiveBucketsInterface.new(common_interface_options).setopts(@options)
end

#archive_filesObject



663
664
665
# File 'lib/morpheus/api/api_client.rb', line 663

def archive_files
  Morpheus::ArchiveFilesInterface.new(common_interface_options).setopts(@options)
end

#authObject



348
349
350
351
# File 'lib/morpheus/api/api_client.rb', line 348

def auth
  # Morpheus::AuthInterface.new(common_interface_options).setopts(@options)
  Morpheus::AuthInterface.new({url: @base_url, client_id: @client_id, verify_ssl: @verify_ssl}).setopts(@options)
end

#authorization_required?Boolean

Authorization is required, except for a couple commands like Ping and Setup

Returns:

  • (Boolean)


92
93
94
# File 'lib/morpheus/api/api_client.rb', line 92

def authorization_required?
  true
end

#backup_jobsObject



787
788
789
# File 'lib/morpheus/api/api_client.rb', line 787

def backup_jobs
  Morpheus::BackupJobsInterface.new(common_interface_options).setopts(@options)
end

#backup_settingsObject



743
744
745
# File 'lib/morpheus/api/api_client.rb', line 743

def backup_settings
  Morpheus::BackupSettingsInterface.new(common_interface_options).setopts(@options)
end

#backupsObject



783
784
785
# File 'lib/morpheus/api/api_client.rb', line 783

def backups
  Morpheus::BackupsInterface.new(common_interface_options).setopts(@options)
end

#billingObject



803
804
805
# File 'lib/morpheus/api/api_client.rb', line 803

def billing
  Morpheus::BillingInterface.new(common_interface_options).setopts(@options)
end

#blueprintsObject



493
494
495
# File 'lib/morpheus/api/api_client.rb', line 493

def blueprints
  Morpheus::BlueprintsInterface.new(common_interface_options).setopts(@options)
end

#budgetsObject



759
760
761
# File 'lib/morpheus/api/api_client.rb', line 759

def budgets
  Morpheus::BudgetsInterface.new(common_interface_options).setopts(@options)
end

#catalogObject



795
796
797
# File 'lib/morpheus/api/api_client.rb', line 795

def catalog
  Morpheus::ServiceCatalogInterface.new(common_interface_options).setopts(@options)
end

#catalog_item_typesObject



791
792
793
# File 'lib/morpheus/api/api_client.rb', line 791

def catalog_item_types
  Morpheus::CatalogItemTypesInterface.new(common_interface_options).setopts(@options)
end

#certificate_typesObject



553
554
555
# File 'lib/morpheus/api/api_client.rb', line 553

def certificate_types
  Morpheus::CertificateTypesInterface.new(common_interface_options).setopts(@options)
end

#certificatesObject



549
550
551
# File 'lib/morpheus/api/api_client.rb', line 549

def certificates
  Morpheus::CertificatesInterface.new(common_interface_options).setopts(@options)
end

#cloud_datastoresObject



393
394
395
# File 'lib/morpheus/api/api_client.rb', line 393

def cloud_datastores
  Morpheus::CloudDatastoresInterface.new(common_interface_options).setopts(@options)
end

#cloud_foldersObject



401
402
403
# File 'lib/morpheus/api/api_client.rb', line 401

def cloud_folders
  Morpheus::CloudFoldersInterface.new(common_interface_options).setopts(@options)
end

#cloud_policiesObject



599
600
601
# File 'lib/morpheus/api/api_client.rb', line 599

def cloud_policies
  Morpheus::CloudPoliciesInterface.new(common_interface_options).setopts(@options)
end

#cloud_resource_poolsObject



397
398
399
# File 'lib/morpheus/api/api_client.rb', line 397

def cloud_resource_pools
  Morpheus::CloudResourcePoolsInterface.new(common_interface_options).setopts(@options)
end

#cloudsObject



389
390
391
# File 'lib/morpheus/api/api_client.rb', line 389

def clouds
  Morpheus::CloudsInterface.new(common_interface_options).setopts(@options)
end

#clustersObject



513
514
515
# File 'lib/morpheus/api/api_client.rb', line 513

def clusters
  Morpheus::ClustersInterface.new(common_interface_options).setopts(@options)
end

#common_interface_optionsObject



325
326
327
328
329
330
331
332
333
334
# File 'lib/morpheus/api/api_client.rb', line 325

def common_interface_options
  {
    url:           @base_url,
    access_token:  @access_token,
    refresh_token: @refresh_token,
    expires_at:    @expires_at,
    client_id:     @client_id,
    verify_ssl:    @verify_ssl
  }
end

#containersObject



433
434
435
# File 'lib/morpheus/api/api_client.rb', line 433

def containers
  Morpheus::ContainersInterface.new(common_interface_options).setopts(@options)
end

#cypherObject



715
716
717
# File 'lib/morpheus/api/api_client.rb', line 715

def cypher
  Morpheus::CypherInterface.new(common_interface_options).setopts(@options)
end

#dashboardObject



369
370
371
# File 'lib/morpheus/api/api_client.rb', line 369

def dashboard
  Morpheus::DashboardInterface.new(common_interface_options).setopts(@options)
end

#datastoresObject



405
406
407
# File 'lib/morpheus/api/api_client.rb', line 405

def datastores
  Morpheus::DatastoresInterface.new(common_interface_options).setopts(@options)
end

#default_content_typeObject

set this in your interface, eg. to ‘application/json’ or let it it default to json when payload is present.



79
80
81
# File 'lib/morpheus/api/api_client.rb', line 79

def default_content_type
  nil
end

#default_timeoutObject

set default seconds for interface to timeout after or let it use system default? none, it should not timeout by default.. I think execute() may use 30 seconds for get by default. and it should remove timeout when method is post, put, or delete



87
88
89
# File 'lib/morpheus/api/api_client.rb', line 87

def default_timeout
  nil
end

#deployObject



497
498
499
# File 'lib/morpheus/api/api_client.rb', line 497

def deploy
  Morpheus::DeployInterface.new(common_interface_options).setopts(@options)
end

#deploymentsObject



501
502
503
# File 'lib/morpheus/api/api_client.rb', line 501

def deployments
  Morpheus::DeploymentsInterface.new(common_interface_options).setopts(@options)
end

#docObject



336
337
338
# File 'lib/morpheus/api/api_client.rb', line 336

def doc
  Morpheus::DocInterface.new(common_interface_options).setopts(@options)
end

#dryObject



65
66
67
# File 'lib/morpheus/api/api_client.rb', line 65

def dry()
  dry_run(true)
end

#dry_run(val = true) ⇒ Object



60
61
62
63
# File 'lib/morpheus/api/api_client.rb', line 60

def dry_run(val=true)
  @dry_run = !!val
  self
end

#environmentsObject



739
740
741
# File 'lib/morpheus/api/api_client.rb', line 739

def environments
  Morpheus::EnvironmentsInterface.new(common_interface_options).setopts(@options)
end

#execute(opts, options = {}) ⇒ Object

Execute an HTTP request with this client. opts - Hash of options for HTTP Request.

:url - The full url
:method - The default method is :get (GET)
:headers - Hash of headers to include in the request.
           eg. {'Content-Type' => 'application/json'}. :params is a special key for query parameters.
:params - query parameters
:payload - The body of the request.
:timeout - A custom timeout in seconds for api requests. The default is 30. todo: separate timeout options

options - Hash of common global options that commands parse. eg. :headers, :timeout, :dry_run, :curl, etc

:headers - Extra headers to add. This expects a Hash like {'Content-Type' => 'application/json'}.
:timeout - A custom timeout in seconds for api requests. The default is 30. todo: separate timeout options


149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
# File 'lib/morpheus/api/api_client.rb', line 149

def execute(opts, options={})
  # Morpheus::Logging::DarkPrinter.puts "Morpheus::RestClient.execute(#{opts})" if Morpheus::Logging.debug?
  # ok, always prepend @base_url, let the caller specify it exactly or leave it off.
  # this allows the Interface definition be lazy and not specify the base_url in every call to execute()
    # it will be used though...
  if opts[:url]
    if !opts[:url].include?(@base_url)
      opts[:url] = "#{@base_url}#{opts[:url]}"
    end
  end
  # merge in common global @options
  if @options
    options = options.merge(@options)
  else
    options = options.clone
  end

  # determine HTTP method
  if opts[:method].nil?
    opts[:method] = :get
  else
    # convert to lowercase Symbol like :get, :post, :put, or :delete
    opts[:method] = opts[:method].to_s.downcase.to_sym
  end

  # could validate method here...

  # apply default headers
  opts[:headers] ||= {}

  is_multipart = (opts[:payload].is_a?(Hash) && opts[:payload][:multipart] == true)

  # Authorization: apply our access token
  if authorization_required?
    if @access_token
      if opts[:headers][:authorization].nil? && opts[:headers]['Authorization'].nil?
        opts[:headers][:authorization] = "Bearer #{@access_token}"
      else
        # authorization header has already been set.
      end
    end
  end

  # POST and PUT requests default Content-Type is application/json
  # set Content-Type or pass :form_data => true if you want application/x-www-form-urlencoded
  # or use opts[:payload][:multipart] = true if you need multipart/form-data
  if opts[:method] == :post || opts[:method] == :put
    if opts[:headers]['Content-Type'].nil? && opts[:payload] && is_multipart != true && opts[:form_data] != true
      opts[:headers]['Content-Type'] = (default_content_type || 'application/json')
    end

    # Auto encode payload as JSON, just to be nice
    if opts[:headers]['Content-Type'] == 'application/json' && !opts[:payload].is_a?(String)
      opts[:payload] = opts[:payload].to_json
    end

  end

  # always use custom timeout eg. from --timeout option
  # or use default_timeout for GET requests only.
  if opts[:timeout].nil?
    if options[:timeout]
      opts[:timeout] = options[:timeout].to_f
    elsif default_timeout && opts[:method] == :get
      opts[:timeout] = default_timeout.to_f
    end
  end

  # add extra headers, eg. from --header option
  # headers should be a Hash and not an Array, dont make me split you here!
  if options[:headers]
    opts[:headers] = opts[:headers].merge(options[:headers])
  end

  # this is confusing, but RestClient expects :params inside the headers...?
  # move/copy params to headers.params for simplification.
  # remove this if issues arise
  # if opts[:params] && (opts[:headers][:params].nil? || opts[:headers][:params].empty?)
  #   opts[:headers][:params] = opts.delete(:params) # .delete(:params) maybe?
  # end

  # :command_options for these
  # if options[:curl]
  #   opts[:curl] = options[:curl]
  # end
  # if options.key?(:pretty_json)
  #   opts[:pretty_json] = options[:pretty_json]
  # end
  # if options.key?(:scrub)
  #   opts[:scrub] = options[:scrub]
  # end

  # @verify_ssl is not used atm
  # todo: finish this and use it instead of the global variable RestClient.ssl_verification_enabled?
  # gotta clean up all APIClient subclasses new() methods to support this
  # the CliCommand subclasses should be changed to @users_interface = @api_client.users
  # also.. Credentials.new()
  if @verify_ssl == false
    opts[:verify_ssl] = OpenSSL::SSL::VERIFY_NONE
  end

  if @dry_run
    # JD: could return a Request object instead...
    # print_dry_run needs options somehow...
    opts[:command_options] = options # trash this..we got @options with setopts now
    return opts
  end

  # uhh can't use LIST at the moment
  # fix it!
  # if opts[:method] == :list
  #   opts[:method]
  # end

  # Morpheus::Logging::DarkPrinter.puts "Morpheus::RestClient.execute(#{opts})" if Morpheus::Logging.debug?
  # instead, using ::RestClient.log = STDOUT
  response = Morpheus::RestClient.execute(opts)
  if opts[:parse_json] != false && options[:parse_json] != false
    return JSON.parse(response.to_s)
  else
    return response
  end
end

#execute_schedulesObject



573
574
575
# File 'lib/morpheus/api/api_client.rb', line 573

def execute_schedules
  Morpheus::ExecuteSchedulesInterface.new(common_interface_options).setopts(@options)
end

#execution_requestObject



723
724
725
# File 'lib/morpheus/api/api_client.rb', line 723

def execution_request
  Morpheus::ExecutionRequestInterface.new(common_interface_options).setopts(@options)
end

#file_copy_requestObject



727
728
729
# File 'lib/morpheus/api/api_client.rb', line 727

def file_copy_request
  Morpheus::FileCopyRequestInterface.new(common_interface_options).setopts(@options)
end

#forgotObject



353
354
355
# File 'lib/morpheus/api/api_client.rb', line 353

def forgot
  Morpheus::ForgotPasswordInterface.new(common_interface_options).setopts(@options)
end

#group_policiesObject



595
596
597
# File 'lib/morpheus/api/api_client.rb', line 595

def group_policies
  Morpheus::GroupPoliciesInterface.new(common_interface_options).setopts(@options)
end

#groupsObject



381
382
383
# File 'lib/morpheus/api/api_client.rb', line 381

def groups
  Morpheus::GroupsInterface.new(common_interface_options).setopts(@options)
end

#guidanceObject



775
776
777
# File 'lib/morpheus/api/api_client.rb', line 775

def guidance
  Morpheus::GuidanceInterface.new(common_interface_options).setopts(@options)
end

#healthObject



763
764
765
# File 'lib/morpheus/api/api_client.rb', line 763

def health
  Morpheus::HealthInterface.new(common_interface_options).setopts(@options)
end

#image_builderObject



667
668
669
# File 'lib/morpheus/api/api_client.rb', line 667

def image_builder
  Morpheus::ImageBuilderInterface.new(common_interface_options).setopts(@options)
end

#inspectObject



56
57
58
# File 'lib/morpheus/api/api_client.rb', line 56

def inspect
  to_s
end

#instance_typesObject



437
438
439
# File 'lib/morpheus/api/api_client.rb', line 437

def instance_types
  Morpheus::InstanceTypesInterface.new(common_interface_options).setopts(@options)
end

#instancesObject



413
414
415
# File 'lib/morpheus/api/api_client.rb', line 413

def instances
  Morpheus::InstancesInterface.new(common_interface_options).setopts(@options)
end

#integration_typesObject



445
446
447
# File 'lib/morpheus/api/api_client.rb', line 445

def integration_types
  Morpheus::IntegrationTypesInterface.new(common_interface_options).setopts(@options)
end

#integrationsObject



441
442
443
# File 'lib/morpheus/api/api_client.rb', line 441

def integrations
  Morpheus::IntegrationsInterface.new(common_interface_options).setopts(@options)
end

#invoice_line_itemsObject



771
772
773
# File 'lib/morpheus/api/api_client.rb', line 771

def invoice_line_items
  Morpheus::InvoiceLineItemsInterface.new(common_interface_options).setopts(@options)
end

#invoicesObject



767
768
769
# File 'lib/morpheus/api/api_client.rb', line 767

def invoices
  Morpheus::InvoicesInterface.new(common_interface_options).setopts(@options)
end

#jobsObject



449
450
451
# File 'lib/morpheus/api/api_client.rb', line 449

def jobs
  Morpheus::JobsInterface.new(common_interface_options).setopts(@options)
end

#key_pairsObject



545
546
547
# File 'lib/morpheus/api/api_client.rb', line 545

def key_pairs
  Morpheus::KeyPairsInterface.new(common_interface_options).setopts(@options)
end

#library_cluster_layoutsObject



699
700
701
# File 'lib/morpheus/api/api_client.rb', line 699

def library_cluster_layouts
  Morpheus::LibraryClusterLayoutsInterface.new(common_interface_options).setopts(@options)
end

#library_container_scriptsObject



691
692
693
# File 'lib/morpheus/api/api_client.rb', line 691

def library_container_scripts
  Morpheus::LibraryContainerScriptsInterface.new(common_interface_options).setopts(@options)
end

#library_container_templatesObject



695
696
697
# File 'lib/morpheus/api/api_client.rb', line 695

def library_container_templates
  Morpheus::LibraryContainerTemplatesInterface.new(common_interface_options).setopts(@options)
end

#library_container_typesObject



687
688
689
# File 'lib/morpheus/api/api_client.rb', line 687

def library_container_types
  Morpheus::LibraryContainerTypesInterface.new(common_interface_options).setopts(@options)
end

#library_container_upgradesObject



683
684
685
# File 'lib/morpheus/api/api_client.rb', line 683

def library_container_upgrades
  Morpheus::LibraryContainerUpgradesInterface.new(common_interface_options).setopts(@options)
end

#library_instance_typesObject



675
676
677
# File 'lib/morpheus/api/api_client.rb', line 675

def library_instance_types
  Morpheus::LibraryInstanceTypesInterface.new(common_interface_options).setopts(@options)
end

#library_layoutsObject



679
680
681
# File 'lib/morpheus/api/api_client.rb', line 679

def library_layouts
  Morpheus::LibraryLayoutsInterface.new(common_interface_options).setopts(@options)
end

#library_spec_template_typesObject



707
708
709
# File 'lib/morpheus/api/api_client.rb', line 707

def library_spec_template_types
  Morpheus::LibrarySpecTemplateTypesInterface.new(common_interface_options).setopts(@options)
end

#library_spec_templatesObject



703
704
705
# File 'lib/morpheus/api/api_client.rb', line 703

def library_spec_templates
  Morpheus::LibrarySpecTemplatesInterface.new(common_interface_options).setopts(@options)
end

#licenseObject



557
558
559
# File 'lib/morpheus/api/api_client.rb', line 557

def license
  Morpheus::LicenseInterface.new(common_interface_options).setopts(@options)
end

#load_balancersObject



473
474
475
# File 'lib/morpheus/api/api_client.rb', line 473

def load_balancers
  Morpheus::LoadBalancersInterface.new(common_interface_options).setopts(@options)
end

#log_settingsObject



747
748
749
# File 'lib/morpheus/api/api_client.rb', line 747

def log_settings
  Morpheus::LogSettingsInterface.new(common_interface_options).setopts(@options)
end

#logged_in?Boolean

Returns:

  • (Boolean)


273
274
275
# File 'lib/morpheus/api/api_client.rb', line 273

def logged_in?
  !!@access_token
end

#login(username, password, use_client_id = nil) ⇒ Object



285
286
287
288
289
290
291
292
293
294
295
296
297
298
# File 'lib/morpheus/api/api_client.rb', line 285

def (username, password, use_client_id=nil)
  if use_client_id
    self.client_id = use_client_id
  end
  @access_token, @refresh_token, @expires_at = nil, nil, nil
  response = auth.(username, password, self.client_id)
  @access_token = response['access_token']
  @refresh_token = response['refresh_token']
  if response['expires_in'] != nil
    @expires_at = Time.now + response['expires_in']
  end
  # return response
  return self
end

#logoutObject



318
319
320
321
322
323
# File 'lib/morpheus/api/api_client.rb', line 318

def logout
  @access_token = nil
  @refresh_token = nil
  @expires_at = nil
  return self
end

#logsObject



537
538
539
# File 'lib/morpheus/api/api_client.rb', line 537

def logs
  Morpheus::LogsInterface.new(common_interface_options).setopts(@options)
end

#monitoringObject



577
578
579
# File 'lib/morpheus/api/api_client.rb', line 577

def monitoring
  Morpheus::MonitoringInterface.new(common_interface_options).setopts(@options)
end

#network_domain_recordsObject



651
652
653
# File 'lib/morpheus/api/api_client.rb', line 651

def network_domain_records
  Morpheus::NetworkDomainRecordsInterface.new(common_interface_options).setopts(@options)
end

#network_domainsObject



647
648
649
# File 'lib/morpheus/api/api_client.rb', line 647

def network_domains
  Morpheus::NetworkDomainsInterface.new(common_interface_options).setopts(@options)
end

#network_groupsObject



619
620
621
# File 'lib/morpheus/api/api_client.rb', line 619

def network_groups
  Morpheus::NetworkGroupsInterface.new(common_interface_options).setopts(@options)
end

#network_pool_ipsObject



627
628
629
# File 'lib/morpheus/api/api_client.rb', line 627

def network_pool_ips
  Morpheus::NetworkPoolIpsInterface.new(common_interface_options).setopts(@options)
end

#network_pool_serversObject



643
644
645
# File 'lib/morpheus/api/api_client.rb', line 643

def network_pool_servers
  Morpheus::NetworkPoolServersInterface.new(common_interface_options).setopts(@options)
end

#network_poolsObject



623
624
625
# File 'lib/morpheus/api/api_client.rb', line 623

def network_pools
  Morpheus::NetworkPoolsInterface.new(common_interface_options).setopts(@options)
end

#network_proxiesObject



655
656
657
# File 'lib/morpheus/api/api_client.rb', line 655

def network_proxies
  Morpheus::NetworkProxiesInterface.new(common_interface_options).setopts(@options)
end

#network_routersObject



631
632
633
# File 'lib/morpheus/api/api_client.rb', line 631

def network_routers
  Morpheus::NetworkRoutersInterface.new(common_interface_options).setopts(@options)
end

#network_security_serversObject



639
640
641
# File 'lib/morpheus/api/api_client.rb', line 639

def network_security_servers
  Morpheus::NetworkSecurityServersInterface.new(common_interface_options).setopts(@options)
end

#network_servicesObject



635
636
637
# File 'lib/morpheus/api/api_client.rb', line 635

def network_services
  Morpheus::NetworkServicesInterface.new(common_interface_options).setopts(@options)
end

#network_typesObject



607
608
609
# File 'lib/morpheus/api/api_client.rb', line 607

def network_types
  Morpheus::NetworkTypesInterface.new(common_interface_options).setopts(@options)
end

#networksObject



603
604
605
# File 'lib/morpheus/api/api_client.rb', line 603

def networks
  Morpheus::NetworksInterface.new(common_interface_options).setopts(@options)
end

#old_cypherObject



719
720
721
# File 'lib/morpheus/api/api_client.rb', line 719

def old_cypher
  Morpheus::OldCypherInterface.new(common_interface_options).setopts(@options)
end

#option_type_listsObject



565
566
567
# File 'lib/morpheus/api/api_client.rb', line 565

def option_type_lists
  Morpheus::OptionTypeListsInterface.new(common_interface_options).setopts(@options)
end

#option_typesObject



561
562
563
# File 'lib/morpheus/api/api_client.rb', line 561

def option_types
  Morpheus::OptionTypesInterface.new(common_interface_options).setopts(@options)
end

#optionsObject



377
378
379
# File 'lib/morpheus/api/api_client.rb', line 377

def options
  Morpheus::OptionsInterface.new(common_interface_options).setopts(@options)
end

#packagesObject



711
712
713
# File 'lib/morpheus/api/api_client.rb', line 711

def packages
  Morpheus::PackagesInterface.new(common_interface_options).setopts(@options)
end

#pingObject



340
341
342
# File 'lib/morpheus/api/api_client.rb', line 340

def ping
  Morpheus::PingInterface.new(common_interface_options).setopts(@options)
end

#policiesObject

def incidents

# Morpheus::MonitoringIncidentsInterface.new(common_interface_options).setopts(@options)
monitoring.incidents

end



591
592
593
# File 'lib/morpheus/api/api_client.rb', line 591

def policies
  Morpheus::PoliciesInterface.new(common_interface_options).setopts(@options)
end

#power_schedulesObject



569
570
571
# File 'lib/morpheus/api/api_client.rb', line 569

def power_schedules
  Morpheus::PowerSchedulesInterface.new(common_interface_options).setopts(@options)
end

#price_setsObject



465
466
467
# File 'lib/morpheus/api/api_client.rb', line 465

def price_sets
  Morpheus::PriceSetsInterface.new(common_interface_options).setopts(@options)
end

#pricesObject



469
470
471
# File 'lib/morpheus/api/api_client.rb', line 469

def prices
  Morpheus::PricesInterface.new(common_interface_options).setopts(@options)
end

#processesObject



731
732
733
# File 'lib/morpheus/api/api_client.rb', line 731

def processes
  Morpheus::ProcessesInterface.new(common_interface_options).setopts(@options)
end

#projectsObject



779
780
781
# File 'lib/morpheus/api/api_client.rb', line 779

def projects
  Morpheus::ProjectsInterface.new(common_interface_options).setopts(@options)
end

#provision_typesObject



457
458
459
# File 'lib/morpheus/api/api_client.rb', line 457

def provision_types
  Morpheus::ProvisionTypesInterface.new(common_interface_options).setopts(@options)
end

#provisioning_license_typesObject



429
430
431
# File 'lib/morpheus/api/api_client.rb', line 429

def provisioning_license_types
  Morpheus::ProvisioningLicenseTypesInterface.new(common_interface_options).setopts(@options)
end

#provisioning_licensesObject



425
426
427
# File 'lib/morpheus/api/api_client.rb', line 425

def provisioning_licenses
  Morpheus::ProvisioningLicensesInterface.new(common_interface_options).setopts(@options)
end

#provisioning_settingsObject



421
422
423
# File 'lib/morpheus/api/api_client.rb', line 421

def provisioning_settings
  Morpheus::ProvisioningSettingsInterface.new(common_interface_options).setopts(@options)
end

#reportsObject



735
736
737
# File 'lib/morpheus/api/api_client.rb', line 735

def reports
  Morpheus::ReportsInterface.new(common_interface_options).setopts(@options)
end

#rolesObject



541
542
543
# File 'lib/morpheus/api/api_client.rb', line 541

def roles
  Morpheus::RolesInterface.new(common_interface_options).setopts(@options)
end

#searchObject



361
362
363
# File 'lib/morpheus/api/api_client.rb', line 361

def search
  Morpheus::SearchInterface.new(common_interface_options).setopts(@options)
end

#security_group_rulesObject



509
510
511
# File 'lib/morpheus/api/api_client.rb', line 509

def security_group_rules
  Morpheus::SecurityGroupRulesInterface.new(common_interface_options).setopts(@options)
end

#security_groupsObject



505
506
507
# File 'lib/morpheus/api/api_client.rb', line 505

def security_groups
  Morpheus::SecurityGroupsInterface.new(common_interface_options).setopts(@options)
end

#server_typesObject



453
454
455
# File 'lib/morpheus/api/api_client.rb', line 453

def server_types
  Morpheus::ServerTypesInterface.new(common_interface_options).setopts(@options)
end

#serversObject



409
410
411
# File 'lib/morpheus/api/api_client.rb', line 409

def servers
  Morpheus::ServersInterface.new(common_interface_options).setopts(@options)
end

#service_plansObject



461
462
463
# File 'lib/morpheus/api/api_client.rb', line 461

def service_plans
  Morpheus::ServicePlansInterface.new(common_interface_options).setopts(@options)
end

#set_ssl_verification_enabled(val) ⇒ Object



73
74
75
# File 'lib/morpheus/api/api_client.rb', line 73

def set_ssl_verification_enabled(val)
  @verify_ssl = !!val
end

#setopts(new_options) ⇒ Object Also known as: set_options

set common global @options for use with all requests meant for inline use just like dry(), set_options(dry_run:true) can be used in place of dry() Example: Prints curl -XGET …/whoami -H “Bearer” instead of actually request APIClient.new(token).whoami.setopts(curl:true).get({})

Parameters:

  • opts (Hash)

    globally supported options like :dry_run, :json, :curl, :headers, :timeout, etc



112
113
114
115
116
117
118
# File 'lib/morpheus/api/api_client.rb', line 112

def setopts(new_options)
  @options = new_options
  if @options[:dry_run]
    dry_run(true)
  end
  self
end

#setupObject



344
345
346
# File 'lib/morpheus/api/api_client.rb', line 344

def setup
  Morpheus::SetupInterface.new(common_interface_options).setopts(@options)
end

#ssl_verification_enabled?Boolean

Returns:

  • (Boolean)


69
70
71
# File 'lib/morpheus/api/api_client.rb', line 69

def ssl_verification_enabled?
  @verify_ssl
end

#storage_providersObject



671
672
673
# File 'lib/morpheus/api/api_client.rb', line 671

def storage_providers
  Morpheus::StorageProvidersInterface.new(common_interface_options).setopts(@options)
end

#subnet_typesObject



615
616
617
# File 'lib/morpheus/api/api_client.rb', line 615

def subnet_types
  Morpheus::SubnetTypesInterface.new(common_interface_options).setopts(@options)
end

#subnetsObject



611
612
613
# File 'lib/morpheus/api/api_client.rb', line 611

def subnets
  Morpheus::SubnetsInterface.new(common_interface_options).setopts(@options)
end

#task_setsObject



481
482
483
# File 'lib/morpheus/api/api_client.rb', line 481

def task_sets
  Morpheus::TaskSetsInterface.new(common_interface_options).setopts(@options)
end

#tasksObject



477
478
479
# File 'lib/morpheus/api/api_client.rb', line 477

def tasks
  Morpheus::TasksInterface.new(common_interface_options).setopts(@options)
end

#to_sObject



52
53
54
# File 'lib/morpheus/api/api_client.rb', line 52

def to_s
  "<##{self.class}:#{self.object_id.to_s(8)} @url=#{@base_url} @verify_ssl=#{@verify_ssl} @access_token=#{@access_token ? '************' : nil} @refresh_token=#{@access_token ? '************' : nil} @expires_at=#{@expires_at} @client_id=#{@client_id} @options=#{@options}>"
end

#urlObject



48
49
50
# File 'lib/morpheus/api/api_client.rb', line 48

def url
  @base_url
end

#usageObject



799
800
801
# File 'lib/morpheus/api/api_client.rb', line 799

def usage
  Morpheus::UsageInterface.new(common_interface_options).setopts(@options)
end

#use_refresh_token(t = nil) ⇒ Object



300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
# File 'lib/morpheus/api/api_client.rb', line 300

def use_refresh_token(t=nil)
  if t.nil?
    t = @refresh_token
  end
  if t.nil?
    raise "#{self.class} does not currently have a refresh_token"
  end
  response = auth.use_refresh_token(t, self.client_id)
  @access_token = response['access_token']
  @refresh_token = response['refresh_token']
  if response['expires_in'] != nil
    @expires_at = Time.now + response['expires_in']
  end
  @access_token = response['access_token']
  # return response
  return self
end

#user_groupsObject



529
530
531
# File 'lib/morpheus/api/api_client.rb', line 529

def user_groups
  Morpheus::UserGroupsInterface.new(common_interface_options).setopts(@options)
end

#user_settingsObject



365
366
367
# File 'lib/morpheus/api/api_client.rb', line 365

def 
  Morpheus::UserSettingsInterface.new(common_interface_options).setopts(@options)
end

#user_sourcesObject



533
534
535
# File 'lib/morpheus/api/api_client.rb', line 533

def user_sources
  Morpheus::UserSourcesInterface.new(common_interface_options).setopts(@options)
end

#usersObject



525
526
527
# File 'lib/morpheus/api/api_client.rb', line 525

def users
  Morpheus::UsersInterface.new(common_interface_options).setopts(@options)
end

#vdiObject



807
808
809
# File 'lib/morpheus/api/api_client.rb', line 807

def vdi
  Morpheus::VdiInterface.new(common_interface_options).setopts(@options)
end

#vdi_allocationsObject



815
816
817
# File 'lib/morpheus/api/api_client.rb', line 815

def vdi_allocations
  Morpheus::VdiAllocationsInterface.new(common_interface_options).setopts(@options)
end

#vdi_appsObject



819
820
821
# File 'lib/morpheus/api/api_client.rb', line 819

def vdi_apps
  Morpheus::VdiAppsInterface.new(common_interface_options).setopts(@options)
end

#vdi_gatewaysObject



823
824
825
# File 'lib/morpheus/api/api_client.rb', line 823

def vdi_gateways
  Morpheus::VdiGatewaysInterface.new(common_interface_options).setopts(@options)
end

#vdi_poolsObject



811
812
813
# File 'lib/morpheus/api/api_client.rb', line 811

def vdi_pools
  Morpheus::VdiPoolsInterface.new(common_interface_options).setopts(@options)
end

#virtual_imagesObject



485
486
487
# File 'lib/morpheus/api/api_client.rb', line 485

def virtual_images
  Morpheus::VirtualImagesInterface.new(common_interface_options).setopts(@options)
end

#whitelabel_settingsObject



751
752
753
# File 'lib/morpheus/api/api_client.rb', line 751

def whitelabel_settings
  Morpheus::WhitelabelSettingsInterface.new(common_interface_options).setopts(@options)
end

#whoamiObject



357
358
359
# File 'lib/morpheus/api/api_client.rb', line 357

def whoami
  Morpheus::WhoamiInterface.new(common_interface_options).setopts(@options)
end

#wikiObject



755
756
757
# File 'lib/morpheus/api/api_client.rb', line 755

def wiki
  Morpheus::WikiInterface.new(common_interface_options).setopts(@options)
end

#withopts(tmp_options, &block) ⇒ Object Also known as: with_options

with_options sets common global @options for the duration of the block only then returns the options to their prior values

Parameters:

  • opts (Hash)

    globally supported options like :dry_run, :json, :curl, :headers, :timeout, etc

Returns:

  • result of block, usually the a result Hash from client.execute({})



124
125
126
127
128
129
130
131
132
133
# File 'lib/morpheus/api/api_client.rb', line 124

def withopts(tmp_options, &block)
  @_old_options = @options
  begin
    @options = tmp_options
    result = block.call()
  ensure
    @options = @_old_options
  end
  return result
end