google-apis-aiplatform_v1beta1 0.49.0 → 0.51.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/CHANGELOG.md +8 -0
- data/lib/google/apis/aiplatform_v1beta1/classes.rb +204 -12
- data/lib/google/apis/aiplatform_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/aiplatform_v1beta1/representations.rb +83 -0
- data/lib/google/apis/aiplatform_v1beta1/service.rb +143 -0
- 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: 22538bf5140797d0002240bf33d26b3f1e4a0afd173bfd3bc7d7cd24a5e84808
|
4
|
+
data.tar.gz: ecd844a7fcf0b1115f0476457dadf01c703f092af91082fa524bacf695ad42f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 06a8591a79632265e22ceb48a2ce8bfefecce1b2e63a476439b02dc36a3222dd2f2ee3d751dc36c082653ef8d8a87348f6a1c488b7e407371ae04c9c1bb2a488
|
7
|
+
data.tar.gz: b6ca4ebcc739cba0955f4be12711779e1d7cab8d182797a84e4cef68f0424fd52127bb299665bff7a5e0965ae1c947775b459460b3aa5fb9371ec36e2c781ddb
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-aiplatform_v1beta1
|
2
2
|
|
3
|
+
### v0.51.0 (2025-06-22)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250606
|
6
|
+
|
7
|
+
### v0.50.0 (2025-06-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250602
|
10
|
+
|
3
11
|
### v0.49.0 (2025-06-08)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250529
|
@@ -3457,6 +3457,11 @@ module Google
|
|
3457
3457
|
# @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SafetyRating>]
|
3458
3458
|
attr_accessor :safety_ratings
|
3459
3459
|
|
3460
|
+
# Metadata related to url context retrieval tool.
|
3461
|
+
# Corresponds to the JSON property `urlContextMetadata`
|
3462
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1UrlContextMetadata]
|
3463
|
+
attr_accessor :url_context_metadata
|
3464
|
+
|
3460
3465
|
def initialize(**args)
|
3461
3466
|
update!(**args)
|
3462
3467
|
end
|
@@ -3472,6 +3477,7 @@ module Google
|
|
3472
3477
|
@index = args[:index] if args.key?(:index)
|
3473
3478
|
@logprobs_result = args[:logprobs_result] if args.key?(:logprobs_result)
|
3474
3479
|
@safety_ratings = args[:safety_ratings] if args.key?(:safety_ratings)
|
3480
|
+
@url_context_metadata = args[:url_context_metadata] if args.key?(:url_context_metadata)
|
3475
3481
|
end
|
3476
3482
|
end
|
3477
3483
|
|
@@ -7319,12 +7325,12 @@ module Google
|
|
7319
7325
|
# @return [String]
|
7320
7326
|
attr_accessor :id
|
7321
7327
|
|
7322
|
-
#
|
7323
|
-
#
|
7324
|
-
#
|
7325
|
-
#
|
7326
|
-
#
|
7327
|
-
#
|
7328
|
+
# The resource name of the Model that this is the deployment of. Note that the
|
7329
|
+
# Model may be in a different location than the DeployedModel's Endpoint. The
|
7330
|
+
# resource name may contain version id or version alias to specify the version.
|
7331
|
+
# Example: `projects/`project`/locations/`location`/models/`model`@2` or `
|
7332
|
+
# projects/`project`/locations/`location`/models/`model`@golden` if no version
|
7333
|
+
# is specified, the default version will be deployed.
|
7328
7334
|
# Corresponds to the JSON property `model`
|
7329
7335
|
# @return [String]
|
7330
7336
|
attr_accessor :model
|
@@ -7828,6 +7834,43 @@ module Google
|
|
7828
7834
|
end
|
7829
7835
|
end
|
7830
7836
|
|
7837
|
+
# DNS peering configuration. These configurations are used to create DNS peering
|
7838
|
+
# zones in the Vertex tenant project VPC, enabling resolution of records within
|
7839
|
+
# the specified domain hosted in the target network's Cloud DNS.
|
7840
|
+
class GoogleCloudAiplatformV1beta1DnsPeeringConfig
|
7841
|
+
include Google::Apis::Core::Hashable
|
7842
|
+
|
7843
|
+
# Required. The DNS name suffix of the zone being peered to, e.g., "my-internal-
|
7844
|
+
# domain.corp.". Must end with a dot.
|
7845
|
+
# Corresponds to the JSON property `domain`
|
7846
|
+
# @return [String]
|
7847
|
+
attr_accessor :domain
|
7848
|
+
|
7849
|
+
# Required. The VPC network name in the target_project where the DNS zone
|
7850
|
+
# specified by 'domain' is visible.
|
7851
|
+
# Corresponds to the JSON property `targetNetwork`
|
7852
|
+
# @return [String]
|
7853
|
+
attr_accessor :target_network
|
7854
|
+
|
7855
|
+
# Required. The project ID hosting the Cloud DNS managed zone that contains the '
|
7856
|
+
# domain'. The Vertex AI Service Agent requires the dns.peer role on this
|
7857
|
+
# project.
|
7858
|
+
# Corresponds to the JSON property `targetProject`
|
7859
|
+
# @return [String]
|
7860
|
+
attr_accessor :target_project
|
7861
|
+
|
7862
|
+
def initialize(**args)
|
7863
|
+
update!(**args)
|
7864
|
+
end
|
7865
|
+
|
7866
|
+
# Update properties of this object
|
7867
|
+
def update!(**args)
|
7868
|
+
@domain = args[:domain] if args.key?(:domain)
|
7869
|
+
@target_network = args[:target_network] if args.key?(:target_network)
|
7870
|
+
@target_project = args[:target_project] if args.key?(:target_project)
|
7871
|
+
end
|
7872
|
+
end
|
7873
|
+
|
7831
7874
|
# A list of double values.
|
7832
7875
|
class GoogleCloudAiplatformV1beta1DoubleArray
|
7833
7876
|
include Google::Apis::Core::Hashable
|
@@ -15609,7 +15652,9 @@ module Google
|
|
15609
15652
|
include Google::Apis::Core::Hashable
|
15610
15653
|
|
15611
15654
|
# Confidence score of the support references. Ranges from 0 to 1. 1 is the most
|
15612
|
-
# confident.
|
15655
|
+
# confident. For Gemini 2.0 and before, this list must have the same size as the
|
15656
|
+
# grounding_chunk_indices. For Gemini 2.5 and after, this list will be empty and
|
15657
|
+
# should be ignored.
|
15613
15658
|
# Corresponds to the JSON property `confidenceScores`
|
15614
15659
|
# @return [Array<Float>]
|
15615
15660
|
attr_accessor :confidence_scores
|
@@ -20423,6 +20468,16 @@ module Google
|
|
20423
20468
|
# @return [String]
|
20424
20469
|
attr_accessor :image_uri
|
20425
20470
|
|
20471
|
+
# Immutable. Invoke route prefix for the custom container. "/*" is the only
|
20472
|
+
# supported value right now. By setting this field, any non-root route on this
|
20473
|
+
# model will be accessible with [PredictionService.Invoke] eg: "/invoke/foo/bar".
|
20474
|
+
# Only one of `predict_route` or `invoke_route_prefix` can be set, and we
|
20475
|
+
# default to using `predict_route` if this field is not set. If this field is
|
20476
|
+
# set, the Model can only be deployed to dedicated endpoint.
|
20477
|
+
# Corresponds to the JSON property `invokeRoutePrefix`
|
20478
|
+
# @return [String]
|
20479
|
+
attr_accessor :invoke_route_prefix
|
20480
|
+
|
20426
20481
|
# Probe describes a health check to be performed against a container to
|
20427
20482
|
# determine whether it is alive or ready to receive traffic.
|
20428
20483
|
# Corresponds to the JSON property `livenessProbe`
|
@@ -20491,6 +20546,7 @@ module Google
|
|
20491
20546
|
@health_probe = args[:health_probe] if args.key?(:health_probe)
|
20492
20547
|
@health_route = args[:health_route] if args.key?(:health_route)
|
20493
20548
|
@image_uri = args[:image_uri] if args.key?(:image_uri)
|
20549
|
+
@invoke_route_prefix = args[:invoke_route_prefix] if args.key?(:invoke_route_prefix)
|
20494
20550
|
@liveness_probe = args[:liveness_probe] if args.key?(:liveness_probe)
|
20495
20551
|
@ports = args[:ports] if args.key?(:ports)
|
20496
20552
|
@predict_route = args[:predict_route] if args.key?(:predict_route)
|
@@ -24768,14 +24824,17 @@ module Google
|
|
24768
24824
|
class GoogleCloudAiplatformV1beta1PscAutomationConfig
|
24769
24825
|
include Google::Apis::Core::Hashable
|
24770
24826
|
|
24771
|
-
# Output only.
|
24772
|
-
#
|
24827
|
+
# Output only. Error message if the PSC service automation failed.
|
24828
|
+
# Corresponds to the JSON property `errorMessage`
|
24829
|
+
# @return [String]
|
24830
|
+
attr_accessor :error_message
|
24831
|
+
|
24832
|
+
# Output only. Forwarding rule created by the PSC service automation.
|
24773
24833
|
# Corresponds to the JSON property `forwardingRule`
|
24774
24834
|
# @return [String]
|
24775
24835
|
attr_accessor :forwarding_rule
|
24776
24836
|
|
24777
|
-
# Output only. IP address rule created by the PSC service automation.
|
24778
|
-
# Vector search, use IndexPrivateEndpoint instead.
|
24837
|
+
# Output only. IP address rule created by the PSC service automation.
|
24779
24838
|
# Corresponds to the JSON property `ipAddress`
|
24780
24839
|
# @return [String]
|
24781
24840
|
attr_accessor :ip_address
|
@@ -24794,16 +24853,23 @@ module Google
|
|
24794
24853
|
# @return [String]
|
24795
24854
|
attr_accessor :project_id
|
24796
24855
|
|
24856
|
+
# Output only. The state of the PSC service automation.
|
24857
|
+
# Corresponds to the JSON property `state`
|
24858
|
+
# @return [String]
|
24859
|
+
attr_accessor :state
|
24860
|
+
|
24797
24861
|
def initialize(**args)
|
24798
24862
|
update!(**args)
|
24799
24863
|
end
|
24800
24864
|
|
24801
24865
|
# Update properties of this object
|
24802
24866
|
def update!(**args)
|
24867
|
+
@error_message = args[:error_message] if args.key?(:error_message)
|
24803
24868
|
@forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
|
24804
24869
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
24805
24870
|
@network = args[:network] if args.key?(:network)
|
24806
24871
|
@project_id = args[:project_id] if args.key?(:project_id)
|
24872
|
+
@state = args[:state] if args.key?(:state)
|
24807
24873
|
end
|
24808
24874
|
end
|
24809
24875
|
|
@@ -25239,12 +25305,19 @@ module Google
|
|
25239
25305
|
# @return [String]
|
25240
25306
|
attr_accessor :text
|
25241
25307
|
|
25242
|
-
#
|
25308
|
+
# Optional. Indicates if the part is thought from the model.
|
25243
25309
|
# Corresponds to the JSON property `thought`
|
25244
25310
|
# @return [Boolean]
|
25245
25311
|
attr_accessor :thought
|
25246
25312
|
alias_method :thought?, :thought
|
25247
25313
|
|
25314
|
+
# Optional. An opaque signature for the thought so it can be reused in
|
25315
|
+
# subsequent requests.
|
25316
|
+
# Corresponds to the JSON property `thoughtSignature`
|
25317
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
25318
|
+
# @return [String]
|
25319
|
+
attr_accessor :thought_signature
|
25320
|
+
|
25248
25321
|
# Metadata describes the input video content.
|
25249
25322
|
# Corresponds to the JSON property `videoMetadata`
|
25250
25323
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1VideoMetadata]
|
@@ -25264,6 +25337,7 @@ module Google
|
|
25264
25337
|
@inline_data = args[:inline_data] if args.key?(:inline_data)
|
25265
25338
|
@text = args[:text] if args.key?(:text)
|
25266
25339
|
@thought = args[:thought] if args.key?(:thought)
|
25340
|
+
@thought_signature = args[:thought_signature] if args.key?(:thought_signature)
|
25267
25341
|
@video_metadata = args[:video_metadata] if args.key?(:video_metadata)
|
25268
25342
|
end
|
25269
25343
|
end
|
@@ -27093,6 +27167,14 @@ module Google
|
|
27093
27167
|
class GoogleCloudAiplatformV1beta1PscInterfaceConfig
|
27094
27168
|
include Google::Apis::Core::Hashable
|
27095
27169
|
|
27170
|
+
# Optional. DNS peering configurations. When specified, Vertex AI will attempt
|
27171
|
+
# to configure DNS peering zones in the tenant project VPC to resolve the
|
27172
|
+
# specified domains using the target network's Cloud DNS. The user must grant
|
27173
|
+
# the dns.peer role to the Vertex AI Service Agent on the target project.
|
27174
|
+
# Corresponds to the JSON property `dnsPeeringConfigs`
|
27175
|
+
# @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DnsPeeringConfig>]
|
27176
|
+
attr_accessor :dns_peering_configs
|
27177
|
+
|
27096
27178
|
# Optional. The name of the Compute Engine [network attachment](https://cloud.
|
27097
27179
|
# google.com/vpc/docs/about-network-attachments) to attach to the resource
|
27098
27180
|
# within the region and user project. To specify this field, you must have
|
@@ -27109,6 +27191,7 @@ module Google
|
|
27109
27191
|
|
27110
27192
|
# Update properties of this object
|
27111
27193
|
def update!(**args)
|
27194
|
+
@dns_peering_configs = args[:dns_peering_configs] if args.key?(:dns_peering_configs)
|
27112
27195
|
@network_attachment = args[:network_attachment] if args.key?(:network_attachment)
|
27113
27196
|
end
|
27114
27197
|
end
|
@@ -27512,6 +27595,12 @@ module Google
|
|
27512
27595
|
# @return [String]
|
27513
27596
|
attr_accessor :resource_use_case
|
27514
27597
|
|
27598
|
+
# Optional. For notebook resource, whether the notebook supports Workbench.
|
27599
|
+
# Corresponds to the JSON property `supportsWorkbench`
|
27600
|
+
# @return [Boolean]
|
27601
|
+
attr_accessor :supports_workbench
|
27602
|
+
alias_method :supports_workbench?, :supports_workbench
|
27603
|
+
|
27515
27604
|
# Required.
|
27516
27605
|
# Corresponds to the JSON property `title`
|
27517
27606
|
# @return [String]
|
@@ -27527,6 +27616,7 @@ module Google
|
|
27527
27616
|
@resource_description = args[:resource_description] if args.key?(:resource_description)
|
27528
27617
|
@resource_title = args[:resource_title] if args.key?(:resource_title)
|
27529
27618
|
@resource_use_case = args[:resource_use_case] if args.key?(:resource_use_case)
|
27619
|
+
@supports_workbench = args[:supports_workbench] if args.key?(:supports_workbench)
|
27530
27620
|
@title = args[:title] if args.key?(:title)
|
27531
27621
|
end
|
27532
27622
|
end
|
@@ -43287,6 +43377,11 @@ module Google
|
|
43287
43377
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ToolCodeExecution]
|
43288
43378
|
attr_accessor :code_execution
|
43289
43379
|
|
43380
|
+
# Tool to support computer use.
|
43381
|
+
# Corresponds to the JSON property `computerUse`
|
43382
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ToolComputerUse]
|
43383
|
+
attr_accessor :computer_use
|
43384
|
+
|
43290
43385
|
# Tool to search public web data, powered by Vertex AI Search and Sec4
|
43291
43386
|
# compliance.
|
43292
43387
|
# Corresponds to the JSON property `enterpriseWebSearch`
|
@@ -43319,6 +43414,11 @@ module Google
|
|
43319
43414
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Retrieval]
|
43320
43415
|
attr_accessor :retrieval
|
43321
43416
|
|
43417
|
+
# Tool to support URL context.
|
43418
|
+
# Corresponds to the JSON property `urlContext`
|
43419
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1UrlContext]
|
43420
|
+
attr_accessor :url_context
|
43421
|
+
|
43322
43422
|
def initialize(**args)
|
43323
43423
|
update!(**args)
|
43324
43424
|
end
|
@@ -43326,11 +43426,13 @@ module Google
|
|
43326
43426
|
# Update properties of this object
|
43327
43427
|
def update!(**args)
|
43328
43428
|
@code_execution = args[:code_execution] if args.key?(:code_execution)
|
43429
|
+
@computer_use = args[:computer_use] if args.key?(:computer_use)
|
43329
43430
|
@enterprise_web_search = args[:enterprise_web_search] if args.key?(:enterprise_web_search)
|
43330
43431
|
@function_declarations = args[:function_declarations] if args.key?(:function_declarations)
|
43331
43432
|
@google_search = args[:google_search] if args.key?(:google_search)
|
43332
43433
|
@google_search_retrieval = args[:google_search_retrieval] if args.key?(:google_search_retrieval)
|
43333
43434
|
@retrieval = args[:retrieval] if args.key?(:retrieval)
|
43435
|
+
@url_context = args[:url_context] if args.key?(:url_context)
|
43334
43436
|
end
|
43335
43437
|
end
|
43336
43438
|
|
@@ -43475,6 +43577,25 @@ module Google
|
|
43475
43577
|
end
|
43476
43578
|
end
|
43477
43579
|
|
43580
|
+
# Tool to support computer use.
|
43581
|
+
class GoogleCloudAiplatformV1beta1ToolComputerUse
|
43582
|
+
include Google::Apis::Core::Hashable
|
43583
|
+
|
43584
|
+
# Required. The environment being operated.
|
43585
|
+
# Corresponds to the JSON property `environment`
|
43586
|
+
# @return [String]
|
43587
|
+
attr_accessor :environment
|
43588
|
+
|
43589
|
+
def initialize(**args)
|
43590
|
+
update!(**args)
|
43591
|
+
end
|
43592
|
+
|
43593
|
+
# Update properties of this object
|
43594
|
+
def update!(**args)
|
43595
|
+
@environment = args[:environment] if args.key?(:environment)
|
43596
|
+
end
|
43597
|
+
end
|
43598
|
+
|
43478
43599
|
# Tool config. This config is shared for all tools provided in the request.
|
43479
43600
|
class GoogleCloudAiplatformV1beta1ToolConfig
|
43480
43601
|
include Google::Apis::Core::Hashable
|
@@ -45091,6 +45212,18 @@ module Google
|
|
45091
45212
|
# @return [String]
|
45092
45213
|
attr_accessor :pipeline_job
|
45093
45214
|
|
45215
|
+
# Output only. Reserved for future use.
|
45216
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
45217
|
+
# @return [Boolean]
|
45218
|
+
attr_accessor :satisfies_pzi
|
45219
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
45220
|
+
|
45221
|
+
# Output only. Reserved for future use.
|
45222
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
45223
|
+
# @return [Boolean]
|
45224
|
+
attr_accessor :satisfies_pzs
|
45225
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
45226
|
+
|
45094
45227
|
# The service account that the tuningJob workload runs as. If not specified, the
|
45095
45228
|
# Vertex AI Secure Fine-Tuned Service Agent in the project will be used. See
|
45096
45229
|
# https://cloud.google.com/iam/docs/service-agents#vertex-ai-secure-fine-tuning-
|
@@ -45156,6 +45289,8 @@ module Google
|
|
45156
45289
|
@name = args[:name] if args.key?(:name)
|
45157
45290
|
@partner_model_tuning_spec = args[:partner_model_tuning_spec] if args.key?(:partner_model_tuning_spec)
|
45158
45291
|
@pipeline_job = args[:pipeline_job] if args.key?(:pipeline_job)
|
45292
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
45293
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
45159
45294
|
@service_account = args[:service_account] if args.key?(:service_account)
|
45160
45295
|
@start_time = args[:start_time] if args.key?(:start_time)
|
45161
45296
|
@state = args[:state] if args.key?(:state)
|
@@ -45988,6 +46123,63 @@ module Google
|
|
45988
46123
|
end
|
45989
46124
|
end
|
45990
46125
|
|
46126
|
+
# Tool to support URL context.
|
46127
|
+
class GoogleCloudAiplatformV1beta1UrlContext
|
46128
|
+
include Google::Apis::Core::Hashable
|
46129
|
+
|
46130
|
+
def initialize(**args)
|
46131
|
+
update!(**args)
|
46132
|
+
end
|
46133
|
+
|
46134
|
+
# Update properties of this object
|
46135
|
+
def update!(**args)
|
46136
|
+
end
|
46137
|
+
end
|
46138
|
+
|
46139
|
+
# Metadata related to url context retrieval tool.
|
46140
|
+
class GoogleCloudAiplatformV1beta1UrlContextMetadata
|
46141
|
+
include Google::Apis::Core::Hashable
|
46142
|
+
|
46143
|
+
# Output only. List of url context.
|
46144
|
+
# Corresponds to the JSON property `urlMetadata`
|
46145
|
+
# @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1UrlMetadata>]
|
46146
|
+
attr_accessor :url_metadata
|
46147
|
+
|
46148
|
+
def initialize(**args)
|
46149
|
+
update!(**args)
|
46150
|
+
end
|
46151
|
+
|
46152
|
+
# Update properties of this object
|
46153
|
+
def update!(**args)
|
46154
|
+
@url_metadata = args[:url_metadata] if args.key?(:url_metadata)
|
46155
|
+
end
|
46156
|
+
end
|
46157
|
+
|
46158
|
+
# Context of the a single url retrieval.
|
46159
|
+
class GoogleCloudAiplatformV1beta1UrlMetadata
|
46160
|
+
include Google::Apis::Core::Hashable
|
46161
|
+
|
46162
|
+
# Retrieved url by the tool.
|
46163
|
+
# Corresponds to the JSON property `retrievedUrl`
|
46164
|
+
# @return [String]
|
46165
|
+
attr_accessor :retrieved_url
|
46166
|
+
|
46167
|
+
# Status of the url retrieval.
|
46168
|
+
# Corresponds to the JSON property `urlRetrievalStatus`
|
46169
|
+
# @return [String]
|
46170
|
+
attr_accessor :url_retrieval_status
|
46171
|
+
|
46172
|
+
def initialize(**args)
|
46173
|
+
update!(**args)
|
46174
|
+
end
|
46175
|
+
|
46176
|
+
# Update properties of this object
|
46177
|
+
def update!(**args)
|
46178
|
+
@retrieved_url = args[:retrieved_url] if args.key?(:retrieved_url)
|
46179
|
+
@url_retrieval_status = args[:url_retrieval_status] if args.key?(:url_retrieval_status)
|
46180
|
+
end
|
46181
|
+
end
|
46182
|
+
|
45991
46183
|
# References an API call. It contains more information about long running
|
45992
46184
|
# operation and Jobs that are triggered by the API call.
|
45993
46185
|
class GoogleCloudAiplatformV1beta1UserActionReference
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.51.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250606"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1396,6 +1396,12 @@ module Google
|
|
1396
1396
|
include Google::Apis::Core::JsonObjectSupport
|
1397
1397
|
end
|
1398
1398
|
|
1399
|
+
class GoogleCloudAiplatformV1beta1DnsPeeringConfig
|
1400
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1401
|
+
|
1402
|
+
include Google::Apis::Core::JsonObjectSupport
|
1403
|
+
end
|
1404
|
+
|
1399
1405
|
class GoogleCloudAiplatformV1beta1DoubleArray
|
1400
1406
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1401
1407
|
|
@@ -7240,6 +7246,12 @@ module Google
|
|
7240
7246
|
include Google::Apis::Core::JsonObjectSupport
|
7241
7247
|
end
|
7242
7248
|
|
7249
|
+
class GoogleCloudAiplatformV1beta1ToolComputerUse
|
7250
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
7251
|
+
|
7252
|
+
include Google::Apis::Core::JsonObjectSupport
|
7253
|
+
end
|
7254
|
+
|
7243
7255
|
class GoogleCloudAiplatformV1beta1ToolConfig
|
7244
7256
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
7245
7257
|
|
@@ -7822,6 +7834,24 @@ module Google
|
|
7822
7834
|
include Google::Apis::Core::JsonObjectSupport
|
7823
7835
|
end
|
7824
7836
|
|
7837
|
+
class GoogleCloudAiplatformV1beta1UrlContext
|
7838
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
7839
|
+
|
7840
|
+
include Google::Apis::Core::JsonObjectSupport
|
7841
|
+
end
|
7842
|
+
|
7843
|
+
class GoogleCloudAiplatformV1beta1UrlContextMetadata
|
7844
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
7845
|
+
|
7846
|
+
include Google::Apis::Core::JsonObjectSupport
|
7847
|
+
end
|
7848
|
+
|
7849
|
+
class GoogleCloudAiplatformV1beta1UrlMetadata
|
7850
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
7851
|
+
|
7852
|
+
include Google::Apis::Core::JsonObjectSupport
|
7853
|
+
end
|
7854
|
+
|
7825
7855
|
class GoogleCloudAiplatformV1beta1UserActionReference
|
7826
7856
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
7827
7857
|
|
@@ -9060,6 +9090,8 @@ module Google
|
|
9060
9090
|
|
9061
9091
|
collection :safety_ratings, as: 'safetyRatings', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SafetyRating, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SafetyRating::Representation
|
9062
9092
|
|
9093
|
+
property :url_context_metadata, as: 'urlContextMetadata', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1UrlContextMetadata, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1UrlContextMetadata::Representation
|
9094
|
+
|
9063
9095
|
end
|
9064
9096
|
end
|
9065
9097
|
|
@@ -10306,6 +10338,15 @@ module Google
|
|
10306
10338
|
end
|
10307
10339
|
end
|
10308
10340
|
|
10341
|
+
class GoogleCloudAiplatformV1beta1DnsPeeringConfig
|
10342
|
+
# @private
|
10343
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
10344
|
+
property :domain, as: 'domain'
|
10345
|
+
property :target_network, as: 'targetNetwork'
|
10346
|
+
property :target_project, as: 'targetProject'
|
10347
|
+
end
|
10348
|
+
end
|
10349
|
+
|
10309
10350
|
class GoogleCloudAiplatformV1beta1DoubleArray
|
10310
10351
|
# @private
|
10311
10352
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -13883,6 +13924,7 @@ module Google
|
|
13883
13924
|
|
13884
13925
|
property :health_route, as: 'healthRoute'
|
13885
13926
|
property :image_uri, as: 'imageUri'
|
13927
|
+
property :invoke_route_prefix, as: 'invokeRoutePrefix'
|
13886
13928
|
property :liveness_probe, as: 'livenessProbe', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Probe, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Probe::Representation
|
13887
13929
|
|
13888
13930
|
collection :ports, as: 'ports', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Port, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Port::Representation
|
@@ -15101,10 +15143,12 @@ module Google
|
|
15101
15143
|
class GoogleCloudAiplatformV1beta1PscAutomationConfig
|
15102
15144
|
# @private
|
15103
15145
|
class Representation < Google::Apis::Core::JsonRepresentation
|
15146
|
+
property :error_message, as: 'errorMessage'
|
15104
15147
|
property :forwarding_rule, as: 'forwardingRule'
|
15105
15148
|
property :ip_address, as: 'ipAddress'
|
15106
15149
|
property :network, as: 'network'
|
15107
15150
|
property :project_id, as: 'projectId'
|
15151
|
+
property :state, as: 'state'
|
15108
15152
|
end
|
15109
15153
|
end
|
15110
15154
|
|
@@ -15242,6 +15286,7 @@ module Google
|
|
15242
15286
|
|
15243
15287
|
property :text, as: 'text'
|
15244
15288
|
property :thought, as: 'thought'
|
15289
|
+
property :thought_signature, :base64 => true, as: 'thoughtSignature'
|
15245
15290
|
property :video_metadata, as: 'videoMetadata', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1VideoMetadata, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1VideoMetadata::Representation
|
15246
15291
|
|
15247
15292
|
end
|
@@ -15735,6 +15780,8 @@ module Google
|
|
15735
15780
|
class GoogleCloudAiplatformV1beta1PscInterfaceConfig
|
15736
15781
|
# @private
|
15737
15782
|
class Representation < Google::Apis::Core::JsonRepresentation
|
15783
|
+
collection :dns_peering_configs, as: 'dnsPeeringConfigs', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DnsPeeringConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DnsPeeringConfig::Representation
|
15784
|
+
|
15738
15785
|
property :network_attachment, as: 'networkAttachment'
|
15739
15786
|
end
|
15740
15787
|
end
|
@@ -15861,6 +15908,7 @@ module Google
|
|
15861
15908
|
property :resource_description, as: 'resourceDescription'
|
15862
15909
|
property :resource_title, as: 'resourceTitle'
|
15863
15910
|
property :resource_use_case, as: 'resourceUseCase'
|
15911
|
+
property :supports_workbench, as: 'supportsWorkbench'
|
15864
15912
|
property :title, as: 'title'
|
15865
15913
|
end
|
15866
15914
|
end
|
@@ -20335,6 +20383,8 @@ module Google
|
|
20335
20383
|
class Representation < Google::Apis::Core::JsonRepresentation
|
20336
20384
|
property :code_execution, as: 'codeExecution', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ToolCodeExecution, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ToolCodeExecution::Representation
|
20337
20385
|
|
20386
|
+
property :computer_use, as: 'computerUse', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ToolComputerUse, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ToolComputerUse::Representation
|
20387
|
+
|
20338
20388
|
property :enterprise_web_search, as: 'enterpriseWebSearch', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EnterpriseWebSearch, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EnterpriseWebSearch::Representation
|
20339
20389
|
|
20340
20390
|
collection :function_declarations, as: 'functionDeclarations', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FunctionDeclaration, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FunctionDeclaration::Representation
|
@@ -20345,6 +20395,8 @@ module Google
|
|
20345
20395
|
|
20346
20396
|
property :retrieval, as: 'retrieval', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Retrieval, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Retrieval::Representation
|
20347
20397
|
|
20398
|
+
property :url_context, as: 'urlContext', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1UrlContext, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1UrlContext::Representation
|
20399
|
+
|
20348
20400
|
end
|
20349
20401
|
end
|
20350
20402
|
|
@@ -20401,6 +20453,13 @@ module Google
|
|
20401
20453
|
end
|
20402
20454
|
end
|
20403
20455
|
|
20456
|
+
class GoogleCloudAiplatformV1beta1ToolComputerUse
|
20457
|
+
# @private
|
20458
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
20459
|
+
property :environment, as: 'environment'
|
20460
|
+
end
|
20461
|
+
end
|
20462
|
+
|
20404
20463
|
class GoogleCloudAiplatformV1beta1ToolConfig
|
20405
20464
|
# @private
|
20406
20465
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -20940,6 +20999,8 @@ module Google
|
|
20940
20999
|
property :partner_model_tuning_spec, as: 'partnerModelTuningSpec', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PartnerModelTuningSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PartnerModelTuningSpec::Representation
|
20941
21000
|
|
20942
21001
|
property :pipeline_job, as: 'pipelineJob'
|
21002
|
+
property :satisfies_pzi, as: 'satisfiesPzi'
|
21003
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
20943
21004
|
property :service_account, as: 'serviceAccount'
|
20944
21005
|
property :start_time, as: 'startTime'
|
20945
21006
|
property :state, as: 'state'
|
@@ -21260,6 +21321,28 @@ module Google
|
|
21260
21321
|
end
|
21261
21322
|
end
|
21262
21323
|
|
21324
|
+
class GoogleCloudAiplatformV1beta1UrlContext
|
21325
|
+
# @private
|
21326
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
21327
|
+
end
|
21328
|
+
end
|
21329
|
+
|
21330
|
+
class GoogleCloudAiplatformV1beta1UrlContextMetadata
|
21331
|
+
# @private
|
21332
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
21333
|
+
collection :url_metadata, as: 'urlMetadata', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1UrlMetadata, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1UrlMetadata::Representation
|
21334
|
+
|
21335
|
+
end
|
21336
|
+
end
|
21337
|
+
|
21338
|
+
class GoogleCloudAiplatformV1beta1UrlMetadata
|
21339
|
+
# @private
|
21340
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
21341
|
+
property :retrieved_url, as: 'retrievedUrl'
|
21342
|
+
property :url_retrieval_status, as: 'urlRetrievalStatus'
|
21343
|
+
end
|
21344
|
+
end
|
21345
|
+
|
21263
21346
|
class GoogleCloudAiplatformV1beta1UserActionReference
|
21264
21347
|
# @private
|
21265
21348
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -22339,6 +22339,149 @@ module Google
|
|
22339
22339
|
execute_or_queue_command(command, &block)
|
22340
22340
|
end
|
22341
22341
|
|
22342
|
+
# Starts asynchronous cancellation on a long-running operation. The server makes
|
22343
|
+
# a best effort to cancel the operation, but success is not guaranteed. If the
|
22344
|
+
# server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
|
22345
|
+
# Clients can use Operations.GetOperation or other methods to check whether the
|
22346
|
+
# cancellation succeeded or whether the operation completed despite cancellation.
|
22347
|
+
# On successful cancellation, the operation is not deleted; instead, it becomes
|
22348
|
+
# an operation with an Operation.error value with a google.rpc.Status.code of `1`
|
22349
|
+
# , corresponding to `Code.CANCELLED`.
|
22350
|
+
# @param [String] name
|
22351
|
+
# The name of the operation resource to be cancelled.
|
22352
|
+
# @param [String] fields
|
22353
|
+
# Selector specifying which fields to include in a partial response.
|
22354
|
+
# @param [String] quota_user
|
22355
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
22356
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
22357
|
+
# @param [Google::Apis::RequestOptions] options
|
22358
|
+
# Request-specific options
|
22359
|
+
#
|
22360
|
+
# @yield [result, err] Result & error if block supplied
|
22361
|
+
# @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty] parsed result object
|
22362
|
+
# @yieldparam err [StandardError] error object if request failed
|
22363
|
+
#
|
22364
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty]
|
22365
|
+
#
|
22366
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
22367
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
22368
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
22369
|
+
def cancel_project_location_reasoning_engine_example_operation(name, fields: nil, quota_user: nil, options: nil, &block)
|
22370
|
+
command = make_simple_command(:post, 'v1beta1/{+name}:cancel', options)
|
22371
|
+
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty::Representation
|
22372
|
+
command.response_class = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty
|
22373
|
+
command.params['name'] = name unless name.nil?
|
22374
|
+
command.query['fields'] = fields unless fields.nil?
|
22375
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
22376
|
+
execute_or_queue_command(command, &block)
|
22377
|
+
end
|
22378
|
+
|
22379
|
+
# Deletes a long-running operation. This method indicates that the client is no
|
22380
|
+
# longer interested in the operation result. It does not cancel the operation.
|
22381
|
+
# If the server doesn't support this method, it returns `google.rpc.Code.
|
22382
|
+
# UNIMPLEMENTED`.
|
22383
|
+
# @param [String] name
|
22384
|
+
# The name of the operation resource to be deleted.
|
22385
|
+
# @param [String] fields
|
22386
|
+
# Selector specifying which fields to include in a partial response.
|
22387
|
+
# @param [String] quota_user
|
22388
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
22389
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
22390
|
+
# @param [Google::Apis::RequestOptions] options
|
22391
|
+
# Request-specific options
|
22392
|
+
#
|
22393
|
+
# @yield [result, err] Result & error if block supplied
|
22394
|
+
# @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty] parsed result object
|
22395
|
+
# @yieldparam err [StandardError] error object if request failed
|
22396
|
+
#
|
22397
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty]
|
22398
|
+
#
|
22399
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
22400
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
22401
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
22402
|
+
def delete_project_location_reasoning_engine_example_operation(name, fields: nil, quota_user: nil, options: nil, &block)
|
22403
|
+
command = make_simple_command(:delete, 'v1beta1/{+name}', options)
|
22404
|
+
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty::Representation
|
22405
|
+
command.response_class = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty
|
22406
|
+
command.params['name'] = name unless name.nil?
|
22407
|
+
command.query['fields'] = fields unless fields.nil?
|
22408
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
22409
|
+
execute_or_queue_command(command, &block)
|
22410
|
+
end
|
22411
|
+
|
22412
|
+
# Gets the latest state of a long-running operation. Clients can use this method
|
22413
|
+
# to poll the operation result at intervals as recommended by the API service.
|
22414
|
+
# @param [String] name
|
22415
|
+
# The name of the operation resource.
|
22416
|
+
# @param [String] fields
|
22417
|
+
# Selector specifying which fields to include in a partial response.
|
22418
|
+
# @param [String] quota_user
|
22419
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
22420
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
22421
|
+
# @param [Google::Apis::RequestOptions] options
|
22422
|
+
# Request-specific options
|
22423
|
+
#
|
22424
|
+
# @yield [result, err] Result & error if block supplied
|
22425
|
+
# @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation] parsed result object
|
22426
|
+
# @yieldparam err [StandardError] error object if request failed
|
22427
|
+
#
|
22428
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation]
|
22429
|
+
#
|
22430
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
22431
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
22432
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
22433
|
+
def get_project_location_reasoning_engine_example_operation(name, fields: nil, quota_user: nil, options: nil, &block)
|
22434
|
+
command = make_simple_command(:get, 'v1beta1/{+name}', options)
|
22435
|
+
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
|
22436
|
+
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation
|
22437
|
+
command.params['name'] = name unless name.nil?
|
22438
|
+
command.query['fields'] = fields unless fields.nil?
|
22439
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
22440
|
+
execute_or_queue_command(command, &block)
|
22441
|
+
end
|
22442
|
+
|
22443
|
+
# Waits until the specified long-running operation is done or reaches at most a
|
22444
|
+
# specified timeout, returning the latest state. If the operation is already
|
22445
|
+
# done, the latest state is immediately returned. If the timeout specified is
|
22446
|
+
# greater than the default HTTP/RPC timeout, the HTTP/RPC timeout is used. If
|
22447
|
+
# the server does not support this method, it returns `google.rpc.Code.
|
22448
|
+
# UNIMPLEMENTED`. Note that this method is on a best-effort basis. It may return
|
22449
|
+
# the latest state before the specified timeout (including immediately), meaning
|
22450
|
+
# even an immediate response is no guarantee that the operation is done.
|
22451
|
+
# @param [String] name
|
22452
|
+
# The name of the operation resource to wait on.
|
22453
|
+
# @param [String] timeout
|
22454
|
+
# The maximum duration to wait before timing out. If left blank, the wait will
|
22455
|
+
# be at most the time permitted by the underlying HTTP/RPC protocol. If RPC
|
22456
|
+
# context deadline is also specified, the shorter one will be used.
|
22457
|
+
# @param [String] fields
|
22458
|
+
# Selector specifying which fields to include in a partial response.
|
22459
|
+
# @param [String] quota_user
|
22460
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
22461
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
22462
|
+
# @param [Google::Apis::RequestOptions] options
|
22463
|
+
# Request-specific options
|
22464
|
+
#
|
22465
|
+
# @yield [result, err] Result & error if block supplied
|
22466
|
+
# @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation] parsed result object
|
22467
|
+
# @yieldparam err [StandardError] error object if request failed
|
22468
|
+
#
|
22469
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation]
|
22470
|
+
#
|
22471
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
22472
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
22473
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
22474
|
+
def wait_project_location_reasoning_engine_example_operation(name, timeout: nil, fields: nil, quota_user: nil, options: nil, &block)
|
22475
|
+
command = make_simple_command(:post, 'v1beta1/{+name}:wait', options)
|
22476
|
+
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
|
22477
|
+
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation
|
22478
|
+
command.params['name'] = name unless name.nil?
|
22479
|
+
command.query['timeout'] = timeout unless timeout.nil?
|
22480
|
+
command.query['fields'] = fields unless fields.nil?
|
22481
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
22482
|
+
execute_or_queue_command(command, &block)
|
22483
|
+
end
|
22484
|
+
|
22342
22485
|
# Starts asynchronous cancellation on a long-running operation. The server makes
|
22343
22486
|
# a best effort to cancel the operation, but success is not guaranteed. If the
|
22344
22487
|
# server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-aiplatform_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.51.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1beta1/v0.51.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|