google-cloud-ai_platform-v1 0.9.1 → 0.10.0
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/lib/google/cloud/ai_platform/v1/dataset_service/client.rb +2 -0
- data/lib/google/cloud/ai_platform/v1/job_service/client.rb +47 -42
- data/lib/google/cloud/ai_platform/v1/model_service/client.rb +3 -0
- data/lib/google/cloud/ai_platform/v1/pipeline_service/client.rb +15 -13
- data/lib/google/cloud/ai_platform/v1/version.rb +1 -1
- data/lib/google/cloud/aiplatform/v1/model_pb.rb +1 -0
- data/proto_docs/google/cloud/aiplatform/v1/custom_job.rb +2 -2
- data/proto_docs/google/cloud/aiplatform/v1/dataset_service.rb +4 -1
- data/proto_docs/google/cloud/aiplatform/v1/job_service.rb +47 -42
- data/proto_docs/google/cloud/aiplatform/v1/model.rb +4 -0
- data/proto_docs/google/cloud/aiplatform/v1/model_service.rb +3 -0
- data/proto_docs/google/cloud/aiplatform/v1/pipeline_service.rb +15 -13
- data/proto_docs/google/cloud/aiplatform/v1/saved_query.rb +1 -1
- data/proto_docs/google/cloud/aiplatform/v1/study.rb +7 -7
- data/proto_docs/google/cloud/aiplatform/v1/types.rb +1 -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: ea2a791995ba23583168869aba5021f3f685830da1935041e5ded73e226858cc
|
4
|
+
data.tar.gz: 3b2931b921d2cd0c722bafa86ccb7510ce92c4d6a05925d364cb0f98d979c595
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b3b4b14a48361a6284eb43ba80de2188c1231bde6ea698ba1c1626ecdad15d38306fa4dc85ead32913f741ec477f826e6dca9ba2cbdd0f16d35bb05a2b221d4
|
7
|
+
data.tar.gz: 5d76a2c0d266815c40af52f43792c7cd4dc7b164f287699d70c42cb0ecb0f698ac8a8dd32743d90e44bde3ab58ecf684970db4135f1ec98480e70b0635db7205
|
@@ -495,6 +495,7 @@ module Google
|
|
495
495
|
# * A key including a space must be quoted. `labels."a key"`.
|
496
496
|
#
|
497
497
|
# Some examples:
|
498
|
+
#
|
498
499
|
# * `displayName="myDisplayName"`
|
499
500
|
# * `labels.myKey="myValue"`
|
500
501
|
# @param page_size [::Integer]
|
@@ -507,6 +508,7 @@ module Google
|
|
507
508
|
# A comma-separated list of fields to order by, sorted in ascending order.
|
508
509
|
# Use "desc" after a field name for descending.
|
509
510
|
# Supported fields:
|
511
|
+
#
|
510
512
|
# * `display_name`
|
511
513
|
# * `create_time`
|
512
514
|
# * `update_time`
|
@@ -387,19 +387,17 @@ module Google
|
|
387
387
|
#
|
388
388
|
# Supported fields:
|
389
389
|
#
|
390
|
-
# * `display_name` supports
|
391
|
-
#
|
392
|
-
# * `
|
390
|
+
# * `display_name` supports `=`, `!=` comparisons, and `:` wildcard.
|
391
|
+
# * `state` supports `=`, `!=` comparisons.
|
392
|
+
# * `create_time` supports `=`, `!=`,`<`, `<=`,`>`, `>=` comparisons.
|
393
|
+
# `create_time` must be in RFC 3339 format.
|
393
394
|
#
|
394
395
|
# Some examples of using the filter are:
|
395
396
|
#
|
396
|
-
#
|
397
|
-
#
|
398
|
-
#
|
399
|
-
#
|
400
|
-
# * `NOT display_name="my_job"`
|
401
|
-
#
|
402
|
-
# * `state="JOB_STATE_FAILED"`
|
397
|
+
# * `state="JOB_STATE_SUCCEEDED" AND display_name:"my_job_*"`
|
398
|
+
# * `state!="JOB_STATE_FAILED" OR display_name="my_job"`
|
399
|
+
# * `NOT display_name="my_job"`
|
400
|
+
# * `create_time>"2021-05-18T00:00:00Z"`
|
403
401
|
# @param page_size [::Integer]
|
404
402
|
# The standard list page size.
|
405
403
|
# @param page_token [::String]
|
@@ -873,19 +871,17 @@ module Google
|
|
873
871
|
#
|
874
872
|
# Supported fields:
|
875
873
|
#
|
876
|
-
# * `display_name` supports
|
877
|
-
#
|
878
|
-
# * `
|
874
|
+
# * `display_name` supports `=`, `!=` comparisons, and `:` wildcard.
|
875
|
+
# * `state` supports `=`, `!=` comparisons.
|
876
|
+
# * `create_time` supports `=`, `!=`,`<`, `<=`,`>`, `>=` comparisons.
|
877
|
+
# `create_time` must be in RFC 3339 format.
|
879
878
|
#
|
880
879
|
# Some examples of using the filter are:
|
881
880
|
#
|
882
|
-
#
|
883
|
-
#
|
884
|
-
#
|
885
|
-
#
|
886
|
-
# * `NOT display_name="my_job"`
|
887
|
-
#
|
888
|
-
# * `state="JOB_STATE_FAILED"`
|
881
|
+
# * `state="JOB_STATE_SUCCEEDED" AND display_name:"my_job_*"`
|
882
|
+
# * `state!="JOB_STATE_FAILED" OR display_name="my_job"`
|
883
|
+
# * `NOT display_name="my_job"`
|
884
|
+
# * `create_time>"2021-05-18T00:00:00Z"`
|
889
885
|
# @param page_size [::Integer]
|
890
886
|
# The standard list page size.
|
891
887
|
# @param page_token [::String]
|
@@ -1354,19 +1350,17 @@ module Google
|
|
1354
1350
|
#
|
1355
1351
|
# Supported fields:
|
1356
1352
|
#
|
1357
|
-
# * `display_name` supports
|
1358
|
-
#
|
1359
|
-
# * `
|
1353
|
+
# * `display_name` supports `=`, `!=` comparisons, and `:` wildcard.
|
1354
|
+
# * `state` supports `=`, `!=` comparisons.
|
1355
|
+
# * `create_time` supports `=`, `!=`,`<`, `<=`,`>`, `>=` comparisons.
|
1356
|
+
# `create_time` must be in RFC 3339 format.
|
1360
1357
|
#
|
1361
1358
|
# Some examples of using the filter are:
|
1362
1359
|
#
|
1363
|
-
#
|
1364
|
-
#
|
1365
|
-
#
|
1366
|
-
#
|
1367
|
-
# * `NOT display_name="my_job"`
|
1368
|
-
#
|
1369
|
-
# * `state="JOB_STATE_FAILED"`
|
1360
|
+
# * `state="JOB_STATE_SUCCEEDED" AND display_name:"my_job_*"`
|
1361
|
+
# * `state!="JOB_STATE_FAILED" OR display_name="my_job"`
|
1362
|
+
# * `NOT display_name="my_job"`
|
1363
|
+
# * `create_time>"2021-05-18T00:00:00Z"`
|
1370
1364
|
# @param page_size [::Integer]
|
1371
1365
|
# The standard list page size.
|
1372
1366
|
# @param page_token [::String]
|
@@ -1841,21 +1835,18 @@ module Google
|
|
1841
1835
|
#
|
1842
1836
|
# Supported fields:
|
1843
1837
|
#
|
1844
|
-
# * `display_name` supports
|
1845
|
-
#
|
1846
|
-
# * `state` supports
|
1847
|
-
#
|
1848
|
-
#
|
1838
|
+
# * `display_name` supports `=`, `!=` comparisons, and `:` wildcard.
|
1839
|
+
# * `model_display_name` supports `=`, `!=` comparisons.
|
1840
|
+
# * `state` supports `=`, `!=` comparisons.
|
1841
|
+
# * `create_time` supports `=`, `!=`,`<`, `<=`,`>`, `>=` comparisons.
|
1842
|
+
# `create_time` must be in RFC 3339 format.
|
1849
1843
|
#
|
1850
1844
|
# Some examples of using the filter are:
|
1851
1845
|
#
|
1852
|
-
#
|
1853
|
-
#
|
1854
|
-
#
|
1855
|
-
#
|
1856
|
-
# * `NOT display_name="my_job"`
|
1857
|
-
#
|
1858
|
-
# * `state="JOB_STATE_FAILED"`
|
1846
|
+
# * `state="JOB_STATE_SUCCEEDED" AND display_name:"my_job_*"`
|
1847
|
+
# * `state!="JOB_STATE_FAILED" OR display_name="my_job"`
|
1848
|
+
# * `NOT display_name="my_job"`
|
1849
|
+
# * `create_time>"2021-05-18T00:00:00Z"`
|
1859
1850
|
# @param page_size [::Integer]
|
1860
1851
|
# The standard list page size.
|
1861
1852
|
# @param page_token [::String]
|
@@ -2444,6 +2435,20 @@ module Google
|
|
2444
2435
|
# Format: `projects/{project}/locations/{location}`
|
2445
2436
|
# @param filter [::String]
|
2446
2437
|
# The standard list filter.
|
2438
|
+
#
|
2439
|
+
# Supported fields:
|
2440
|
+
#
|
2441
|
+
# * `display_name` supports `=`, `!=` comparisons, and `:` wildcard.
|
2442
|
+
# * `state` supports `=`, `!=` comparisons.
|
2443
|
+
# * `create_time` supports `=`, `!=`,`<`, `<=`,`>`, `>=` comparisons.
|
2444
|
+
# `create_time` must be in RFC 3339 format.
|
2445
|
+
#
|
2446
|
+
# Some examples of using the filter are:
|
2447
|
+
#
|
2448
|
+
# * `state="JOB_STATE_SUCCEEDED" AND display_name:"my_job_*"`
|
2449
|
+
# * `state!="JOB_STATE_FAILED" OR display_name="my_job"`
|
2450
|
+
# * `NOT display_name="my_job"`
|
2451
|
+
# * `create_time>"2021-05-18T00:00:00Z"`
|
2447
2452
|
# @param page_size [::Integer]
|
2448
2453
|
# The standard list page size.
|
2449
2454
|
# @param page_token [::String]
|
@@ -420,6 +420,7 @@ module Google
|
|
420
420
|
# * A key including a space must be quoted. `labels."a key"`.
|
421
421
|
#
|
422
422
|
# Some examples:
|
423
|
+
#
|
423
424
|
# * `model=1234`
|
424
425
|
# * `displayName="myDisplayName"`
|
425
426
|
# * `labels.myKey="myValue"`
|
@@ -436,6 +437,7 @@ module Google
|
|
436
437
|
# A comma-separated list of fields to order by, sorted in ascending order.
|
437
438
|
# Use "desc" after a field name for descending.
|
438
439
|
# Supported fields:
|
440
|
+
#
|
439
441
|
# * `display_name`
|
440
442
|
# * `create_time`
|
441
443
|
# * `update_time`
|
@@ -550,6 +552,7 @@ module Google
|
|
550
552
|
# * A key including a space must be quoted. `labels."a key"`.
|
551
553
|
#
|
552
554
|
# Some examples:
|
555
|
+
#
|
553
556
|
# * `labels.myKey="myValue"`
|
554
557
|
# @param read_mask [::Google::Protobuf::FieldMask, ::Hash]
|
555
558
|
# Mask specifying which fields to read.
|
@@ -386,21 +386,22 @@ module Google
|
|
386
386
|
# Format: `projects/{project}/locations/{location}`
|
387
387
|
# @param filter [::String]
|
388
388
|
# The standard list filter.
|
389
|
-
# Supported fields:
|
390
389
|
#
|
391
|
-
#
|
390
|
+
# Supported fields:
|
392
391
|
#
|
393
|
-
# * `
|
392
|
+
# * `display_name` supports `=`, `!=` comparisons, and `:` wildcard.
|
393
|
+
# * `state` supports `=`, `!=` comparisons.
|
394
|
+
# * `training_task_definition` `=`, `!=` comparisons, and `:` wildcard.
|
395
|
+
# * `create_time` supports `=`, `!=`,`<`, `<=`,`>`, `>=` comparisons.
|
396
|
+
# `create_time` must be in RFC 3339 format.
|
394
397
|
#
|
395
398
|
# Some examples of using the filter are:
|
396
399
|
#
|
397
|
-
#
|
398
|
-
#
|
399
|
-
#
|
400
|
-
#
|
401
|
-
#
|
402
|
-
#
|
403
|
-
# * `state="PIPELINE_STATE_FAILED"`
|
400
|
+
# * `state="PIPELINE_STATE_SUCCEEDED" AND display_name:"my_pipeline_*"`
|
401
|
+
# * `state!="PIPELINE_STATE_FAILED" OR display_name="my_pipeline"`
|
402
|
+
# * `NOT display_name="my_pipeline"`
|
403
|
+
# * `create_time>"2021-05-18T00:00:00Z"`
|
404
|
+
# * `training_task_definition:"*automl_text_classification*"`
|
404
405
|
# @param page_size [::Integer]
|
405
406
|
# The standard list page size.
|
406
407
|
# @param page_token [::String]
|
@@ -883,8 +884,8 @@ module Google
|
|
883
884
|
# * `pipeline_name`: Supports `=` and `!=` comparisons.
|
884
885
|
# * `display_name`: Supports `=`, `!=` comparisons, and `:` wildcard.
|
885
886
|
# * `pipeline_job_user_id`: Supports `=`, `!=` comparisons, and `:` wildcard.
|
886
|
-
#
|
887
|
-
# display_name:\"*step*\"
|
887
|
+
# for example, can check if pipeline's display_name contains *step* by
|
888
|
+
# doing display_name:\"*step*\"
|
888
889
|
# * `state`: Supports `=` and `!=` comparisons.
|
889
890
|
# * `create_time`: Supports `=`, `!=`, `<`, `>`, `<=`, and `>=` comparisons.
|
890
891
|
# Values must be in RFC 3339 format.
|
@@ -895,7 +896,7 @@ module Google
|
|
895
896
|
# * `labels`: Supports key-value equality and key presence.
|
896
897
|
# * `template_uri`: Supports `=`, `!=` comparisons, and `:` wildcard.
|
897
898
|
# * `template_metadata.version`: Supports `=`, `!=` comparisons, and `:`
|
898
|
-
#
|
899
|
+
# wildcard.
|
899
900
|
#
|
900
901
|
# Filter expressions can be combined together using logical operators
|
901
902
|
# (`AND` & `OR`).
|
@@ -927,6 +928,7 @@ module Google
|
|
927
928
|
# there are multiple jobs having the same create time, order them by the end
|
928
929
|
# time in ascending order. if order_by is not specified, it will order by
|
929
930
|
# default order is create time in descending order. Supported fields:
|
931
|
+
#
|
930
932
|
# * `create_time`
|
931
933
|
# * `update_time`
|
932
934
|
# * `end_time`
|
@@ -54,6 +54,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
54
54
|
value :DEPLOYMENT_RESOURCES_TYPE_UNSPECIFIED, 0
|
55
55
|
value :DEDICATED_RESOURCES, 1
|
56
56
|
value :AUTOMATIC_RESOURCES, 2
|
57
|
+
value :SHARED_RESOURCES, 3
|
57
58
|
end
|
58
59
|
add_message "google.cloud.aiplatform.v1.PredictSchemata" do
|
59
60
|
optional :instance_schema_uri, :string, 1
|
@@ -108,7 +108,7 @@ module Google
|
|
108
108
|
end
|
109
109
|
|
110
110
|
# Represents the spec of a CustomJob.
|
111
|
-
# Next Id:
|
111
|
+
# Next Id: 15
|
112
112
|
# @!attribute [rw] worker_pool_specs
|
113
113
|
# @return [::Array<::Google::Cloud::AIPlatform::V1::WorkerPoolSpec>]
|
114
114
|
# Required. The spec of the worker pools including machine type and Docker image.
|
@@ -126,7 +126,7 @@ module Google
|
|
126
126
|
# for the CustomJob's project is used.
|
127
127
|
# @!attribute [rw] network
|
128
128
|
# @return [::String]
|
129
|
-
# The full name of the Compute Engine
|
129
|
+
# Optional. The full name of the Compute Engine
|
130
130
|
# [network](/compute/docs/networks-and-firewalls#networks) to which the Job
|
131
131
|
# should be peered. For example, `projects/12345/global/networks/myVPC`.
|
132
132
|
# [Format](/compute/docs/reference/rest/v1/networks/insert)
|
@@ -91,6 +91,7 @@ module Google
|
|
91
91
|
# * A key including a space must be quoted. `labels."a key"`.
|
92
92
|
#
|
93
93
|
# Some examples:
|
94
|
+
#
|
94
95
|
# * `displayName="myDisplayName"`
|
95
96
|
# * `labels.myKey="myValue"`
|
96
97
|
# @!attribute [rw] page_size
|
@@ -107,6 +108,7 @@ module Google
|
|
107
108
|
# A comma-separated list of fields to order by, sorted in ascending order.
|
108
109
|
# Use "desc" after a field name for descending.
|
109
110
|
# Supported fields:
|
111
|
+
#
|
110
112
|
# * `display_name`
|
111
113
|
# * `create_time`
|
112
114
|
# * `update_time`
|
@@ -273,7 +275,8 @@ module Google
|
|
273
275
|
# Response message for {::Google::Cloud::AIPlatform::V1::DatasetService::Client#list_saved_queries DatasetService.ListSavedQueries}.
|
274
276
|
# @!attribute [rw] saved_queries
|
275
277
|
# @return [::Array<::Google::Cloud::AIPlatform::V1::SavedQuery>]
|
276
|
-
# A list of SavedQueries that
|
278
|
+
# A list of SavedQueries that matches the specified filter in the
|
279
|
+
# request.
|
277
280
|
# @!attribute [rw] next_page_token
|
278
281
|
# @return [::String]
|
279
282
|
# The standard List next-page token.
|
@@ -56,19 +56,17 @@ module Google
|
|
56
56
|
#
|
57
57
|
# Supported fields:
|
58
58
|
#
|
59
|
-
# * `display_name` supports
|
60
|
-
#
|
61
|
-
# * `
|
59
|
+
# * `display_name` supports `=`, `!=` comparisons, and `:` wildcard.
|
60
|
+
# * `state` supports `=`, `!=` comparisons.
|
61
|
+
# * `create_time` supports `=`, `!=`,`<`, `<=`,`>`, `>=` comparisons.
|
62
|
+
# `create_time` must be in RFC 3339 format.
|
62
63
|
#
|
63
64
|
# Some examples of using the filter are:
|
64
65
|
#
|
65
|
-
#
|
66
|
-
#
|
67
|
-
#
|
68
|
-
#
|
69
|
-
# * `NOT display_name="my_job"`
|
70
|
-
#
|
71
|
-
# * `state="JOB_STATE_FAILED"`
|
66
|
+
# * `state="JOB_STATE_SUCCEEDED" AND display_name:"my_job_*"`
|
67
|
+
# * `state!="JOB_STATE_FAILED" OR display_name="my_job"`
|
68
|
+
# * `NOT display_name="my_job"`
|
69
|
+
# * `create_time>"2021-05-18T00:00:00Z"`
|
72
70
|
# @!attribute [rw] page_size
|
73
71
|
# @return [::Integer]
|
74
72
|
# The standard list page size.
|
@@ -156,19 +154,17 @@ module Google
|
|
156
154
|
#
|
157
155
|
# Supported fields:
|
158
156
|
#
|
159
|
-
# * `display_name` supports
|
160
|
-
#
|
161
|
-
# * `
|
157
|
+
# * `display_name` supports `=`, `!=` comparisons, and `:` wildcard.
|
158
|
+
# * `state` supports `=`, `!=` comparisons.
|
159
|
+
# * `create_time` supports `=`, `!=`,`<`, `<=`,`>`, `>=` comparisons.
|
160
|
+
# `create_time` must be in RFC 3339 format.
|
162
161
|
#
|
163
162
|
# Some examples of using the filter are:
|
164
163
|
#
|
165
|
-
#
|
166
|
-
#
|
167
|
-
#
|
168
|
-
#
|
169
|
-
# * `NOT display_name="my_job"`
|
170
|
-
#
|
171
|
-
# * `state="JOB_STATE_FAILED"`
|
164
|
+
# * `state="JOB_STATE_SUCCEEDED" AND display_name:"my_job_*"`
|
165
|
+
# * `state!="JOB_STATE_FAILED" OR display_name="my_job"`
|
166
|
+
# * `NOT display_name="my_job"`
|
167
|
+
# * `create_time>"2021-05-18T00:00:00Z"`
|
172
168
|
# @!attribute [rw] page_size
|
173
169
|
# @return [::Integer]
|
174
170
|
# The standard list page size.
|
@@ -261,19 +257,17 @@ module Google
|
|
261
257
|
#
|
262
258
|
# Supported fields:
|
263
259
|
#
|
264
|
-
# * `display_name` supports
|
265
|
-
#
|
266
|
-
# * `
|
260
|
+
# * `display_name` supports `=`, `!=` comparisons, and `:` wildcard.
|
261
|
+
# * `state` supports `=`, `!=` comparisons.
|
262
|
+
# * `create_time` supports `=`, `!=`,`<`, `<=`,`>`, `>=` comparisons.
|
263
|
+
# `create_time` must be in RFC 3339 format.
|
267
264
|
#
|
268
265
|
# Some examples of using the filter are:
|
269
266
|
#
|
270
|
-
#
|
271
|
-
#
|
272
|
-
#
|
273
|
-
#
|
274
|
-
# * `NOT display_name="my_job"`
|
275
|
-
#
|
276
|
-
# * `state="JOB_STATE_FAILED"`
|
267
|
+
# * `state="JOB_STATE_SUCCEEDED" AND display_name:"my_job_*"`
|
268
|
+
# * `state!="JOB_STATE_FAILED" OR display_name="my_job"`
|
269
|
+
# * `NOT display_name="my_job"`
|
270
|
+
# * `create_time>"2021-05-18T00:00:00Z"`
|
277
271
|
# @!attribute [rw] page_size
|
278
272
|
# @return [::Integer]
|
279
273
|
# The standard list page size.
|
@@ -363,21 +357,18 @@ module Google
|
|
363
357
|
#
|
364
358
|
# Supported fields:
|
365
359
|
#
|
366
|
-
# * `display_name` supports
|
367
|
-
#
|
368
|
-
# * `state` supports
|
369
|
-
#
|
370
|
-
#
|
360
|
+
# * `display_name` supports `=`, `!=` comparisons, and `:` wildcard.
|
361
|
+
# * `model_display_name` supports `=`, `!=` comparisons.
|
362
|
+
# * `state` supports `=`, `!=` comparisons.
|
363
|
+
# * `create_time` supports `=`, `!=`,`<`, `<=`,`>`, `>=` comparisons.
|
364
|
+
# `create_time` must be in RFC 3339 format.
|
371
365
|
#
|
372
366
|
# Some examples of using the filter are:
|
373
367
|
#
|
374
|
-
#
|
375
|
-
#
|
376
|
-
#
|
377
|
-
#
|
378
|
-
# * `NOT display_name="my_job"`
|
379
|
-
#
|
380
|
-
# * `state="JOB_STATE_FAILED"`
|
368
|
+
# * `state="JOB_STATE_SUCCEEDED" AND display_name:"my_job_*"`
|
369
|
+
# * `state!="JOB_STATE_FAILED" OR display_name="my_job"`
|
370
|
+
# * `NOT display_name="my_job"`
|
371
|
+
# * `create_time>"2021-05-18T00:00:00Z"`
|
381
372
|
# @!attribute [rw] page_size
|
382
373
|
# @return [::Integer]
|
383
374
|
# The standard list page size.
|
@@ -541,6 +532,20 @@ module Google
|
|
541
532
|
# @!attribute [rw] filter
|
542
533
|
# @return [::String]
|
543
534
|
# The standard list filter.
|
535
|
+
#
|
536
|
+
# Supported fields:
|
537
|
+
#
|
538
|
+
# * `display_name` supports `=`, `!=` comparisons, and `:` wildcard.
|
539
|
+
# * `state` supports `=`, `!=` comparisons.
|
540
|
+
# * `create_time` supports `=`, `!=`,`<`, `<=`,`>`, `>=` comparisons.
|
541
|
+
# `create_time` must be in RFC 3339 format.
|
542
|
+
#
|
543
|
+
# Some examples of using the filter are:
|
544
|
+
#
|
545
|
+
# * `state="JOB_STATE_SUCCEEDED" AND display_name:"my_job_*"`
|
546
|
+
# * `state!="JOB_STATE_FAILED" OR display_name="my_job"`
|
547
|
+
# * `NOT display_name="my_job"`
|
548
|
+
# * `create_time>"2021-05-18T00:00:00Z"`
|
544
549
|
# @!attribute [rw] page_size
|
545
550
|
# @return [::Integer]
|
546
551
|
# The standard list page size.
|
@@ -313,6 +313,10 @@ module Google
|
|
313
313
|
# Resources that to large degree are decided by Vertex AI, and require
|
314
314
|
# only a modest additional configuration.
|
315
315
|
AUTOMATIC_RESOURCES = 2
|
316
|
+
|
317
|
+
# Resources that can be shared by multiple {::Google::Cloud::AIPlatform::V1::DeployedModel DeployedModels}.
|
318
|
+
# A pre-configured [DeploymentResourcePool][] is required.
|
319
|
+
SHARED_RESOURCES = 3
|
316
320
|
end
|
317
321
|
end
|
318
322
|
|
@@ -106,6 +106,7 @@ module Google
|
|
106
106
|
# * A key including a space must be quoted. `labels."a key"`.
|
107
107
|
#
|
108
108
|
# Some examples:
|
109
|
+
#
|
109
110
|
# * `model=1234`
|
110
111
|
# * `displayName="myDisplayName"`
|
111
112
|
# * `labels.myKey="myValue"`
|
@@ -126,6 +127,7 @@ module Google
|
|
126
127
|
# A comma-separated list of fields to order by, sorted in ascending order.
|
127
128
|
# Use "desc" after a field name for descending.
|
128
129
|
# Supported fields:
|
130
|
+
#
|
129
131
|
# * `display_name`
|
130
132
|
# * `create_time`
|
131
133
|
# * `update_time`
|
@@ -173,6 +175,7 @@ module Google
|
|
173
175
|
# * A key including a space must be quoted. `labels."a key"`.
|
174
176
|
#
|
175
177
|
# Some examples:
|
178
|
+
#
|
176
179
|
# * `labels.myKey="myValue"`
|
177
180
|
# @!attribute [rw] read_mask
|
178
181
|
# @return [::Google::Protobuf::FieldMask]
|
@@ -53,21 +53,22 @@ module Google
|
|
53
53
|
# @!attribute [rw] filter
|
54
54
|
# @return [::String]
|
55
55
|
# The standard list filter.
|
56
|
-
# Supported fields:
|
57
56
|
#
|
58
|
-
#
|
57
|
+
# Supported fields:
|
59
58
|
#
|
60
|
-
# * `
|
59
|
+
# * `display_name` supports `=`, `!=` comparisons, and `:` wildcard.
|
60
|
+
# * `state` supports `=`, `!=` comparisons.
|
61
|
+
# * `training_task_definition` `=`, `!=` comparisons, and `:` wildcard.
|
62
|
+
# * `create_time` supports `=`, `!=`,`<`, `<=`,`>`, `>=` comparisons.
|
63
|
+
# `create_time` must be in RFC 3339 format.
|
61
64
|
#
|
62
65
|
# Some examples of using the filter are:
|
63
66
|
#
|
64
|
-
#
|
65
|
-
#
|
66
|
-
#
|
67
|
-
#
|
68
|
-
#
|
69
|
-
#
|
70
|
-
# * `state="PIPELINE_STATE_FAILED"`
|
67
|
+
# * `state="PIPELINE_STATE_SUCCEEDED" AND display_name:"my_pipeline_*"`
|
68
|
+
# * `state!="PIPELINE_STATE_FAILED" OR display_name="my_pipeline"`
|
69
|
+
# * `NOT display_name="my_pipeline"`
|
70
|
+
# * `create_time>"2021-05-18T00:00:00Z"`
|
71
|
+
# * `training_task_definition:"*automl_text_classification*"`
|
71
72
|
# @!attribute [rw] page_size
|
72
73
|
# @return [::Integer]
|
73
74
|
# The standard list page size.
|
@@ -165,8 +166,8 @@ module Google
|
|
165
166
|
# * `pipeline_name`: Supports `=` and `!=` comparisons.
|
166
167
|
# * `display_name`: Supports `=`, `!=` comparisons, and `:` wildcard.
|
167
168
|
# * `pipeline_job_user_id`: Supports `=`, `!=` comparisons, and `:` wildcard.
|
168
|
-
#
|
169
|
-
# display_name:\"*step*\"
|
169
|
+
# for example, can check if pipeline's display_name contains *step* by
|
170
|
+
# doing display_name:\"*step*\"
|
170
171
|
# * `state`: Supports `=` and `!=` comparisons.
|
171
172
|
# * `create_time`: Supports `=`, `!=`, `<`, `>`, `<=`, and `>=` comparisons.
|
172
173
|
# Values must be in RFC 3339 format.
|
@@ -177,7 +178,7 @@ module Google
|
|
177
178
|
# * `labels`: Supports key-value equality and key presence.
|
178
179
|
# * `template_uri`: Supports `=`, `!=` comparisons, and `:` wildcard.
|
179
180
|
# * `template_metadata.version`: Supports `=`, `!=` comparisons, and `:`
|
180
|
-
#
|
181
|
+
# wildcard.
|
181
182
|
#
|
182
183
|
# Filter expressions can be combined together using logical operators
|
183
184
|
# (`AND` & `OR`).
|
@@ -212,6 +213,7 @@ module Google
|
|
212
213
|
# there are multiple jobs having the same create time, order them by the end
|
213
214
|
# time in ascending order. if order_by is not specified, it will order by
|
214
215
|
# default order is create time in descending order. Supported fields:
|
216
|
+
#
|
215
217
|
# * `create_time`
|
216
218
|
# * `update_time`
|
217
219
|
# * `end_time`
|
@@ -62,7 +62,7 @@ module Google
|
|
62
62
|
# Output only. Number of AnnotationSpecs in the context of the SavedQuery.
|
63
63
|
# @!attribute [rw] etag
|
64
64
|
# @return [::String]
|
65
|
-
# Used to perform
|
65
|
+
# Used to perform consistent read-modify-write updates. If not set, a blind
|
66
66
|
# "overwrite" update happens.
|
67
67
|
# @!attribute [r] support_automl_training
|
68
68
|
# @return [::Boolean]
|
@@ -203,7 +203,7 @@ module Google
|
|
203
203
|
# @return [::Google::Cloud::AIPlatform::V1::StudySpec::ObservationNoise]
|
204
204
|
# The observation noise level of the study.
|
205
205
|
# Currently only supported by the Vertex AI Vizier service. Not supported by
|
206
|
-
#
|
206
|
+
# HyperparameterTuningJob or TrainingPipeline.
|
207
207
|
# @!attribute [rw] measurement_selection_type
|
208
208
|
# @return [::Google::Cloud::AIPlatform::V1::StudySpec::MeasurementSelectionType]
|
209
209
|
# Describe which measurement selection type will be used
|
@@ -282,7 +282,7 @@ module Google
|
|
282
282
|
# offered starting point.
|
283
283
|
#
|
284
284
|
# Currently only supported by the Vertex AI Vizier service. Not supported
|
285
|
-
# by
|
285
|
+
# by HyperparameterTuningJob or TrainingPipeline.
|
286
286
|
class DoubleValueSpec
|
287
287
|
include ::Google::Protobuf::MessageExts
|
288
288
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -302,7 +302,7 @@ module Google
|
|
302
302
|
# offered starting point.
|
303
303
|
#
|
304
304
|
# Currently only supported by the Vertex AI Vizier service. Not supported
|
305
|
-
# by
|
305
|
+
# by HyperparameterTuningJob or TrainingPipeline.
|
306
306
|
class IntegerValueSpec
|
307
307
|
include ::Google::Protobuf::MessageExts
|
308
308
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -318,8 +318,8 @@ module Google
|
|
318
318
|
# relatively good starting point. Unset value signals that there is no
|
319
319
|
# offered starting point.
|
320
320
|
#
|
321
|
-
# Currently only supported by the Vizier service. Not supported
|
322
|
-
#
|
321
|
+
# Currently only supported by the Vertex AI Vizier service. Not supported
|
322
|
+
# by HyperparameterTuningJob or TrainingPipeline.
|
323
323
|
class CategoricalValueSpec
|
324
324
|
include ::Google::Protobuf::MessageExts
|
325
325
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -339,8 +339,8 @@ module Google
|
|
339
339
|
# offered starting point. It automatically rounds to the
|
340
340
|
# nearest feasible discrete point.
|
341
341
|
#
|
342
|
-
# Currently only supported by the Vizier service. Not supported
|
343
|
-
#
|
342
|
+
# Currently only supported by the Vertex AI Vizier service. Not supported
|
343
|
+
# by HyperparameterTuningJob or TrainingPipeline.
|
344
344
|
class DiscreteValueSpec
|
345
345
|
include ::Google::Protobuf::MessageExts
|
346
346
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -33,7 +33,7 @@ module Google
|
|
33
33
|
# A list of double values.
|
34
34
|
# @!attribute [rw] values
|
35
35
|
# @return [::Array<::Float>]
|
36
|
-
# A list of
|
36
|
+
# A list of double values.
|
37
37
|
class DoubleArray
|
38
38
|
include ::Google::Protobuf::MessageExts
|
39
39
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-ai_platform-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.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: 2022-
|
11
|
+
date: 2022-08-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|