google-apis-aiplatform_v1beta1 0.1.0 → 0.2.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: 0dffbe80b4892a4f63da234ea5b9ff6948ea2f7b7acdcb46f1319cd00e473c66
4
- data.tar.gz: 5632f6968c2a4df9b019096c49b4764dd245c96e9f10826294d852cb06ffa3e8
3
+ metadata.gz: 3b9fdd954a333cfc05b95b33e94327ae388fced8adc62bb0f7b774d2d55e424f
4
+ data.tar.gz: 735e5bb4ff3829f1f8e86a2a401b35d8f62a1c011a684569a9f2dc104abf3722
5
5
  SHA512:
6
- metadata.gz: df316c76995d580f861223ab3f98c04951df94cf794e6ef2f9cb81d932747040210c60ecf2a3d7b2df9d35f102a68288fd9ec0bda0ceb551210c0616f484f8b8
7
- data.tar.gz: 97080c4b08e648a0fca0f3906c13437a2906675dd5957c98ca53cb40acf7a19bb520a9ba70cecf1bc4d2ca2db4ea03fed698a7c69085a245217c255917819dc0
6
+ metadata.gz: 1196a9320280687d1a7e7a39909194a6348584cccd5c0cd8386b1ca50d4fd45e904a247978b2cada599ce4908c94b7b822b3de7f4645d007d2f8a27790826a5f
7
+ data.tar.gz: 3b69b7286ba5a5043137072ac644013c76847de06a7aca39b14d92ee620813174af447b07feb54473c74620b9d56da8fbd8e0d63824793d79f9695dd2a52bf69
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-aiplatform_v1beta1
2
2
 
3
+ ### v0.2.0 (2023-08-27)
4
+
5
+ * Regenerated from discovery document revision 20230812
6
+
3
7
  ### v0.1.0 (2023-08-13)
4
8
 
5
9
  * Regenerated from discovery document revision 20230727
@@ -2386,6 +2386,44 @@ module Google
2386
2386
  end
2387
2387
  end
2388
2388
 
2389
+ # Details of ExtensionControllerService.CreateExtensionController operation.
2390
+ class GoogleCloudAiplatformV1beta1CreateExtensionControllerOperationMetadata
2391
+ include Google::Apis::Core::Hashable
2392
+
2393
+ # Generic Metadata shared by all operations.
2394
+ # Corresponds to the JSON property `genericMetadata`
2395
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenericOperationMetadata]
2396
+ attr_accessor :generic_metadata
2397
+
2398
+ def initialize(**args)
2399
+ update!(**args)
2400
+ end
2401
+
2402
+ # Update properties of this object
2403
+ def update!(**args)
2404
+ @generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
2405
+ end
2406
+ end
2407
+
2408
+ # Details of ExtensionRegistryService.CreateExtensionDeployment operation.
2409
+ class GoogleCloudAiplatformV1beta1CreateExtensionDeploymentOperationMetadata
2410
+ include Google::Apis::Core::Hashable
2411
+
2412
+ # Generic Metadata shared by all operations.
2413
+ # Corresponds to the JSON property `genericMetadata`
2414
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenericOperationMetadata]
2415
+ attr_accessor :generic_metadata
2416
+
2417
+ def initialize(**args)
2418
+ update!(**args)
2419
+ end
2420
+
2421
+ # Update properties of this object
2422
+ def update!(**args)
2423
+ @generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
2424
+ end
2425
+ end
2426
+
2389
2427
  # Details of operations that perform create Feature.
2390
2428
  class GoogleCloudAiplatformV1beta1CreateFeatureOperationMetadata
2391
2429
  include Google::Apis::Core::Hashable
@@ -6158,37 +6196,6 @@ module Google
6158
6196
  # @return [String]
6159
6197
  attr_accessor :value_type
6160
6198
 
6161
- # Output only. Timestamp when this version was created.
6162
- # Corresponds to the JSON property `versionCreateTime`
6163
- # @return [String]
6164
- attr_accessor :version_create_time
6165
-
6166
- # The description of this version.
6167
- # Corresponds to the JSON property `versionDescription`
6168
- # @return [String]
6169
- attr_accessor :version_description
6170
-
6171
- # Output only. Immutable. The version ID of the feature. It is an auto-
6172
- # incrementing decimal number in string representation. A new version is
6173
- # committed when a new model version is created under an existing feature id.
6174
- # Corresponds to the JSON property `versionId`
6175
- # @return [String]
6176
- attr_accessor :version_id
6177
-
6178
- # The labels with user-defined metadata to organize your versions. Label keys
6179
- # and values can be no longer than 64 characters (Unicode codepoints), can only
6180
- # contain lowercase letters, numeric characters, underscores and dashes.
6181
- # International characters are allowed. See https://goo.gl/xmQnxf for more
6182
- # information and examples of labels.
6183
- # Corresponds to the JSON property `versionLabels`
6184
- # @return [Hash<String,String>]
6185
- attr_accessor :version_labels
6186
-
6187
- # Output only. Timestamp when this version was most recently updated.
6188
- # Corresponds to the JSON property `versionUpdateTime`
6189
- # @return [String]
6190
- attr_accessor :version_update_time
6191
-
6192
6199
  def initialize(**args)
