google-apis-aiplatform_v1beta1 0.62.0 → 0.63.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: a74915b2e8e15144a00b462278545c554897a2a98a190e670fb86ff519b28cc8
4
- data.tar.gz: '0252914d36e40936c1242609472b349ce4ee5698c21ade3d6e68641c4e345613'
3
+ metadata.gz: ec51d00ef38cbe0e8b463388f3da06167cdee3123190725145f44983bfa27244
4
+ data.tar.gz: e33763a9a8f5b70cc69ec80ad412c7238f5fcb14964f237883989bb77c07f526
5
5
  SHA512:
6
- metadata.gz: 1f3ada38e05a9de267d507c709fafc41f153888766d51084516d230d6631e823bc73319e1407a9ebef6307a9f941b356e7bdd8ff9c6baed3c00db44799c8be74
7
- data.tar.gz: d16bb7df548c1e9e2547d27f96c8938df4312873cefd10a4b3576bc6e951cad89e3188da75612a3a5dc9e55c3f3e014bd84192463511448c4ce19e755ecfab74
6
+ metadata.gz: 4607f97f8b8997f5cfbb4434e1495d214052b026a59bae28da0ebecacf42bf052c786047d3545f44d3a027435c65d7cbb5a05577b163a15a5f16926071f754a3
7
+ data.tar.gz: 3520eef81593119b59466b8be507d241074bdd82745295e65b63c2d835e1b9117adbc8a5834428852d414030e97ecfdb36b06f6083d4388c007be4460dc84070
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-aiplatform_v1beta1
2
2
 
3
+ ### v0.63.0 (2025-10-19)
4
+
5
+ * Regenerated from discovery document revision 20251003
6
+
3
7
  ### v0.62.0 (2025-10-05)
4
8
 
5
9
  * Regenerated from discovery document revision 20250926
@@ -6676,6 +6676,16 @@ module Google
6676
6676
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FlexStart]
6677
6677
  attr_accessor :flex_start
6678
6678
 
6679
+ # Immutable. Number of initial replicas being deployed on when scaling the
6680
+ # workload up from zero or when creating the workload in case min_replica_count =
6681
+ # 0. When min_replica_count > 0 (meaning that the scale-to-zero feature is not
6682
+ # enabled), initial_replica_count should not be set. When min_replica_count = 0 (
6683
+ # meaning that the scale-to-zero feature is enabled), initial_replica_count
6684
+ # should be larger than zero, but no greater than max_replica_count.
6685
+ # Corresponds to the JSON property `initialReplicaCount`
6686
+ # @return [Fixnum]
6687
+ attr_accessor :initial_replica_count
6688
+
6679
6689
  # Specification of a single machine.
6680
6690
  # Corresponds to the JSON property `machineSpec`
6681
6691
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MachineSpec]
@@ -6712,6 +6722,11 @@ module Google
6712
6722
  # @return [Fixnum]
6713
6723
  attr_accessor :required_replica_count
6714
6724
 
6725
+ # Specification for scale-to-zero feature.
6726
+ # Corresponds to the JSON property `scaleToZeroSpec`
6727
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DedicatedResourcesScaleToZeroSpec]
6728
+ attr_accessor :scale_to_zero_spec
6729
+
6715
6730
  # Optional. If true, schedule the deployment workload on [spot VMs](https://
6716
6731
  # cloud.google.com/kubernetes-engine/docs/concepts/spot-vms).
6717
6732
  # Corresponds to the JSON property `spot`
@@ -6727,14 +6742,44 @@ module Google
6727
6742
  def update!(**args)
6728
6743
  @autoscaling_metric_specs = args[:autoscaling_metric_specs] if args.key?(:autoscaling_metric_specs)
6729
6744
  @flex_start = args[:flex_start] if args.key?(:flex_start)
6745
+ @initial_replica_count = args[:initial_replica_count] if args.key?(:initial_replica_count)
6730
6746
  @machine_spec = args[:machine_spec] if args.key?(:machine_spec)
6731
6747
  @max_replica_count = args[:max_replica_count] if args.key?(:max_replica_count)
6732
6748
  @min_replica_count = args[:min_replica_count] if args.key?(:min_replica_count)
6733
6749
  @required_replica_count = args[:required_replica_count] if args.key?(:required_replica_count)
6750
+ @scale_to_zero_spec = args[:scale_to_zero_spec] if args.key?(:scale_to_zero_spec)
6734
6751
  @spot = args[:spot] if args.key?(:spot)
