google-apis-aiplatform_v1 0.87.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 67b9d7cad0960dc7d90b46a0748d232580835b0c1e94990bd624393506185489
4
- data.tar.gz: c0f6e0834df521514df93d80833445c58ee4917ab01300fdd63b83f9a2a92418
3
+ metadata.gz: 63c24ee90fbd71d4107f47be2d07417b0704d5816152377ff29f50090fe2e85f
4
+ data.tar.gz: 3b6af4988c44edbcf82951ec59b15edf7447a686903971f387c7b6518c9a44b7
5
5
  SHA512:
6
- metadata.gz: 2434a725584cafb8b13b942985b0eff6d34f4ed6045b15b8205f09aac34f1bb8ff4293e0087f088298e9b440bdcb622f4c4fbac429bddb395b5b02cda25d339d
7
- data.tar.gz: 5c0c3f3885919b0abd271cd957ca31aae29e75c0b7aa56d901a9712c121f713f3bdbfffe43fbefc63e83fc96f8b421c7215eb5f4ca2eb0fe38caa3cfe97b1391
6
+ metadata.gz: 1cf05f8bd1aea8f35650ed0b1bc1ec1309e141e80d6ec2ee6d5eda1b3b453fa19196cde1f4655ecb49d8259e300185f7fb17de51a76d5ab31535740deb722016
7
+ data.tar.gz: 67aba4f39a1676f1f99c6f24987d615115e5cde00216c5806c1481bc015cb66f9fa62103e7e19fe1cd87c0b147bb3ba965015bdd63afff7b090dc84941e06db6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
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
+
3
8
  ### v0.87.0 (2026-05-17)
4
9
 
5
10
  * Regenerated from discovery document revision 20260509
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.1+.
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,6 +26,13 @@ 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
+
29
36
  # Optional. Video codec to use for output.
30
37
  # Corresponds to the JSON property `codec`
31
38
  # @return [String]
@@ -37,6 +44,12 @@ module Google
37
44
  # @return [Array<Google::Apis::AiplatformV1::CloudAiLargeModelsVisionGenerateVideoExperimentsConditioningFrame>]
38
45
  attr_accessor :conditioning_frames
39
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
+
40
53
  # Human pose parameters for Pose Control
41
54
  # Corresponds to the JSON property `humanPose`
42
55
  # @return [Google::Apis::AiplatformV1::CloudAiLargeModelsVisionHumanPose]
@@ -52,6 +65,14 @@ module Google
52
65
  # @return [Fixnum]
53
66
  attr_accessor :num_diffusion_steps
54
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
+
55
76
  # "Direct" prompting for Experimental Video Generation. These will be sent
56
77
  # directly to the LDM without being rewritten.
57
78
  # Corresponds to the JSON property `promptInputs`
@@ -66,6 +87,17 @@ module Google
66
87
  # @return [String]
67
88
  attr_accessor :request_origin_tag
68
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
+
69
101
  # If true (default), truncate input videos that exceed the model's maximum frame
70
102
  # count by applying a frame_selection_config to __video_file__ inputs. Set to
71
103
  # false to preserve the existing fail-fast behavior.
@@ -91,13 +123,18 @@ module Google
91
123
 
92
124
  # Update properties of this object
93
125
  def update!(**args)
126
+ @anchor_last_frame = args[:anchor_last_frame] if args.key?(:anchor_last_frame)
94
127
  @codec = args[:codec] if args.key?(:codec)
95
128
  @conditioning_frames = args[:conditioning_frames] if args.key?(:conditioning_frames)
129
+ @custom_parameters = args[:custom_parameters] if args.key?(:custom_parameters)
96
130
  @human_pose = args[:human_pose] if args.key?(:human_pose)
97
131
  @model_name = args[:model_name] if args.key?(:model_name)
98
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)
99
134
  @prompt_inputs = args[:prompt_inputs] if args.key?(:prompt_inputs)
100
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)
101
138
  @truncate_input_video = args[:truncate_input_video] if args.key?(:truncate_input_video)
102
139
  @video_transform_mask_gcs_uri = args[:video_transform_mask_gcs_uri] if args.key?(:video_transform_mask_gcs_uri)
103
140
  @video_transform_strength = args[:video_transform_strength] if args.key?(:video_transform_strength)
@@ -129,6 +166,26 @@ module Google
129
166
  end
130
167
  end