6193
6200
  update!(**args)
6194
6201
  end
@@ -6206,11 +6213,6 @@ module Google
6206
6213
  @name = args[:name] if args.key?(:name)
6207
6214
  @update_time = args[:update_time] if args.key?(:update_time)
6208
6215
  @value_type = args[:value_type] if args.key?(:value_type)
6209
- @version_create_time = args[:version_create_time] if args.key?(:version_create_time)
6210
- @version_description = args[:version_description] if args.key?(:version_description)
6211
- @version_id = args[:version_id] if args.key?(:version_id)
6212
- @version_labels = args[:version_labels] if args.key?(:version_labels)
6213
- @version_update_time = args[:version_update_time] if args.key?(:version_update_time)
6214
6216
  end
6215
6217
  end
6216
6218
 
@@ -7486,6 +7488,25 @@ module Google
7486
7488
  end
7487
7489
  end
7488
7490
 
7491
+ # Details of ExtensionRegistryService.ImportExtension operation.
7492
+ class GoogleCloudAiplatformV1beta1ImportExtensionOperationMetadata
7493
+ include Google::Apis::Core::Hashable
7494
+
7495
+ # Generic Metadata shared by all operations.
7496
+ # Corresponds to the JSON property `genericMetadata`
7497
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenericOperationMetadata]
7498
+ attr_accessor :generic_metadata
7499
+
7500
+ def initialize(**args)
7501
+ update!(**args)
7502
+ end
7503
+
7504
+ # Update properties of this object
7505
+ def update!(**args)
7506
+ @generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
7507
+ end
7508
+ end
7509
+
7489
7510
  # Details of operations that perform import Feature values.
7490
7511
  class GoogleCloudAiplatformV1beta1ImportFeatureValuesOperationMetadata
7491
7512
  include Google::Apis::Core::Hashable
@@ -12527,6 +12548,15 @@ module Google
12527
12548
  # @return [String]
12528
12549
  attr_accessor :display_name
12529
12550
 
12551
+ # Output only. Timestamp when this NotebookRuntime will be expired: 1. System
12552
+ # Predefined NotebookRuntime: 24 hours after creation. After expiration, system
12553
+ # predifined runtime will be deleted. 2. User created NotebookRuntime: 6 months
12554
+ # after last upgrade. After expiration, user created runtime will be stopped and
12555
+ # allowed for upgrade.
12556
+ # Corresponds to the JSON property `expirationTime`
12557
+ # @return [String]
12558
+ attr_accessor :expiration_time
12559
+
12530
12560
  # Output only. The health state of the NotebookRuntime.
12531
12561
  # Corresponds to the JSON property `healthState`
12532
12562
  # @return [String]
@@ -12576,6 +12606,7 @@ module Google
12576
12606
  @create_time = args[:create_time] if args.key?(:create_time)
12577
12607
  @description = args[:description] if args.key?(:description)
12578
12608
  @display_name = args[:display_name] if args.key?(:display_name)
12609
+ @expiration_time = args[:expiration_time] if args.key?(:expiration_time)
12579
12610
  @health_state = args[:health_state] if args.key?(:health_state)
12580
12611
  @name = args[:name] if args.key?(:name)
12581
12612
  @notebook_runtime_template_ref = args[:notebook_runtime_template_ref] if args.key?(:notebook_runtime_template_ref)
@@ -12987,6 +13018,12 @@ module Google
12987
13018
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PipelineJobRuntimeConfig]
12988
13019
  attr_accessor :runtime_config
12989
13020
 
13021
+ # Output only. The schedule resource name. Only returned if the Pipeline is
13022
+ # created by Schedule API.
13023
+ # Corresponds to the JSON property `scheduleName`
13024
+ # @return [String]
13025
+ attr_accessor :schedule_name
13026
+
12990
13027
  # The service account that the pipeline workload runs as. If not specified, the
12991
13028
  # Compute Engine default service account in the project will be used. See https:/
12992
13029
  # /cloud.google.com/compute/docs/access/service-accounts#default_service_account
@@ -13041,6 +13078,7 @@ module Google
13041
13078
  @pipeline_spec = args[:pipeline_spec] if args.key?(:pipeline_spec)
13042
13079
  @reserved_ip_ranges = args[:reserved_ip_ranges] if args.key?(:reserved_ip_ranges)
13043
13080
  @runtime_config = args[:runtime_config] if args.key?(:runtime_config)