6735
6752
  end
6736
6753
  end
6737
6754
 
6755
+ # Specification for scale-to-zero feature.
6756
+ class GoogleCloudAiplatformV1beta1DedicatedResourcesScaleToZeroSpec
6757
+ include Google::Apis::Core::Hashable
6758
+
6759
+ # Optional. Duration of no traffic before scaling to zero. [MinValue=3600] (5
6760
+ # minutes) [MaxValue=28800] (8 hours)
6761
+ # Corresponds to the JSON property `idleScaledownPeriod`
6762
+ # @return [String]
6763
+ attr_accessor :idle_scaledown_period
6764
+
6765
+ # Optional. Minimum duration that a deployment will be scaled up before traffic
6766
+ # is evaluated for potential scale-down. [MinValue=300] (5 minutes) [MaxValue=
6767
+ # 28800] (8 hours)
6768
+ # Corresponds to the JSON property `minScaleupPeriod`
6769
+ # @return [String]
6770
+ attr_accessor :min_scaleup_period
6771
+
6772
+ def initialize(**args)
6773
+ update!(**args)
6774
+ end
6775
+
6776
+ # Update properties of this object
6777
+ def update!(**args)
6778
+ @idle_scaledown_period = args[:idle_scaledown_period] if args.key?(:idle_scaledown_period)
6779
+ @min_scaleup_period = args[:min_scaleup_period] if args.key?(:min_scaleup_period)
6780
+ end
6781
+ end
6782
+
6738
6783
  # Details of operations that delete Feature values.
6739
6784
  class GoogleCloudAiplatformV1beta1DeleteFeatureValuesOperationMetadata
6740
6785
  include Google::Apis::Core::Hashable
@@ -7337,6 +7382,15 @@ module Google
7337
7382
  # @return [String]
7338
7383
  attr_accessor :endpoint_user_id
7339
7384
 
7385
+ # Optional. The labels with user-defined metadata to organize your Endpoints.
7386
+ # Label keys and values can be no longer than 64 characters (Unicode codepoints),
7387
+ # can only contain lowercase letters, numeric characters, underscores and
7388
+ # dashes. International characters are allowed. See https://goo.gl/xmQnxf for
7389
+ # more information and examples of labels.
7390
+ # Corresponds to the JSON property `labels`
7391
+ # @return [Hash<String,String>]
7392
+ attr_accessor :labels
7393
+
7340
7394
  # Represents configuration for private service connect.
7341
7395
  # Corresponds to the JSON property `privateServiceConnectConfig`
7342
7396
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PrivateServiceConnectConfig]
@@ -7352,6 +7406,7 @@ module Google
7352
7406
  @dedicated_endpoint_enabled = args[:dedicated_endpoint_enabled] if args.key?(:dedicated_endpoint_enabled)
7353
7407
  @endpoint_display_name = args[:endpoint_display_name] if args.key?(:endpoint_display_name)
7354
7408
  @endpoint_user_id = args[:endpoint_user_id] if args.key?(:endpoint_user_id)
7409
+ @labels = args[:labels] if args.key?(:labels)
7355
7410
  @private_service_connect_config = args[:private_service_connect_config] if args.key?(:private_service_connect_config)
7356
7411
  end
7357
7412
  end
@@ -7479,7 +7534,7 @@ module Google
7479
7534
  attr_accessor :deployment_group
7480
7535
 
7481
7536
  # Optional. The deployment tier that the index is deployed to.
7482
- # DEPLOYMENT_TIER_UNSPECIFIED defaults to PERFORMANCE.
7537
+ # DEPLOYMENT_TIER_UNSPECIFIED will use a system-chosen default tier.
7483
7538
  # Corresponds to the JSON property `deploymentTier`
7484
7539
  # @return [String]
7485
7540
  attr_accessor :deployment_tier
@@ -8612,6 +8667,12 @@ module Google
8612
8667
  class GoogleCloudAiplatformV1beta1EnterpriseWebSearch
8613
8668
  include Google::Apis::Core::Hashable
8614
8669
 
8670
+ # Optional. Sites with confidence level chosen & above this value will be
8671
+ # blocked from the search results.
8672
+ # Corresponds to the JSON property `blockingConfidence`
8673
+ # @return [String]
8674
+ attr_accessor :blocking_confidence
8675
+
8615
8676
  # Optional. List of domains to be excluded from the search results. The default
8616
8677
  # limit is 2000 domains.
