Class: Fog::OracleCloud::Database::Real
- Inherits:
-
Object
- Object
- Fog::OracleCloud::Database::Real
- Defined in:
- lib/fog/oraclecloud/database.rb,
lib/fog/oraclecloud/requests/database/get_instance.rb,
lib/fog/oraclecloud/requests/database/get_snapshot.rb,
lib/fog/oraclecloud/requests/database/list_backups.rb,
lib/fog/oraclecloud/requests/database/list_patches.rb,
lib/fog/oraclecloud/requests/database/list_servers.rb,
lib/fog/oraclecloud/requests/database/list_instances.rb,
lib/fog/oraclecloud/requests/database/list_snapshots.rb,
lib/fog/oraclecloud/requests/database/scale_instance.rb,
lib/fog/oraclecloud/requests/database/backup_instance.rb,
lib/fog/oraclecloud/requests/database/create_instance.rb,
lib/fog/oraclecloud/requests/database/create_snapshot.rb,
lib/fog/oraclecloud/requests/database/delete_instance.rb,
lib/fog/oraclecloud/requests/database/delete_snapshot.rb,
lib/fog/oraclecloud/requests/database/list_recoveries.rb,
lib/fog/oraclecloud/requests/database/recover_instance.rb,
lib/fog/oraclecloud/requests/database/get_instance_from_job.rb
Instance Method Summary collapse
- #auth_header ⇒ Object
- #backup_instance(service_name) ⇒ Object
- #create_instance(config, options) ⇒ Object
- #create_snapshot(name, description, database_id) ⇒ Object
- #delete_instance(service_name) ⇒ Object
- #delete_snapshot(db_name, snapshot_name) ⇒ Object
- #get_instance(instance_id) ⇒ Object
- #get_instance_from_job(job_id) ⇒ Object
- #get_snapshot(db_name, snapshot_name) ⇒ Object
-
#initialize(options = {}) ⇒ Real
constructor
A new instance of Real.
- #list_backups(db_name) ⇒ Object
- #list_instances ⇒ Object
- #list_patches(db_name) ⇒ Object
- #list_recoveries(db_name) ⇒ Object
- #list_servers(db_name) ⇒ Object
- #list_snapshots(db_name) ⇒ Object
- #password ⇒ Object
- #recover_instance(service_name, type = nil, value = nil) ⇒ Object
- #request(params, parse_json = true, &block) ⇒ Object
- #scale_instance(name, options = {}) ⇒ Object
- #username ⇒ Object
Constructor Details
#initialize(options = {}) ⇒ Real
Returns a new instance of Real.
41 42 43 44 45 46 47 48 49 |
# File 'lib/fog/oraclecloud/database.rb', line 41 def initialize(={}) @username = [:oracle_username] @password = [:oracle_password] @identity_domain = [:oracle_domain] region_url = [:oracle_region] == 'emea' ? 'https://dbcs.emea.oraclecloud.com' : 'https://dbaas.oraclecloud.com' Excon.ssl_verify_peer = false @connection = Fog::XML::Connection.new(region_url) end |
Instance Method Details
#auth_header ⇒ Object
59 60 61 |
# File 'lib/fog/oraclecloud/database.rb', line 59 def auth_header auth_header ||= 'Basic ' + Base64.encode64("#{@username}:#{@password}").gsub("\n",'') end |
#backup_instance(service_name) ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'lib/fog/oraclecloud/requests/database/backup_instance.rb', line 6 def backup_instance(service_name) # Oracle Cloud requires an empty JSON object in the body body_data = {} response = request( :method => 'POST', :expects => 202, :path => "/paas/service/dbcs/api/v1.1/instances/#{@identity_domain}/#{service_name}/backups", :body => Fog::JSON.encode(body_data), ) response.database_id = service_name response end |
#create_instance(config, options) ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 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 |
# File 'lib/fog/oraclecloud/requests/database/create_instance.rb', line 6 def create_instance(config, ) parameters = .select{|key, value| [:admin_password, :backup_destination, :charset, :cloud_storage_container, :cloud_storage_pwd, :cloud_storage_user, :cloud_storage_if_missing, :disaster_recovery, :failover_database, :golden_gate, :is_rac, :ncharset, :pdb_name, :sid, :timezone, :usable_storage, :create_storage_container_if_missing].include?(key)} params = { 'type' => 'db' } parameters.each { |key, value| if !value.nil? then if key == :cloud_storage_container then if !value.start_with?("Storage-") then value = "Storage-#{@identity_domain}/#{value}" end end new_key = key.to_s.split('_').collect(&:capitalize).join new_key = new_key[0,1].downcase + new_key[1..-1] params[new_key] = value end } body_data = { 'serviceName' => config[:service_name], 'version' => config[:version], 'level' => config[:level], 'edition' => config[:edition], 'subscriptionType' => config[:subscription_type], 'description' => config[:description], 'shape' => config[:shape], 'vmPublicKeyText' => config[:ssh_key], 'parameters' => [params] } body_data = body_data.reject {|key, value| value.nil?} request( :method => 'POST', :expects => 202, :path => "/paas/service/dbcs/api/v1.1/instances/#{@identity_domain}", :body => Fog::JSON.encode(body_data), #:headers => { # 'Content-Type'=>'application/vnd.com.oracle.oracloud.provisioning.Service+json' #} ) end |
#create_snapshot(name, description, database_id) ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/fog/oraclecloud/requests/database/create_snapshot.rb', line 6 def create_snapshot(name, description, database_id) body_data = { 'name' => name, 'description' => description } body_data = body_data.reject {|key, value| value.nil?} response = request( :method => 'POST', :expects => 202, :path => "/paas/api/v1.1/instancemgmt/#{@identity_domain}/services/dbaas/instances/#{database_id}/snapshots", :body => Fog::JSON.encode(body_data), ) # Store the database reference in the model, so that we can use it later response.database_id = service_name response end |
#delete_instance(service_name) ⇒ Object
6 7 8 9 10 11 12 |
# File 'lib/fog/oraclecloud/requests/database/delete_instance.rb', line 6 def delete_instance(service_name) request( :method => 'DELETE', :expects => 202, :path => "/paas/service/dbcs/api/v1.1/instances/#{@identity_domain}/#{service_name}" ) end |
#delete_snapshot(db_name, snapshot_name) ⇒ Object
6 7 8 9 10 11 12 |
# File 'lib/fog/oraclecloud/requests/database/delete_snapshot.rb', line 6 def delete_snapshot(db_name, snapshot_name) request( :method => 'DELETE', :expects => 202, :path => "/paas/api/v1.1/instancemgmt/#{@identity_domain}/services/dbaas/instances/#{db_name}/snapshots/#{snapshot_name}" ) end |
#get_instance(instance_id) ⇒ Object
6 7 8 9 10 11 12 13 |
# File 'lib/fog/oraclecloud/requests/database/get_instance.rb', line 6 def get_instance(instance_id) response = request( :expects => 200, :method => 'GET', :path => "/paas/service/dbcs/api/v1.1/instances/#{@identity_domain}/#{instance_id}" ) response end |
#get_instance_from_job(job_id) ⇒ Object
6 7 8 9 10 11 12 13 |
# File 'lib/fog/oraclecloud/requests/database/get_instance_from_job.rb', line 6 def get_instance_from_job(job_id) response = request( :expects => 200, :method => 'GET', :path => "/paas/service/dbcs/api/v1.1/instances/#{@identity_domain}/status/create/#{job_id}" ) response end |
#get_snapshot(db_name, snapshot_name) ⇒ Object
6 7 8 9 10 11 12 13 |
# File 'lib/fog/oraclecloud/requests/database/get_snapshot.rb', line 6 def get_snapshot(db_name, snapshot_name) response = request( :expects => 200, :method => 'GET', :path => "/paas/api/v1.1/instancemgmt/#{@identity_domain}/services/dbaas/instances/#{db_name}/snapshots/#{snapshot_name}" ) response end |
#list_backups(db_name) ⇒ Object
5 6 7 8 9 10 11 12 |
# File 'lib/fog/oraclecloud/requests/database/list_backups.rb', line 5 def list_backups(db_name) response = request( :expects => 200, :method => 'GET', :path => "/paas/service/dbcs/api/v1.1/instances/#{@identity_domain}/#{db_name}/backups" ) response end |
#list_instances ⇒ Object
5 6 7 8 9 10 11 12 |
# File 'lib/fog/oraclecloud/requests/database/list_instances.rb', line 5 def list_instances response = request( :expects => 200, :method => 'GET', :path => "/paas/service/dbcs/api/v1.1/instances/#{@identity_domain}?outputLevel=verbose" ) response end |
#list_patches(db_name) ⇒ Object
5 6 7 8 9 10 11 12 |
# File 'lib/fog/oraclecloud/requests/database/list_patches.rb', line 5 def list_patches(db_name) response = request( :expects => 200, :method => 'GET', :path => "/paas/service/dbcs/api/v1.1/instances/#{@identity_domain}/#{db_name}/patches" ) response end |
#list_recoveries(db_name) ⇒ Object
5 6 7 8 9 10 11 12 |
# File 'lib/fog/oraclecloud/requests/database/list_recoveries.rb', line 5 def list_recoveries(db_name) response = request( :expects => 200, :method => 'GET', :path => "/paas/service/dbcs/api/v1.1/instances/#{@identity_domain}/#{db_name}/backups/recovery/history" ) response end |
#list_servers(db_name) ⇒ Object
5 6 7 8 9 10 11 12 |
# File 'lib/fog/oraclecloud/requests/database/list_servers.rb', line 5 def list_servers(db_name) response = request( :expects => 200, :method => 'GET', :path => "/paas/service/dbcs/api/v1.1/instances/#{@identity_domain}/#{db_name}/servers" ) response end |
#list_snapshots(db_name) ⇒ Object
5 6 7 8 9 10 11 12 |
# File 'lib/fog/oraclecloud/requests/database/list_snapshots.rb', line 5 def list_snapshots(db_name) response = request( :expects => 200, :method => 'GET', :path => "/paas/api/v1.1/instancemgmt/#{@identity_domain}/services/dbaas/instances/#{db_name}/snapshots" ) response end |
#password ⇒ Object
55 56 57 |
# File 'lib/fog/oraclecloud/database.rb', line 55 def password @password end |
#recover_instance(service_name, type = nil, value = nil) ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/fog/oraclecloud/requests/database/recover_instance.rb', line 6 def recover_instance(service_name, type=nil, value=nil) if type == 'latest' then body_data = { 'latest' => true } end if type == 'tag' then body_data = { 'tag' => value } end if type == 'timestamp' then body_data = { 'timestamp' => value } end if type == 'scn' then body_data = { 'scn' => value } end response = request( :method => 'POST', :expects => 202, :path => "/paas/service/dbcs/api/v1.1/instances/#{@identity_domain}/#{service_name}/backups/recovery", :body => Fog::JSON.encode(body_data), ) response.database_id = service_name response end |
#request(params, parse_json = true, &block) ⇒ Object
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
# File 'lib/fog/oraclecloud/database.rb', line 63 def request(params, parse_json = true, &block) begin response = @connection.request(params.merge!({ :headers => { 'Authorization' => auth_header, 'X-ID-TENANT-NAME' => @identity_domain, 'Content-Type' => 'application/json', #'Accept' => 'application/json' }.merge!(params[:headers] || {}) }), &block) rescue Excon::Errors::HTTPStatusError => error raise case error when Excon::Errors::NotFound Fog::OracleCloud::Database::NotFound.slurp(error) else error end end #https://jaas.oraclecloud.com/paas/service/jcs/api/v1.1/instances/agriculture/status/create/job/2781084 if !response.body.empty? && parse_json # The Oracle Cloud doesn't return the Content-Type header as application/json, rather as application/vnd.com.oracle.oracloud.provisioning.Pod+json # Should add check here to validate, but not sure if this might change in future response.body = Fog::JSON.decode(response.body) end response end |
#scale_instance(name, options = {}) ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/fog/oraclecloud/requests/database/scale_instance.rb', line 6 def scale_instance(name, ={}) body_data = { 'shape' => [:shape], 'additionalStorage' => [:additional_storage], 'usage' => [:usage] } body_data = body_data.reject {|key, value| value.nil?} request( :method => 'PUT', :expects => 202, :path => "/paas/service/dbcs/api/v1.1/instances/#{@identity_domain}/#{name}", :body => Fog::JSON.encode(body_data), ) end |
#username ⇒ Object
51 52 53 |
# File 'lib/fog/oraclecloud/database.rb', line 51 def username @username end |