13081
+ @schedule_name = args[:schedule_name] if args.key?(:schedule_name)
13044
13082
  @service_account = args[:service_account] if args.key?(:service_account)
13045
13083
  @start_time = args[:start_time] if args.key?(:start_time)
13046
13084
  @state = args[:state] if args.key?(:state)
@@ -13841,6 +13879,12 @@ module Google
13841
13879
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelCallToActionDeploy]
13842
13880
  attr_accessor :deploy
13843
13881
 
13882
+ # The regional resource name or the URI. Key is region, e.g., us-central1,
13883
+ # europe-west2, global, etc..
13884
+ # Corresponds to the JSON property `openEvaluationPipeline`
13885
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences]
13886
+ attr_accessor :open_evaluation_pipeline
13887
+
13844
13888
  # The regional resource name or the URI. Key is region, e.g., us-central1,
13845
13889
  # europe-west2, global, etc..
13846
13890
  # Corresponds to the JSON property `openFineTuningPipeline`
@@ -13890,6 +13934,7 @@ module Google
13890
13934
  def update!(**args)
13891
13935
  @create_application = args[:create_application] if args.key?(:create_application)
13892
13936
  @deploy = args[:deploy] if args.key?(:deploy)
13937
+ @open_evaluation_pipeline = args[:open_evaluation_pipeline] if args.key?(:open_evaluation_pipeline)
13893
13938
  @open_fine_tuning_pipeline = args[:open_fine_tuning_pipeline] if args.key?(:open_fine_tuning_pipeline)
13894
13939
  @open_generation_ai_studio = args[:open_generation_ai_studio] if args.key?(:open_generation_ai_studio)
13895
13940
  @open_genie = args[:open_genie] if args.key?(:open_genie)
@@ -14936,19 +14981,13 @@ module Google
14936
14981
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DiskSpec]
14937
14982
  attr_accessor :disk_spec
14938
14983
 
14939
- # Optional. The unique ID in a PersistentResource to refer the this resource
14984
+ # Immutable. The unique ID in a PersistentResource to refer the this resource
14940
14985
  # pool. User can specify it if need to use it, otherwise we will generate it
14941
14986
  # automatically.
14942
14987
  # Corresponds to the JSON property `id`
14943
14988
  # @return [String]
14944
14989
  attr_accessor :id
14945
14990
 
14946
- # Output only. The number of machines currently not in use by training jobs for
14947
- # this resource pool. Deprecated. Use `used_replica_count` instead.
14948
- # Corresponds to the JSON property `idleReplicaCount`
14949
- # @return [Fixnum]
14950
- attr_accessor :idle_replica_count
14951
-
14952
14991
  # Specification of a single machine.
14953
14992
  # Corresponds to the JSON property `machineSpec`
14954
14993
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MachineSpec]
@@ -14974,7 +15013,6 @@ module Google
14974
15013
  @autoscaling_spec = args[:autoscaling_spec] if args.key?(:autoscaling_spec)
14975
15014
  @disk_spec = args[:disk_spec] if args.key?(:disk_spec)
14976
15015
  @id = args[:id] if args.key?(:id)
14977
- @idle_replica_count = args[:idle_replica_count] if args.key?(:idle_replica_count)
14978
15016
  @machine_spec = args[:machine_spec] if args.key?(:machine_spec)
14979
15017
  @replica_count = args[:replica_count] if args.key?(:replica_count)
14980
15018
  @used_replica_count = args[:used_replica_count] if args.key?(:used_replica_count)
@@ -15505,6 +15543,14 @@ module Google
15505
15543
  class GoogleCloudAiplatformV1beta1Scheduling
15506
15544
  include Google::Apis::Core::Hashable
15507
15545
 
15546
+ # Optional. Indicates if the job should retry for internal errors after the job
15547
+ # starts running. If true, overrides `Scheduling.restart_job_on_worker_restart`
15548
+ # to false.
15549
+ # Corresponds to the JSON property `disableRetries`
15550
+ # @return [Boolean]
15551
+ attr_accessor :disable_retries
15552
+ alias_method :disable_retries?, :disable_retries
15553
+
15508
15554
  # Restarts the entire CustomJob if a worker gets restarted. This feature can be
15509
15555
  # used by distributed training jobs that are not resilient to workers leaving
15510
15556
  # and joining a job.
@@ -15524,6 +15570,7 @@ module Google
15524
15570
 
15525
15571
  # Update properties of this object
15526
15572
  def update!(**args)
15573
+ @disable_retries = args[:disable_retries] if args.key?(:disable_retries)
15527
15574
  @restart_job_on_worker_restart = args[:restart_job_on_worker_restart] if args.key?(:restart_job_on_worker_restart)
15528
15575
  @timeout = args[:timeout] if args.key?(:timeout)
15529
15576
  end
@@ -24753,22 +24800,22 @@ module Google
24753
24800
  # evaluates to `true`. A condition can add constraints based on attributes of