8617
8678
  # Corresponds to the JSON property `excludeDomains`
@@ -8624,6 +8685,7 @@ module Google
8624
8685
 
8625
8686
  # Update properties of this object
8626
8687
  def update!(**args)
8688
+ @blocking_confidence = args[:blocking_confidence] if args.key?(:blocking_confidence)
8627
8689
  @exclude_domains = args[:exclude_domains] if args.key?(:exclude_domains)
8628
8690
  end
8629
8691
  end
@@ -10221,7 +10283,7 @@ module Google
10221
10283
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerationConfig]
10222
10284
  attr_accessor :generation_config
10223
10285
 
10224
- # Required. The fully qualified name of the publisher model or endpoint to use.
10286
+ # Optional. The fully qualified name of the publisher model or endpoint to use.
10225
10287
  # Publisher model format: `projects/`project`/locations/`location`/publishers/*/
10226
10288
  # models/*` Endpoint format: `projects/`project`/locations/`location`/endpoints/`
10227
10289
  # endpoint``
@@ -13542,6 +13604,18 @@ module Google
13542
13604
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableAutoScaling]
13543
13605
  attr_accessor :auto_scaling
13544
13606
 
13607
+ # Metadata of the Bigtable instance. This is used by direct read access to the
13608
+ # Bigtable in tenant project.
13609
+ # Corresponds to the JSON property `bigtableMetadata`
13610
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableBigtableMetadata]
13611
+ attr_accessor :bigtable_metadata
13612
+
13613
+ # Optional. It true, enable direct access to the Bigtable instance.
13614
+ # Corresponds to the JSON property `enableDirectBigtableAccess`
13615
+ # @return [Boolean]
13616
+ attr_accessor :enable_direct_bigtable_access
13617
+ alias_method :enable_direct_bigtable_access?, :enable_direct_bigtable_access
13618
+
13545
13619
  def initialize(**args)
13546
13620
  update!(**args)
13547
13621
  end
@@ -13549,6 +13623,8 @@ module Google
13549
13623
  # Update properties of this object
13550
13624
  def update!(**args)
13551
13625
  @auto_scaling = args[:auto_scaling] if args.key?(:auto_scaling)
13626
+ @bigtable_metadata = args[:bigtable_metadata] if args.key?(:bigtable_metadata)
13627
+ @enable_direct_bigtable_access = args[:enable_direct_bigtable_access] if args.key?(:enable_direct_bigtable_access)
13552
13628
  end
13553
13629
  end
13554
13630
 
@@ -13590,6 +13666,38 @@ module Google
13590
13666
  end
13591
13667
  end
13592
13668
 
13669
+ # Metadata of the Bigtable instance. This is used by direct read access to the
13670
+ # Bigtable in tenant project.
13671
+ class GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableBigtableMetadata
13672
+ include Google::Apis::Core::Hashable
13673
+
13674
+ # The Cloud Bigtable instance id.
13675
+ # Corresponds to the JSON property `instanceId`
13676
+ # @return [String]
13677
+ attr_accessor :instance_id
13678
+
13679
+ # The Cloud Bigtable table id.
13680
+ # Corresponds to the JSON property `tableId`
13681
+ # @return [String]
13682
+ attr_accessor :table_id
13683
+
13684
+ # Tenant project ID.
13685
+ # Corresponds to the JSON property `tenantProjectId`
13686
+ # @return [String]
13687
+ attr_accessor :tenant_project_id
13688
+
13689
+ def initialize(**args)
13690
+ update!(**args)
13691
+ end
13692
+
13693
+ # Update properties of this object
13694
+ def update!(**args)
13695
+ @instance_id = args[:instance_id] if args.key?(:instance_id)
13696
+ @table_id = args[:table_id] if args.key?(:table_id)
13697
+ @tenant_project_id = args[:tenant_project_id] if args.key?(:tenant_project_id)
13698
+ end
13699
+ end
13700
+
13593
13701
  # The dedicated serving endpoint for this FeatureOnlineStore. Only need to set
13594
13702
  # when you choose Optimized storage type. Public endpoint is provisioned by
13595
13703
  # default.
@@ -14045,6 +14153,12 @@ module Google
14045
14153
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureViewBigQuerySource]
14046
14154
  attr_accessor :big_query_source
14047
14155
 
