google-cloud-automl-v1 0.4.1 → 0.4.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/v1/automl/client.rb +10 -37
- data/lib/google/cloud/automl/v1/automl/operations.rb +4 -4
- data/lib/google/cloud/automl/v1/prediction_service/client.rb +1 -1
- data/lib/google/cloud/automl/v1/prediction_service/operations.rb +4 -4
- data/lib/google/cloud/automl/v1/prediction_service_services_pb.rb +1 -1
- data/lib/google/cloud/automl/v1/service_services_pb.rb +1 -1
- data/lib/google/cloud/automl/v1/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: 5eb393d0e61f8a9532061a672a74c8f67dcbea8fb402e332deca6d687f9c8a65
|
|
4
|
+
data.tar.gz: 2f3e78cee9e36a4d60efa2c4b6f66f8f09276b882e3bd9daf655eea6ccb16b35
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3cd9ef40ab50bcf048b31513d391db0498ec93ef3f5db28dc09ed5f79060f0e405763ef9334474481c821a26bb701c6ad64c739ccddb1b4d4b9dd220a493efc5
|
|
7
|
+
data.tar.gz: ed494b28be93a81a7f2427a27e19e86d93ff21365a1426f1f920f0dbd9604d6a48ae7a5de21022b2b3f13a3c12f1e9c1cd801b9d882df6dd5ae5988198537a69
|
data/AUTHENTICATION.md
CHANGED
|
@@ -66,11 +66,11 @@ The environment variables that google-cloud-automl-v1
|
|
|
66
66
|
checks for credentials are configured on the service Credentials class (such as
|
|
67
67
|
{::Google::Cloud::AutoML::V1::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/v1"
|
|
@@ -82,8 +82,8 @@ client = ::Google::Cloud::AutoML::V1::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/v1"
|
|
@@ -93,7 +93,7 @@ client = ::Google::Cloud::AutoML::V1::PredictionService::Client.new do |config|
|
|
|
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/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/automl/v1"
|
|
34
34
|
|
|
35
35
|
client = ::Google::Cloud::AutoML::V1::PredictionService::Client.new
|
|
36
|
-
request =
|
|
36
|
+
request = ::Google::Cloud::AutoML::V1::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: [4, 14]
|
|
85
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
|
|
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: [4, 14]
|
|
90
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
|
|
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: [4, 14]
|
|
97
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
|
|
107
98
|
}
|
|
108
99
|
|
|
109
100
|
default_config.rpcs.import_data.timeout = 5.0
|
|
@@ -112,36 +103,24 @@ 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: [4, 14]
|
|
106
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
|
|
119
107
|
}
|
|
120
108
|
|
|
121
109
|
default_config.rpcs.create_model.timeout = 5.0
|
|
122
110
|
|
|
123
111
|
default_config.rpcs.get_model.timeout = 5.0
|
|
124
112
|
default_config.rpcs.get_model.retry_policy = {
|
|
125
|
-
initial_delay: 0.1,
|
|
126
|
-
max_delay: 60.0,
|
|
127
|
-
multiplier: 1.3,
|
|
128
|
-
retry_codes: [4, 14]
|
|
113
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
|
|
129
114
|
}
|
|
130
115
|
|
|
131
116
|
default_config.rpcs.list_models.timeout = 5.0
|
|
132
117
|
default_config.rpcs.list_models.retry_policy = {
|
|
133
|
-
initial_delay: 0.1,
|
|
134
|
-
max_delay: 60.0,
|
|
135
|
-
multiplier: 1.3,
|
|
136
|
-
retry_codes: [4, 14]
|
|
118
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
|
|
137
119
|
}
|
|
138
120
|
|
|
139
121
|
default_config.rpcs.delete_model.timeout = 5.0
|
|
140
122
|
default_config.rpcs.delete_model.retry_policy = {
|
|
141
|
-
initial_delay: 0.1,
|
|
142
|
-
max_delay: 60.0,
|
|
143
|
-
multiplier: 1.3,
|
|
144
|
-
retry_codes: [4, 14]
|
|
123
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
|
|
145
124
|
}
|
|
146
125
|
|
|
147
126
|
default_config.rpcs.update_model.timeout = 5.0
|
|
@@ -154,18 +133,12 @@ module Google
|
|
|
154
133
|
|
|
155
134
|
default_config.rpcs.get_model_evaluation.timeout = 5.0
|
|
156
135
|
default_config.rpcs.get_model_evaluation.retry_policy = {
|
|
157
|
-
initial_delay: 0.1,
|
|
158
|
-
max_delay: 60.0,
|
|
159
|
-
multiplier: 1.3,
|
|
160
|
-
retry_codes: [4, 14]
|
|
136
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
|
|
161
137
|
}
|
|
162
138
|
|
|
163
139
|
default_config.rpcs.list_model_evaluations.timeout = 5.0
|
|
164
140
|
default_config.rpcs.list_model_evaluations.retry_policy = {
|
|
165
|
-
initial_delay: 0.1,
|
|
166
|
-
max_delay: 60.0,
|
|
167
|
-
multiplier: 1.3,
|
|
168
|
-
retry_codes: [4, 14]
|
|
141
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
|
|
169
142
|
}
|
|
170
143
|
|
|
171
144
|
default_config
|
|
@@ -236,7 +209,7 @@ module Google
|
|
|
236
209
|
!@config.endpoint.split(".").first.include?("-")
|
|
237
210
|
credentials ||= Credentials.default scope: @config.scope,
|
|
238
211
|
enable_self_signed_jwt: enable_self_signed_jwt
|
|
239
|
-
if credentials.is_a?(String) || credentials.is_a?(Hash)
|
|
212
|
+
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
|
|
240
213
|
credentials = Credentials.new credentials, scope: @config.scope
|
|
241
214
|
end
|
|
242
215
|
@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-v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.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
|