24754
24801
  # the request, the resource, or both. To learn which resources support
24755
24802
  # conditions in their IAM policies, see the [IAM documentation](https://cloud.
24756
- # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
24803
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
24757
24804
  # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
24758
24805
  # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
24759
24806
  # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
24760
24807
  # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
24761
24808
  # ], "condition": ` "title": "expirable access", "description": "Does not grant
24762
24809
  # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
24763
- # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
24764
- # bindings: - members: - user:mike@example.com - group:admins@example.com -
24765
- # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
24766
- # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
24767
- # com role: roles/resourcemanager.organizationViewer condition: title: expirable
24768
- # access description: Does not grant access after Sep 2020 expression: request.
24769
- # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
24770
- # a description of IAM and its features, see the [IAM documentation](https://
24771
- # cloud.google.com/iam/docs/).
24810
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
24811
+ # example:** ``` bindings: - members: - user:mike@example.com - group:admins@
24812
+ # example.com - domain:google.com - serviceAccount:my-project-id@appspot.
24813
+ # gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
24814
+ # user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
24815
+ # title: expirable access description: Does not grant access after Sep 2020
24816
+ # expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
24817
+ # BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
24818
+ # [IAM documentation](https://cloud.google.com/iam/docs/).
24772
24819
  class GoogleIamV1Policy
24773
24820
  include Google::Apis::Core::Hashable
24774
24821
 
@@ -24846,22 +24893,22 @@ module Google
24846
24893
  # evaluates to `true`. A condition can add constraints based on attributes of
24847
24894
  # the request, the resource, or both. To learn which resources support
24848
24895
  # conditions in their IAM policies, see the [IAM documentation](https://cloud.
24849
- # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
24896
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
24850
24897
  # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
24851
24898
  # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
24852
24899
  # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
24853
24900
  # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
24854
24901
  # ], "condition": ` "title": "expirable access", "description": "Does not grant
24855
24902
  # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
24856
- # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
24857
- # bindings: - members: - user:mike@example.com - group:admins@example.com -
24858
- # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
24859
- # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
24860
- # com role: roles/resourcemanager.organizationViewer condition: title: expirable
24861
- # access description: Does not grant access after Sep 2020 expression: request.
24862
- # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
24863
- # a description of IAM and its features, see the [IAM documentation](https://
24864
- # cloud.google.com/iam/docs/).
24903
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
24904
+ # example:** ``` bindings: - members: - user:mike@example.com - group:admins@
24905
+ # example.com - domain:google.com - serviceAccount:my-project-id@appspot.
24906
+ # gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
24907
+ # user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
24908
+ # title: expirable access description: Does not grant access after Sep 2020
24909
+ # expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
24910
+ # BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
24911
+ # [IAM documentation](https://cloud.google.com/iam/docs/).
24865
24912
  # Corresponds to the JSON property `policy`
24866
24913
  # @return [Google::Apis::AiplatformV1beta1::GoogleIamV1Policy]
24867
24914
  attr_accessor :policy
@@ -24978,13 +25025,13 @@ module Google
24978
25025
  # @return [String]
24979
25026
  attr_accessor :name
24980
25027
 
24981
- # The normal response of the operation in case of success. If the original
24982
- # method returns no data on success, such as `Delete`, the response is `google.
24983
- # protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`,
24984
- # the response should be the resource. For other methods, the response should
24985
- # have the type `XxxResponse`, where `Xxx` is the original method name. For
24986
- # example, if the original method name is `TakeSnapshot()`, the inferred
24987
- # response type is `TakeSnapshotResponse`.
25028
+ # The normal, successful response of the operation. If the original method
25029
+ # returns no data on success, such as `Delete`, the response is `google.protobuf.
25030
+ # Empty`. If the original method is standard `Get`/`Create`/`Update`, the
25031
+ # response should be the resource. For other methods, the response should have
25032
+ # the type `XxxResponse`, where `Xxx` is the original method name. For example,
25033
+ # if the original method name is `TakeSnapshot()`, the inferred response type is
25034
+ # `TakeSnapshotResponse`.
24988
25035
  # Corresponds to the JSON property `response`
24989
25036
  # @return [Hash<String,Object>]
24990
25037
  attr_accessor :response
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AiplatformV1beta1
18
18
  # Version of the google-apis-aiplatform_v1beta1 gem
19
- GEM_VERSION = "0.1.0"
19
+ GEM_VERSION = "0.2.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230727"
25
+ REVISION = "20230812"
26
26
  end
27
27
  end
28
28
  end
@@ -472,6 +472,18 @@ module Google
472
472
  include Google::Apis::Core::JsonObjectSupport
473
473
  end
474
474
 