14156
+ # Metadata for the Cloud Bigtable that supports directly interacting Bigtable
14157
+ # instances.
14158
+ # Corresponds to the JSON property `bigtableMetadata`
14159
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureViewBigtableMetadata]
14160
+ attr_accessor :bigtable_metadata
14161
+
14048
14162
  # Output only. Timestamp when this FeatureView was created.
14049
14163
  # Corresponds to the JSON property `createTime`
14050
14164
  # @return [String]
@@ -14145,6 +14259,7 @@ module Google
14145
14259
  # Update properties of this object
14146
14260
  def update!(**args)
14147
14261
  @big_query_source = args[:big_query_source] if args.key?(:big_query_source)
14262
+ @bigtable_metadata = args[:bigtable_metadata] if args.key?(:bigtable_metadata)
14148
14263
  @create_time = args[:create_time] if args.key?(:create_time)
14149
14264
  @etag = args[:etag] if args.key?(:etag)
14150
14265
  @feature_registry_source = args[:feature_registry_source] if args.key?(:feature_registry_source)
@@ -14189,6 +14304,26 @@ module Google
14189
14304
  end
14190
14305
  end
14191
14306
 
14307
+ # Metadata for the Cloud Bigtable that supports directly interacting Bigtable
14308
+ # instances.
14309
+ class GoogleCloudAiplatformV1beta1FeatureViewBigtableMetadata
14310
+ include Google::Apis::Core::Hashable
14311
+
14312
+ # Output only. The Bigtable App Profile to use for reading from Bigtable.
14313
+ # Corresponds to the JSON property `readAppProfile`
14314
+ # @return [String]
14315
+ attr_accessor :read_app_profile
14316
+
14317
+ def initialize(**args)
14318
+ update!(**args)
14319
+ end
14320
+
14321
+ # Update properties of this object
14322
+ def update!(**args)
14323
+ @read_app_profile = args[:read_app_profile] if args.key?(:read_app_profile)
14324
+ end
14325
+ end
14326
+
14192
14327
  # Lookup key for a feature view.
14193
14328
  class GoogleCloudAiplatformV1beta1FeatureViewDataKey
14194
14329
  include Google::Apis::Core::Hashable
@@ -15900,6 +16035,41 @@ module Google
15900
16035
  end
15901
16036
  end
15902
16037
 
16038
+ # Tuning Spec for Full Fine Tuning.
16039
+ class GoogleCloudAiplatformV1beta1FullFineTuningSpec
16040
+ include Google::Apis::Core::Hashable
16041
+
16042
+ # Hyperparameters for SFT.
16043
+ # Corresponds to the JSON property `hyperParameters`
16044
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SupervisedHyperParameters]
16045
+ attr_accessor :hyper_parameters
16046
+
16047
+ # Required. Training dataset used for tuning. The dataset can be specified as
16048
+ # either a Cloud Storage path to a JSONL file or as the resource name of a
16049
+ # Vertex Multimodal Dataset.
16050
+ # Corresponds to the JSON property `trainingDatasetUri`
16051
+ # @return [String]
16052
+ attr_accessor :training_dataset_uri
16053
+
16054
+ # Optional. Validation dataset used for tuning. The dataset can be specified as
16055
+ # either a Cloud Storage path to a JSONL file or as the resource name of a
16056
+ # Vertex Multimodal Dataset.
16057
+ # Corresponds to the JSON property `validationDatasetUri`
16058
+ # @return [String]
16059
+ attr_accessor :validation_dataset_uri
16060
+
16061
+ def initialize(**args)
16062
+ update!(**args)
16063
+ end
16064
+
16065
+ # Update properties of this object
16066
+ def update!(**args)
16067
+ @hyper_parameters = args[:hyper_parameters] if args.key?(:hyper_parameters)
16068
+ @training_dataset_uri = args[:training_dataset_uri] if args.key?(:training_dataset_uri)
16069
+ @validation_dataset_uri = args[:validation_dataset_uri] if args.key?(:validation_dataset_uri)
16070
+ end
16071
+ end
16072
+
15903
16073
  # A predicted [FunctionCall] returned from the model that contains a string
15904
16074
  # representing the [FunctionDeclaration.name] and a structured JSON object
15905
16075
  # containing the parameters and their values.
@@ -16684,6 +16854,44 @@ module Google
16684
16854
  end
16685
16855
  end
16686
16856
 