131
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
+
132
189
  # The image bytes or Cloud Storage URI to make the prediction on.
133
190
  class CloudAiLargeModelsVisionGenerateVideoRequestImage
134
191
  include Google::Apis::Core::Hashable
@@ -669,6 +726,41 @@ module Google
669
726
  end
670
727
  end
671
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
+
672
764
  #
673
765
  class CloudAiLargeModelsVisionSemanticFilterResponse
674
766
  include Google::Apis::Core::Hashable
@@ -1897,9 +1989,9 @@ module Google
1897
1989
  end
1898
1990
  end
1899
1991
 
1900
- # A description of resources that to large degree are decided by Vertex AI, and
1901
- # require only a modest additional configuration. Each Model supporting these
1902
- # 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.
1903
1995
  class GoogleCloudAiplatformV1AutomaticResources
1904
1996
  include Google::Apis::Core::Hashable
1905
1997
 
@@ -1909,8 +2001,8 @@ module Google
1909
2001
  # that many replicas is guaranteed (barring service outages). If traffic
1910
2002
  # increases beyond what its replicas at maximum may handle, a portion of the
1911
2003
  # traffic will be dropped. If this value is not provided, a no upper bound for
1912
- # scaling under heavy traffic will be assume, though Vertex AI may be unable to
1913
- # 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.
1914
2006
  # Corresponds to the JSON property `maxReplicaCount`
1915
2007
  # @return [Fixnum]
1916
2008
  attr_accessor :max_replica_count
@@ -2219,8 +2311,8 @@ module Google
2219
2311
  attr_accessor :max_replica_count
2220
2312
 
2221
2313
  # Immutable. The number of machine replicas used at the start of the batch
2222
- # operation. If not set, Vertex AI decides starting number, not greater than
2223
- # max_replica_count
2314
+ # operation. If not set, Agent Platform decides starting number, not greater
2315
+ # than max_replica_count
2224
2316
  # Corresponds to the JSON property `startingReplicaCount`
2225
2317
  # @return [Fixnum]
2226
2318
  attr_accessor :starting_replica_count
@@ -5546,6 +5638,25 @@ module Google
5546
5638
  end
5547
5639
  end
5548
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
+
5549
5660
  # Runtime operation information for SpecialistPoolService.CreateSpecialistPool.
5550
5661
  class GoogleCloudAiplatformV1CreateSpecialistPoolOperationMetadata
5551
5662
  include Google::Apis::Core::Hashable
@@ -6699,9 +6810,10 @@ module Google
6699
6810
  # increases beyond what its replicas at maximum may handle, a portion of the
6700
6811
  # traffic will be dropped. If this value is not provided, will use
6701
6812
  # min_replica_count as the default value. The value of this field impacts the
6702
- # charge against Vertex CPU and GPU quotas. Specifically, you will be charged
6703
- # for (max_replica_count * number of cores in the selected machine type) and (
6704
- # max_replica_count * number of GPUs per replica in the selected machine type).
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).
6705
6817
  # Corresponds to the JSON property `maxReplicaCount`
6706
6818
  # @return [Fixnum]
6707
6819
  attr_accessor :max_replica_count
@@ -7429,9 +7541,9 @@ module Google
7429
7541
  class GoogleCloudAiplatformV1DeployedIndex
7430
7542
  include Google::Apis::Core::Hashable
7431
7543
 
7432
- # A description of resources that to large degree are decided by Vertex AI, and
7433
- # require only a modest additional configuration. Each Model supporting these
7434
- # 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.
7435
7547
  # Corresponds to the JSON property `automaticResources`
7436
7548
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AutomaticResources]
7437
7549
  attr_accessor :automatic_resources
@@ -7661,9 +7773,9 @@ module Google
7661
7773
  class GoogleCloudAiplatformV1DeployedModel
7662
7774
  include Google::Apis::Core::Hashable
7663
7775
 
7664
- # A description of resources that to large degree are decided by Vertex AI, and
7665
- # require only a modest additional configuration. Each Model supporting these
7666
- # 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.
7667
7779
  # Corresponds to the JSON property `automaticResources`
7668
7780
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AutomaticResources]
7669
7781
  attr_accessor :automatic_resources
@@ -14416,9 +14528,9 @@ module Google
14416
14528
  class GoogleCloudAiplatformV1FeatureViewOptimizedConfig
14417
14529
  include Google::Apis::Core::Hashable
14418
14530
 
