google-apis-ml_v1 0.15.0 → 0.16.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/ml_v1/classes.rb +8 -0
- data/lib/google/apis/ml_v1/gem_version.rb +2 -2
- data/lib/google/apis/ml_v1/representations.rb +1 -0
- data/lib/google/apis/ml_v1/service.rb +20 -14
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c46f21a1074e1ad156925f55001c21bd2d0cc9cdb4f5c45e9548ccb1cc5a793e
|
4
|
+
data.tar.gz: f5b94c671bb20de4e280d3ead7376297f3d36aff2918aaf241de79190de0e00f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d1504b1b823fdaa5d9acc0816c4b2dff0986efd142372be92e024f204105055588aab74e8ff086fa2694508e12c5bf10ec37383ad646b7c3322b5f265a4479a
|
7
|
+
data.tar.gz: 9d0a79e29842645e9133e1aafadade62d82ebe330d116c3d9170106ac5cb4cfc77affa9ad68b3f6116cde8daba8c741cd7633223e8c94a8517c77ffded67bc68
|
data/CHANGELOG.md
CHANGED
@@ -1384,6 +1384,13 @@ module Google
|
|
1384
1384
|
# @return [String]
|
1385
1385
|
attr_accessor :job_id
|
1386
1386
|
|
1387
|
+
# Output only. It's only effect when the job is in QUEUED state. If it's
|
1388
|
+
# positive, it indicates the job's position in the job scheduler. It's 0 when
|
1389
|
+
# the job is already scheduled.
|
1390
|
+
# Corresponds to the JSON property `jobPosition`
|
1391
|
+
# @return [Fixnum]
|
1392
|
+
attr_accessor :job_position
|
1393
|
+
|
1387
1394
|
# Optional. One or more labels that you can add, to organize your jobs. Each
|
1388
1395
|
# label is a key-value pair, where both the key and the value are arbitrary
|
1389
1396
|
# strings that you supply. For more information, see the documentation on using
|
@@ -1437,6 +1444,7 @@ module Google
|
|
1437
1444
|
@error_message = args[:error_message] if args.key?(:error_message)
|
1438
1445
|
@etag = args[:etag] if args.key?(:etag)
|
1439
1446
|
@job_id = args[:job_id] if args.key?(:job_id)
|
1447
|
+
@job_position = args[:job_position] if args.key?(:job_position)
|
1440
1448
|
@labels = args[:labels] if args.key?(:labels)
|
1441
1449
|
@prediction_input = args[:prediction_input] if args.key?(:prediction_input)
|
1442
1450
|
@prediction_output = args[:prediction_output] if args.key?(:prediction_output)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MlV1
|
18
18
|
# Version of the google-apis-ml_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.16.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20211112"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -895,6 +895,7 @@ module Google
|
|
895
895
|
property :error_message, as: 'errorMessage'
|
896
896
|
property :etag, :base64 => true, as: 'etag'
|
897
897
|
property :job_id, as: 'jobId'
|
898
|
+
property :job_position, :numeric_string => true, as: 'jobPosition'
|
898
899
|
hash :labels, as: 'labels'
|
899
900
|
property :prediction_input, as: 'predictionInput', class: Google::Apis::MlV1::GoogleCloudMlV1PredictionInput, decorator: Google::Apis::MlV1::GoogleCloudMlV1PredictionInput::Representation
|
900
901
|
|
@@ -254,13 +254,16 @@ module Google
|
|
254
254
|
# REQUIRED: The resource for which the policy is being requested. See the
|
255
255
|
# operation documentation for the appropriate value for this field.
|
256
256
|
# @param [Fixnum] options_requested_policy_version
|
257
|
-
# Optional. The policy
|
258
|
-
# 3. Requests specifying an invalid value will be
|
259
|
-
# policies with any conditional bindings must
|
260
|
-
#
|
261
|
-
# field unset.
|
262
|
-
#
|
263
|
-
#
|
257
|
+
# Optional. The maximum policy version that will be used to format the policy.
|
258
|
+
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
259
|
+
# rejected. Requests for policies with any conditional role bindings must
|
260
|
+
# specify version 3. Policies with no conditional role bindings may specify any
|
261
|
+
# valid value or leave the field unset. The policy in the response might use the
|
262
|
+
# policy version that you specified, or it might use a lower policy version. For
|
263
|
+
# example, if you specify version 3, but the policy has no conditional role
|
264
|
+
# bindings, the response uses version 1. To learn which resources support
|
265
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
266
|
+
# google.com/iam/help/conditions/resource-policies).
|
264
267
|
# @param [String] fields
|
265
268
|
# Selector specifying which fields to include in a partial response.
|
266
269
|
# @param [String] quota_user
|
@@ -1159,13 +1162,16 @@ module Google
|
|
1159
1162
|
# REQUIRED: The resource for which the policy is being requested. See the
|
1160
1163
|
# operation documentation for the appropriate value for this field.
|
1161
1164
|
# @param [Fixnum] options_requested_policy_version
|
1162
|
-
# Optional. The policy
|
1163
|
-
# 3. Requests specifying an invalid value will be
|
1164
|
-
# policies with any conditional bindings must
|
1165
|
-
#
|
1166
|
-
# field unset.
|
1167
|
-
#
|
1168
|
-
#
|
1165
|
+
# Optional. The maximum policy version that will be used to format the policy.
|
1166
|
+
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
1167
|
+
# rejected. Requests for policies with any conditional role bindings must
|
1168
|
+
# specify version 3. Policies with no conditional role bindings may specify any
|
1169
|
+
# valid value or leave the field unset. The policy in the response might use the
|
1170
|
+
# policy version that you specified, or it might use a lower policy version. For
|
1171
|
+
# example, if you specify version 3, but the policy has no conditional role
|
1172
|
+
# bindings, the response uses version 1. To learn which resources support
|
1173
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
1174
|
+
# google.com/iam/help/conditions/resource-policies).
|
1169
1175
|
# @param [String] fields
|
1170
1176
|
# Selector specifying which fields to include in a partial response.
|
1171
1177
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-ml_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.16.0
|
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-12-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-ml_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-ml_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-ml_v1/v0.16.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-ml_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|