16857
+ # Request message for FeatureOnlineStoreService.GenerateFetchAccessToken.
16858
+ class GoogleCloudAiplatformV1beta1GenerateFetchAccessTokenRequest
16859
+ include Google::Apis::Core::Hashable
16860
+
16861
+ def initialize(**args)
16862
+ update!(**args)
16863
+ end
16864
+
16865
+ # Update properties of this object
16866
+ def update!(**args)
16867
+ end
16868
+ end
16869
+
16870
+ # Response message for FeatureOnlineStoreService.GenerateFetchAccessToken.
16871
+ class GoogleCloudAiplatformV1beta1GenerateFetchAccessTokenResponse
16872
+ include Google::Apis::Core::Hashable
16873
+
16874
+ # The OAuth 2.0 access token.
16875
+ # Corresponds to the JSON property `accessToken`
16876
+ # @return [String]
16877
+ attr_accessor :access_token
16878
+
16879
+ # Token expiration time. This is always set
16880
+ # Corresponds to the JSON property `expireTime`
16881
+ # @return [String]
16882
+ attr_accessor :expire_time
16883
+
16884
+ def initialize(**args)
16885
+ update!(**args)
16886
+ end
16887
+
16888
+ # Update properties of this object
16889
+ def update!(**args)
16890
+ @access_token = args[:access_token] if args.key?(:access_token)
16891
+ @expire_time = args[:expire_time] if args.key?(:expire_time)
16892
+ end
16893
+ end
16894
+
16687
16895
  # Request message for EvaluationService.GenerateInstanceRubrics.
16688
16896
  class GoogleCloudAiplatformV1beta1GenerateInstanceRubricsRequest
16689
16897
  include Google::Apis::Core::Hashable
@@ -17063,6 +17271,11 @@ module Google
17063
17271
  # @return [Float]
17064
17272
  attr_accessor :frequency_penalty
17065
17273
 
17274
+ # Config for image generation features.
17275
+ # Corresponds to the JSON property `imageConfig`
17276
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImageConfig]
17277
+ attr_accessor :image_config
17278
+
17066
17279
  # Optional. Logit probabilities.
17067
17280
  # Corresponds to the JSON property `logprobs`
17068
17281
  # @return [Fixnum]
@@ -17182,6 +17395,7 @@ module Google
17182
17395
  @candidate_count = args[:candidate_count] if args.key?(:candidate_count)
17183
17396
  @enable_affective_dialog = args[:enable_affective_dialog] if args.key?(:enable_affective_dialog)
17184
17397
  @frequency_penalty = args[:frequency_penalty] if args.key?(:frequency_penalty)
17398
+ @image_config = args[:image_config] if args.key?(:image_config)
17185
17399
  @logprobs = args[:logprobs] if args.key?(:logprobs)
17186
17400
  @max_output_tokens = args[:max_output_tokens] if args.key?(:max_output_tokens)
17187
17401
  @media_resolution = args[:media_resolution] if args.key?(:media_resolution)
@@ -18044,6 +18258,27 @@ module Google
18044
18258
  end
18045
18259
  end
18046
18260
 
18261
+ # Config for image generation features.
18262
+ class GoogleCloudAiplatformV1beta1ImageConfig
18263
+ include Google::Apis::Core::Hashable
18264
+
18265
+ # Optional. The desired aspect ratio for the generated images. The following
18266
+ # aspect ratios are supported: "1:1" "2:3", "3:2" "3:4", "4:3" "4:5", "5:4" "9:
18267
+ # 16", "16:9" "21:9"
18268
+ # Corresponds to the JSON property `aspectRatio`
18269
+ # @return [String]
18270
+ attr_accessor :aspect_ratio
18271
+
18272
+ def initialize(**args)
18273
+ update!(**args)
18274
+ end
18275
+
18276
+ # Update properties of this object
18277
+ def update!(**args)
18278
+ @aspect_ratio = args[:aspect_ratio] if args.key?(:aspect_ratio)
18279
+ end
18280
+ end
18281
+
18047
18282
  # Describes the location from where we import data into a Dataset, together with
18048
18283
  # the labels that will be applied to the DataItems and the Annotations.
18049
18284
  class GoogleCloudAiplatformV1beta1ImportDataConfig
@@ -25914,6 +26149,27 @@ module Google
25914
26149
  end
25915
26150
  end
25916
26151
 
