google-apis-ml_v1 0.15.0 → 0.18.0

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: 9e99abb446cb98c9d10d6ab484b1a69267f6429caa854e42211edba9d6b28ca1
4
- data.tar.gz: 46bab2ea0ffc400e6284cceafcb6e36225ecf3a7413afda9568164a86a5ef130
3
+ metadata.gz: da38dce39a65554d1b06e361af7799fa06654936d6e4af6cff5995f10112ed66
4
+ data.tar.gz: c179db9072b0035f21d56663b85909619f3a88ca70afd9757c69ec34750eaf31
5
5
  SHA512:
6
- metadata.gz: 34844f5f6e12d67e0eacba0bb618b499566c11cc582686095729c8b3ecc398793667be3f86d96178ba37f6f177d26d8a81c9ac7aa5e5bfef93a1089a7c6cb5af
7
- data.tar.gz: 8ff2a94b3a9e8c3eaff95f8da1df3a13d2202c3e88e075a1ecd1f81c07ecd20c58a929a06bbd9ded6115329befe272c96d3e35415033d14aa2b85573c12b8e59
6
+ metadata.gz: a553a9ebd5dfdd4000bcecae6926ba60832fced09c2bee9114643cb04f2c9134988f0817ad59fcd3c6a2b317d43ead69e5ff95ba86394603ee4e925322caff26
7
+ data.tar.gz: 35ce341bca92a26b99c9247179ad574b30ce84e4d7ae9ba5a3a965f76c0bba8a6e7433c53878a10cf1fa8035f38203c1448a36a1c388b0b20fa1a89c7f2e0629
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-ml_v1
2
2
 
3
+ ### v0.18.0 (2022-03-23)
4
+
5
+ * Regenerated from discovery document revision 20220318
6
+ * Regenerated using generator version 0.4.1
7
+
8
+ ### v0.17.0 (2021-12-14)
9
+
10
+ * Unspecified changes
11
+
12
+ ### v0.16.0 (2021-11-19)
13
+
14
+ * Regenerated from discovery document revision 20211112
15
+
3
16
  ### v0.15.0 (2021-10-30)
4
17
 
5
18
  * Regenerated from discovery document revision 20211022
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/ml_v1"
51
51
  client = Google::Apis::MlV1::CloudMachineLearningEngineService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -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)
@@ -3742,8 +3750,7 @@ module Google
3742
3750
  # A generic empty message that you can re-use to avoid defining duplicated empty
3743
3751
  # messages in your APIs. A typical example is to use it as the request or the
3744
3752
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
3745
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
3746
- # `Empty` is empty JSON object ````.
3753
+ # protobuf.Empty) returns (google.protobuf.Empty); `
3747
3754
  class GoogleProtobufEmpty
3748
3755
  include Google::Apis::Core::Hashable
3749
3756
 
@@ -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.15.0"
19
+ GEM_VERSION = "0.18.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211022"
25
+ REVISION = "20220318"
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 format version to be returned. Valid values are 0, 1, and
258
- # 3. Requests specifying an invalid value will be rejected. Requests for
259
- # policies with any conditional bindings must specify version 3. Policies
260
- # without any conditional bindings may specify any valid value or leave the
261
- # field unset. To learn which resources support conditions in their IAM policies,
262
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
263
- # resource-policies).
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 format version to be returned. Valid values are 0, 1, and
1163
- # 3. Requests specifying an invalid value will be rejected. Requests for
1164
- # policies with any conditional bindings must specify version 3. Policies
1165
- # without any conditional bindings may specify any valid value or leave the
1166
- # field unset. To learn which resources support conditions in their IAM policies,
1167
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
1168
- # resource-policies).
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.15.0
4
+ version: 0.18.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-01 00:00:00.000000000 Z
11
+ date: 2022-03-28 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.15.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-ml_v1/v0.18.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.2.17
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for AI Platform Training & Prediction API V1