14419
- # A description of resources that to large degree are decided by Vertex AI, and
14420
- # require only a modest additional configuration. Each Model supporting these
14421
- # 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.
14422
14534
  # Corresponds to the JSON property `automaticResources`
14423
14535
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AutomaticResources]
14424
14536
  attr_accessor :automatic_resources
@@ -21302,15 +21414,15 @@ module Google
21302
21414
  class GoogleCloudAiplatformV1MachineSpec
21303
21415
  include Google::Apis::Core::Hashable
21304
21416
 
21305
- # The number of accelerators to attach to the machine. For accelerator optimized
21306
- # machine types (https://cloud.google.com/compute/docs/accelerator-optimized-
21307
- # machines), One may set the accelerator_count from 1 to N for machine with N
21308
- # GPUs. If accelerator_count is less than or equal to N / 2, Vertex will co-
21309
- # schedule the replicas of the model into the same VM to save cost. For example,
21310
- # if the machine type is a3-highgpu-8g, which has 8 H100 GPUs, one can set
21311
- # accelerator_count to 1 to 8. If accelerator_count is 1, 2, 3, or 4, Vertex
21312
- # will co-schedule 8, 4, 2, or 2 replicas of the model into the same VM to save
21313
- # 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
21314
21426
  # distributed to replicas on the VM. For example, one can expect a co-scheduled
21315
21427
  # replica requesting 2 GPUs out of a 8-GPU VM will receive 25% of the CPU,
21316
21428
  # memory and storage of the VM. Note that the feature is not compatible with
@@ -21340,12 +21452,13 @@ module Google
21340
21452
  attr_accessor :gpu_partition_size
21341
21453
 
21342
21454
  # Immutable. The type of the machine. See the [list of machine types supported
21343
- # for prediction](https://cloud.google.com/vertex-ai/docs/predictions/configure-
21344
- # compute#machine-types) See the [list of machine types supported for custom
21345
- # training](https://cloud.google.com/vertex-ai/docs/training/configure-compute#
21346
- # machine-types). For DeployedModel this field is optional, and the default
21347
- # value is `n1-standard-2`. For BatchPredictionJob or as part of WorkerPoolSpec
21348
- # this field is required.
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.
21349
21462
  # Corresponds to the JSON property `machineType`
21350
21463
  # @return [String]
21351
21464
  attr_accessor :machine_type
@@ -26106,7 +26219,7 @@ module Google
26106
26219
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NetworkSpec]
26107
26220
  attr_accessor :network_spec
26108
26221
 
26109
- # Represents the spec of persistent disk options.
26222
+ # Represents the spec of persistent disk and hyperdisk options.
26110
26223
  # Corresponds to the JSON property `persistentDiskSpec`
26111
26224
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PersistentDiskSpec]
26112
26225
  attr_accessor :persistent_disk_spec
@@ -26288,7 +26401,7 @@ module Google
26288
26401
  # @return [String]
26289
26402
  attr_accessor :create_time
26290
26403
 
26291
- # Represents the spec of persistent disk options.
26404
+ # Represents the spec of persistent disk and hyperdisk options.
26292
26405
  # Corresponds to the JSON property `dataPersistentDiskSpec`
26293
26406
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PersistentDiskSpec]
26294
26407
  attr_accessor :data_persistent_disk_spec
@@ -26502,7 +26615,7 @@ module Google
26502
26615
  # @return [String]
26503
26616
  attr_accessor :create_time
26504
26617
 
26505
- # Represents the spec of persistent disk options.
26618
+ # Represents the spec of persistent disk and hyperdisk options.
26506
26619
  # Corresponds to the JSON property `dataPersistentDiskSpec`
26507
26620
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PersistentDiskSpec]
26508
26621
  attr_accessor :data_persistent_disk_spec
@@ -27412,7 +27525,7 @@ module Google
27412
27525
  end
27413
27526
  end
27414
27527
 
27415
- # Represents the spec of persistent disk options.
27528
+ # Represents the spec of persistent disk and hyperdisk options.
27416
27529
  class GoogleCloudAiplatformV1PersistentDiskSpec
27417
27530
  include Google::Apis::Core::Hashable
27418
27531
 
@@ -27424,7 +27537,10 @@ module Google
27424
27537
  # Type of the disk (default is "pd-standard"). Valid values: "pd-ssd" (
27425
27538
  # Persistent Disk Solid State Drive) "pd-standard" (Persistent Disk Hard Disk