26152
+ # Configuration for a multi-speaker text-to-speech setup. Enables the use of up
26153
+ # to two distinct voices in a single synthesis request.
26154
+ class GoogleCloudAiplatformV1beta1MultiSpeakerVoiceConfig
26155
+ include Google::Apis::Core::Hashable
26156
+
26157
+ # Required. A list of configurations for the voices of the speakers. Exactly two
26158
+ # speaker voice configurations must be provided.
26159
+ # Corresponds to the JSON property `speakerVoiceConfigs`
26160
+ # @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SpeakerVoiceConfig>]
26161
+ attr_accessor :speaker_voice_configs
26162
+
26163
+ def initialize(**args)
26164
+ update!(**args)
26165
+ end
26166
+
26167
+ # Update properties of this object
26168
+ def update!(**args)
26169
+ @speaker_voice_configs = args[:speaker_voice_configs] if args.key?(:speaker_voice_configs)
26170
+ end
26171
+ end
26172
+
25917
26173
  # Runtime operation information for IndexEndpointService.MutateDeployedIndex.
25918
26174
  class GoogleCloudAiplatformV1beta1MutateDeployedIndexOperationMetadata
25919
26175
  include Google::Apis::Core::Hashable
@@ -36124,6 +36380,11 @@ module Google
36124
36380
  class GoogleCloudAiplatformV1beta1SandboxEnvironment
36125
36381
  include Google::Apis::Core::Hashable
36126
36382
 
36383
+ # The connection information of the SandboxEnvironment.
36384
+ # Corresponds to the JSON property `connectionInfo`
36385
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SandboxEnvironmentConnectionInfo]
36386
+ attr_accessor :connection_info
36387
+
36127
36388
  # Output only. The timestamp when this SandboxEnvironment was created.
36128
36389
  # Corresponds to the JSON property `createTime`
36129
36390
  # @return [String]
@@ -36174,6 +36435,7 @@ module Google
36174
36435
 
36175
36436
  # Update properties of this object
36176
36437
  def update!(**args)
36438
+ @connection_info = args[:connection_info] if args.key?(:connection_info)
36177
36439
  @create_time = args[:create_time] if args.key?(:create_time)
36178
36440
  @display_name = args[:display_name] if args.key?(:display_name)
36179
36441
  @expire_time = args[:expire_time] if args.key?(:expire_time)
@@ -36185,6 +36447,37 @@ module Google
36185
36447
  end
36186
36448
  end
36187
36449
 
36450
+ # The connection information of the SandboxEnvironment.
36451
+ class GoogleCloudAiplatformV1beta1SandboxEnvironmentConnectionInfo
36452
+ include Google::Apis::Core::Hashable
36453
+
36454
+ # Output only. The hostname of the load balancer.
36455
+ # Corresponds to the JSON property `loadBalancerHostname`
36456
+ # @return [String]
36457
+ attr_accessor :load_balancer_hostname
36458
+
36459
+ # Output only. The IP address of the load balancer.
36460
+ # Corresponds to the JSON property `loadBalancerIp`
36461
+ # @return [String]
36462
+ attr_accessor :load_balancer_ip
36463
+
36464
+ # Output only. The internal IP address of the SandboxEnvironment.
36465
+ # Corresponds to the JSON property `sandboxInternalIp`
36466
+ # @return [String]
36467
+ attr_accessor :sandbox_internal_ip
36468
+
36469
+ def initialize(**args)
36470
+ update!(**args)
36471
+ end
36472
+
36473
+ # Update properties of this object
36474
+ def update!(**args)
36475
+ @load_balancer_hostname = args[:load_balancer_hostname] if args.key?(:load_balancer_hostname)
36476
+ @load_balancer_ip = args[:load_balancer_ip] if args.key?(:load_balancer_ip)
36477
+ @sandbox_internal_ip = args[:sandbox_internal_ip] if args.key?(:sandbox_internal_ip)
36478
+ end
36479
+ end
36480
+
36188
36481
  # The specification of a SandboxEnvironment.
36189
36482
  class GoogleCloudAiplatformV1beta1SandboxEnvironmentSpec
36190
36483
  include Google::Apis::Core::Hashable
@@ -36194,6 +36487,11 @@ module Google
36194
36487
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SandboxEnvironmentSpecCodeExecutionEnvironment]
36195
36488
  attr_accessor :code_execution_environment
36196
36489
 
36490
+ # The computer use environment with customized settings.
36491
+ # Corresponds to the JSON property `computerUseEnvironment`
36492
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SandboxEnvironmentSpecComputerUseEnvironment]
36493
+ attr_accessor :computer_use_environment
36494
+
36197
36495
  def initialize(**args)
36198
36496
  update!(**args)
36199
36497
  end
@@ -36201,6 +36499,7 @@ module Google
36201
36499
  # Update properties of this object
