google-cloud-cloud_dms-v1 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a956b439f36f9681decc1f8620410e6ccca0d34c1f612e8a36ee5161dc656326
4
- data.tar.gz: 62e72077b74f2866b7d943079bd002e6897f67d39167875be032da82e585ec18
3
+ metadata.gz: fb4c789d7a500af3837f03a683a9aea6812c45d2304cf7eeaaa3d0be782629cc
4
+ data.tar.gz: bf62e1bbfde73afd797b443ad5aa0cd5dccc5be88008a78772c9798e27065dae
5
5
  SHA512:
6
- metadata.gz: 44b650e570f74b99262547fc5137ab2c2fa5f5ac6e2fd08ce43a303b551ff63d1b89851f7c5453bf5881239dfb2bcf31df1fcb9cca1aaa1981046f3f1aac15de
7
- data.tar.gz: 2dcbf3d073e2028f5fece9382eb31623529fdbd38e4c16b6bccdfa9dc6aef8647d15ba3d0a035613042df736809d82dc18429c4b65ba18f38d9535ec8ba55d8c
6
+ metadata.gz: 51525dddd91f5b196a3179912430587c7156c97c4d41756623cd9e5959b7f2964faf47af84fcad8b480c55f835f4c142dc65ce8e245b5eed0584bfee183067b8
7
+ data.tar.gz: fca20a4d743edcc9aec5dea12a4def64e2e3661c109feee681dc91995eec88d271a99ec6a67cdd43b272be5a723693c947a091e134773d36db782319270de70b
data/AUTHENTICATION.md CHANGED
@@ -66,11 +66,11 @@ The environment variables that google-cloud-cloud_dms-v1
66
66
  checks for credentials are configured on the service Credentials class (such as
67
67
  {::Google::Cloud::CloudDMS::V1::DataMigrationService::Credentials}):
68
68
 
69
- 1. `DATABASE_MIGRATION_CREDENTIALS` - Path to JSON file, or JSON contents
70
- 2. `DATABASE_MIGRATION_KEYFILE` - Path to JSON file, or JSON contents
71
- 3. `GOOGLE_CLOUD_CREDENTIALS` - Path to JSON file, or JSON contents
72
- 4. `GOOGLE_CLOUD_KEYFILE` - Path to JSON file, or JSON contents
73
- 5. `GOOGLE_APPLICATION_CREDENTIALS` - Path to JSON file
69
+ * `DATABASE_MIGRATION_CREDENTIALS` - Path to JSON file, or JSON contents
70
+ * `DATABASE_MIGRATION_KEYFILE` - Path to JSON file, or JSON contents
71
+ * `GOOGLE_CLOUD_CREDENTIALS` - Path to JSON file, or JSON contents
72
+ * `GOOGLE_CLOUD_KEYFILE` - Path to JSON file, or JSON contents
73
+ * `GOOGLE_APPLICATION_CREDENTIALS` - Path to JSON file
74
74
 
75
75
  ```ruby
76
76
  require "google/cloud/cloud_dms/v1"
@@ -82,8 +82,8 @@ client = ::Google::Cloud::CloudDMS::V1::DataMigrationService::Client.new
82
82
 
83
83
  ### Configuration
84
84
 
85
- The **Credentials JSON** can be configured instead of placing them in
86
- environment variables. Either on an individual client initialization:
85
+ The path to the **Credentials JSON** file can be configured instead of storing
86
+ it in an environment variable. Either on an individual client initialization:
87
87
 
88
88
  ```ruby
89
89
  require "google/cloud/cloud_dms/v1"
@@ -93,7 +93,7 @@ client = ::Google::Cloud::CloudDMS::V1::DataMigrationService::Client.new do |con
93
93
  end
94
94
  ```
95
95
 
96
- Or configured globally for all clients:
96
+ Or globally for all clients:
97
97
 
98
98
  ```ruby
99
99
  require "google/cloud/cloud_dms/v1"
data/README.md CHANGED
@@ -33,7 +33,7 @@ In order to use this library, you first need to go through the following steps:
33
33
  require "google/cloud/cloud_dms/v1"
34
34
 
35
35
  client = ::Google::Cloud::CloudDMS::V1::DataMigrationService::Client.new
36
- request = my_create_request
36
+ request = ::Google::Cloud::CloudDMS::V1::ListMigrationJobsRequest.new # (request fields as keyword arguments...)
37
37
  response = client.list_migration_jobs request
38
38
  ```
39
39
 
@@ -67,10 +67,7 @@ module Google
67
67
 
68
68
  default_config.timeout = 60.0
69
69
  default_config.retry_policy = {
70
- initial_delay: 1.0,
71
- max_delay: 10.0,
72
- multiplier: 1.3,
73
- retry_codes: [14]
70
+ initial_delay: 1.0, max_delay: 10.0, multiplier: 1.3, retry_codes: [14]
74
71
  }
75
72
 
76
73
  default_config.rpcs.list_migration_jobs.timeout = 60.0
@@ -175,7 +172,7 @@ module Google
175
172
  !@config.endpoint.split(".").first.include?("-")
176
173
  credentials ||= Credentials.default scope: @config.scope,
177
174
  enable_self_signed_jwt: enable_self_signed_jwt
178
- if credentials.is_a?(String) || credentials.is_a?(Hash)
175
+ if credentials.is_a?(::String) || credentials.is_a?(::Hash)
179
176
  credentials = Credentials.new credentials, scope: @config.scope
180
177
  end
181
178
  @quota_project_id = @config.quota_project
@@ -82,7 +82,7 @@ module Google
82
82
  # Create credentials
83
83
  credentials = @config.credentials
84
84
  credentials ||= Credentials.default scope: @config.scope
85
- if credentials.is_a?(String) || credentials.is_a?(Hash)
85
+ if credentials.is_a?(::String) || credentials.is_a?(::Hash)
86
86
  credentials = Credentials.new credentials, scope: @config.scope
87
87
  end
88
88
  @quota_project_id = @config.quota_project
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module CloudDMS
23
23
  module V1
24
- VERSION = "0.1.0"
24
+ VERSION = "0.1.1"
25
25
  end
26
26
  end
27
27
  end
@@ -60,6 +60,12 @@ module Google
60
60
  # in any arbitrary order, rather than the order the user originally
61
61
  # provided. Additionally, the list's order may or may not be stable.
62
62
  UNORDERED_LIST = 6
63
+
64
+ # Denotes that this field returns a non-empty default value if not set.
65
+ # This indicates that if the user provides the empty value in a request,
66
+ # a non-empty value will be returned. The user will not be aware of what
67
+ # non-empty value to expect.
68
+ NON_EMPTY_DEFAULT = 7
63
69
  end
64
70
  end
65
71
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-cloud_dms-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-21 00:00:00.000000000 Z
11
+ date: 2021-07-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common