google-cloud-automl-v1beta1 0.5.1 → 0.5.2
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 +4 -4
- data/AUTHENTICATION.md +8 -8
- data/README.md +1 -1
- data/lib/google/cloud/automl/v1beta1/automl/client.rb +13 -49
- data/lib/google/cloud/automl/v1beta1/automl/operations.rb +4 -4
- data/lib/google/cloud/automl/v1beta1/prediction_service/client.rb +1 -1
- data/lib/google/cloud/automl/v1beta1/prediction_service/operations.rb +4 -4
- data/lib/google/cloud/automl/v1beta1/prediction_service_services_pb.rb +1 -1
- data/lib/google/cloud/automl/v1beta1/service_services_pb.rb +1 -1
- data/lib/google/cloud/automl/v1beta1/version.rb +1 -1
- data/proto_docs/google/api/field_behavior.rb +7 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ad2bb9fa21e7950c23f90bef266401c4e1798b6111738e71e263b73f6eb7254f
|
4
|
+
data.tar.gz: 2a42932abfbf308e1bdb879b624cb11cd04a121ffcc50789aa2a288105013ef2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d6ee105b7e4df1af7049ba400b4b0f3d09543ee19b3d70e69fafe2ca4dcd888a867d3ac50cd78bb68002fe09011ac6cf747f6147141b29faf0163f059618fc67
|
7
|
+
data.tar.gz: a79834d56dda41fb434d875124d92b4f8bc9064b630a5a3cf735554c84ef65d4bb86a2d0a21d22ba89db61c9b34eb05d95fad6b0128f30f7fa97d0afd7fcca53
|
data/AUTHENTICATION.md
CHANGED
@@ -66,11 +66,11 @@ The environment variables that google-cloud-automl-v1beta1
|
|
66
66
|
checks for credentials are configured on the service Credentials class (such as
|
67
67
|
{::Google::Cloud::AutoML::V1beta1::PredictionService::Credentials}):
|
68
68
|
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
69
|
+
* `AUTOML_CREDENTIALS` - Path to JSON file, or JSON contents
|
70
|
+
* `AUTOML_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/automl/v1beta1"
|
@@ -82,8 +82,8 @@ client = ::Google::Cloud::AutoML::V1beta1::PredictionService::Client.new
|
|
82
82
|
|
83
83
|
### Configuration
|
84
84
|
|
85
|
-
The **Credentials JSON** can be configured instead of
|
86
|
-
environment
|
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/automl/v1beta1"
|
@@ -93,7 +93,7 @@ client = ::Google::Cloud::AutoML::V1beta1::PredictionService::Client.new do |con
|
|
93
93
|
end
|
94
94
|
```
|
95
95
|
|
96
|
-
Or
|
96
|
+
Or globally for all clients:
|
97
97
|
|
98
98
|
```ruby
|
99
99
|
require "google/cloud/automl/v1beta1"
|
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/automl/v1beta1"
|
34
34
|
|
35
35
|
client = ::Google::Cloud::AutoML::V1beta1::PredictionService::Client.new
|
36
|
-
request =
|
36
|
+
request = ::Google::Cloud::AutoML::V1beta1::PredictRequest.new # (request fields as keyword arguments...)
|
37
37
|
response = client.predict request
|
38
38
|
```
|
39
39
|
|
@@ -82,28 +82,19 @@ module Google
|
|
82
82
|
|
83
83
|
default_config.rpcs.get_dataset.timeout = 5.0
|
84
84
|
default_config.rpcs.get_dataset.retry_policy = {
|
85
|
-
initial_delay: 0.1,
|
86
|
-
max_delay: 60.0,
|
87
|
-
multiplier: 1.3,
|
88
|
-
retry_codes: [14, 4]
|
85
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14, 4]
|
89
86
|
}
|
90
87
|
|
91
88
|
default_config.rpcs.list_datasets.timeout = 5.0
|
92
89
|
default_config.rpcs.list_datasets.retry_policy = {
|
93
|
-
initial_delay: 0.1,
|
94
|
-
max_delay: 60.0,
|
95
|
-
multiplier: 1.3,
|
96
|
-
retry_codes: [14, 4]
|
90
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14, 4]
|
97
91
|
}
|
98
92
|
|
99
93
|
default_config.rpcs.update_dataset.timeout = 5.0
|
100
94
|
|
101
95
|
default_config.rpcs.delete_dataset.timeout = 5.0
|
102
96
|
default_config.rpcs.delete_dataset.retry_policy = {
|
103
|
-
initial_delay: 0.1,
|
104
|
-
max_delay: 60.0,
|
105
|
-
multiplier: 1.3,
|
106
|
-
retry_codes: [14, 4]
|
97
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14, 4]
|
107
98
|
}
|
108
99
|
|
109
100
|
default_config.rpcs.import_data.timeout = 5.0
|
@@ -112,44 +103,29 @@ module Google
|
|
112
103
|
|
113
104
|
default_config.rpcs.get_annotation_spec.timeout = 5.0
|
114
105
|
default_config.rpcs.get_annotation_spec.retry_policy = {
|
115
|
-
initial_delay: 0.1,
|
116
|
-
max_delay: 60.0,
|
117
|
-
multiplier: 1.3,
|
118
|
-
retry_codes: [14, 4]
|
106
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14, 4]
|
119
107
|
}
|
120
108
|
|
121
109
|
default_config.rpcs.get_table_spec.timeout = 5.0
|
122
110
|
default_config.rpcs.get_table_spec.retry_policy = {
|
123
|
-
initial_delay: 0.1,
|
124
|
-
max_delay: 60.0,
|
125
|
-
multiplier: 1.3,
|
126
|
-
retry_codes: [14, 4]
|
111
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14, 4]
|
127
112
|
}
|
128
113
|
|
129
114
|
default_config.rpcs.list_table_specs.timeout = 5.0
|
130
115
|
default_config.rpcs.list_table_specs.retry_policy = {
|
131
|
-
initial_delay: 0.1,
|
132
|
-
max_delay: 60.0,
|
133
|
-
multiplier: 1.3,
|
134
|
-
retry_codes: [14, 4]
|
116
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14, 4]
|
135
117
|
}
|
136
118
|
|
137
119
|
default_config.rpcs.update_table_spec.timeout = 5.0
|
138
120
|
|
139
121
|
default_config.rpcs.get_column_spec.timeout = 5.0
|
140
122
|
default_config.rpcs.get_column_spec.retry_policy = {
|
141
|
-
initial_delay: 0.1,
|
142
|
-
max_delay: 60.0,
|
143
|
-
multiplier: 1.3,
|
144
|
-
retry_codes: [14, 4]
|
123
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14, 4]
|
145
124
|
}
|
146
125
|
|
147
126
|
default_config.rpcs.list_column_specs.timeout = 5.0
|
148
127
|
default_config.rpcs.list_column_specs.retry_policy = {
|
149
|
-
initial_delay: 0.1,
|
150
|
-
max_delay: 60.0,
|
151
|
-
multiplier: 1.3,
|
152
|
-
retry_codes: [14, 4]
|
128
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14, 4]
|
153
129
|
}
|
154
130
|
|
155
131
|
default_config.rpcs.update_column_spec.timeout = 5.0
|
@@ -158,26 +134,17 @@ module Google
|
|
158
134
|
|
159
135
|
default_config.rpcs.get_model.timeout = 5.0
|
160
136
|
default_config.rpcs.get_model.retry_policy = {
|
161
|
-
initial_delay: 0.1,
|
162
|
-
max_delay: 60.0,
|
163
|
-
multiplier: 1.3,
|
164
|
-
retry_codes: [14, 4]
|
137
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14, 4]
|
165
138
|
}
|
166
139
|
|
167
140
|
default_config.rpcs.list_models.timeout = 5.0
|
168
141
|
default_config.rpcs.list_models.retry_policy = {
|
169
|
-
initial_delay: 0.1,
|
170
|
-
max_delay: 60.0,
|
171
|
-
multiplier: 1.3,
|
172
|
-
retry_codes: [14, 4]
|
142
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14, 4]
|
173
143
|
}
|
174
144
|
|
175
145
|
default_config.rpcs.delete_model.timeout = 5.0
|
176
146
|
default_config.rpcs.delete_model.retry_policy = {
|
177
|
-
initial_delay: 0.1,
|
178
|
-
max_delay: 60.0,
|
179
|
-
multiplier: 1.3,
|
180
|
-
retry_codes: [14, 4]
|
147
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14, 4]
|
181
148
|
}
|
182
149
|
|
183
150
|
default_config.rpcs.deploy_model.timeout = 5.0
|
@@ -190,10 +157,7 @@ module Google
|
|
190
157
|
|
191
158
|
default_config.rpcs.get_model_evaluation.timeout = 5.0
|
192
159
|
default_config.rpcs.get_model_evaluation.retry_policy = {
|
193
|
-
initial_delay: 0.1,
|
194
|
-
max_delay: 60.0,
|
195
|
-
multiplier: 1.3,
|
196
|
-
retry_codes: [14, 4]
|
160
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14, 4]
|
197
161
|
}
|
198
162
|
|
199
163
|
default_config.rpcs.list_model_evaluations.timeout = 5.0
|
@@ -266,7 +230,7 @@ module Google
|
|
266
230
|
!@config.endpoint.split(".").first.include?("-")
|
267
231
|
credentials ||= Credentials.default scope: @config.scope,
|
268
232
|
enable_self_signed_jwt: enable_self_signed_jwt
|
269
|
-
if credentials.is_a?(String) || credentials.is_a?(Hash)
|
233
|
+
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
|
270
234
|
credentials = Credentials.new credentials, scope: @config.scope
|
271
235
|
end
|
272
236
|
@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
|
@@ -396,9 +396,9 @@ module Google
|
|
396
396
|
end
|
397
397
|
|
398
398
|
##
|
399
|
-
# Waits
|
400
|
-
#
|
401
|
-
#
|
399
|
+
# Waits until the specified long-running operation is done or reaches at most
|
400
|
+
# a specified timeout, returning the latest state. If the operation is
|
401
|
+
# already done, the latest state is immediately returned. If the timeout
|
402
402
|
# specified is greater than the default HTTP/RPC timeout, the HTTP/RPC
|
403
403
|
# timeout is used. If the server does not support this method, it returns
|
404
404
|
# `google.rpc.Code.UNIMPLEMENTED`.
|
@@ -140,7 +140,7 @@ module Google
|
|
140
140
|
!@config.endpoint.split(".").first.include?("-")
|
141
141
|
credentials ||= Credentials.default scope: @config.scope,
|
142
142
|
enable_self_signed_jwt: enable_self_signed_jwt
|
143
|
-
if credentials.is_a?(String) || credentials.is_a?(Hash)
|
143
|
+
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
|
144
144
|
credentials = Credentials.new credentials, scope: @config.scope
|
145
145
|
end
|
146
146
|
@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
|
@@ -396,9 +396,9 @@ module Google
|
|
396
396
|
end
|
397
397
|
|
398
398
|
##
|
399
|
-
# Waits
|
400
|
-
#
|
401
|
-
#
|
399
|
+
# Waits until the specified long-running operation is done or reaches at most
|
400
|
+
# a specified timeout, returning the latest state. If the operation is
|
401
|
+
# already done, the latest state is immediately returned. If the timeout
|
402
402
|
# specified is greater than the default HTTP/RPC timeout, the HTTP/RPC
|
403
403
|
# timeout is used. If the server does not support this method, it returns
|
404
404
|
# `google.rpc.Code.UNIMPLEMENTED`.
|
@@ -57,9 +57,15 @@ module Google
|
|
57
57
|
|
58
58
|
# Denotes that a (repeated) field is an unordered list.
|
59
59
|
# This indicates that the service may provide the elements of the list
|
60
|
-
# in any arbitrary
|
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-automl-v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.2
|
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-
|
11
|
+
date: 2021-07-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|