475
+ class GoogleCloudAiplatformV1beta1CreateExtensionControllerOperationMetadata
476
+ class Representation < Google::Apis::Core::JsonRepresentation; end
477
+
478
+ include Google::Apis::Core::JsonObjectSupport
479
+ end
480
+
481
+ class GoogleCloudAiplatformV1beta1CreateExtensionDeploymentOperationMetadata
482
+ class Representation < Google::Apis::Core::JsonRepresentation; end
483
+
484
+ include Google::Apis::Core::JsonObjectSupport
485
+ end
486
+
475
487
  class GoogleCloudAiplatformV1beta1CreateFeatureOperationMetadata
476
488
  class Representation < Google::Apis::Core::JsonRepresentation; end
477
489
 
@@ -1246,6 +1258,12 @@ module Google
1246
1258
  include Google::Apis::Core::JsonObjectSupport
1247
1259
  end
1248
1260
 
1261
+ class GoogleCloudAiplatformV1beta1ImportExtensionOperationMetadata
1262
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1263
+
1264
+ include Google::Apis::Core::JsonObjectSupport
1265
+ end
1266
+
1249
1267
  class GoogleCloudAiplatformV1beta1ImportFeatureValuesOperationMetadata
1250
1268
  class Representation < Google::Apis::Core::JsonRepresentation; end
1251
1269
 
@@ -4855,6 +4873,22 @@ module Google
4855
4873
  end
4856
4874
  end
4857
4875
 
4876
+ class GoogleCloudAiplatformV1beta1CreateExtensionControllerOperationMetadata
4877
+ # @private
4878
+ class Representation < Google::Apis::Core::JsonRepresentation
4879
+ property :generic_metadata, as: 'genericMetadata', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenericOperationMetadata, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenericOperationMetadata::Representation
4880
+
4881
+ end
4882
+ end
4883
+
4884
+ class GoogleCloudAiplatformV1beta1CreateExtensionDeploymentOperationMetadata
4885
+ # @private
4886
+ class Representation < Google::Apis::Core::JsonRepresentation
4887
+ property :generic_metadata, as: 'genericMetadata', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenericOperationMetadata, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenericOperationMetadata::Representation
4888
+
4889
+ end
4890
+ end
4891
+
4858
4892
  class GoogleCloudAiplatformV1beta1CreateFeatureOperationMetadata
4859
4893
  # @private
4860
4894
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5861,11 +5895,6 @@ module Google
5861
5895
  property :name, as: 'name'
5862
5896
  property :update_time, as: 'updateTime'
5863
5897
  property :value_type, as: 'valueType'
5864
- property :version_create_time, as: 'versionCreateTime'
5865
- property :version_description, as: 'versionDescription'
5866
- property :version_id, as: 'versionId'
5867
- hash :version_labels, as: 'versionLabels'
5868
- property :version_update_time, as: 'versionUpdateTime'
5869
5898
  end
5870
5899
  end
5871
5900
 
@@ -6211,6 +6240,14 @@ module Google
6211
6240
  end
6212
6241
  end
6213
6242
 
6243
+ class GoogleCloudAiplatformV1beta1ImportExtensionOperationMetadata
6244
+ # @private
6245
+ class Representation < Google::Apis::Core::JsonRepresentation
6246
+ property :generic_metadata, as: 'genericMetadata', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenericOperationMetadata, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenericOperationMetadata::Representation
6247
+
6248
+ end
6249
+ end
6250
+
6214
6251
  class GoogleCloudAiplatformV1beta1ImportFeatureValuesOperationMetadata
6215
6252
  # @private
6216
6253
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7619,6 +7656,7 @@ module Google
7619
7656
  property :create_time, as: 'createTime'
7620
7657
  property :description, as: 'description'
7621
7658
  property :display_name, as: 'displayName'
7659
+ property :expiration_time, as: 'expirationTime'
7622
7660
  property :health_state, as: 'healthState'
7623
7661
  property :name, as: 'name'
7624
7662
  property :notebook_runtime_template_ref, as: 'notebookRuntimeTemplateRef', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookRuntimeTemplateRef, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookRuntimeTemplateRef::Representation
@@ -7727,6 +7765,7 @@ module Google
7727
7765
  collection :reserved_ip_ranges, as: 'reservedIpRanges'
7728
7766
  property :runtime_config, as: 'runtimeConfig', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PipelineJobRuntimeConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PipelineJobRuntimeConfig::Representation
7729
7767
 
7768
+ property :schedule_name, as: 'scheduleName'
7730
7769
  property :service_account, as: 'serviceAccount'
7731
7770
  property :start_time, as: 'startTime'
7732
7771
  property :state, as: 'state'
@@ -7951,6 +7990,8 @@ module Google
7951
7990
 
7952
7991
  property :deploy, as: 'deploy', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelCallToActionDeploy, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelCallToActionDeploy::Representation
7953
7992
 