27426
27539
  # Drive) "pd-balanced" (Balanced Persistent Disk) "pd-extreme" (Extreme
27427
- # 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)
27428
27544
  # Corresponds to the JSON property `diskType`
27429
27545
  # @return [String]
27430
27546
  attr_accessor :disk_type
@@ -29405,9 +29521,9 @@ module Google
29405
29521
  # @return [String]
29406
29522
  attr_accessor :artifact_uri
29407
29523
 
29408
- # A description of resources that to large degree are decided by Vertex AI, and
29409
- # require only a modest additional configuration. Each Model supporting these
29410
- # 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.
29411
29527
  # Corresponds to the JSON property `automaticResources`
29412
29528
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AutomaticResources]
29413
29529
  attr_accessor :automatic_resources
@@ -34722,6 +34838,12 @@ module Google
34722
34838
  # @return [String]
34723
34839
  attr_accessor :default_container_category
34724
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
+
34725
34847
  def initialize(**args)
34726
34848
  update!(**args)
34727
34849
  end
@@ -34729,6 +34851,7 @@ module Google
34729
34851
  # Update properties of this object
34730
34852
  def update!(**args)
34731
34853
  @default_container_category = args[:default_container_category] if args.key?(:default_container_category)
34854
+ @resources = args[:resources] if args.key?(:resources)
34732
34855
  end
34733
34856
  end
34734
34857
 
@@ -45784,6 +45907,11 @@ module Google
45784
45907
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EnterpriseWebSearch]
45785
45908
  attr_accessor :enterprise_web_search
45786
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
+
45787
45915
  # Optional. Function tool type. One or more function declarations to be passed
45788
45916
  # to the model along with the current user query. Model may decide to call a
45789
45917
  # subset of these functions by populating FunctionCall in the response. User
@@ -45835,6 +45963,7 @@ module Google
45835
45963
  @code_execution = args[:code_execution] if args.key?(:code_execution)
45836
45964
  @computer_use = args[:computer_use] if args.key?(:computer_use)
45837
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)
45838
45967
  @function_declarations = args[:function_declarations] if args.key?(:function_declarations)
45839
45968
  @google_maps = args[:google_maps] if args.key?(:google_maps)
45840
45969
  @google_search = args[:google_search] if args.key?(:google_search)
@@ -46041,6 +46170,32 @@ module Google
46041
46170
  end
46042
46171
  end
46043
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
+
46044
46199
  # GoogleSearch tool type. Tool to support Google Search in Model. Powered by
46045
46200
  # Google.
46046
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.87.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.18.0"
22
+ GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260509"
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
 
@@ -1066,6 +1078,12 @@ module Google
1066
1078
  include Google::Apis::Core::JsonObjectSupport
1067
1079
  end
1068
1080
 
1081
+ class GoogleCloudAiplatformV1CreateServingProfileOperationMetadata
1082
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1083
+
1084
+ include Google::Apis::Core::JsonObjectSupport
1085
+ end
1086
+
1069
1087
  class GoogleCloudAiplatformV1CreateSpecialistPoolOperationMetadata
1070
1088
  class Representation < Google::Apis::Core::JsonRepresentation; end
1071
1089
 
@@ -7504,6 +7522,12 @@ module Google
7504
7522
  include Google::Apis::Core::JsonObjectSupport
7505
7523
  end
7506
7524
 
7525
+ class GoogleCloudAiplatformV1ToolExaAiSearch
7526
+ class Representation < Google::Apis::Core::JsonRepresentation; end
7527
+
7528
+ include Google::Apis::Core::JsonObjectSupport
7529
+ end
7530
+
7507
7531
  class GoogleCloudAiplatformV1ToolGoogleSearch
7508
7532
  class Representation < Google::Apis::Core::JsonRepresentation; end
7509
7533
 
@@ -8311,16 +8335,23 @@ module Google
8311
8335
  class CloudAiLargeModelsVisionGenerateVideoExperiments
8312
8336
  # @private
8313
8337
  class Representation < Google::Apis::Core::JsonRepresentation
8338
+ property :anchor_last_frame, as: 'anchorLastFrame'
8314
8339
  property :codec, as: 'codec'
8315
8340
  collection :conditioning_frames, as: 'conditioningFrames', class: Google::Apis::AiplatformV1::CloudAiLargeModelsVisionGenerateVideoExperimentsConditioningFrame, decorator: Google::Apis::AiplatformV1::CloudAiLargeModelsVisionGenerateVideoExperimentsConditioningFrame::Representation