36202
36500
  def update!(**args)
36203
36501
  @code_execution_environment = args[:code_execution_environment] if args.key?(:code_execution_environment)
36502
+ @computer_use_environment = args[:computer_use_environment] if args.key?(:computer_use_environment)
36204
36503
  end
36205
36504
  end
36206
36505
 
@@ -36229,6 +36528,19 @@ module Google
36229
36528
  end
36230
36529
  end
36231
36530
 
36531
+ # The computer use environment with customized settings.
36532
+ class GoogleCloudAiplatformV1beta1SandboxEnvironmentSpecComputerUseEnvironment
36533
+ include Google::Apis::Core::Hashable
36534
+
36535
+ def initialize(**args)
36536
+ update!(**args)
36537
+ end
36538
+
36539
+ # Update properties of this object
36540
+ def update!(**args)
36541
+ end
36542
+ end
36543
+
36232
36544
  # A SavedQuery is a view of the dataset. It references a subset of annotations
36233
36545
  # by problem type and filters.
36234
36546
  class GoogleCloudAiplatformV1beta1SavedQuery
@@ -44527,6 +44839,32 @@ module Google
44527
44839
  end
44528
44840
  end
44529
44841
 
44842
+ # Configuration for a single speaker in a multi speaker setup.
44843
+ class GoogleCloudAiplatformV1beta1SpeakerVoiceConfig
44844
+ include Google::Apis::Core::Hashable
44845
+
44846
+ # Required. The name of the speaker. This should be the same as the speaker name
44847
+ # used in the prompt.
44848
+ # Corresponds to the JSON property `speaker`
44849
+ # @return [String]
44850
+ attr_accessor :speaker
44851
+
44852
+ # The configuration for the voice to use.
44853
+ # Corresponds to the JSON property `voiceConfig`
44854
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1VoiceConfig]
44855
+ attr_accessor :voice_config
44856
+
44857
+ def initialize(**args)
44858
+ update!(**args)
44859
+ end
44860
+
44861
+ # Update properties of this object
44862
+ def update!(**args)
44863
+ @speaker = args[:speaker] if args.key?(:speaker)
44864
+ @voice_config = args[:voice_config] if args.key?(:voice_config)
44865
+ end
44866
+ end
44867
+
44530
44868
  # SpecialistPool represents customers' own workforce to work on their data
44531
44869
  # labeling jobs. It includes a group of specialist managers and workers.
44532
44870
  # Managers are responsible for managing the workers in this pool as well as
@@ -44667,6 +45005,12 @@ module Google
44667
45005
  # @return [String]
44668
45006
  attr_accessor :language_code
44669
45007
 
45008
+ # Configuration for a multi-speaker text-to-speech setup. Enables the use of up
45009
+ # to two distinct voices in a single synthesis request.
45010
+ # Corresponds to the JSON property `multiSpeakerVoiceConfig`
45011
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MultiSpeakerVoiceConfig]
45012
+ attr_accessor :multi_speaker_voice_config
45013
+
44670
45014
  # The configuration for the voice to use.
44671
45015
  # Corresponds to the JSON property `voiceConfig`
44672
45016
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1VoiceConfig]
@@ -44679,6 +45023,7 @@ module Google
44679
45023
  # Update properties of this object
44680
45024
  def update!(**args)
44681
45025
  @language_code = args[:language_code] if args.key?(:language_code)
45026
+ @multi_speaker_voice_config = args[:multi_speaker_voice_config] if args.key?(:multi_speaker_voice_config)
44682
45027
  @voice_config = args[:voice_config] if args.key?(:voice_config)
44683
45028
  end
44684
45029
  end
@@ -47915,6 +48260,12 @@ module Google
47915
48260
  class GoogleCloudAiplatformV1beta1ToolGoogleSearch
47916
48261
  include Google::Apis::Core::Hashable
47917
48262
 
48263
+ # Optional. Sites with confidence level chosen & above this value will be
48264
+ # blocked from the search results.
48265
+ # Corresponds to the JSON property `blockingConfidence`
48266
+ # @return [String]
48267
+ attr_accessor :blocking_confidence
48268
+
47918
48269
  # Optional. List of domains to be excluded from the search results. The default
47919
48270
  # limit is 2000 domains. Example: ["amazon.com", "facebook.com"].
47920
48271
  # Corresponds to the JSON property `excludeDomains`
@@ -47927,6 +48278,7 @@ module Google
47927
48278
 