7993
+ property :open_evaluation_pipeline, as: 'openEvaluationPipeline', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences::Representation
7994
+
7954
7995
  property :open_fine_tuning_pipeline, as: 'openFineTuningPipeline', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences::Representation
7955
7996
 
7956
7997
  property :open_generation_ai_studio, as: 'openGenerationAiStudio', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences::Representation
@@ -8310,7 +8351,6 @@ module Google
8310
8351
  property :disk_spec, as: 'diskSpec', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DiskSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DiskSpec::Representation
8311
8352
 
8312
8353
  property :id, as: 'id'
8313
- property :idle_replica_count, :numeric_string => true, as: 'idleReplicaCount'
8314
8354
  property :machine_spec, as: 'machineSpec', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MachineSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MachineSpec::Representation
8315
8355
 
8316
8356
  property :replica_count, :numeric_string => true, as: 'replicaCount'
@@ -8462,6 +8502,7 @@ module Google
8462
8502
  class GoogleCloudAiplatformV1beta1Scheduling
8463
8503
  # @private
8464
8504
  class Representation < Google::Apis::Core::JsonRepresentation
8505
+ property :disable_retries, as: 'disableRetries'
8465
8506
  property :restart_job_on_worker_restart, as: 'restartJobOnWorkerRestart'
8466
8507
  property :timeout, as: 'timeout'
8467
8508
  end
@@ -4412,6 +4412,298 @@ module Google
4412
4412
  execute_or_queue_command(command, &block)
4413
4413
  end
4414
4414
 
