google-apis-aiplatform_v1beta1 0.37.0 → 0.39.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 +394 -13
- data/lib/google/apis/aiplatform_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/aiplatform_v1beta1/representations.rb +168 -0
- data/lib/google/apis/aiplatform_v1beta1/service.rb +41 -3
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e86d3e365fd2fb23a02b73141e3636a0a9ad9c0513862e4c58b8abd25e00cf21
|
4
|
+
data.tar.gz: 7567569f5b78a948719d360b2c5351993308a6660d86ef0bd094d63417f1f7af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c0dc4200a261556545412d33423c177a33dd570bb1872a846630304038c8e2690cdc3dadf67a889f941f413013cc9e864dd3038fa3a1fef3fd6b76ebfde42222
|
7
|
+
data.tar.gz: 30cfcf950dc5bc92d63c6a974ef89e0843e0a3e2bbf2737a8b21e2e7dc2479b150fe799caf073f0355811ff693db43357a45523ab0cfe2c273b2b9130178d43f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-aiplatform_v1beta1
|
2
2
|
|
3
|
+
### v0.39.0 (2025-03-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250304
|
6
|
+
|
7
|
+
### v0.38.0 (2025-03-09)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250226
|
10
|
+
|
3
11
|
### v0.37.0 (2025-02-26)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250212
|
@@ -41,6 +41,11 @@ module Google
|
|
41
41
|
# @return [Array<String>]
|
42
42
|
attr_accessor :rai_media_filtered_reasons
|
43
43
|
|
44
|
+
# List of videos, used to align naming with the external response.
|
45
|
+
# Corresponds to the JSON property `videos`
|
46
|
+
# @return [Array<Google::Apis::AiplatformV1beta1::CloudAiLargeModelsVisionGenerateVideoResponseVideo>]
|
47
|
+
attr_accessor :videos
|
48
|
+
|
44
49
|
def initialize(**args)
|
45
50
|
update!(**args)
|
46
51
|
end
|
@@ -50,6 +55,38 @@ module Google
|
|
50
55
|
@generated_samples = args[:generated_samples] if args.key?(:generated_samples)
|
51
56
|
@rai_media_filtered_count = args[:rai_media_filtered_count] if args.key?(:rai_media_filtered_count)
|
52
57
|
@rai_media_filtered_reasons = args[:rai_media_filtered_reasons] if args.key?(:rai_media_filtered_reasons)
|
58
|
+
@videos = args[:videos] if args.key?(:videos)
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
#
|
63
|
+
class CloudAiLargeModelsVisionGenerateVideoResponseVideo
|
64
|
+
include Google::Apis::Core::Hashable
|
65
|
+
|
66
|
+
# Base64 encoded bytes string representing the video.
|
67
|
+
# Corresponds to the JSON property `bytesBase64Encoded`
|
68
|
+
# @return [String]
|
69
|
+
attr_accessor :bytes_base64_encoded
|
70
|
+
|
71
|
+
# Cloud Storage URI where the generated video is written.
|
72
|
+
# Corresponds to the JSON property `gcsUri`
|
73
|
+
# @return [String]
|
74
|
+
attr_accessor :gcs_uri
|
75
|
+
|
76
|
+
# The MIME type of the content of the video. - video/mp4
|
77
|
+
# Corresponds to the JSON property `mimeType`
|
78
|
+
# @return [String]
|
79
|
+
attr_accessor :mime_type
|
80
|
+
|
81
|
+
def initialize(**args)
|
82
|
+
update!(**args)
|
83
|
+
end
|
84
|
+
|
85
|
+
# Update properties of this object
|
86
|
+
def update!(**args)
|
87
|
+
@bytes_base64_encoded = args[:bytes_base64_encoded] if args.key?(:bytes_base64_encoded)
|
88
|
+
@gcs_uri = args[:gcs_uri] if args.key?(:gcs_uri)
|
89
|
+
@mime_type = args[:mime_type] if args.key?(:mime_type)
|
53
90
|
end
|
54
91
|
end
|
55
92
|
|
@@ -450,6 +487,11 @@ module Google
|
|
450
487
|
# @return [String]
|
451
488
|
attr_accessor :encoding
|
452
489
|
|
490
|
+
# Text/Expanded text input for Help Me Write.
|
491
|
+
# Corresponds to the JSON property `text`
|
492
|
+
# @return [String]
|
493
|
+
attr_accessor :text
|
494
|
+
|
453
495
|
# Path to another storage (typically Google Cloud Storage).
|
454
496
|
# Corresponds to the JSON property `uri`
|
455
497
|
# @return [String]
|
@@ -469,6 +511,7 @@ module Google
|
|
469
511
|
def update!(**args)
|
470
512
|
@encoded_video = args[:encoded_video] if args.key?(:encoded_video)
|
471
513
|
@encoding = args[:encoding] if args.key?(:encoding)
|
514
|
+
@text = args[:text] if args.key?(:text)
|
472
515
|
@uri = args[:uri] if args.key?(:uri)
|
473
516
|
@video = args[:video] if args.key?(:video)
|
474
517
|
end
|
@@ -1327,12 +1370,12 @@ module Google
|
|
1327
1370
|
# @return [String]
|
1328
1371
|
attr_accessor :api_key_string
|
1329
1372
|
|
1330
|
-
#
|
1373
|
+
# Optional. The location of the API key.
|
1331
1374
|
# Corresponds to the JSON property `httpElementLocation`
|
1332
1375
|
# @return [String]
|
1333
1376
|
attr_accessor :http_element_location
|
1334
1377
|
|
1335
|
-
#
|
1378
|
+
# Optional. The parameter name of the API key. E.g. If the API request is "https:
|
1336
1379
|
# //example.com/act?api_key=", "api_key" would be the parameter name.
|
1337
1380
|
# Corresponds to the JSON property `name`
|
1338
1381
|
# @return [String]
|
@@ -6347,7 +6390,7 @@ module Google
|
|
6347
6390
|
# publisher_model`@`version_id``, or `publishers/hf-`hugging-face-author`/models/
|
6348
6391
|
# `hugging-face-model-name`@001`. 2. Hugging Face model ID like `google/gemma-2-
|
6349
6392
|
# 2b-it`. 3. Custom model Google Cloud Storage URI like `gs://bucket`. 4. Custom
|
6350
|
-
# model zip file like `https://
|
6393
|
+
# model zip file like `https://example.com/a.zip`.
|
6351
6394
|
# Corresponds to the JSON property `model`
|
6352
6395
|
# @return [String]
|
6353
6396
|
attr_accessor :model
|
@@ -6373,6 +6416,165 @@ module Google
|
|
6373
6416
|
end
|
6374
6417
|
end
|
6375
6418
|
|
6419
|
+
# Request message for ModelGardenService.Deploy.
|
6420
|
+
class GoogleCloudAiplatformV1beta1DeployRequest
|
6421
|
+
include Google::Apis::Core::Hashable
|
6422
|
+
|
6423
|
+
# The deploy config to use for the deployment.
|
6424
|
+
# Corresponds to the JSON property `deployConfig`
|
6425
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DeployRequestDeployConfig]
|
6426
|
+
attr_accessor :deploy_config
|
6427
|
+
|
6428
|
+
# The endpoint config to use for the deployment.
|
6429
|
+
# Corresponds to the JSON property `endpointConfig`
|
6430
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DeployRequestEndpointConfig]
|
6431
|
+
attr_accessor :endpoint_config
|
6432
|
+
|
6433
|
+
# The Hugging Face model to deploy. Format: Hugging Face model ID like `google/
|
6434
|
+
# gemma-2-2b-it`.
|
6435
|
+
# Corresponds to the JSON property `huggingFaceModelId`
|
6436
|
+
# @return [String]
|
6437
|
+
attr_accessor :hugging_face_model_id
|
6438
|
+
|
6439
|
+
# The model config to use for the deployment.
|
6440
|
+
# Corresponds to the JSON property `modelConfig`
|
6441
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DeployRequestModelConfig]
|
6442
|
+
attr_accessor :model_config
|
6443
|
+
|
6444
|
+
# The Model Garden model to deploy. Format: `publishers/`publisher`/models/`
|
6445
|
+
# publisher_model`@`version_id``, or `publishers/hf-`hugging-face-author`/models/
|
6446
|
+
# `hugging-face-model-name`@001`.
|
6447
|
+
# Corresponds to the JSON property `publisherModelName`
|
6448
|
+
# @return [String]
|
6449
|
+
attr_accessor :publisher_model_name
|
6450
|
+
|
6451
|
+
def initialize(**args)
|
6452
|
+
update!(**args)
|
6453
|
+
end
|
6454
|
+
|
6455
|
+
# Update properties of this object
|
6456
|
+
def update!(**args)
|
6457
|
+
@deploy_config = args[:deploy_config] if args.key?(:deploy_config)
|
6458
|
+
@endpoint_config = args[:endpoint_config] if args.key?(:endpoint_config)
|
6459
|
+
@hugging_face_model_id = args[:hugging_face_model_id] if args.key?(:hugging_face_model_id)
|
6460
|
+
@model_config = args[:model_config] if args.key?(:model_config)
|
6461
|
+
@publisher_model_name = args[:publisher_model_name] if args.key?(:publisher_model_name)
|
6462
|
+
end
|
6463
|
+
end
|
6464
|
+
|
6465
|
+
# The deploy config to use for the deployment.
|
6466
|
+
class GoogleCloudAiplatformV1beta1DeployRequestDeployConfig
|
6467
|
+
include Google::Apis::Core::Hashable
|
6468
|
+
|
6469
|
+
# A description of resources that are dedicated to a DeployedModel or
|
6470
|
+
# DeployedIndex, and that need a higher degree of manual configuration.
|
6471
|
+
# Corresponds to the JSON property `dedicatedResources`
|
6472
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DedicatedResources]
|
6473
|
+
attr_accessor :dedicated_resources
|
6474
|
+
|
6475
|
+
# Optional. If true, enable the QMT fast tryout feature for this model if
|
6476
|
+
# possible.
|
6477
|
+
# Corresponds to the JSON property `fastTryoutEnabled`
|
6478
|
+
# @return [Boolean]
|
6479
|
+
attr_accessor :fast_tryout_enabled
|
6480
|
+
alias_method :fast_tryout_enabled?, :fast_tryout_enabled
|
6481
|
+
|
6482
|
+
def initialize(**args)
|
6483
|
+
update!(**args)
|
6484
|
+
end
|
6485
|
+
|
6486
|
+
# Update properties of this object
|
6487
|
+
def update!(**args)
|
6488
|
+
@dedicated_resources = args[:dedicated_resources] if args.key?(:dedicated_resources)
|
6489
|
+
@fast_tryout_enabled = args[:fast_tryout_enabled] if args.key?(:fast_tryout_enabled)
|
6490
|
+
end
|
6491
|
+
end
|
6492
|
+
|
6493
|
+
# The endpoint config to use for the deployment.
|
6494
|
+
class GoogleCloudAiplatformV1beta1DeployRequestEndpointConfig
|
6495
|
+
include Google::Apis::Core::Hashable
|
6496
|
+
|
6497
|
+
# Optional. If true, the endpoint will be exposed through a dedicated DNS [
|
6498
|
+
# Endpoint.dedicated_endpoint_dns]. Your request to the dedicated DNS will be
|
6499
|
+
# isolated from other users' traffic and will have better performance and
|
6500
|
+
# reliability. Note: Once you enabled dedicated endpoint, you won't be able to
|
6501
|
+
# send request to the shared DNS `region`-aiplatform.googleapis.com. The
|
6502
|
+
# limitations will be removed soon.
|
6503
|
+
# Corresponds to the JSON property `dedicatedEndpointEnabled`
|
6504
|
+
# @return [Boolean]
|
6505
|
+
attr_accessor :dedicated_endpoint_enabled
|
6506
|
+
alias_method :dedicated_endpoint_enabled?, :dedicated_endpoint_enabled
|
6507
|
+
|
6508
|
+
# Optional. The user-specified display name of the endpoint. If not set, a
|
6509
|
+
# default name will be used.
|
6510
|
+
# Corresponds to the JSON property `endpointDisplayName`
|
6511
|
+
# @return [String]
|
6512
|
+
attr_accessor :endpoint_display_name
|
6513
|
+
|
6514
|
+
def initialize(**args)
|
6515
|
+
update!(**args)
|
6516
|
+
end
|
6517
|
+
|
6518
|
+
# Update properties of this object
|
6519
|
+
def update!(**args)
|
6520
|
+
@dedicated_endpoint_enabled = args[:dedicated_endpoint_enabled] if args.key?(:dedicated_endpoint_enabled)
|
6521
|
+
@endpoint_display_name = args[:endpoint_display_name] if args.key?(:endpoint_display_name)
|
6522
|
+
end
|
6523
|
+
end
|
6524
|
+
|
6525
|
+
# The model config to use for the deployment.
|
6526
|
+
class GoogleCloudAiplatformV1beta1DeployRequestModelConfig
|
6527
|
+
include Google::Apis::Core::Hashable
|
6528
|
+
|
6529
|
+
# Optional. Whether the user accepts the End User License Agreement (EULA) for
|
6530
|
+
# the model.
|
6531
|
+
# Corresponds to the JSON property `acceptEula`
|
6532
|
+
# @return [Boolean]
|
6533
|
+
attr_accessor :accept_eula
|
6534
|
+
alias_method :accept_eula?, :accept_eula
|
6535
|
+
|
6536
|
+
# Specification of a container for serving predictions. Some fields in this
|
6537
|
+
# message correspond to fields in the [Kubernetes Container v1 core
|
6538
|
+
# specification](https://kubernetes.io/docs/reference/generated/kubernetes-api/
|
6539
|
+
# v1.23/#container-v1-core).
|
6540
|
+
# Corresponds to the JSON property `containerSpec`
|
6541
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelContainerSpec]
|
6542
|
+
attr_accessor :container_spec
|
6543
|
+
|
6544
|
+
# Optional. The Hugging Face read access token used to access the model
|
6545
|
+
# artifacts of gated models.
|
6546
|
+
# Corresponds to the JSON property `huggingFaceAccessToken`
|
6547
|
+
# @return [String]
|
6548
|
+
attr_accessor :hugging_face_access_token
|
6549
|
+
|
6550
|
+
# Optional. If true, the model will deploy with a cached version instead of
|
6551
|
+
# directly downloading the model artifacts from Hugging Face. This is suitable
|
6552
|
+
# for VPC-SC users with limited internet access.
|
6553
|
+
# Corresponds to the JSON property `huggingFaceCacheEnabled`
|
6554
|
+
# @return [Boolean]
|
6555
|
+
attr_accessor :hugging_face_cache_enabled
|
6556
|
+
alias_method :hugging_face_cache_enabled?, :hugging_face_cache_enabled
|
6557
|
+
|
6558
|
+
# Optional. The user-specified display name of the uploaded model. If not set, a
|
6559
|
+
# default name will be used.
|
6560
|
+
# Corresponds to the JSON property `modelDisplayName`
|
6561
|
+
# @return [String]
|
6562
|
+
attr_accessor :model_display_name
|
6563
|
+
|
6564
|
+
def initialize(**args)
|
6565
|
+
update!(**args)
|
6566
|
+
end
|
6567
|
+
|
6568
|
+
# Update properties of this object
|
6569
|
+
def update!(**args)
|
6570
|
+
@accept_eula = args[:accept_eula] if args.key?(:accept_eula)
|
6571
|
+
@container_spec = args[:container_spec] if args.key?(:container_spec)
|
6572
|
+
@hugging_face_access_token = args[:hugging_face_access_token] if args.key?(:hugging_face_access_token)
|
6573
|
+
@hugging_face_cache_enabled = args[:hugging_face_cache_enabled] if args.key?(:hugging_face_cache_enabled)
|
6574
|
+
@model_display_name = args[:model_display_name] if args.key?(:model_display_name)
|
6575
|
+
end
|
6576
|
+
end
|
6577
|
+
|
6376
6578
|
# Runtime operation information for SolverService.DeploySolver.
|
6377
6579
|
class GoogleCloudAiplatformV1beta1DeploySolverOperationMetadata
|
6378
6580
|
include Google::Apis::Core::Hashable
|
@@ -7044,9 +7246,10 @@ module Google
|
|
7044
7246
|
# @return [Fixnum]
|
7045
7247
|
attr_accessor :boot_disk_size_gb
|
7046
7248
|
|
7047
|
-
# Type of the boot disk
|
7048
|
-
#
|
7049
|
-
# Drive)
|
7249
|
+
# Type of the boot disk. For non-A3U machines, the default value is "pd-ssd",
|
7250
|
+
# for A3U machines, the default value is "hyperdisk-balanced". Valid values: "pd-
|
7251
|
+
# ssd" (Persistent Disk Solid State Drive), "pd-standard" (Persistent Disk Hard
|
7252
|
+
# Disk Drive) or "hyperdisk-balanced".
|
7050
7253
|
# Corresponds to the JSON property `bootDiskType`
|
7051
7254
|
# @return [String]
|
7052
7255
|
attr_accessor :boot_disk_type
|
@@ -7417,6 +7620,20 @@ module Google
|
|
7417
7620
|
end
|
7418
7621
|
end
|
7419
7622
|
|
7623
|
+
# Tool to search public web data, powered by Vertex AI Search and Sec4
|
7624
|
+
# compliance.
|
7625
|
+
class GoogleCloudAiplatformV1beta1EnterpriseWebSearch
|
7626
|
+
include Google::Apis::Core::Hashable
|
7627
|
+
|
7628
|
+
def initialize(**args)
|
7629
|
+
update!(**args)
|
7630
|
+
end
|
7631
|
+
|
7632
|
+
# Update properties of this object
|
7633
|
+
def update!(**args)
|
7634
|
+
end
|
7635
|
+
end
|
7636
|
+
|
7420
7637
|
# Selector for entityId. Getting ids from the given source.
|
7421
7638
|
class GoogleCloudAiplatformV1beta1EntityIdSelector
|
7422
7639
|
include Google::Apis::Core::Hashable
|
@@ -13388,7 +13605,24 @@ module Google
|
|
13388
13605
|
# @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModalityTokenCount>]
|
13389
13606
|
attr_accessor :prompt_tokens_details
|
13390
13607
|
|
13391
|
-
#
|
13608
|
+
# Output only. Number of tokens present in thoughts output.
|
13609
|
+
# Corresponds to the JSON property `thoughtsTokenCount`
|
13610
|
+
# @return [Fixnum]
|
13611
|
+
attr_accessor :thoughts_token_count
|
13612
|
+
|
13613
|
+
# Output only. Number of tokens present in tool-use prompt(s).
|
13614
|
+
# Corresponds to the JSON property `toolUsePromptTokenCount`
|
13615
|
+
# @return [Fixnum]
|
13616
|
+
attr_accessor :tool_use_prompt_token_count
|
13617
|
+
|
13618
|
+
# Output only. List of modalities that were processed for tool-use request
|
13619
|
+
# inputs.
|
13620
|
+
# Corresponds to the JSON property `toolUsePromptTokensDetails`
|
13621
|
+
# @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModalityTokenCount>]
|
13622
|
+
attr_accessor :tool_use_prompt_tokens_details
|
13623
|
+
|
13624
|
+
# Total token count for prompt, response candidates, and tool-use prompts (if
|
13625
|
+
# present).
|
13392
13626
|
# Corresponds to the JSON property `totalTokenCount`
|
13393
13627
|
# @return [Fixnum]
|
13394
13628
|
attr_accessor :total_token_count
|
@@ -13405,6 +13639,9 @@ module Google
|
|
13405
13639
|
@candidates_tokens_details = args[:candidates_tokens_details] if args.key?(:candidates_tokens_details)
|
13406
13640
|
@prompt_token_count = args[:prompt_token_count] if args.key?(:prompt_token_count)
|
13407
13641
|
@prompt_tokens_details = args[:prompt_tokens_details] if args.key?(:prompt_tokens_details)
|
13642
|
+
@thoughts_token_count = args[:thoughts_token_count] if args.key?(:thoughts_token_count)
|
13643
|
+
@tool_use_prompt_token_count = args[:tool_use_prompt_token_count] if args.key?(:tool_use_prompt_token_count)
|
13644
|
+
@tool_use_prompt_tokens_details = args[:tool_use_prompt_tokens_details] if args.key?(:tool_use_prompt_tokens_details)
|
13408
13645
|
@total_token_count = args[:total_token_count] if args.key?(:total_token_count)
|
13409
13646
|
end
|
13410
13647
|
end
|
@@ -13428,6 +13665,11 @@ module Google
|
|
13428
13665
|
# @return [Array<String>]
|
13429
13666
|
attr_accessor :rai_media_filtered_reasons
|
13430
13667
|
|
13668
|
+
# List of video bytes or Cloud Storage URIs of the generated videos.
|
13669
|
+
# Corresponds to the JSON property `videos`
|
13670
|
+
# @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerateVideoResponseVideo>]
|
13671
|
+
attr_accessor :videos
|
13672
|
+
|
13431
13673
|
def initialize(**args)
|
13432
13674
|
update!(**args)
|
13433
13675
|
end
|
@@ -13437,6 +13679,38 @@ module Google
|
|
13437
13679
|
@generated_samples = args[:generated_samples] if args.key?(:generated_samples)
|
13438
13680
|
@rai_media_filtered_count = args[:rai_media_filtered_count] if args.key?(:rai_media_filtered_count)
|
13439
13681
|
@rai_media_filtered_reasons = args[:rai_media_filtered_reasons] if args.key?(:rai_media_filtered_reasons)
|
13682
|
+
@videos = args[:videos] if args.key?(:videos)
|
13683
|
+
end
|
13684
|
+
end
|
13685
|
+
|
13686
|
+
# A generated video.
|
13687
|
+
class GoogleCloudAiplatformV1beta1GenerateVideoResponseVideo
|
13688
|
+
include Google::Apis::Core::Hashable
|
13689
|
+
|
13690
|
+
# Base64 encoded bytes string representing the video.
|
13691
|
+
# Corresponds to the JSON property `bytesBase64Encoded`
|
13692
|
+
# @return [String]
|
13693
|
+
attr_accessor :bytes_base64_encoded
|
13694
|
+
|
13695
|
+
# Cloud Storage URI where the generated video is written.
|
13696
|
+
# Corresponds to the JSON property `gcsUri`
|
13697
|
+
# @return [String]
|
13698
|
+
attr_accessor :gcs_uri
|
13699
|
+
|
13700
|
+
# The MIME type of the content of the video. - video/mp4
|
13701
|
+
# Corresponds to the JSON property `mimeType`
|
13702
|
+
# @return [String]
|
13703
|
+
attr_accessor :mime_type
|
13704
|
+
|
13705
|
+
def initialize(**args)
|
13706
|
+
update!(**args)
|
13707
|
+
end
|
13708
|
+
|
13709
|
+
# Update properties of this object
|
13710
|
+
def update!(**args)
|
13711
|
+
@bytes_base64_encoded = args[:bytes_base64_encoded] if args.key?(:bytes_base64_encoded)
|
13712
|
+
@gcs_uri = args[:gcs_uri] if args.key?(:gcs_uri)
|
13713
|
+
@mime_type = args[:mime_type] if args.key?(:mime_type)
|
13440
13714
|
end
|
13441
13715
|
end
|
13442
13716
|
|
@@ -17165,6 +17439,12 @@ module Google
|
|
17165
17439
|
# @return [String]
|
17166
17440
|
attr_accessor :machine_type
|
17167
17441
|
|
17442
|
+
# Optional. Immutable. The number of nodes per replica for multihost GPU
|
17443
|
+
# deployments.
|
17444
|
+
# Corresponds to the JSON property `multihostGpuNodeCount`
|
17445
|
+
# @return [Fixnum]
|
17446
|
+
attr_accessor :multihost_gpu_node_count
|
17447
|
+
|
17168
17448
|
# A ReservationAffinity can be used to configure a Vertex AI resource (e.g., a
|
17169
17449
|
# DeployedModel) to draw its Compute Engine resources from a Shared Reservation,
|
17170
17450
|
# or exclusively from on-demand capacity.
|
@@ -17187,6 +17467,7 @@ module Google
|
|
17187
17467
|
@accelerator_count = args[:accelerator_count] if args.key?(:accelerator_count)
|
17188
17468
|
@accelerator_type = args[:accelerator_type] if args.key?(:accelerator_type)
|
17189
17469
|
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
17470
|
+
@multihost_gpu_node_count = args[:multihost_gpu_node_count] if args.key?(:multihost_gpu_node_count)
|
17190
17471
|
@reservation_affinity = args[:reservation_affinity] if args.key?(:reservation_affinity)
|
17191
17472
|
@tpu_topology = args[:tpu_topology] if args.key?(:tpu_topology)
|
17192
17473
|
end
|
@@ -27991,6 +28272,11 @@ module Google
|
|
27991
28272
|
# @return [Array<Hash<String,Object>>]
|
27992
28273
|
attr_accessor :class_methods
|
27993
28274
|
|
28275
|
+
# The specification of a Reasoning Engine deployment.
|
28276
|
+
# Corresponds to the JSON property `deploymentSpec`
|
28277
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineSpecDeploymentSpec]
|
28278
|
+
attr_accessor :deployment_spec
|
28279
|
+
|
27994
28280
|
# User provided package spec like pickled object and package requirements.
|
27995
28281
|
# Corresponds to the JSON property `packageSpec`
|
27996
28282
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineSpecPackageSpec]
|
@@ -28003,10 +28289,40 @@ module Google
|
|
28003
28289
|
# Update properties of this object
|
28004
28290
|
def update!(**args)
|
28005
28291
|
@class_methods = args[:class_methods] if args.key?(:class_methods)
|
28292
|
+
@deployment_spec = args[:deployment_spec] if args.key?(:deployment_spec)
|
28006
28293
|
@package_spec = args[:package_spec] if args.key?(:package_spec)
|
28007
28294
|
end
|
28008
28295
|
end
|
28009
28296
|
|
28297
|
+
# The specification of a Reasoning Engine deployment.
|
28298
|
+
class GoogleCloudAiplatformV1beta1ReasoningEngineSpecDeploymentSpec
|
28299
|
+
include Google::Apis::Core::Hashable
|
28300
|
+
|
28301
|
+
# Optional. Environment variables to be set with the Reasoning Engine deployment.
|
28302
|
+
# The environment variables can be updated through the UpdateReasoningEngine
|
28303
|
+
# API.
|
28304
|
+
# Corresponds to the JSON property `env`
|
28305
|
+
# @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EnvVar>]
|
28306
|
+
attr_accessor :env
|
28307
|
+
|
28308
|
+
# Optional. Environment variables where the value is a secret in Cloud Secret
|
28309
|
+
# Manager. To use this feature, add 'Secret Manager Secret Accessor' role (roles/
|
28310
|
+
# secretmanager.secretAccessor) to AI Platform Reasoning Engine Service Agent.
|
28311
|
+
# Corresponds to the JSON property `secretEnv`
|
28312
|
+
# @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SecretEnvVar>]
|
28313
|
+
attr_accessor :secret_env
|
28314
|
+
|
28315
|
+
def initialize(**args)
|
28316
|
+
update!(**args)
|
28317
|
+
end
|
28318
|
+
|
28319
|
+
# Update properties of this object
|
28320
|
+
def update!(**args)
|
28321
|
+
@env = args[:env] if args.key?(:env)
|
28322
|
+
@secret_env = args[:secret_env] if args.key?(:secret_env)
|
28323
|
+
end
|
28324
|
+
end
|
28325
|
+
|
28010
28326
|
# User provided package spec like pickled object and package requirements.
|
28011
28327
|
class GoogleCloudAiplatformV1beta1ReasoningEngineSpecPackageSpec
|
28012
28328
|
include Google::Apis::Core::Hashable
|
@@ -28320,7 +28636,7 @@ module Google
|
|
28320
28636
|
attr_accessor :reservation_affinity_type
|
28321
28637
|
|
28322
28638
|
# Optional. Corresponds to the label values of a reservation resource. This must
|
28323
|
-
# be the full resource name of the reservation.
|
28639
|
+
# be the full resource name of the reservation or reservation block.
|
28324
28640
|
# Corresponds to the JSON property `values`
|
28325
28641
|
# @return [Array<String>]
|
28326
28642
|
attr_accessor :values
|
@@ -28567,8 +28883,9 @@ module Google
|
|
28567
28883
|
attr_accessor :disable_attribution
|
28568
28884
|
alias_method :disable_attribution?, :disable_attribution
|
28569
28885
|
|
28570
|
-
# Retrieve from Vertex AI Search datastore for grounding.
|
28571
|
-
# google.com/products/agent-
|
28886
|
+
# Retrieve from Vertex AI Search datastore or engine for grounding. datastore
|
28887
|
+
# and engine are mutually exclusive. See https://cloud.google.com/products/agent-
|
28888
|
+
# builder
|
28572
28889
|
# Corresponds to the JSON property `vertexAiSearch`
|
28573
28890
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1VertexAiSearch]
|
28574
28891
|
attr_accessor :vertex_ai_search
|
@@ -37022,6 +37339,62 @@ module Google
|
|
37022
37339
|
end
|
37023
37340
|
end
|
37024
37341
|
|
37342
|
+
# Represents an environment variable where the value is a secret in Cloud Secret
|
37343
|
+
# Manager.
|
37344
|
+
class GoogleCloudAiplatformV1beta1SecretEnvVar
|
37345
|
+
include Google::Apis::Core::Hashable
|
37346
|
+
|
37347
|
+
# Required. Name of the secret environment variable.
|
37348
|
+
# Corresponds to the JSON property `name`
|
37349
|
+
# @return [String]
|
37350
|
+
attr_accessor :name
|
37351
|
+
|
37352
|
+
# Reference to a secret stored in the Cloud Secret Manager that will provide the
|
37353
|
+
# value for this environment variable.
|
37354
|
+
# Corresponds to the JSON property `secretRef`
|
37355
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SecretRef]
|
37356
|
+
attr_accessor :secret_ref
|
37357
|
+
|
37358
|
+
def initialize(**args)
|
37359
|
+
update!(**args)
|
37360
|
+
end
|
37361
|
+
|
37362
|
+
# Update properties of this object
|
37363
|
+
def update!(**args)
|
37364
|
+
@name = args[:name] if args.key?(:name)
|
37365
|
+
@secret_ref = args[:secret_ref] if args.key?(:secret_ref)
|
37366
|
+
end
|
37367
|
+
end
|
37368
|
+
|
37369
|
+
# Reference to a secret stored in the Cloud Secret Manager that will provide the
|
37370
|
+
# value for this environment variable.
|
37371
|
+
class GoogleCloudAiplatformV1beta1SecretRef
|
37372
|
+
include Google::Apis::Core::Hashable
|
37373
|
+
|
37374
|
+
# Required. The name of the secret in Cloud Secret Manager. Format: `secret_name`
|
37375
|
+
# if the secret is in the same project. projects/`project`/secrets/`secret_name`
|
37376
|
+
# if the secret is in a different project.
|
37377
|
+
# Corresponds to the JSON property `secret`
|
37378
|
+
# @return [String]
|
37379
|
+
attr_accessor :secret
|
37380
|
+
|
37381
|
+
# The Cloud Secret Manager secret version. Can be 'latest' for the latest
|
37382
|
+
# version, an integer for a specific version, or a version alias.
|
37383
|
+
# Corresponds to the JSON property `version`
|
37384
|
+
# @return [String]
|
37385
|
+
attr_accessor :version
|
37386
|
+
|
37387
|
+
def initialize(**args)
|
37388
|
+
update!(**args)
|
37389
|
+
end
|
37390
|
+
|
37391
|
+
# Update properties of this object
|
37392
|
+
def update!(**args)
|
37393
|
+
@secret = args[:secret] if args.key?(:secret)
|
37394
|
+
@version = args[:version] if args.key?(:version)
|
37395
|
+
end
|
37396
|
+
end
|
37397
|
+
|
37025
37398
|
# Segment of the content.
|
37026
37399
|
class GoogleCloudAiplatformV1beta1Segment
|
37027
37400
|
include Google::Apis::Core::Hashable
|
@@ -40190,6 +40563,12 @@ module Google
|
|
40190
40563
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ToolCodeExecution]
|
40191
40564
|
attr_accessor :code_execution
|
40192
40565
|
|
40566
|
+
# Tool to search public web data, powered by Vertex AI Search and Sec4
|
40567
|
+
# compliance.
|
40568
|
+
# Corresponds to the JSON property `enterpriseWebSearch`
|
40569
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EnterpriseWebSearch]
|
40570
|
+
attr_accessor :enterprise_web_search
|
40571
|
+
|
40193
40572
|
# Optional. Function tool type. One or more function declarations to be passed
|
40194
40573
|
# to the model along with the current user query. Model may decide to call a
|
40195
40574
|
# subset of these functions by populating FunctionCall in the response. User
|
@@ -40223,6 +40602,7 @@ module Google
|
|
40223
40602
|
# Update properties of this object
|
40224
40603
|
def update!(**args)
|
40225
40604
|
@code_execution = args[:code_execution] if args.key?(:code_execution)
|
40605
|
+
@enterprise_web_search = args[:enterprise_web_search] if args.key?(:enterprise_web_search)
|
40226
40606
|
@function_declarations = args[:function_declarations] if args.key?(:function_declarations)
|
40227
40607
|
@google_search = args[:google_search] if args.key?(:google_search)
|
40228
40608
|
@google_search_retrieval = args[:google_search_retrieval] if args.key?(:google_search_retrieval)
|
@@ -42826,12 +43206,13 @@ module Google
|
|
42826
43206
|
end
|
42827
43207
|
end
|
42828
43208
|
|
42829
|
-
# Retrieve from Vertex AI Search datastore for grounding.
|
42830
|
-
# google.com/products/agent-
|
43209
|
+
# Retrieve from Vertex AI Search datastore or engine for grounding. datastore
|
43210
|
+
# and engine are mutually exclusive. See https://cloud.google.com/products/agent-
|
43211
|
+
# builder
|
42831
43212
|
class GoogleCloudAiplatformV1beta1VertexAiSearch
|
42832
43213
|
include Google::Apis::Core::Hashable
|
42833
43214
|
|
42834
|
-
#
|
43215
|
+
# Optional. Fully-qualified Vertex AI Search data store resource ID. Format: `
|
42835
43216
|
# projects/`project`/locations/`location`/collections/`collection`/dataStores/`
|
42836
43217
|
# dataStore``
|
42837
43218
|
# Corresponds to the JSON property `datastore`
|
@@ -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.39.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250304"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,6 +28,12 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
+
class CloudAiLargeModelsVisionGenerateVideoResponseVideo
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
31
37
|
class CloudAiLargeModelsVisionImage
|
32
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
39
|
|
@@ -1150,6 +1156,30 @@ module Google
|
|
1150
1156
|
include Google::Apis::Core::JsonObjectSupport
|
1151
1157
|
end
|
1152
1158
|
|
1159
|
+
class GoogleCloudAiplatformV1beta1DeployRequest
|
1160
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1161
|
+
|
1162
|
+
include Google::Apis::Core::JsonObjectSupport
|
1163
|
+
end
|
1164
|
+
|
1165
|
+
class GoogleCloudAiplatformV1beta1DeployRequestDeployConfig
|
1166
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1167
|
+
|
1168
|
+
include Google::Apis::Core::JsonObjectSupport
|
1169
|
+
end
|
1170
|
+
|
1171
|
+
class GoogleCloudAiplatformV1beta1DeployRequestEndpointConfig
|
1172
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1173
|
+
|
1174
|
+
include Google::Apis::Core::JsonObjectSupport
|
1175
|
+
end
|
1176
|
+
|
1177
|
+
class GoogleCloudAiplatformV1beta1DeployRequestModelConfig
|
1178
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1179
|
+
|
1180
|
+
include Google::Apis::Core::JsonObjectSupport
|
1181
|
+
end
|
1182
|
+
|
1153
1183
|
class GoogleCloudAiplatformV1beta1DeploySolverOperationMetadata
|
1154
1184
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1155
1185
|
|
@@ -1288,6 +1318,12 @@ module Google
|
|
1288
1318
|
include Google::Apis::Core::JsonObjectSupport
|
1289
1319
|
end
|
1290
1320
|
|
1321
|
+
class GoogleCloudAiplatformV1beta1EnterpriseWebSearch
|
1322
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1323
|
+
|
1324
|
+
include Google::Apis::Core::JsonObjectSupport
|
1325
|
+
end
|
1326
|
+
|
1291
1327
|
class GoogleCloudAiplatformV1beta1EntityIdSelector
|
1292
1328
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1293
1329
|
|
@@ -2200,6 +2236,12 @@ module Google
|
|
2200
2236
|
include Google::Apis::Core::JsonObjectSupport
|
2201
2237
|
end
|
2202
2238
|
|
2239
|
+
class GoogleCloudAiplatformV1beta1GenerateVideoResponseVideo
|
2240
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2241
|
+
|
2242
|
+
include Google::Apis::Core::JsonObjectSupport
|
2243
|
+
end
|
2244
|
+
|
2203
2245
|
class GoogleCloudAiplatformV1beta1GenerationConfig
|
2204
2246
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2205
2247
|
|
@@ -4624,6 +4666,12 @@ module Google
|
|
4624
4666
|
include Google::Apis::Core::JsonObjectSupport
|
4625
4667
|
end
|
4626
4668
|
|
4669
|
+
class GoogleCloudAiplatformV1beta1ReasoningEngineSpecDeploymentSpec
|
4670
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4671
|
+
|
4672
|
+
include Google::Apis::Core::JsonObjectSupport
|
4673
|
+
end
|
4674
|
+
|
4627
4675
|
class GoogleCloudAiplatformV1beta1ReasoningEngineSpecPackageSpec
|
4628
4676
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4629
4677
|
|
@@ -6118,6 +6166,18 @@ module Google
|
|
6118
6166
|
include Google::Apis::Core::JsonObjectSupport
|
6119
6167
|
end
|
6120
6168
|
|
6169
|
+
class GoogleCloudAiplatformV1beta1SecretEnvVar
|
6170
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6171
|
+
|
6172
|
+
include Google::Apis::Core::JsonObjectSupport
|
6173
|
+
end
|
6174
|
+
|
6175
|
+
class GoogleCloudAiplatformV1beta1SecretRef
|
6176
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6177
|
+
|
6178
|
+
include Google::Apis::Core::JsonObjectSupport
|
6179
|
+
end
|
6180
|
+
|
6121
6181
|
class GoogleCloudAiplatformV1beta1Segment
|
6122
6182
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6123
6183
|
|
@@ -7463,6 +7523,17 @@ module Google
|
|
7463
7523
|
|
7464
7524
|
property :rai_media_filtered_count, as: 'raiMediaFilteredCount'
|
7465
7525
|
collection :rai_media_filtered_reasons, as: 'raiMediaFilteredReasons'
|
7526
|
+
collection :videos, as: 'videos', class: Google::Apis::AiplatformV1beta1::CloudAiLargeModelsVisionGenerateVideoResponseVideo, decorator: Google::Apis::AiplatformV1beta1::CloudAiLargeModelsVisionGenerateVideoResponseVideo::Representation
|
7527
|
+
|
7528
|
+
end
|
7529
|
+
end
|
7530
|
+
|
7531
|
+
class CloudAiLargeModelsVisionGenerateVideoResponseVideo
|
7532
|
+
# @private
|
7533
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7534
|
+
property :bytes_base64_encoded, as: 'bytesBase64Encoded'
|
7535
|
+
property :gcs_uri, as: 'gcsUri'
|
7536
|
+
property :mime_type, as: 'mimeType'
|
7466
7537
|
end
|
7467
7538
|
end
|
7468
7539
|
|
@@ -7581,6 +7652,7 @@ module Google
|
|
7581
7652
|
class Representation < Google::Apis::Core::JsonRepresentation
|
7582
7653
|
property :encoded_video, as: 'encodedVideo'
|
7583
7654
|
property :encoding, as: 'encoding'
|
7655
|
+
property :text, as: 'text'
|
7584
7656
|
property :uri, as: 'uri'
|
7585
7657
|
property :video, :base64 => true, as: 'video'
|
7586
7658
|
end
|
@@ -9301,6 +9373,49 @@ module Google
|
|
9301
9373
|
end
|
9302
9374
|
end
|
9303
9375
|
|
9376
|
+
class GoogleCloudAiplatformV1beta1DeployRequest
|
9377
|
+
# @private
|
9378
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9379
|
+
property :deploy_config, as: 'deployConfig', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DeployRequestDeployConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DeployRequestDeployConfig::Representation
|
9380
|
+
|
9381
|
+
property :endpoint_config, as: 'endpointConfig', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DeployRequestEndpointConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DeployRequestEndpointConfig::Representation
|
9382
|
+
|
9383
|
+
property :hugging_face_model_id, as: 'huggingFaceModelId'
|
9384
|
+
property :model_config, as: 'modelConfig', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DeployRequestModelConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DeployRequestModelConfig::Representation
|
9385
|
+
|
9386
|
+
property :publisher_model_name, as: 'publisherModelName'
|
9387
|
+
end
|
9388
|
+
end
|
9389
|
+
|
9390
|
+
class GoogleCloudAiplatformV1beta1DeployRequestDeployConfig
|
9391
|
+
# @private
|
9392
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9393
|
+
property :dedicated_resources, as: 'dedicatedResources', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DedicatedResources, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DedicatedResources::Representation
|
9394
|
+
|
9395
|
+
property :fast_tryout_enabled, as: 'fastTryoutEnabled'
|
9396
|
+
end
|
9397
|
+
end
|
9398
|
+
|
9399
|
+
class GoogleCloudAiplatformV1beta1DeployRequestEndpointConfig
|
9400
|
+
# @private
|
9401
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9402
|
+
property :dedicated_endpoint_enabled, as: 'dedicatedEndpointEnabled'
|
9403
|
+
property :endpoint_display_name, as: 'endpointDisplayName'
|
9404
|
+
end
|
9405
|
+
end
|
9406
|
+
|
9407
|
+
class GoogleCloudAiplatformV1beta1DeployRequestModelConfig
|
9408
|
+
# @private
|
9409
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9410
|
+
property :accept_eula, as: 'acceptEula'
|
9411
|
+
property :container_spec, as: 'containerSpec', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelContainerSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelContainerSpec::Representation
|
9412
|
+
|
9413
|
+
property :hugging_face_access_token, as: 'huggingFaceAccessToken'
|
9414
|
+
property :hugging_face_cache_enabled, as: 'huggingFaceCacheEnabled'
|
9415
|
+
property :model_display_name, as: 'modelDisplayName'
|
9416
|
+
end
|
9417
|
+
end
|
9418
|
+
|
9304
9419
|
class GoogleCloudAiplatformV1beta1DeploySolverOperationMetadata
|
9305
9420
|
# @private
|
9306
9421
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -9567,6 +9682,12 @@ module Google
|
|
9567
9682
|
end
|
9568
9683
|
end
|
9569
9684
|
|
9685
|
+
class GoogleCloudAiplatformV1beta1EnterpriseWebSearch
|
9686
|
+
# @private
|
9687
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9688
|
+
end
|
9689
|
+
end
|
9690
|
+
|
9570
9691
|
class GoogleCloudAiplatformV1beta1EntityIdSelector
|
9571
9692
|
# @private
|
9572
9693
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -11238,6 +11359,10 @@ module Google
|
|
11238
11359
|
property :prompt_token_count, as: 'promptTokenCount'
|
11239
11360
|
collection :prompt_tokens_details, as: 'promptTokensDetails', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModalityTokenCount, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModalityTokenCount::Representation
|
11240
11361
|
|
11362
|
+
property :thoughts_token_count, as: 'thoughtsTokenCount'
|
11363
|
+
property :tool_use_prompt_token_count, as: 'toolUsePromptTokenCount'
|
11364
|
+
collection :tool_use_prompt_tokens_details, as: 'toolUsePromptTokensDetails', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModalityTokenCount, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModalityTokenCount::Representation
|
11365
|
+
|
11241
11366
|
property :total_token_count, as: 'totalTokenCount'
|
11242
11367
|
end
|
11243
11368
|
end
|
@@ -11248,6 +11373,17 @@ module Google
|
|
11248
11373
|
collection :generated_samples, as: 'generatedSamples'
|
11249
11374
|
property :rai_media_filtered_count, as: 'raiMediaFilteredCount'
|
11250
11375
|
collection :rai_media_filtered_reasons, as: 'raiMediaFilteredReasons'
|
11376
|
+
collection :videos, as: 'videos', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerateVideoResponseVideo, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerateVideoResponseVideo::Representation
|
11377
|
+
|
11378
|
+
end
|
11379
|
+
end
|
11380
|
+
|
11381
|
+
class GoogleCloudAiplatformV1beta1GenerateVideoResponseVideo
|
11382
|
+
# @private
|
11383
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
11384
|
+
property :bytes_base64_encoded, as: 'bytesBase64Encoded'
|
11385
|
+
property :gcs_uri, as: 'gcsUri'
|
11386
|
+
property :mime_type, as: 'mimeType'
|
11251
11387
|
end
|
11252
11388
|
end
|
11253
11389
|
|
@@ -12387,6 +12523,7 @@ module Google
|
|
12387
12523
|
property :accelerator_count, as: 'acceleratorCount'
|
12388
12524
|
property :accelerator_type, as: 'acceleratorType'
|
12389
12525
|
property :machine_type, as: 'machineType'
|
12526
|
+
property :multihost_gpu_node_count, as: 'multihostGpuNodeCount'
|
12390
12527
|
property :reservation_affinity, as: 'reservationAffinity', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReservationAffinity, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReservationAffinity::Representation
|
12391
12528
|
|
12392
12529
|
property :tpu_topology, as: 'tpuTopology'
|
@@ -15463,11 +15600,23 @@ module Google
|
|
15463
15600
|
# @private
|
15464
15601
|
class Representation < Google::Apis::Core::JsonRepresentation
|
15465
15602
|
collection :class_methods, as: 'classMethods'
|
15603
|
+
property :deployment_spec, as: 'deploymentSpec', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineSpecDeploymentSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineSpecDeploymentSpec::Representation
|
15604
|
+
|
15466
15605
|
property :package_spec, as: 'packageSpec', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineSpecPackageSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineSpecPackageSpec::Representation
|
15467
15606
|
|
15468
15607
|
end
|
15469
15608
|
end
|
15470
15609
|
|
15610
|
+
class GoogleCloudAiplatformV1beta1ReasoningEngineSpecDeploymentSpec
|
15611
|
+
# @private
|
15612
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15613
|
+
collection :env, as: 'env', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EnvVar, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EnvVar::Representation
|
15614
|
+
|
15615
|
+
collection :secret_env, as: 'secretEnv', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SecretEnvVar, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SecretEnvVar::Representation
|
15616
|
+
|
15617
|
+
end
|
15618
|
+
end
|
15619
|
+
|
15471
15620
|
class GoogleCloudAiplatformV1beta1ReasoningEngineSpecPackageSpec
|
15472
15621
|
# @private
|
15473
15622
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -17936,6 +18085,23 @@ module Google
|
|
17936
18085
|
end
|
17937
18086
|
end
|
17938
18087
|
|
18088
|
+
class GoogleCloudAiplatformV1beta1SecretEnvVar
|
18089
|
+
# @private
|
18090
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
18091
|
+
property :name, as: 'name'
|
18092
|
+
property :secret_ref, as: 'secretRef', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SecretRef, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SecretRef::Representation
|
18093
|
+
|
18094
|
+
end
|
18095
|
+
end
|
18096
|
+
|
18097
|
+
class GoogleCloudAiplatformV1beta1SecretRef
|
18098
|
+
# @private
|
18099
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
18100
|
+
property :secret, as: 'secret'
|
18101
|
+
property :version, as: 'version'
|
18102
|
+
end
|
18103
|
+
end
|
18104
|
+
|
17939
18105
|
class GoogleCloudAiplatformV1beta1Segment
|
17940
18106
|
# @private
|
17941
18107
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -18807,6 +18973,8 @@ module Google
|
|
18807
18973
|
class Representation < Google::Apis::Core::JsonRepresentation
|
18808
18974
|
property :code_execution, as: 'codeExecution', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ToolCodeExecution, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ToolCodeExecution::Representation
|
18809
18975
|
|
18976
|
+
property :enterprise_web_search, as: 'enterpriseWebSearch', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EnterpriseWebSearch, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EnterpriseWebSearch::Representation
|
18977
|
+
|
18810
18978
|
collection :function_declarations, as: 'functionDeclarations', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FunctionDeclaration, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FunctionDeclaration::Representation
|
18811
18979
|
|
18812
18980
|
property :google_search, as: 'googleSearch', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ToolGoogleSearch, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ToolGoogleSearch::Representation
|
@@ -816,6 +816,40 @@ module Google
|
|
816
816
|
execute_or_queue_command(command, &block)
|
817
817
|
end
|
818
818
|
|
819
|
+
# Deploys a model to a new endpoint.
|
820
|
+
# @param [String] destination
|
821
|
+
# Required. The resource name of the Location to deploy the model in. Format: `
|
822
|
+
# projects/`project`/locations/`location``
|
823
|
+
# @param [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DeployRequest] google_cloud_aiplatform_v1beta1_deploy_request_object
|
824
|
+
# @param [String] fields
|
825
|
+
# Selector specifying which fields to include in a partial response.
|
826
|
+
# @param [String] quota_user
|
827
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
828
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
829
|
+
# @param [Google::Apis::RequestOptions] options
|
830
|
+
# Request-specific options
|
831
|
+
#
|
832
|
+
# @yield [result, err] Result & error if block supplied
|
833
|
+
# @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation] parsed result object
|
834
|
+
# @yieldparam err [StandardError] error object if request failed
|
835
|
+
#
|
836
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation]
|
837
|
+
#
|
838
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
839
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
840
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
841
|
+
def deploy_project_location(destination, google_cloud_aiplatform_v1beta1_deploy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
842
|
+
command = make_simple_command(:post, 'v1beta1/{+destination}:deploy', options)
|
843
|
+
command.request_representation = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DeployRequest::Representation
|
844
|
+
command.request_object = google_cloud_aiplatform_v1beta1_deploy_request_object
|
845
|
+
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
|
846
|
+
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation
|
847
|
+
command.params['destination'] = destination unless destination.nil?
|
848
|
+
command.query['fields'] = fields unless fields.nil?
|
849
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
850
|
+
execute_or_queue_command(command, &block)
|
851
|
+
end
|
852
|
+
|
819
853
|
# Deploys publisher models.
|
820
854
|
# @param [String] destination
|
821
855
|
# Required. The resource name of the Location to deploy the model in. Format: `
|
@@ -838,8 +872,8 @@ module Google
|
|
838
872
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
839
873
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
840
874
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
841
|
-
def
|
842
|
-
command = make_simple_command(:post, 'v1beta1/{+destination}:
|
875
|
+
def deploy_project_location_publisher_model(destination, google_cloud_aiplatform_v1beta1_deploy_publisher_model_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
876
|
+
command = make_simple_command(:post, 'v1beta1/{+destination}:deployPublisherModel', options)
|
843
877
|
command.request_representation = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DeployPublisherModelRequest::Representation
|
844
878
|
command.request_object = google_cloud_aiplatform_v1beta1_deploy_publisher_model_request_object
|
845
879
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
|
@@ -25815,6 +25849,9 @@ module Google
|
|
25815
25849
|
# publisher`/models/`publisher_model``
|
25816
25850
|
# @param [String] hugging_face_token
|
25817
25851
|
# Optional. Token used to access Hugging Face gated models.
|
25852
|
+
# @param [Boolean] include_equivalent_model_garden_model_deployment_configs
|
25853
|
+
# Optional. Whether to cnclude the deployment configs from the equivalent Model
|
25854
|
+
# Garden model if the requested model is a Hugging Face model.
|
25818
25855
|
# @param [Boolean] is_hugging_face_model
|
25819
25856
|
# Optional. Boolean indicates whether the requested model is a Hugging Face
|
25820
25857
|
# model.
|
@@ -25840,12 +25877,13 @@ module Google
|
|
25840
25877
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
25841
25878
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
25842
25879
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
25843
|
-
def get_publisher_model(name, hugging_face_token: nil, is_hugging_face_model: nil, language_code: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
|
25880
|
+
def get_publisher_model(name, hugging_face_token: nil, include_equivalent_model_garden_model_deployment_configs: nil, is_hugging_face_model: nil, language_code: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
|
25844
25881
|
command = make_simple_command(:get, 'v1beta1/{+name}', options)
|
25845
25882
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModel::Representation
|
25846
25883
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModel
|
25847
25884
|
command.params['name'] = name unless name.nil?
|
25848
25885
|
command.query['huggingFaceToken'] = hugging_face_token unless hugging_face_token.nil?
|
25886
|
+
command.query['includeEquivalentModelGardenModelDeploymentConfigs'] = include_equivalent_model_garden_model_deployment_configs unless include_equivalent_model_garden_model_deployment_configs.nil?
|
25849
25887
|
command.query['isHuggingFaceModel'] = is_hugging_face_model unless is_hugging_face_model.nil?
|
25850
25888
|
command.query['languageCode'] = language_code unless language_code.nil?
|
25851
25889
|
command.query['view'] = view unless view.nil?
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.39.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-16 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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.39.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:
|