8316
8341
 
8342
+ hash :custom_parameters, as: 'customParameters'
8317
8343
  property :human_pose, as: 'humanPose', class: Google::Apis::AiplatformV1::CloudAiLargeModelsVisionHumanPose, decorator: Google::Apis::AiplatformV1::CloudAiLargeModelsVisionHumanPose::Representation
8318
8344
 
8319
8345
  property :model_name, as: 'modelName'
8320
8346
  property :num_diffusion_steps, as: 'numDiffusionSteps'
8347
+ property :original_request_json, as: 'originalRequestJson'
8321
8348
  property :prompt_inputs, as: 'promptInputs', class: Google::Apis::AiplatformV1::CloudAiLargeModelsVisionPromptInputs, decorator: Google::Apis::AiplatformV1::CloudAiLargeModelsVisionPromptInputs::Representation
8322
8349
 
8323
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
+
8324
8355
  property :truncate_input_video, as: 'truncateInputVideo'
8325
8356
  property :video_transform_mask_gcs_uri, as: 'videoTransformMaskGcsUri'
8326
8357
  property :video_transform_strength, as: 'videoTransformStrength'
@@ -8336,6 +8367,13 @@ module Google
8336
8367
  end
8337
8368
  end
8338
8369
 
8370
+ class CloudAiLargeModelsVisionGenerateVideoExperimentsVeSchedulingConfig
8371
+ # @private
8372
+ class Representation < Google::Apis::Core::JsonRepresentation
8373
+ property :enable_retry, as: 'enableRetry'
8374
+ end
8375
+ end
8376
+
8339
8377
  class CloudAiLargeModelsVisionGenerateVideoRequestImage
8340
8378
  # @private
8341
8379
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -8490,6 +8528,15 @@ module Google
8490
8528
  end
8491
8529
  end
8492
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
+
8493
8540
  class CloudAiLargeModelsVisionSemanticFilterResponse
8494
8541
  # @private
8495
8542
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -9968,6 +10015,14 @@ module Google
9968
10015
  end
9969
10016
  end
9970
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
+
9971
10026
  class GoogleCloudAiplatformV1CreateSpecialistPoolOperationMetadata
9972
10027
  # @private
9973
10028
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -18180,6 +18235,8 @@ module Google
18180
18235
  # @private
18181
18236
  class Representation < Google::Apis::Core::JsonRepresentation
18182
18237
  property :default_container_category, as: 'defaultContainerCategory'
18238
+ property :resources, as: 'resources', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SandboxEnvironmentTemplateResourceRequirements, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SandboxEnvironmentTemplateResourceRequirements::Representation
18239
+
18183
18240
  end
18184
18241
  end
18185
18242
 
@@ -21145,6 +21202,8 @@ module Google
21145
21202
 
21146
21203
  property :enterprise_web_search, as: 'enterpriseWebSearch', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EnterpriseWebSearch, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EnterpriseWebSearch::Representation
21147
21204
 
21205
+ property :exa_ai_search, as: 'exaAiSearch', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolExaAiSearch, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolExaAiSearch::Representation
21206
+
21148
21207
  collection :function_declarations, as: 'functionDeclarations', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FunctionDeclaration, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FunctionDeclaration::Representation
21149
21208
 
21150
21209
  property :google_maps, as: 'googleMaps', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GoogleMaps, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GoogleMaps::Representation
@@ -21233,6 +21292,14 @@ module Google
21233
21292
  end
21234
21293
  end
21235
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
+
21236
21303
  class GoogleCloudAiplatformV1ToolGoogleSearch
21237
21304
  # @private
21238
21305
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -26927,8 +26927,8 @@ module Google
26927
26927
  # memory``
26928
26928
  # @param [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Memory] google_cloud_aiplatform_v1_memory_object
26929
26929
  # @param [String] update_mask
26930
- # Optional. Mask specifying which fields to update. Supported fields: * `
26931
- # display_name` * `description` * `fact`
26930
+ # Optional. Mask specifying which fields to update. The following fields are
26931
+ # immutable: * `scope` * `memory_type`
26932
26932
  # @param [String] fields
26933
26933
  # Selector specifying which fields to include in a partial response.
26934
26934
  # @param [String] quota_user
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.87.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.87.0
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.1'
69
+ version: '3.2'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="