4415
+ # Deletes a long-running operation. This method indicates that the client is no
4416
+ # longer interested in the operation result. It does not cancel the operation.
4417
+ # If the server doesn't support this method, it returns `google.rpc.Code.
4418
+ # UNIMPLEMENTED`.
4419
+ # @param [String] name
4420
+ # The name of the operation resource to be deleted.
4421
+ # @param [String] fields
4422
+ # Selector specifying which fields to include in a partial response.
4423
+ # @param [String] quota_user
4424
+ # Available to use for quota purposes for server-side applications. Can be any
4425
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
4426
+ # @param [Google::Apis::RequestOptions] options
4427
+ # Request-specific options
4428
+ #
4429
+ # @yield [result, err] Result & error if block supplied
4430
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty] parsed result object
4431
+ # @yieldparam err [StandardError] error object if request failed
4432
+ #
4433
+ # @return [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty]
4434
+ #
4435
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
4436
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
4437
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
4438
+ def delete_project_location_feature_group_feature_operation(name, fields: nil, quota_user: nil, options: nil, &block)
4439
+ command = make_simple_command(:delete, 'v1beta1/{+name}', options)
4440
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty::Representation
4441
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty
4442
+ command.params['name'] = name unless name.nil?
4443
+ command.query['fields'] = fields unless fields.nil?
4444
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
4445
+ execute_or_queue_command(command, &block)
4446
+ end
4447
+
4448
+ # Gets the latest state of a long-running operation. Clients can use this method
4449
+ # to poll the operation result at intervals as recommended by the API service.
4450
+ # @param [String] name
4451
+ # The name of the operation resource.
4452
+ # @param [String] fields
4453
+ # Selector specifying which fields to include in a partial response.
4454
+ # @param [String] quota_user
4455
+ # Available to use for quota purposes for server-side applications. Can be any
4456
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
4457
+ # @param [Google::Apis::RequestOptions] options
4458
+ # Request-specific options
4459
+ #
4460
+ # @yield [result, err] Result & error if block supplied
4461
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation] parsed result object
4462
+ # @yieldparam err [StandardError] error object if request failed
4463
+ #
4464
+ # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation]
4465
+ #
4466
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
4467
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
4468
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
4469
+ def get_project_location_feature_group_feature_operation(name, fields: nil, quota_user: nil, options: nil, &block)
4470
+ command = make_simple_command(:get, 'v1beta1/{+name}', options)
4471
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
4472
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation
4473
+ command.params['name'] = name unless name.nil?
4474
+ command.query['fields'] = fields unless fields.nil?
4475
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
4476
+ execute_or_queue_command(command, &block)
4477
+ end
4478
+
4479
+ # Lists operations that match the specified filter in the request. If the server
4480
+ # doesn't support this method, it returns `UNIMPLEMENTED`.
4481
+ # @param [String] name
4482
+ # The name of the operation's parent resource.
4483
+ # @param [String] filter
4484
+ # The standard list filter.
4485
+ # @param [Fixnum] page_size
4486
+ # The standard list page size.
4487
+ # @param [String] page_token
4488
+ # The standard list page token.
4489
+ # @param [String] fields
4490
+ # Selector specifying which fields to include in a partial response.
4491
+ # @param [String] quota_user
4492
+ # Available to use for quota purposes for server-side applications. Can be any
4493
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
4494
+ # @param [Google::Apis::RequestOptions] options
4495
+ # Request-specific options
4496
+ #
4497
+ # @yield [result, err] Result & error if block supplied
4498
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse] parsed result object
4499
+ # @yieldparam err [StandardError] error object if request failed
4500
+ #
4501
+ # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse]
4502
+ #
4503
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
4504
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
4505
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
4506
+ def list_project_location_feature_group_feature_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
4507
+ command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
4508
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
4509
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
4510
+ command.params['name'] = name unless name.nil?
4511
+ command.query['filter'] = filter unless filter.nil?
4512
+ command.query['pageSize'] = page_size unless page_size.nil?
4513
+ command.query['pageToken'] = page_token unless page_token.nil?
4514
+ command.query['fields'] = fields unless fields.nil?
4515
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
4516
+ execute_or_queue_command(command, &block)
4517
+ end
4518
+
4519
+ # Waits until the specified long-running operation is done or reaches at most a
4520
+ # specified timeout, returning the latest state. If the operation is already
4521
+ # done, the latest state is immediately returned. If the timeout specified is
4522
+ # greater than the default HTTP/RPC timeout, the HTTP/RPC timeout is used. If
4523
+ # the server does not support this method, it returns `google.rpc.Code.
4524
+ # UNIMPLEMENTED`. Note that this method is on a best-effort basis. It may return
4525
+ # the latest state before the specified timeout (including immediately), meaning
4526
+ # even an immediate response is no guarantee that the operation is done.
4527
+ # @param [String] name
4528
+ # The name of the operation resource to wait on.
4529
+ # @param [String] timeout
4530
+ # The maximum duration to wait before timing out. If left blank, the wait will
4531
+ # be at most the time permitted by the underlying HTTP/RPC protocol. If RPC
4532
+ # context deadline is also specified, the shorter one will be used.
4533
+ # @param [String] fields
4534
+ # Selector specifying which fields to include in a partial response.
4535
+ # @param [String] quota_user
4536
+ # Available to use for quota purposes for server-side applications. Can be any
4537
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
4538
+ # @param [Google::Apis::RequestOptions] options
4539
+ # Request-specific options
4540
+ #
4541
+ # @yield [result, err] Result & error if block supplied
4542
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation] parsed result object
4543
+ # @yieldparam err [StandardError] error object if request failed
4544
+ #
4545
+ # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation]
4546
+ #
4547
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
4548
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
4549
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
4550
+ def wait_project_location_feature_group_feature_operation(name, timeout: nil, fields: nil, quota_user: nil, options: nil, &block)
4551
+ command = make_simple_command(:post, 'v1beta1/{+name}:wait', options)
4552
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
4553
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation
4554
+ command.params['name'] = name unless name.nil?
4555
+ command.query['timeout'] = timeout unless timeout.nil?
4556
+ command.query['fields'] = fields unless fields.nil?
4557
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
4558
+ execute_or_queue_command(command, &block)
4559
+ end
4560
+
4561
+ # Deletes a long-running operation. This method indicates that the client is no
4562
+ # longer interested in the operation result. It does not cancel the operation.
4563
+ # If the server doesn't support this method, it returns `google.rpc.Code.
4564
+ # UNIMPLEMENTED`.
4565
+ # @param [String] name
4566
+ # The name of the operation resource to be deleted.
4567
+ # @param [String] fields
4568
+ # Selector specifying which fields to include in a partial response.
4569
+ # @param [String] quota_user
4570
+ # Available to use for quota purposes for server-side applications. Can be any
4571
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
4572
+ # @param [Google::Apis::RequestOptions] options
4573
+ # Request-specific options
4574
+ #
4575
+ # @yield [result, err] Result & error if block supplied
4576
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty] parsed result object
4577
+ # @yieldparam err [StandardError] error object if request failed
4578
+ #
4579
+ # @return [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty]
4580
+ #
4581
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
4582
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
4583
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
4584
+ def delete_project_location_feature_group_operation(name, fields: nil, quota_user: nil, options: nil, &block)
4585
+ command = make_simple_command(:delete, 'v1beta1/{+name}', options)
4586
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty::Representation
4587
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty
4588
+ command.params['name'] = name unless name.nil?
4589
+ command.query['fields'] = fields unless fields.nil?
4590
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
4591
+ execute_or_queue_command(command, &block)
4592
+ end
4593
+
4594
+ # Gets the latest state of a long-running operation. Clients can use this method
4595
+ # to poll the operation result at intervals as recommended by the API service.
4596
+ # @param [String] name
4597
+ # The name of the operation resource.
4598
+ # @param [String] fields
4599
+ # Selector specifying which fields to include in a partial response.
4600
+ # @param [String] quota_user
4601
+ # Available to use for quota purposes for server-side applications. Can be any
4602
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
4603
+ # @param [Google::Apis::RequestOptions] options
4604
+ # Request-specific options
4605
+ #
4606
+ # @yield [result, err] Result & error if block supplied
4607
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation] parsed result object
4608
+ # @yieldparam err [StandardError] error object if request failed
4609
+ #
4610
+ # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation]
4611
+ #
4612
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
4613
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
4614
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
4615
+ def get_project_location_feature_group_operation(name, fields: nil, quota_user: nil, options: nil, &block)
4616
+ command = make_simple_command(:get, 'v1beta1/{+name}', options)
4617
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
4618
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation
4619
+ command.params['name'] = name unless name.nil?
4620
+ command.query['fields'] = fields unless fields.nil?
4621
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
4622
+ execute_or_queue_command(command, &block)
4623
+ end
4624
+
4625
+ # Lists operations that match the specified filter in the request. If the server
4626
+ # doesn't support this method, it returns `UNIMPLEMENTED`.
4627
+ # @param [String] name
4628
+ # The name of the operation's parent resource.
4629
+ # @param [String] filter
4630
+ # The standard list filter.
4631
+ # @param [Fixnum] page_size
4632
+ # The standard list page size.
4633
+ # @param [String] page_token
4634
+ # The standard list page token.
4635
+ # @param [String] fields
4636
+ # Selector specifying which fields to include in a partial response.
4637
+ # @param [String] quota_user
4638
+ # Available to use for quota purposes for server-side applications. Can be any
4639
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
4640
+ # @param [Google::Apis::RequestOptions] options
4641
+ # Request-specific options
4642
+ #
4643
+ # @yield [result, err] Result & error if block supplied
4644
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse] parsed result object
4645
+ # @yieldparam err [StandardError] error object if request failed
4646
+ #
4647
+ # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse]
4648
+ #
4649
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
4650
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
4651
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
4652
+ def list_project_location_feature_group_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
4653
+ command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
4654
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
4655
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
4656
+ command.params['name'] = name unless name.nil?
4657
+ command.query['filter'] = filter unless filter.nil?
4658
+ command.query['pageSize'] = page_size unless page_size.nil?
4659
+ command.query['pageToken'] = page_token unless page_token.nil?
4660
+ command.query['fields'] = fields unless fields.nil?
4661
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
4662
+ execute_or_queue_command(command, &block)
4663
+ end
4664
+
4665
+ # Waits until the specified long-running operation is done or reaches at most a
4666
+ # specified timeout, returning the latest state. If the operation is already
4667
+ # done, the latest state is immediately returned. If the timeout specified is
4668
+ # greater than the default HTTP/RPC timeout, the HTTP/RPC timeout is used. If
4669
+ # the server does not support this method, it returns `google.rpc.Code.
4670
+ # UNIMPLEMENTED`. Note that this method is on a best-effort basis. It may return
4671
+ # the latest state before the specified timeout (including immediately), meaning
4672
+ # even an immediate response is no guarantee that the operation is done.
4673
+ # @param [String] name
4674
+ # The name of the operation resource to wait on.
4675
+ # @param [String] timeout
4676
+ # The maximum duration to wait before timing out. If left blank, the wait will
4677
+ # be at most the time permitted by the underlying HTTP/RPC protocol. If RPC
4678
+ # context deadline is also specified, the shorter one will be used.
4679
+ # @param [String] fields
4680
+ # Selector specifying which fields to include in a partial response.
4681
+ # @param [String] quota_user
4682
+ # Available to use for quota purposes for server-side applications. Can be any
4683
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
4684
+ # @param [Google::Apis::RequestOptions] options
4685
+ # Request-specific options
4686
+ #
4687
+ # @yield [result, err] Result & error if block supplied
4688
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation] parsed result object
4689
+ # @yieldparam err [StandardError] error object if request failed
4690
+ #
4691
+ # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation]
4692
+ #
4693
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
4694
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
4695
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
4696
+ def wait_project_location_feature_group_operation(name, timeout: nil, fields: nil, quota_user: nil, options: nil, &block)
4697
+ command = make_simple_command(:post, 'v1beta1/{+name}:wait', options)
4698
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
4699
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation
4700
+ command.params['name'] = name unless name.nil?
4701
+ command.query['timeout'] = timeout unless timeout.nil?
4702
+ command.query['fields'] = fields unless fields.nil?
4703
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
4704
+ execute_or_queue_command(command, &block)
4705
+ end
4706
+
4415
4707
  # Deletes a long-running operation. This method indicates that the client is no
4416
4708
  # longer interested in the operation result. It does not cancel the operation.
4417
4709
  # If the server doesn't support this method, it returns `google.rpc.Code.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-aiplatform_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.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: 2023-08-13 00:00:00.000000000 Z
11
+ date: 2023-08-27 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-aiplatform_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1beta1/v0.1.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1beta1/v0.2.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1beta1
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.4.2
78
+ rubygems_version: 3.4.19
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Vertex AI API V1beta1