google-cloud-oracle_database-v1 0.6.0 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b9d93283f8344bb44ab9424170c58a978cb086bf93d868971f1f4d2f5fb4e4de
4
- data.tar.gz: b0ef7f3d3d6e855d7f6780248bd1b416a9730eed1d1a7db6460efc7ae20ec67a
3
+ metadata.gz: 9b5189e49ab79405ed7ce66c7b471cfc249a1d7d760f7fd00ad56680e5995714
4
+ data.tar.gz: 21dfd49a2845c934888741c180b7cd413dce87d6c9f5864d6918ab530804591c
5
5
  SHA512:
6
- metadata.gz: db7904a5ee7d89e6cfad35fa586668f8675ff2114fa8b7f6812c0e6aa2754d816053a000a681f43cb86ad4f3cd45417ed29f10a820367496e4cb1f54ce0f4146
7
- data.tar.gz: e2a108fa537ad4d3019b8dd560215a8ca1999ec96dad1d82339c2cef1480a68fd53b77617fab95ee97e1cde4b102e186842b42f21f43d619ca573236d0cad4ab
6
+ metadata.gz: e1219f916d84af53da58c91cbafee66efda098f5d89d05d7de86f15b4e8d42fe1d3421545bcac17c067dd4b873b837b4302f55b49467ce7c06b6a30bdf7a9a2f
7
+ data.tar.gz: 341c4995d9b173943dd8b608ee5a5d1a45bdd8cb50ecf6f48b0d9016b1d4f612530b5f4eca1e9e78fed698d445a8708af7c40799c99fb9ecbfcd1ff57ad932de
data/AUTHENTICATION.md CHANGED
@@ -56,7 +56,7 @@ To configure a credentials file for an individual client initialization:
56
56
  ```ruby
57
57
  require "google/cloud/oracle_database/v1"
58
58
 
59
- client = ::Google::Cloud::OracleDatabase::V1::OracleDatabase::Rest::Client.new do |config|
59
+ client = ::Google::Cloud::OracleDatabase::V1::OracleDatabase::Client.new do |config|
60
60
  config.credentials = "path/to/credentialfile.json"
61
61
  end
62
62
  ```
@@ -66,11 +66,11 @@ To configure a credentials file globally for all clients:
66
66
  ```ruby
67
67
  require "google/cloud/oracle_database/v1"
68
68
 
69
- ::Google::Cloud::OracleDatabase::V1::OracleDatabase::Rest::Client.configure do |config|
69
+ ::Google::Cloud::OracleDatabase::V1::OracleDatabase::Client.configure do |config|
70
70
  config.credentials = "path/to/credentialfile.json"
71
71
  end
72
72
 
73
- client = ::Google::Cloud::OracleDatabase::V1::OracleDatabase::Rest::Client.new
73
+ client = ::Google::Cloud::OracleDatabase::V1::OracleDatabase::Client.new
74
74
  ```
75
75
 
76
76
  ### Environment Variables
@@ -100,7 +100,7 @@ require "google/cloud/oracle_database/v1"
100
100
 
101
101
  ENV["GOOGLE_APPLICATION_CREDENTIALS"] = "path/to/credentialfile.json"
102
102
 
103
- client = ::Google::Cloud::OracleDatabase::V1::OracleDatabase::Rest::Client.new
103
+ client = ::Google::Cloud::OracleDatabase::V1::OracleDatabase::Client.new
104
104
  ```
105
105
 
106
106
  ### Local ADC file
data/README.md CHANGED
@@ -32,7 +32,7 @@ In order to use this library, you first need to go through the following steps:
32
32
  ```ruby
33
33
  require "google/cloud/oracle_database/v1"
34
34
 
35
- client = ::Google::Cloud::OracleDatabase::V1::OracleDatabase::Rest::Client.new
35
+ client = ::Google::Cloud::OracleDatabase::V1::OracleDatabase::Client.new
36
36
  request = ::Google::Cloud::OracleDatabase::V1::ListCloudExadataInfrastructuresRequest.new # (request fields as keyword arguments...)
37
37
  response = client.list_cloud_exadata_infrastructures request
38
38
  ```
@@ -75,7 +75,7 @@ constructing a client object. For example:
75
75
  require "google/cloud/oracle_database/v1"
76
76
  require "logger"
77
77
 
78
- client = ::Google::Cloud::OracleDatabase::V1::OracleDatabase::Rest::Client.new do |config|
78
+ client = ::Google::Cloud::OracleDatabase::V1::OracleDatabase::Client.new do |config|
79
79
  config.logger = Logger.new "my-app.log"
80
80
  end
81
81
  ```