google-apis-aiplatform_v1 0.86.0 → 0.88.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 +9 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/aiplatform_v1/classes.rb +262 -57
- data/lib/google/apis/aiplatform_v1/gem_version.rb +3 -3
- data/lib/google/apis/aiplatform_v1/representations.rb +94 -1
- data/lib/google/apis/aiplatform_v1/service.rb +70 -2
- 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: 63c24ee90fbd71d4107f47be2d07417b0704d5816152377ff29f50090fe2e85f
|
|
4
|
+
data.tar.gz: 3b6af4988c44edbcf82951ec59b15edf7447a686903971f387c7b6518c9a44b7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1cf05f8bd1aea8f35650ed0b1bc1ec1309e141e80d6ec2ee6d5eda1b3b453fa19196cde1f4655ecb49d8259e300185f7fb17de51a76d5ab31535740deb722016
|
|
7
|
+
data.tar.gz: 67aba4f39a1676f1f99c6f24987d615115e5cde00216c5806c1481bc015cb66f9fa62103e7e19fe1cd87c0b147bb3ba965015bdd63afff7b090dc84941e06db6
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-aiplatform_v1
|
|
2
2
|
|
|
3
|
+
### v0.88.0 (2026-06-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260605
|
|
6
|
+
* Regenerated using generator version 0.19.0
|
|
7
|
+
|
|
8
|
+
### v0.87.0 (2026-05-17)
|
|
9
|
+
|
|
10
|
+
* Regenerated from discovery document revision 20260509
|
|
11
|
+
|
|
3
12
|
### v0.86.0 (2026-05-03)
|
|
4
13
|
|
|
5
14
|
* Regenerated from discovery document revision 20260427
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/vertex-ai/) may provide gui
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -26,12 +26,30 @@ module Google
|
|
|
26
26
|
class CloudAiLargeModelsVisionGenerateVideoExperiments
|
|
27
27
|
include Google::Apis::Core::Hashable
|
|
28
28
|
|
|
29
|
+
# Optional. If true, anchors the last frame in video generation by generating a
|
|
30
|
+
# custom border mask.
|
|
31
|
+
# Corresponds to the JSON property `anchorLastFrame`
|
|
32
|
+
# @return [Boolean]
|
|
33
|
+
attr_accessor :anchor_last_frame
|
|
34
|
+
alias_method :anchor_last_frame?, :anchor_last_frame
|
|
35
|
+
|
|
36
|
+
# Optional. Video codec to use for output.
|
|
37
|
+
# Corresponds to the JSON property `codec`
|
|
38
|
+
# @return [String]
|
|
39
|
+
attr_accessor :codec
|
|
40
|
+
|
|
29
41
|
# Conditioning frames for veo experimental models ONLY, not to be confused with
|
|
30
42
|
# keyframes (ID:31) in GenerateVideoRequest.
|
|
31
43
|
# Corresponds to the JSON property `conditioningFrames`
|
|
32
44
|
# @return [Array<Google::Apis::AiplatformV1::CloudAiLargeModelsVisionGenerateVideoExperimentsConditioningFrame>]
|
|
33
45
|
attr_accessor :conditioning_frames
|
|
34
46
|
|
|
47
|
+
# Generic key-value pairs for experimental parameters. This allows adding new
|
|
48
|
+
# parameters without changing the dataplane binary.
|
|
49
|
+
# Corresponds to the JSON property `customParameters`
|
|
50
|
+
# @return [Hash<String,Object>]
|
|
51
|
+
attr_accessor :custom_parameters
|
|
52
|
+
|
|
35
53
|
# Human pose parameters for Pose Control
|
|
36
54
|
# Corresponds to the JSON property `humanPose`
|
|
37
55
|
# @return [Google::Apis::AiplatformV1::CloudAiLargeModelsVisionHumanPose]
|
|
@@ -47,6 +65,14 @@ module Google
|
|
|
47
65
|
# @return [Fixnum]
|
|
48
66
|
attr_accessor :num_diffusion_steps
|
|
49
67
|
|
|
68
|
+
# The original REST API request JSON sent by the user, in the instances/
|
|
69
|
+
# parameters format. Preserved for saving alongside output artifacts so users
|
|
70
|
+
# can reproduce their requests. This field is populated by the API handler and
|
|
71
|
+
# is not user-settable.
|
|
72
|
+
# Corresponds to the JSON property `originalRequestJson`
|
|
73
|
+
# @return [String]
|
|
74
|
+
attr_accessor :original_request_json
|
|
75
|
+
|
|
50
76
|
# "Direct" prompting for Experimental Video Generation. These will be sent
|
|
51
77
|
# directly to the LDM without being rewritten.
|
|
52
78
|
# Corresponds to the JSON property `promptInputs`
|
|
@@ -61,6 +87,17 @@ module Google
|
|
|
61
87
|
# @return [String]
|
|
62
88
|
attr_accessor :request_origin_tag
|
|
63
89
|
|
|
90
|
+
# Scheduling configuration for Veo Experimental.
|
|
91
|
+
# Corresponds to the JSON property `schedulingConfig`
|
|
92
|
+
# @return [Google::Apis::AiplatformV1::CloudAiLargeModelsVisionGenerateVideoExperimentsVeSchedulingConfig]
|
|
93
|
+
attr_accessor :scheduling_config
|
|
94
|
+
|
|
95
|
+
# Parameters for seamless (edge-continuous) video generation, enabling temporal
|
|
96
|
+
# looping and/or spatial tessellation.
|
|
97
|
+
# Corresponds to the JSON property `seamless`
|
|
98
|
+
# @return [Google::Apis::AiplatformV1::CloudAiLargeModelsVisionSeamless]
|
|
99
|
+
attr_accessor :seamless
|
|
100
|
+
|
|
64
101
|
# If true (default), truncate input videos that exceed the model's maximum frame
|
|
65
102
|
# count by applying a frame_selection_config to __video_file__ inputs. Set to
|
|
66
103
|
# false to preserve the existing fail-fast behavior.
|
|
@@ -86,12 +123,18 @@ module Google
|
|
|
86
123
|
|
|
87
124
|
# Update properties of this object
|
|
88
125
|
def update!(**args)
|
|
126
|
+
@anchor_last_frame = args[:anchor_last_frame] if args.key?(:anchor_last_frame)
|
|
127
|
+
@codec = args[:codec] if args.key?(:codec)
|
|
89
128
|
@conditioning_frames = args[:conditioning_frames] if args.key?(:conditioning_frames)
|
|
129
|
+
@custom_parameters = args[:custom_parameters] if args.key?(:custom_parameters)
|
|
90
130
|
@human_pose = args[:human_pose] if args.key?(:human_pose)
|
|
91
131
|
@model_name = args[:model_name] if args.key?(:model_name)
|
|
92
132
|
@num_diffusion_steps = args[:num_diffusion_steps] if args.key?(:num_diffusion_steps)
|
|
133
|
+
@original_request_json = args[:original_request_json] if args.key?(:original_request_json)
|
|
93
134
|
@prompt_inputs = args[:prompt_inputs] if args.key?(:prompt_inputs)
|
|
94
135
|
@request_origin_tag = args[:request_origin_tag] if args.key?(:request_origin_tag)
|
|
136
|
+
@scheduling_config = args[:scheduling_config] if args.key?(:scheduling_config)
|
|
137
|
+
@seamless = args[:seamless] if args.key?(:seamless)
|
|
95
138
|
@truncate_input_video = args[:truncate_input_video] if args.key?(:truncate_input_video)
|
|
96
139
|
@video_transform_mask_gcs_uri = args[:video_transform_mask_gcs_uri] if args.key?(:video_transform_mask_gcs_uri)
|
|
97
140
|
@video_transform_strength = args[:video_transform_strength] if args.key?(:video_transform_strength)
|
|
@@ -123,6 +166,26 @@ module Google
|
|
|
123
166
|
end
|
|
124
167
|
end
|
|
125
168
|
|
|
169
|
+
# Scheduling configuration for Veo Experimental.
|
|
170
|
+
class CloudAiLargeModelsVisionGenerateVideoExperimentsVeSchedulingConfig
|
|
171
|
+
include Google::Apis::Core::Hashable
|
|
172
|
+
|
|
173
|
+
# Optional. If true, enable retries on transient errors with default backoff.
|
|
174
|
+
# Corresponds to the JSON property `enableRetry`
|
|
175
|
+
# @return [Boolean]
|
|
176
|
+
attr_accessor :enable_retry
|
|
177
|
+
alias_method :enable_retry?, :enable_retry
|
|
178
|
+
|
|
179
|
+
def initialize(**args)
|
|
180
|
+
update!(**args)
|
|
181
|
+
end
|
|
182
|
+
|
|
183
|
+
# Update properties of this object
|
|
184
|
+
def update!(**args)
|
|
185
|
+
@enable_retry = args[:enable_retry] if args.key?(:enable_retry)
|
|
186
|
+
end
|
|
187
|
+
end
|
|
188
|
+
|
|
126
189
|
# The image bytes or Cloud Storage URI to make the prediction on.
|
|
127
190
|
class CloudAiLargeModelsVisionGenerateVideoRequestImage
|
|
128
191
|
include Google::Apis::Core::Hashable
|
|
@@ -663,6 +726,41 @@ module Google
|
|
|
663
726
|
end
|
|
664
727
|
end
|
|
665
728
|
|
|
729
|
+
#
|
|
730
|
+
class CloudAiLargeModelsVisionSeamless
|
|
731
|
+
include Google::Apis::Core::Hashable
|
|
732
|
+
|
|
733
|
+
# If true, the generated video will be loopable (seamless time looping).
|
|
734
|
+
# Corresponds to the JSON property `loop`
|
|
735
|
+
# @return [Boolean]
|
|
736
|
+
attr_accessor :loop
|
|
737
|
+
alias_method :loop?, :loop
|
|
738
|
+
|
|
739
|
+
# If true, the generated video will be tessellatable as a horizontal
|
|
740
|
+
# tessellation.
|
|
741
|
+
# Corresponds to the JSON property `tessellateHorizontal`
|
|
742
|
+
# @return [Boolean]
|
|
743
|
+
attr_accessor :tessellate_horizontal
|
|
744
|
+
alias_method :tessellate_horizontal?, :tessellate_horizontal
|
|
745
|
+
|
|
746
|
+
# If true, the generated video will be tessellatable as a vertical tessellation.
|
|
747
|
+
# Corresponds to the JSON property `tessellateVertical`
|
|
748
|
+
# @return [Boolean]
|
|
749
|
+
attr_accessor :tessellate_vertical
|
|
750
|
+
alias_method :tessellate_vertical?, :tessellate_vertical
|
|
751
|
+
|
|
752
|
+
def initialize(**args)
|
|
753
|
+
update!(**args)
|
|
754
|
+
end
|
|
755
|
+
|
|
756
|
+
# Update properties of this object
|
|
757
|
+
def update!(**args)
|
|
758
|
+
@loop = args[:loop] if args.key?(:loop)
|
|
759
|
+
@tessellate_horizontal = args[:tessellate_horizontal] if args.key?(:tessellate_horizontal)
|
|
760
|
+
@tessellate_vertical = args[:tessellate_vertical] if args.key?(:tessellate_vertical)
|
|
761
|
+
end
|
|
762
|
+
end
|
|
763
|
+
|
|
666
764
|
#
|
|
667
765
|
class CloudAiLargeModelsVisionSemanticFilterResponse
|
|
668
766
|
include Google::Apis::Core::Hashable
|
|
@@ -1460,12 +1558,18 @@ module Google
|
|
|
1460
1558
|
class GoogleCloudAiplatformV1AsyncQueryReasoningEngineRequest
|
|
1461
1559
|
include Google::Apis::Core::Hashable
|
|
1462
1560
|
|
|
1463
|
-
# Optional. Input Cloud Storage URI for the Async query.
|
|
1561
|
+
# Optional. Input Cloud Storage URI for the Async query. If you are not bringing
|
|
1562
|
+
# your own container (BYOC), the content of the file should be a JSON object
|
|
1563
|
+
# with an `input` field matching the `input` field of `
|
|
1564
|
+
# QueryReasoningEngineRequest` (e.g. `` "input": ` "user_id": "hello", "message":
|
|
1565
|
+
# "$QUERY"` ``). For BYOC, the content of the file depends on the the agent
|
|
1566
|
+
# application.
|
|
1464
1567
|
# Corresponds to the JSON property `inputGcsUri`
|
|
1465
1568
|
# @return [String]
|
|
1466
1569
|
attr_accessor :input_gcs_uri
|
|
1467
1570
|
|
|
1468
|
-
# Optional. Output Cloud Storage URI for the Async query.
|
|
1571
|
+
# Optional. Output Cloud Storage URI for the Async query. This contains the
|
|
1572
|
+
# final response of the query.
|
|
1469
1573
|
# Corresponds to the JSON property `outputGcsUri`
|
|
1470
1574
|
# @return [String]
|
|
1471
1575
|
attr_accessor :output_gcs_uri
|
|
@@ -1885,9 +1989,9 @@ module Google
|
|
|
1885
1989
|
end
|
|
1886
1990
|
end
|
|
1887
1991
|
|
|
1888
|
-
# A description of resources that to large degree are decided by
|
|
1889
|
-
# require only a modest additional configuration. Each Model supporting
|
|
1890
|
-
# resources documents its specific guidelines.
|
|
1992
|
+
# A description of resources that to large degree are decided by Agent Platform,
|
|
1993
|
+
# and require only a modest additional configuration. Each Model supporting
|
|
1994
|
+
# these resources documents its specific guidelines.
|
|
1891
1995
|
class GoogleCloudAiplatformV1AutomaticResources
|
|
1892
1996
|
include Google::Apis::Core::Hashable
|
|
1893
1997
|
|
|
@@ -1897,8 +2001,8 @@ module Google
|
|
|
1897
2001
|
# that many replicas is guaranteed (barring service outages). If traffic
|
|
1898
2002
|
# increases beyond what its replicas at maximum may handle, a portion of the
|
|
1899
2003
|
# traffic will be dropped. If this value is not provided, a no upper bound for
|
|
1900
|
-
# scaling under heavy traffic will be assume, though
|
|
1901
|
-
# scale beyond certain replica number.
|
|
2004
|
+
# scaling under heavy traffic will be assume, though Agent Platform may be
|
|
2005
|
+
# unable to scale beyond certain replica number.
|
|
1902
2006
|
# Corresponds to the JSON property `maxReplicaCount`
|
|
1903
2007
|
# @return [Fixnum]
|
|
1904
2008
|
attr_accessor :max_replica_count
|
|
@@ -2207,8 +2311,8 @@ module Google
|
|
|
2207
2311
|
attr_accessor :max_replica_count
|
|
2208
2312
|
|
|
2209
2313
|
# Immutable. The number of machine replicas used at the start of the batch
|
|
2210
|
-
# operation. If not set,
|
|
2211
|
-
# max_replica_count
|
|
2314
|
+
# operation. If not set, Agent Platform decides starting number, not greater
|
|
2315
|
+
# than max_replica_count
|
|
2212
2316
|
# Corresponds to the JSON property `startingReplicaCount`
|
|
2213
2317
|
# @return [Fixnum]
|
|
2214
2318
|
attr_accessor :starting_replica_count
|
|
@@ -3515,6 +3619,42 @@ module Google
|
|
|
3515
3619
|
end
|
|
3516
3620
|
end
|
|
3517
3621
|
|
|
3622
|
+
# Request message for ReasoningEngineExecutionService.
|
|
3623
|
+
# CancelAsyncQueryReasoningEngine.
|
|
3624
|
+
class GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineRequest
|
|
3625
|
+
include Google::Apis::Core::Hashable
|
|
3626
|
+
|
|
3627
|
+
# Required. The name of the longrunning operation returned from
|
|
3628
|
+
# AsyncQueryReasoningEngine. Format: `projects/`project`/locations/`location`/
|
|
3629
|
+
# operations/`operation``
|
|
3630
|
+
# Corresponds to the JSON property `operationName`
|
|
3631
|
+
# @return [String]
|
|
3632
|
+
attr_accessor :operation_name
|
|
3633
|
+
|
|
3634
|
+
def initialize(**args)
|
|
3635
|
+
update!(**args)
|
|
3636
|
+
end
|
|
3637
|
+
|
|
3638
|
+
# Update properties of this object
|
|
3639
|
+
def update!(**args)
|
|
3640
|
+
@operation_name = args[:operation_name] if args.key?(:operation_name)
|
|
3641
|
+
end
|
|
3642
|
+
end
|
|
3643
|
+
|
|
3644
|
+
# Response message for ReasoningEngineExecutionService.
|
|
3645
|
+
# CancelAsyncQueryReasoningEngine.
|
|
3646
|
+
class GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineResponse
|
|
3647
|
+
include Google::Apis::Core::Hashable
|
|
3648
|
+
|
|
3649
|
+
def initialize(**args)
|
|
3650
|
+
update!(**args)
|
|
3651
|
+
end
|
|
3652
|
+
|
|
3653
|
+
# Update properties of this object
|
|
3654
|
+
def update!(**args)
|
|
3655
|
+
end
|
|
3656
|
+
end
|
|
3657
|
+
|
|
3518
3658
|
# Request message for JobService.CancelBatchPredictionJob.
|
|
3519
3659
|
class GoogleCloudAiplatformV1CancelBatchPredictionJobRequest
|
|
3520
3660
|
include Google::Apis::Core::Hashable
|
|
@@ -5498,6 +5638,25 @@ module Google
|
|
|
5498
5638
|
end
|
|
5499
5639
|
end
|
|
5500
5640
|
|
|
5641
|
+
# Runtime operation metadata for ServingProfileService.CreateServingProfile.
|
|
5642
|
+
class GoogleCloudAiplatformV1CreateServingProfileOperationMetadata
|
|
5643
|
+
include Google::Apis::Core::Hashable
|
|
5644
|
+
|
|
5645
|
+
# Generic Metadata shared by all operations.
|
|
5646
|
+
# Corresponds to the JSON property `genericMetadata`
|
|
5647
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenericOperationMetadata]
|
|
5648
|
+
attr_accessor :generic_metadata
|
|
5649
|
+
|
|
5650
|
+
def initialize(**args)
|
|
5651
|
+
update!(**args)
|
|
5652
|
+
end
|
|
5653
|
+
|
|
5654
|
+
# Update properties of this object
|
|
5655
|
+
def update!(**args)
|
|
5656
|
+
@generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
|
|
5657
|
+
end
|
|
5658
|
+
end
|
|
5659
|
+
|
|
5501
5660
|
# Runtime operation information for SpecialistPoolService.CreateSpecialistPool.
|
|
5502
5661
|
class GoogleCloudAiplatformV1CreateSpecialistPoolOperationMetadata
|
|
5503
5662
|
include Google::Apis::Core::Hashable
|
|
@@ -6651,9 +6810,10 @@ module Google
|
|
|
6651
6810
|
# increases beyond what its replicas at maximum may handle, a portion of the
|
|
6652
6811
|
# traffic will be dropped. If this value is not provided, will use
|
|
6653
6812
|
# min_replica_count as the default value. The value of this field impacts the
|
|
6654
|
-
# charge against
|
|
6655
|
-
# for (max_replica_count * number of cores in the selected machine type)
|
|
6656
|
-
# max_replica_count * number of GPUs per replica in the selected machine
|
|
6813
|
+
# charge against Agent Platform CPU and GPU quotas. Specifically, you will be
|
|
6814
|
+
# charged for (max_replica_count * number of cores in the selected machine type)
|
|
6815
|
+
# and (max_replica_count * number of GPUs per replica in the selected machine
|
|
6816
|
+
# type).
|
|
6657
6817
|
# Corresponds to the JSON property `maxReplicaCount`
|
|
6658
6818
|
# @return [Fixnum]
|
|
6659
6819
|
attr_accessor :max_replica_count
|
|
@@ -7381,9 +7541,9 @@ module Google
|
|
|
7381
7541
|
class GoogleCloudAiplatformV1DeployedIndex
|
|
7382
7542
|
include Google::Apis::Core::Hashable
|
|
7383
7543
|
|
|
7384
|
-
# A description of resources that to large degree are decided by
|
|
7385
|
-
# require only a modest additional configuration. Each Model supporting
|
|
7386
|
-
# resources documents its specific guidelines.
|
|
7544
|
+
# A description of resources that to large degree are decided by Agent Platform,
|
|
7545
|
+
# and require only a modest additional configuration. Each Model supporting
|
|
7546
|
+
# these resources documents its specific guidelines.
|
|
7387
7547
|
# Corresponds to the JSON property `automaticResources`
|
|
7388
7548
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AutomaticResources]
|
|
7389
7549
|
attr_accessor :automatic_resources
|
|
@@ -7613,9 +7773,9 @@ module Google
|
|
|
7613
7773
|
class GoogleCloudAiplatformV1DeployedModel
|
|
7614
7774
|
include Google::Apis::Core::Hashable
|
|
7615
7775
|
|
|
7616
|
-
# A description of resources that to large degree are decided by
|
|
7617
|
-
# require only a modest additional configuration. Each Model supporting
|
|
7618
|
-
# resources documents its specific guidelines.
|
|
7776
|
+
# A description of resources that to large degree are decided by Agent Platform,
|
|
7777
|
+
# and require only a modest additional configuration. Each Model supporting
|
|
7778
|
+
# these resources documents its specific guidelines.
|
|
7619
7779
|
# Corresponds to the JSON property `automaticResources`
|
|
7620
7780
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AutomaticResources]
|
|
7621
7781
|
attr_accessor :automatic_resources
|
|
@@ -10407,7 +10567,8 @@ module Google
|
|
|
10407
10567
|
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DatasetCustomMetric>]
|
|
10408
10568
|
attr_accessor :dataset_custom_metrics
|
|
10409
10569
|
|
|
10410
|
-
#
|
|
10570
|
+
# Optional. The metrics to be calculated in the evaluation run. Required when
|
|
10571
|
+
# analysis_configs is not set.
|
|
10411
10572
|
# Corresponds to the JSON property `metrics`
|
|
10412
10573
|
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EvaluationRunMetric>]
|
|
10413
10574
|
attr_accessor :metrics
|
|
@@ -14367,9 +14528,9 @@ module Google
|
|
|
14367
14528
|
class GoogleCloudAiplatformV1FeatureViewOptimizedConfig
|
|
14368
14529
|
include Google::Apis::Core::Hashable
|
|
14369
14530
|
|
|
14370
|
-
# A description of resources that to large degree are decided by
|
|
14371
|
-
# require only a modest additional configuration. Each Model supporting
|
|
14372
|
-
# resources documents its specific guidelines.
|
|
14531
|
+
# A description of resources that to large degree are decided by Agent Platform,
|
|
14532
|
+
# and require only a modest additional configuration. Each Model supporting
|
|
14533
|
+
# these resources documents its specific guidelines.
|
|
14373
14534
|
# Corresponds to the JSON property `automaticResources`
|
|
14374
14535
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AutomaticResources]
|
|
14375
14536
|
attr_accessor :automatic_resources
|
|
@@ -15601,6 +15762,13 @@ module Google
|
|
|
15601
15762
|
class GoogleCloudAiplatformV1FunctionDeclaration
|
|
15602
15763
|
include Google::Apis::Core::Hashable
|
|
15603
15764
|
|
|
15765
|
+
# Optional. Specifies the function Behavior. If not specified, the system keeps
|
|
15766
|
+
# the current function call behavior. This field is currently only supported by
|
|
15767
|
+
# the BidiGenerateContent method.
|
|
15768
|
+
# Corresponds to the JSON property `behavior`
|
|
15769
|
+
# @return [String]
|
|
15770
|
+
attr_accessor :behavior
|
|
15771
|
+
|
|
15604
15772
|
# Optional. Description and purpose of the function. Model uses it to decide how
|
|
15605
15773
|
# and whether to call the function.
|
|
15606
15774
|
# Corresponds to the JSON property `description`
|
|
@@ -15649,6 +15817,7 @@ module Google
|
|
|
15649
15817
|
|
|
15650
15818
|
# Update properties of this object
|
|
15651
15819
|
def update!(**args)
|
|
15820
|
+
@behavior = args[:behavior] if args.key?(:behavior)
|
|
15652
15821
|
@description = args[:description] if args.key?(:description)
|
|
15653
15822
|
@name = args[:name] if args.key?(:name)
|
|
15654
15823
|
@parameters = args[:parameters] if args.key?(:parameters)
|
|
@@ -21245,15 +21414,15 @@ module Google
|
|
|
21245
21414
|
class GoogleCloudAiplatformV1MachineSpec
|
|
21246
21415
|
include Google::Apis::Core::Hashable
|
|
21247
21416
|
|
|
21248
|
-
# The number of accelerators to attach to the machine. For accelerator
|
|
21249
|
-
# machine types
|
|
21250
|
-
# machines), One may set the accelerator_count from 1 to N for machine
|
|
21251
|
-
# GPUs. If accelerator_count is less than or equal to N / 2,
|
|
21252
|
-
#
|
|
21253
|
-
# if the machine type is a3-highgpu-8g, which has 8 H100 GPUs, one
|
|
21254
|
-
# accelerator_count to 1 to 8. If accelerator_count is 1, 2, 3, or 4,
|
|
21255
|
-
#
|
|
21256
|
-
# cost. When co-scheduling, CPU, memory and storage on the VM will be
|
|
21417
|
+
# The number of accelerators to attach to the machine. For [accelerator
|
|
21418
|
+
# optimized machine types](https://cloud.google.com/compute/docs/accelerator-
|
|
21419
|
+
# optimized-machines), One may set the accelerator_count from 1 to N for machine
|
|
21420
|
+
# with N GPUs. If accelerator_count is less than or equal to N / 2, Agent
|
|
21421
|
+
# Platform co-schedules the replicas of the model into the same VM to save cost.
|
|
21422
|
+
# For example, if the machine type is a3-highgpu-8g, which has 8 H100 GPUs, one
|
|
21423
|
+
# can set accelerator_count to 1 to 8. If accelerator_count is 1, 2, 3, or 4,
|
|
21424
|
+
# Agent Platform co-schedules 8, 4, 2, or 2 replicas of the model into the same
|
|
21425
|
+
# VM to save cost. When co-scheduling, CPU, memory and storage on the VM will be
|
|
21257
21426
|
# distributed to replicas on the VM. For example, one can expect a co-scheduled
|
|
21258
21427
|
# replica requesting 2 GPUs out of a 8-GPU VM will receive 25% of the CPU,
|
|
21259
21428
|
# memory and storage of the VM. Note that the feature is not compatible with
|
|
@@ -21283,12 +21452,13 @@ module Google
|
|
|
21283
21452
|
attr_accessor :gpu_partition_size
|
|
21284
21453
|
|
|
21285
21454
|
# Immutable. The type of the machine. See the [list of machine types supported
|
|
21286
|
-
# for prediction](https://cloud.google.com/
|
|
21287
|
-
# compute#machine-types) See the [list of
|
|
21288
|
-
# training](https://cloud.google.com/
|
|
21289
|
-
# machine-
|
|
21290
|
-
#
|
|
21291
|
-
# this field is
|
|
21455
|
+
# for prediction](https://cloud.google.com/gemini-enterprise-agent-platform/
|
|
21456
|
+
# machine-learning/predictions/configure-compute#machine-types) See the [list of
|
|
21457
|
+
# machine types supported for custom training](https://cloud.google.com/gemini-
|
|
21458
|
+
# enterprise-agent-platform/machine-learning/training/configure-compute#machine-
|
|
21459
|
+
# types). For DeployedModel this field is optional, and the default value is `n1-
|
|
21460
|
+
# standard-2`. For BatchPredictionJob or as part of WorkerPoolSpec this field is
|
|
21461
|
+
# required.
|
|
21292
21462
|
# Corresponds to the JSON property `machineType`
|
|
21293
21463
|
# @return [String]
|
|
21294
21464
|
attr_accessor :machine_type
|
|
@@ -26049,7 +26219,7 @@ module Google
|
|
|
26049
26219
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NetworkSpec]
|
|
26050
26220
|
attr_accessor :network_spec
|
|
26051
26221
|
|
|
26052
|
-
# Represents the spec of persistent disk options.
|
|
26222
|
+
# Represents the spec of persistent disk and hyperdisk options.
|
|
26053
26223
|
# Corresponds to the JSON property `persistentDiskSpec`
|
|
26054
26224
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PersistentDiskSpec]
|
|
26055
26225
|
attr_accessor :persistent_disk_spec
|
|
@@ -26231,7 +26401,7 @@ module Google
|
|
|
26231
26401
|
# @return [String]
|
|
26232
26402
|
attr_accessor :create_time
|
|
26233
26403
|
|
|
26234
|
-
# Represents the spec of persistent disk options.
|
|
26404
|
+
# Represents the spec of persistent disk and hyperdisk options.
|
|
26235
26405
|
# Corresponds to the JSON property `dataPersistentDiskSpec`
|
|
26236
26406
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PersistentDiskSpec]
|
|
26237
26407
|
attr_accessor :data_persistent_disk_spec
|
|
@@ -26445,7 +26615,7 @@ module Google
|
|
|
26445
26615
|
# @return [String]
|
|
26446
26616
|
attr_accessor :create_time
|
|
26447
26617
|
|
|
26448
|
-
# Represents the spec of persistent disk options.
|
|
26618
|
+
# Represents the spec of persistent disk and hyperdisk options.
|
|
26449
26619
|
# Corresponds to the JSON property `dataPersistentDiskSpec`
|
|
26450
26620
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PersistentDiskSpec]
|
|
26451
26621
|
attr_accessor :data_persistent_disk_spec
|
|
@@ -27355,7 +27525,7 @@ module Google
|
|
|
27355
27525
|
end
|
|
27356
27526
|
end
|
|
27357
27527
|
|
|
27358
|
-
# Represents the spec of persistent disk options.
|
|
27528
|
+
# Represents the spec of persistent disk and hyperdisk options.
|
|
27359
27529
|
class GoogleCloudAiplatformV1PersistentDiskSpec
|
|
27360
27530
|
include Google::Apis::Core::Hashable
|
|
27361
27531
|
|
|
@@ -27367,7 +27537,10 @@ module Google
|
|
|
27367
27537
|
# Type of the disk (default is "pd-standard"). Valid values: "pd-ssd" (
|
|
27368
27538
|
# Persistent Disk Solid State Drive) "pd-standard" (Persistent Disk Hard Disk
|
|
27369
27539
|
# Drive) "pd-balanced" (Balanced Persistent Disk) "pd-extreme" (Extreme
|
|
27370
|
-
# Persistent Disk)
|
|
27540
|
+
# Persistent Disk) "hyperdisk-balanced" (Hyperdisk Balanced) "hyperdisk-extreme"
|
|
27541
|
+
# (Hyperdisk Extreme) "hyperdisk-balanced-high-availability" (Hyperdisk Balanced
|
|
27542
|
+
# High Availability) "hyperdisk-ml" (Hyperdisk ML) "hyperdisk-throughput" (
|
|
27543
|
+
# Hyperdisk Throughput)
|
|
27371
27544
|
# Corresponds to the JSON property `diskType`
|
|
27372
27545
|
# @return [String]
|
|
27373
27546
|
attr_accessor :disk_type
|
|
@@ -29348,9 +29521,9 @@ module Google
|
|
|
29348
29521
|
# @return [String]
|
|
29349
29522
|
attr_accessor :artifact_uri
|
|
29350
29523
|
|
|
29351
|
-
# A description of resources that to large degree are decided by
|
|
29352
|
-
# require only a modest additional configuration. Each Model supporting
|
|
29353
|
-
# resources documents its specific guidelines.
|
|
29524
|
+
# A description of resources that to large degree are decided by Agent Platform,
|
|
29525
|
+
# and require only a modest additional configuration. Each Model supporting
|
|
29526
|
+
# these resources documents its specific guidelines.
|
|
29354
29527
|
# Corresponds to the JSON property `automaticResources`
|
|
29355
29528
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AutomaticResources]
|
|
29356
29529
|
attr_accessor :automatic_resources
|
|
@@ -32490,8 +32663,8 @@ module Google
|
|
|
32490
32663
|
# @return [String]
|
|
32491
32664
|
attr_accessor :pickle_object_gcs_uri
|
|
32492
32665
|
|
|
32493
|
-
# Optional. The Python version. Supported values are 3.
|
|
32494
|
-
#
|
|
32666
|
+
# Optional. The Python version. Supported values are 3.10, 3.11, 3.12, 3.13, 3.
|
|
32667
|
+
# 14. If not specified, the default value is 3.10.
|
|
32495
32668
|
# Corresponds to the JSON property `pythonVersion`
|
|
32496
32669
|
# @return [String]
|
|
32497
32670
|
attr_accessor :python_version
|
|
@@ -32728,8 +32901,8 @@ module Google
|
|
|
32728
32901
|
# @return [String]
|
|
32729
32902
|
attr_accessor :requirements_file
|
|
32730
32903
|
|
|
32731
|
-
# Optional. The version of Python to use.
|
|
32732
|
-
#
|
|
32904
|
+
# Optional. The version of Python to use. Supported versions include 3.10, 3.11,
|
|
32905
|
+
# 3.12, 3.13, 3.14. If not specified, default value is 3.10.
|
|
32733
32906
|
# Corresponds to the JSON property `version`
|
|
32734
32907
|
# @return [String]
|
|
32735
32908
|
attr_accessor :version
|
|
@@ -34316,8 +34489,7 @@ module Google
|
|
|
34316
34489
|
attr_accessor :sandbox_environment_snapshot
|
|
34317
34490
|
|
|
34318
34491
|
# Optional. The name of the SandboxEnvironmentTemplate specified in the parent
|
|
34319
|
-
# Agent Engine resource that this SandboxEnvironment is created from.
|
|
34320
|
-
# of `sandbox_environment_template` and `spec` should be set.
|
|
34492
|
+
# Agent Engine resource that this SandboxEnvironment is created from.
|
|
34321
34493
|
# Corresponds to the JSON property `sandboxEnvironmentTemplate`
|
|
34322
34494
|
# @return [String]
|
|
34323
34495
|
attr_accessor :sandbox_environment_template
|
|
@@ -34385,11 +34557,6 @@ module Google
|
|
|
34385
34557
|
# @return [String]
|
|
34386
34558
|
attr_accessor :routing_token
|
|
34387
34559
|
|
|
34388
|
-
# Output only. The hostname of the SandboxEnvironment.
|
|
34389
|
-
# Corresponds to the JSON property `sandboxHostname`
|
|
34390
|
-
# @return [String]
|
|
34391
|
-
attr_accessor :sandbox_hostname
|
|
34392
|
-
|
|
34393
34560
|
# Output only. The internal IP address of the SandboxEnvironment.
|
|
34394
34561
|
# Corresponds to the JSON property `sandboxInternalIp`
|
|
34395
34562
|
# @return [String]
|
|
@@ -34404,7 +34571,6 @@ module Google
|
|
|
34404
34571
|
@load_balancer_hostname = args[:load_balancer_hostname] if args.key?(:load_balancer_hostname)
|
|
34405
34572
|
@load_balancer_ip = args[:load_balancer_ip] if args.key?(:load_balancer_ip)
|
|
34406
34573
|
@routing_token = args[:routing_token] if args.key?(:routing_token)
|
|
34407
|
-
@sandbox_hostname = args[:sandbox_hostname] if args.key?(:sandbox_hostname)
|
|
34408
34574
|
@sandbox_internal_ip = args[:sandbox_internal_ip] if args.key?(:sandbox_internal_ip)
|
|
34409
34575
|
end
|
|
34410
34576
|
end
|
|
@@ -34672,6 +34838,12 @@ module Google
|
|
|
34672
34838
|
# @return [String]
|
|
34673
34839
|
attr_accessor :default_container_category
|
|
34674
34840
|
|
|
34841
|
+
# Message to define resource requests and limits (mirroring Kubernetes) for each
|
|
34842
|
+
# sandbox instance created from this template.
|
|
34843
|
+
# Corresponds to the JSON property `resources`
|
|
34844
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SandboxEnvironmentTemplateResourceRequirements]
|
|
34845
|
+
attr_accessor :resources
|
|
34846
|
+
|
|
34675
34847
|
def initialize(**args)
|
|
34676
34848
|
update!(**args)
|
|
34677
34849
|
end
|
|
@@ -34679,6 +34851,7 @@ module Google
|
|
|
34679
34851
|
# Update properties of this object
|
|
34680
34852
|
def update!(**args)
|
|
34681
34853
|
@default_container_category = args[:default_container_category] if args.key?(:default_container_category)
|
|
34854
|
+
@resources = args[:resources] if args.key?(:resources)
|
|
34682
34855
|
end
|
|
34683
34856
|
end
|
|
34684
34857
|
|
|
@@ -45734,6 +45907,11 @@ module Google
|
|
|
45734
45907
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EnterpriseWebSearch]
|
|
45735
45908
|
attr_accessor :enterprise_web_search
|
|
45736
45909
|
|
|
45910
|
+
# ExaAiSearch tool type. A tool that uses the Exa.ai search engine for grounding.
|
|
45911
|
+
# Corresponds to the JSON property `exaAiSearch`
|
|
45912
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolExaAiSearch]
|
|
45913
|
+
attr_accessor :exa_ai_search
|
|
45914
|
+
|
|
45737
45915
|
# Optional. Function tool type. One or more function declarations to be passed
|
|
45738
45916
|
# to the model along with the current user query. Model may decide to call a
|
|
45739
45917
|
# subset of these functions by populating FunctionCall in the response. User
|
|
@@ -45785,6 +45963,7 @@ module Google
|
|
|
45785
45963
|
@code_execution = args[:code_execution] if args.key?(:code_execution)
|
|
45786
45964
|
@computer_use = args[:computer_use] if args.key?(:computer_use)
|
|
45787
45965
|
@enterprise_web_search = args[:enterprise_web_search] if args.key?(:enterprise_web_search)
|
|
45966
|
+
@exa_ai_search = args[:exa_ai_search] if args.key?(:exa_ai_search)
|
|
45788
45967
|
@function_declarations = args[:function_declarations] if args.key?(:function_declarations)
|
|
45789
45968
|
@google_maps = args[:google_maps] if args.key?(:google_maps)
|
|
45790
45969
|
@google_search = args[:google_search] if args.key?(:google_search)
|
|
@@ -45991,6 +46170,32 @@ module Google
|
|
|
45991
46170
|
end
|
|
45992
46171
|
end
|
|
45993
46172
|
|
|
46173
|
+
# ExaAiSearch tool type. A tool that uses the Exa.ai search engine for grounding.
|
|
46174
|
+
class GoogleCloudAiplatformV1ToolExaAiSearch
|
|
46175
|
+
include Google::Apis::Core::Hashable
|
|
46176
|
+
|
|
46177
|
+
# Required. The API key for ExaAiSearch.
|
|
46178
|
+
# Corresponds to the JSON property `apiKey`
|
|
46179
|
+
# @return [String]
|
|
46180
|
+
attr_accessor :api_key
|
|
46181
|
+
|
|
46182
|
+
# Optional. This field can be used to pass any parameter from the Exa.ai Search
|
|
46183
|
+
# API.
|
|
46184
|
+
# Corresponds to the JSON property `customConfigs`
|
|
46185
|
+
# @return [Hash<String,Object>]
|
|
46186
|
+
attr_accessor :custom_configs
|
|
46187
|
+
|
|
46188
|
+
def initialize(**args)
|
|
46189
|
+
update!(**args)
|
|
46190
|
+
end
|
|
46191
|
+
|
|
46192
|
+
# Update properties of this object
|
|
46193
|
+
def update!(**args)
|
|
46194
|
+
@api_key = args[:api_key] if args.key?(:api_key)
|
|
46195
|
+
@custom_configs = args[:custom_configs] if args.key?(:custom_configs)
|
|
46196
|
+
end
|
|
46197
|
+
end
|
|
46198
|
+
|
|
45994
46199
|
# GoogleSearch tool type. Tool to support Google Search in Model. Powered by
|
|
45995
46200
|
# Google.
|
|
45996
46201
|
class GoogleCloudAiplatformV1ToolGoogleSearch
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AiplatformV1
|
|
18
18
|
# Version of the google-apis-aiplatform_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.88.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260605"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -34,6 +34,12 @@ module Google
|
|
|
34
34
|
include Google::Apis::Core::JsonObjectSupport
|
|
35
35
|
end
|
|
36
36
|
|
|
37
|
+
class CloudAiLargeModelsVisionGenerateVideoExperimentsVeSchedulingConfig
|
|
38
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
39
|
+
|
|
40
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
41
|
+
end
|
|
42
|
+
|
|
37
43
|
class CloudAiLargeModelsVisionGenerateVideoRequestImage
|
|
38
44
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
39
45
|
|
|
@@ -118,6 +124,12 @@ module Google
|
|
|
118
124
|
include Google::Apis::Core::JsonObjectSupport
|
|
119
125
|
end
|
|
120
126
|
|
|
127
|
+
class CloudAiLargeModelsVisionSeamless
|
|
128
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
129
|
+
|
|
130
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
131
|
+
end
|
|
132
|
+
|
|
121
133
|
class CloudAiLargeModelsVisionSemanticFilterResponse
|
|
122
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
123
135
|
|
|
@@ -622,6 +634,18 @@ module Google
|
|
|
622
634
|
include Google::Apis::Core::JsonObjectSupport
|
|
623
635
|
end
|
|
624
636
|
|
|
637
|
+
class GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineRequest
|
|
638
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
639
|
+
|
|
640
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
641
|
+
end
|
|
642
|
+
|
|
643
|
+
class GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineResponse
|
|
644
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
645
|
+
|
|
646
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
647
|
+
end
|
|
648
|
+
|
|
625
649
|
class GoogleCloudAiplatformV1CancelBatchPredictionJobRequest
|
|
626
650
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
627
651
|
|
|
@@ -1054,6 +1078,12 @@ module Google
|
|
|
1054
1078
|
include Google::Apis::Core::JsonObjectSupport
|
|
1055
1079
|
end
|
|
1056
1080
|
|
|
1081
|
+
class GoogleCloudAiplatformV1CreateServingProfileOperationMetadata
|
|
1082
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1083
|
+
|
|
1084
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1085
|
+
end
|
|
1086
|
+
|
|
1057
1087
|
class GoogleCloudAiplatformV1CreateSpecialistPoolOperationMetadata
|
|
1058
1088
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1059
1089
|
|
|
@@ -7492,6 +7522,12 @@ module Google
|
|
|
7492
7522
|
include Google::Apis::Core::JsonObjectSupport
|
|
7493
7523
|
end
|
|
7494
7524
|
|
|
7525
|
+
class GoogleCloudAiplatformV1ToolExaAiSearch
|
|
7526
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
7527
|
+
|
|
7528
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
7529
|
+
end
|
|
7530
|
+
|
|
7495
7531
|
class GoogleCloudAiplatformV1ToolGoogleSearch
|
|
7496
7532
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
7497
7533
|
|
|
@@ -8299,15 +8335,23 @@ module Google
|
|
|
8299
8335
|
class CloudAiLargeModelsVisionGenerateVideoExperiments
|
|
8300
8336
|
# @private
|
|
8301
8337
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8338
|
+
property :anchor_last_frame, as: 'anchorLastFrame'
|
|
8339
|
+
property :codec, as: 'codec'
|
|
8302
8340
|
collection :conditioning_frames, as: 'conditioningFrames', class: Google::Apis::AiplatformV1::CloudAiLargeModelsVisionGenerateVideoExperimentsConditioningFrame, decorator: Google::Apis::AiplatformV1::CloudAiLargeModelsVisionGenerateVideoExperimentsConditioningFrame::Representation
|
|
8303
8341
|
|
|
8342
|
+
hash :custom_parameters, as: 'customParameters'
|
|
8304
8343
|
property :human_pose, as: 'humanPose', class: Google::Apis::AiplatformV1::CloudAiLargeModelsVisionHumanPose, decorator: Google::Apis::AiplatformV1::CloudAiLargeModelsVisionHumanPose::Representation
|
|
8305
8344
|
|
|
8306
8345
|
property :model_name, as: 'modelName'
|
|
8307
8346
|
property :num_diffusion_steps, as: 'numDiffusionSteps'
|
|
8347
|
+
property :original_request_json, as: 'originalRequestJson'
|
|
8308
8348
|
property :prompt_inputs, as: 'promptInputs', class: Google::Apis::AiplatformV1::CloudAiLargeModelsVisionPromptInputs, decorator: Google::Apis::AiplatformV1::CloudAiLargeModelsVisionPromptInputs::Representation
|
|
8309
8349
|
|
|
8310
8350
|
property :request_origin_tag, as: 'requestOriginTag'
|
|
8351
|
+
property :scheduling_config, as: 'schedulingConfig', class: Google::Apis::AiplatformV1::CloudAiLargeModelsVisionGenerateVideoExperimentsVeSchedulingConfig, decorator: Google::Apis::AiplatformV1::CloudAiLargeModelsVisionGenerateVideoExperimentsVeSchedulingConfig::Representation
|
|
8352
|
+
|
|
8353
|
+
property :seamless, as: 'seamless', class: Google::Apis::AiplatformV1::CloudAiLargeModelsVisionSeamless, decorator: Google::Apis::AiplatformV1::CloudAiLargeModelsVisionSeamless::Representation
|
|
8354
|
+
|
|
8311
8355
|
property :truncate_input_video, as: 'truncateInputVideo'
|
|
8312
8356
|
property :video_transform_mask_gcs_uri, as: 'videoTransformMaskGcsUri'
|
|
8313
8357
|
property :video_transform_strength, as: 'videoTransformStrength'
|
|
@@ -8323,6 +8367,13 @@ module Google
|
|
|
8323
8367
|
end
|
|
8324
8368
|
end
|
|
8325
8369
|
|
|
8370
|
+
class CloudAiLargeModelsVisionGenerateVideoExperimentsVeSchedulingConfig
|
|
8371
|
+
# @private
|
|
8372
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8373
|
+
property :enable_retry, as: 'enableRetry'
|
|
8374
|
+
end
|
|
8375
|
+
end
|
|
8376
|
+
|
|
8326
8377
|
class CloudAiLargeModelsVisionGenerateVideoRequestImage
|
|
8327
8378
|
# @private
|
|
8328
8379
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -8477,6 +8528,15 @@ module Google
|
|
|
8477
8528
|
end
|
|
8478
8529
|
end
|
|
8479
8530
|
|
|
8531
|
+
class CloudAiLargeModelsVisionSeamless
|
|
8532
|
+
# @private
|
|
8533
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8534
|
+
property :loop, as: 'loop'
|
|
8535
|
+
property :tessellate_horizontal, as: 'tessellateHorizontal'
|
|
8536
|
+
property :tessellate_vertical, as: 'tessellateVertical'
|
|
8537
|
+
end
|
|
8538
|
+
end
|
|
8539
|
+
|
|
8480
8540
|
class CloudAiLargeModelsVisionSemanticFilterResponse
|
|
8481
8541
|
# @private
|
|
8482
8542
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -9302,6 +9362,19 @@ module Google
|
|
|
9302
9362
|
end
|
|
9303
9363
|
end
|
|
9304
9364
|
|
|
9365
|
+
class GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineRequest
|
|
9366
|
+
# @private
|
|
9367
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9368
|
+
property :operation_name, as: 'operationName'
|
|
9369
|
+
end
|
|
9370
|
+
end
|
|
9371
|
+
|
|
9372
|
+
class GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineResponse
|
|
9373
|
+
# @private
|
|
9374
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9375
|
+
end
|
|
9376
|
+
end
|
|
9377
|
+
|
|
9305
9378
|
class GoogleCloudAiplatformV1CancelBatchPredictionJobRequest
|
|
9306
9379
|
# @private
|
|
9307
9380
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -9942,6 +10015,14 @@ module Google
|
|
|
9942
10015
|
end
|
|
9943
10016
|
end
|
|
9944
10017
|
|
|
10018
|
+
class GoogleCloudAiplatformV1CreateServingProfileOperationMetadata
|
|
10019
|
+
# @private
|
|
10020
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10021
|
+
property :generic_metadata, as: 'genericMetadata', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenericOperationMetadata, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenericOperationMetadata::Representation
|
|
10022
|
+
|
|
10023
|
+
end
|
|
10024
|
+
end
|
|
10025
|
+
|
|
9945
10026
|
class GoogleCloudAiplatformV1CreateSpecialistPoolOperationMetadata
|
|
9946
10027
|
# @private
|
|
9947
10028
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -12704,6 +12785,7 @@ module Google
|
|
|
12704
12785
|
class GoogleCloudAiplatformV1FunctionDeclaration
|
|
12705
12786
|
# @private
|
|
12706
12787
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
12788
|
+
property :behavior, as: 'behavior'
|
|
12707
12789
|
property :description, as: 'description'
|
|
12708
12790
|
property :name, as: 'name'
|
|
12709
12791
|
property :parameters, as: 'parameters', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema::Representation
|
|
@@ -18076,7 +18158,6 @@ module Google
|
|
|
18076
18158
|
property :load_balancer_hostname, as: 'loadBalancerHostname'
|
|
18077
18159
|
property :load_balancer_ip, as: 'loadBalancerIp'
|
|
18078
18160
|
property :routing_token, as: 'routingToken'
|
|
18079
|
-
property :sandbox_hostname, as: 'sandboxHostname'
|
|
18080
18161
|
property :sandbox_internal_ip, as: 'sandboxInternalIp'
|
|
18081
18162
|
end
|
|
18082
18163
|
end
|
|
@@ -18154,6 +18235,8 @@ module Google
|
|
|
18154
18235
|
# @private
|
|
18155
18236
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
18156
18237
|
property :default_container_category, as: 'defaultContainerCategory'
|
|
18238
|
+
property :resources, as: 'resources', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SandboxEnvironmentTemplateResourceRequirements, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SandboxEnvironmentTemplateResourceRequirements::Representation
|
|
18239
|
+
|
|
18157
18240
|
end
|
|
18158
18241
|
end
|
|
18159
18242
|
|
|
@@ -21119,6 +21202,8 @@ module Google
|
|
|
21119
21202
|
|
|
21120
21203
|
property :enterprise_web_search, as: 'enterpriseWebSearch', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EnterpriseWebSearch, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EnterpriseWebSearch::Representation
|
|
21121
21204
|
|
|
21205
|
+
property :exa_ai_search, as: 'exaAiSearch', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolExaAiSearch, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolExaAiSearch::Representation
|
|
21206
|
+
|
|
21122
21207
|
collection :function_declarations, as: 'functionDeclarations', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FunctionDeclaration, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FunctionDeclaration::Representation
|
|
21123
21208
|
|
|
21124
21209
|
property :google_maps, as: 'googleMaps', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GoogleMaps, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GoogleMaps::Representation
|
|
@@ -21207,6 +21292,14 @@ module Google
|
|
|
21207
21292
|
end
|
|
21208
21293
|
end
|
|
21209
21294
|
|
|
21295
|
+
class GoogleCloudAiplatformV1ToolExaAiSearch
|
|
21296
|
+
# @private
|
|
21297
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
21298
|
+
property :api_key, as: 'apiKey'
|
|
21299
|
+
hash :custom_configs, as: 'customConfigs'
|
|
21300
|
+
end
|
|
21301
|
+
end
|
|
21302
|
+
|
|
21210
21303
|
class GoogleCloudAiplatformV1ToolGoogleSearch
|
|
21211
21304
|
# @private
|
|
21212
21305
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -26292,6 +26292,40 @@ module Google
|
|
|
26292
26292
|
execute_or_queue_command(command, &block)
|
|
26293
26293
|
end
|
|
26294
26294
|
|
|
26295
|
+
# Cancels an AsyncQueryReasoningEngine operation.
|
|
26296
|
+
# @param [String] name
|
|
26297
|
+
# Required. The name of the ReasoningEngine resource to use. Format: `projects/`
|
|
26298
|
+
# project`/locations/`location`/reasoningEngines/`reasoning_engine``
|
|
26299
|
+
# @param [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineRequest] google_cloud_aiplatform_v1_cancel_async_query_reasoning_engine_request_object
|
|
26300
|
+
# @param [String] fields
|
|
26301
|
+
# Selector specifying which fields to include in a partial response.
|
|
26302
|
+
# @param [String] quota_user
|
|
26303
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
26304
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
26305
|
+
# @param [Google::Apis::RequestOptions] options
|
|
26306
|
+
# Request-specific options
|
|
26307
|
+
#
|
|
26308
|
+
# @yield [result, err] Result & error if block supplied
|
|
26309
|
+
# @yieldparam result [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineResponse] parsed result object
|
|
26310
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
26311
|
+
#
|
|
26312
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineResponse]
|
|
26313
|
+
#
|
|
26314
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
26315
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
26316
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
26317
|
+
def cancel_project_location_reasoning_engine_async_query(name, google_cloud_aiplatform_v1_cancel_async_query_reasoning_engine_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
26318
|
+
command = make_simple_command(:post, 'v1/{+name}:cancelAsyncQuery', options)
|
|
26319
|
+
command.request_representation = Google::Apis::AiplatformV1::GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineRequest::Representation
|
|
26320
|
+
command.request_object = google_cloud_aiplatform_v1_cancel_async_query_reasoning_engine_request_object
|
|
26321
|
+
command.response_representation = Google::Apis::AiplatformV1::GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineResponse::Representation
|
|
26322
|
+
command.response_class = Google::Apis::AiplatformV1::GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineResponse
|
|
26323
|
+
command.params['name'] = name unless name.nil?
|
|
26324
|
+
command.query['fields'] = fields unless fields.nil?
|
|
26325
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
26326
|
+
execute_or_queue_command(command, &block)
|
|
26327
|
+
end
|
|
26328
|
+
|
|
26295
26329
|
# Creates a reasoning engine.
|
|
26296
26330
|
# @param [String] parent
|
|
26297
26331
|
# Required. The resource name of the Location to create the ReasoningEngine in.
|
|
@@ -26893,8 +26927,8 @@ module Google
|
|
|
26893
26927
|
# memory``
|
|
26894
26928
|
# @param [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Memory] google_cloud_aiplatform_v1_memory_object
|
|
26895
26929
|
# @param [String] update_mask
|
|
26896
|
-
# Optional. Mask specifying which fields to update.
|
|
26897
|
-
#
|
|
26930
|
+
# Optional. Mask specifying which fields to update. The following fields are
|
|
26931
|
+
# immutable: * `scope` * `memory_type`
|
|
26898
26932
|
# @param [String] fields
|
|
26899
26933
|
# Selector specifying which fields to include in a partial response.
|
|
26900
26934
|
# @param [String] quota_user
|
|
@@ -34384,6 +34418,40 @@ module Google
|
|
|
34384
34418
|
execute_or_queue_command(command, &block)
|
|
34385
34419
|
end
|
|
34386
34420
|
|
|
34421
|
+
# Cancels an AsyncQueryReasoningEngine operation.
|
|
34422
|
+
# @param [String] name
|
|
34423
|
+
# Required. The name of the ReasoningEngine resource to use. Format: `projects/`
|
|
34424
|
+
# project`/locations/`location`/reasoningEngines/`reasoning_engine``
|
|
34425
|
+
# @param [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineRequest] google_cloud_aiplatform_v1_cancel_async_query_reasoning_engine_request_object
|
|
34426
|
+
# @param [String] fields
|
|
34427
|
+
# Selector specifying which fields to include in a partial response.
|
|
34428
|
+
# @param [String] quota_user
|
|
34429
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
34430
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
34431
|
+
# @param [Google::Apis::RequestOptions] options
|
|
34432
|
+
# Request-specific options
|
|
34433
|
+
#
|
|
34434
|
+
# @yield [result, err] Result & error if block supplied
|
|
34435
|
+
# @yieldparam result [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineResponse] parsed result object
|
|
34436
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
34437
|
+
#
|
|
34438
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineResponse]
|
|
34439
|
+
#
|
|
34440
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
34441
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
34442
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
34443
|
+
def cancel_reasoning_engine_async_query(name, google_cloud_aiplatform_v1_cancel_async_query_reasoning_engine_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
34444
|
+
command = make_simple_command(:post, 'v1/{+name}:cancelAsyncQuery', options)
|
|
34445
|
+
command.request_representation = Google::Apis::AiplatformV1::GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineRequest::Representation
|
|
34446
|
+
command.request_object = google_cloud_aiplatform_v1_cancel_async_query_reasoning_engine_request_object
|
|
34447
|
+
command.response_representation = Google::Apis::AiplatformV1::GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineResponse::Representation
|
|
34448
|
+
command.response_class = Google::Apis::AiplatformV1::GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineResponse
|
|
34449
|
+
command.params['name'] = name unless name.nil?
|
|
34450
|
+
command.query['fields'] = fields unless fields.nil?
|
|
34451
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
34452
|
+
execute_or_queue_command(command, &block)
|
|
34453
|
+
end
|
|
34454
|
+
|
|
34387
34455
|
# Creates a reasoning engine.
|
|
34388
34456
|
# @param [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngine] google_cloud_aiplatform_v1_reasoning_engine_object
|
|
34389
34457
|
# @param [String] parent
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-aiplatform_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.88.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_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1/v0.88.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|
|
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|