47928
48279
  # Update properties of this object
47929
48280
  def update!(**args)
48281
+ @blocking_confidence = args[:blocking_confidence] if args.key?(:blocking_confidence)
47930
48282
  @exclude_domains = args[:exclude_domains] if args.key?(:exclude_domains)
47931
48283
  end
47932
48284
  end
@@ -49315,9 +49667,12 @@ module Google
49315
49667
 
49316
49668
  # Output only. The resource name of the TunedModel. Format: `projects/`project`/
49317
49669
  # locations/`location`/models/`model`@`version_id`` When tuning from a base
49318
- # model, the version_id will be 1. For continuous tuning, the version id will be
49319
- # incremented by 1 from the last version id in the parent model. E.g., `projects/
49320
- # `project`/locations/`location`/models/`model`@`last_version_id + 1``
49670
+ # model, the version ID will be 1. For continuous tuning, if the provided
49671
+ # tuned_model_display_name is set and different from parent model's display name,
49672
+ # the tuned model will have a new parent model with version 1. Otherwise the
49673
+ # version id will be incremented by 1 from the last version ID in the parent
49674
+ # model. E.g., `projects/`project`/locations/`location`/models/`model`@`
49675
+ # last_version_id + 1``
49321
49676
  # Corresponds to the JSON property `model`
49322
49677
  # @return [String]
49323
49678
  attr_accessor :model
@@ -49504,6 +49859,11 @@ module Google
49504
49859
  # @return [String]
49505
49860
  attr_accessor :experiment
49506
49861
 
49862
+ # Tuning Spec for Full Fine Tuning.
49863
+ # Corresponds to the JSON property `fullFineTuningSpec`
49864
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FullFineTuningSpec]
49865
+ attr_accessor :full_fine_tuning_spec
49866
+
49507
49867
  # Optional. The labels with user-defined metadata to organize TuningJob and
49508
49868
  # generated resources such as Model and Endpoint. Label keys and values can be
49509
49869
  # no longer than 64 characters (Unicode codepoints), can only contain lowercase
@@ -49592,7 +49952,10 @@ module Google
49592
49952
  attr_accessor :tuned_model
49593
49953
 
49594
49954
  # Optional. The display name of the TunedModel. The name can be up to 128
49595
- # characters long and can consist of any UTF-8 characters.
49955
+ # characters long and can consist of any UTF-8 characters. For continuous tuning,
49956
+ # tuned_model_display_name will by default use the same display name as the pre-
49957
+ # tuned model. If a new display name is provided, the tuning job will create a
49958
+ # new model instead of a new version.
49596
49959
  # Corresponds to the JSON property `tunedModelDisplayName`
49597
49960
  # @return [String]
49598
49961
  attr_accessor :tuned_model_display_name
@@ -49634,6 +49997,7 @@ module Google
49634
49997
  @error = args[:error] if args.key?(:error)
49635
49998
  @evaluate_dataset_runs = args[:evaluate_dataset_runs] if args.key?(:evaluate_dataset_runs)
49636
49999
  @experiment = args[:experiment] if args.key?(:experiment)
50000
+ @full_fine_tuning_spec = args[:full_fine_tuning_spec] if args.key?(:full_fine_tuning_spec)
49637
50001
  @labels = args[:labels] if args.key?(:labels)
49638
50002
  @name = args[:name] if args.key?(:name)
49639
50003
  @output_uri = args[:output_uri] if args.key?(:output_uri)
@@ -51563,6 +51927,13 @@ module Google
51563
51927
  # @return [Array<Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation>]
51564
51928
  attr_accessor :operations
51565
51929
 
51930
+ # Unordered list. Unreachable resources. Populated when the request sets `
51931
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
51932
+ # when attempting to list all resources across all supported locations.
51933
+ # Corresponds to the JSON property `unreachable`
51934
+ # @return [Array<String>]
51935
+ attr_accessor :unreachable
51936
+
51566
51937
  def initialize(**args)
51567
51938
  update!(**args)
51568
51939
  end
@@ -51571,6 +51942,7 @@ module Google
51571
51942
  def update!(**args)
51572
51943
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
51573
51944
  @operations = args[:operations] if args.key?(:operations)
51945
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
51574
51946
  end
51575
51947
  end
51576
51948
 
@@ -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.62.0"
19
+ GEM_VERSION = "0.63.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250926"
25
+ REVISION = "20251003"
26
26
  end
27
27
  end
28
28
  end