google-apis-aiplatform_v1beta1 0.61.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.
@@ -1830,6 +1830,11 @@ module Google
1830
1830
  attr_accessor :flip_enabled
1831
1831
  alias_method :flip_enabled?, :flip_enabled
1832
1832
 
1833
+ # Generation config.
1834
+ # Corresponds to the JSON property `generationConfig`
1835
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerationConfig]
1836
+ attr_accessor :generation_config
1837
+
1833
1838
  # Optional. Number of samples for each instance in the dataset. If not specified,
1834
1839
  # the default is 4. Minimum value is 1, maximum value is 32.
1835
1840
  # Corresponds to the JSON property `samplingCount`
@@ -1844,6 +1849,7 @@ module Google
1844
1849
  def update!(**args)
1845
1850
  @autorater_model = args[:autorater_model] if args.key?(:autorater_model)
1846
1851
  @flip_enabled = args[:flip_enabled] if args.key?(:flip_enabled)
1852
+ @generation_config = args[:generation_config] if args.key?(:generation_config)
1847
1853
  @sampling_count = args[:sampling_count] if args.key?(:sampling_count)
1848
1854
  end
1849
1855
  end
@@ -3004,8 +3010,8 @@ module Google
3004
3010
  # @return [String]
3005
3011
  attr_accessor :prompt_column
3006
3012
 
3007
- # Optional. The name of the column that contains the rubrics. This will be in
3008
- # evaluation_rubric.RubricGroup format (cl/762595858).
3013
+ # Optional. The name of the column that contains the rubrics. This is in
3014
+ # evaluation_rubric.RubricGroup format.
3009
3015
  # Corresponds to the JSON property `rubricsColumn`
3010
3016
  # @return [String]
3011
3017
  attr_accessor :rubrics_column
@@ -6670,6 +6676,16 @@ module Google
6670
6676
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FlexStart]
6671
6677
  attr_accessor :flex_start
6672
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
+
6673
6689
  # Specification of a single machine.
6674
6690
  # Corresponds to the JSON property `machineSpec`
6675
6691
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MachineSpec]
@@ -6706,6 +6722,11 @@ module Google
6706
6722
  # @return [Fixnum]
6707
6723
  attr_accessor :required_replica_count
6708
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
+
6709
6730
  # Optional. If true, schedule the deployment workload on [spot VMs](https://
6710
6731
  # cloud.google.com/kubernetes-engine/docs/concepts/spot-vms).
6711
6732
  # Corresponds to the JSON property `spot`
@@ -6721,14 +6742,44 @@ module Google
6721
6742
  def update!(**args)
6722
6743
  @autoscaling_metric_specs = args[:autoscaling_metric_specs] if args.key?(:autoscaling_metric_specs)
6723
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)
6724
6746
  @machine_spec = args[:machine_spec] if args.key?(:machine_spec)
6725
6747
  @max_replica_count = args[:max_replica_count] if args.key?(:max_replica_count)
6726
6748
  @min_replica_count = args[:min_replica_count] if args.key?(:min_replica_count)
6727
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)
6728
6751
  @spot = args[:spot] if args.key?(:spot)
6729
6752
  end
6730
6753
  end
6731
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
+
6732
6783
  # Details of operations that delete Feature values.
6733
6784
  class GoogleCloudAiplatformV1beta1DeleteFeatureValuesOperationMetadata
6734
6785
  include Google::Apis::Core::Hashable
@@ -7331,6 +7382,15 @@ module Google
7331
7382
  # @return [String]
7332
7383
  attr_accessor :endpoint_user_id
7333
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
+
7334
7394
  # Represents configuration for private service connect.
7335
7395
  # Corresponds to the JSON property `privateServiceConnectConfig`
7336
7396
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PrivateServiceConnectConfig]
@@ -7346,6 +7406,7 @@ module Google
7346
7406
  @dedicated_endpoint_enabled = args[:dedicated_endpoint_enabled] if args.key?(:dedicated_endpoint_enabled)
7347
7407
  @endpoint_display_name = args[:endpoint_display_name] if args.key?(:endpoint_display_name)
7348
7408
  @endpoint_user_id = args[:endpoint_user_id] if args.key?(:endpoint_user_id)
7409
+ @labels = args[:labels] if args.key?(:labels)
7349
7410
  @private_service_connect_config = args[:private_service_connect_config] if args.key?(:private_service_connect_config)
7350
7411
  end
7351
7412
  end
@@ -7473,7 +7534,7 @@ module Google
7473
7534
  attr_accessor :deployment_group
7474
7535
 
7475
7536
  # Optional. The deployment tier that the index is deployed to.
7476
- # DEPLOYMENT_TIER_UNSPECIFIED defaults to PERFORMANCE.
7537
+ # DEPLOYMENT_TIER_UNSPECIFIED will use a system-chosen default tier.
7477
7538
  # Corresponds to the JSON property `deploymentTier`
7478
7539
  # @return [String]
7479
7540
  attr_accessor :deployment_tier
@@ -8606,6 +8667,12 @@ module Google
8606
8667
  class GoogleCloudAiplatformV1beta1EnterpriseWebSearch
8607
8668
  include Google::Apis::Core::Hashable
8608
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
+
8609
8676
  # Optional. List of domains to be excluded from the search results. The default
8610
8677
  # limit is 2000 domains.
8611
8678
  # Corresponds to the JSON property `excludeDomains`
@@ -8618,6 +8685,7 @@ module Google
8618
8685
 
8619
8686
  # Update properties of this object
8620
8687
  def update!(**args)
8688
+ @blocking_confidence = args[:blocking_confidence] if args.key?(:blocking_confidence)
8621
8689
  @exclude_domains = args[:exclude_domains] if args.key?(:exclude_domains)
8622
8690
  end
8623
8691
  end
@@ -9697,7 +9765,7 @@ module Google
9697
9765
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EvaluationResult]
9698
9766
  attr_accessor :evaluation_response
9699
9767
 
9700
- # The GCS object where the request or response is stored.
9768
+ # The Cloud Storage object where the request or response is stored.
9701
9769
  # Corresponds to the JSON property `gcsUri`
9702
9770
  # @return [String]
9703
9771
  attr_accessor :gcs_uri
@@ -10215,7 +10283,7 @@ module Google
10215
10283
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerationConfig]
10216
10284
  attr_accessor :generation_config
10217
10285
 
10218
- # 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.
10219
10287
  # Publisher model format: `projects/`project`/locations/`location`/publishers/*/
10220
10288
  # models/*` Endpoint format: `projects/`project`/locations/`location`/endpoints/`
10221
10289
  # endpoint``
@@ -13536,6 +13604,18 @@ module Google
13536
13604
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableAutoScaling]
13537
13605
  attr_accessor :auto_scaling
13538
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
+
13539
13619
  def initialize(**args)
13540
13620
  update!(**args)
13541
13621
  end
@@ -13543,6 +13623,8 @@ module Google
13543
13623
  # Update properties of this object
13544
13624
  def update!(**args)
13545
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)
13546
13628
  end
13547
13629
  end
13548
13630
 
@@ -13584,6 +13666,38 @@ module Google
13584
13666
  end
13585
13667
  end
13586
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
+
13587
13701
  # The dedicated serving endpoint for this FeatureOnlineStore. Only need to set
13588
13702
  # when you choose Optimized storage type. Public endpoint is provisioned by
13589
13703
  # default.
@@ -14039,6 +14153,12 @@ module Google
14039
14153
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureViewBigQuerySource]
14040
14154
  attr_accessor :big_query_source
14041
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
+
14042
14162
  # Output only. Timestamp when this FeatureView was created.
14043
14163
  # Corresponds to the JSON property `createTime`
14044
14164
  # @return [String]
@@ -14139,6 +14259,7 @@ module Google
14139
14259
  # Update properties of this object
14140
14260
  def update!(**args)
14141
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)
14142
14263
  @create_time = args[:create_time] if args.key?(:create_time)
14143
14264
  @etag = args[:etag] if args.key?(:etag)
14144
14265
  @feature_registry_source = args[:feature_registry_source] if args.key?(:feature_registry_source)
@@ -14183,6 +14304,26 @@ module Google
14183
14304
  end
14184
14305
  end
14185
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
+
14186
14327
  # Lookup key for a feature view.
14187
14328
  class GoogleCloudAiplatformV1beta1FeatureViewDataKey
14188
14329
  include Google::Apis::Core::Hashable
@@ -15894,6 +16035,41 @@ module Google
15894
16035
  end
15895
16036
  end
15896
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
+
15897
16073
  # A predicted [FunctionCall] returned from the model that contains a string
15898
16074
  # representing the [FunctionDeclaration.name] and a structured JSON object
15899
16075
  # containing the parameters and their values.
@@ -15912,7 +16088,7 @@ module Google
15912
16088
  # @return [String]
15913
16089
  attr_accessor :id
15914
16090
 
15915
- # Required. The name of the function to call. Matches [FunctionDeclaration.name].
16091
+ # Optional. The name of the function to call. Matches [FunctionDeclaration.name].
15916
16092
  # Corresponds to the JSON property `name`
15917
16093
  # @return [String]
15918
16094
  attr_accessor :name
@@ -16678,6 +16854,44 @@ module Google
16678
16854
  end
16679
16855
  end
16680
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
+
16681
16895
  # Request message for EvaluationService.GenerateInstanceRubrics.
16682
16896
  class GoogleCloudAiplatformV1beta1GenerateInstanceRubricsRequest
16683
16897
  include Google::Apis::Core::Hashable
@@ -17057,6 +17271,11 @@ module Google
17057
17271
  # @return [Float]
17058
17272
  attr_accessor :frequency_penalty
17059
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
+
17060
17279
  # Optional. Logit probabilities.
17061
17280
  # Corresponds to the JSON property `logprobs`
17062
17281
  # @return [Fixnum]
@@ -17176,6 +17395,7 @@ module Google
17176
17395
  @candidate_count = args[:candidate_count] if args.key?(:candidate_count)
17177
17396
  @enable_affective_dialog = args[:enable_affective_dialog] if args.key?(:enable_affective_dialog)
17178
17397
  @frequency_penalty = args[:frequency_penalty] if args.key?(:frequency_penalty)
17398
+ @image_config = args[:image_config] if args.key?(:image_config)
17179
17399
  @logprobs = args[:logprobs] if args.key?(:logprobs)
17180
17400
  @max_output_tokens = args[:max_output_tokens] if args.key?(:max_output_tokens)
17181
17401
  @media_resolution = args[:media_resolution] if args.key?(:media_resolution)
@@ -18038,6 +18258,27 @@ module Google
18038
18258
  end
18039
18259
  end
18040
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
+
18041
18282
  # Describes the location from where we import data into a Dataset, together with
18042
18283
  # the labels that will be applied to the DataItems and the Annotations.
18043
18284
  class GoogleCloudAiplatformV1beta1ImportDataConfig
@@ -21522,6 +21763,44 @@ module Google
21522
21763
  end
21523
21764
  end
21524
21765
 
21766
+ # Represents a mount configuration for Lustre file system.
21767
+ class GoogleCloudAiplatformV1beta1LustreMount
21768
+ include Google::Apis::Core::Hashable
21769
+
21770
+ # Required. The name of the Lustre filesystem.
21771
+ # Corresponds to the JSON property `filesystem`
21772
+ # @return [String]
21773
+ attr_accessor :filesystem
21774
+
21775
+ # Required. IP address of the Lustre instance.
21776
+ # Corresponds to the JSON property `instanceIp`
21777
+ # @return [String]
21778
+ attr_accessor :instance_ip
21779
+
21780
+ # Required. Destination mount path. The Lustre file system will be mounted for
21781
+ # the user under /mnt/lustre/
21782
+ # Corresponds to the JSON property `mountPoint`
21783
+ # @return [String]
21784
+ attr_accessor :mount_point
21785
+
21786
+ # Required. The unique identifier of the Lustre volume.
21787
+ # Corresponds to the JSON property `volumeHandle`
21788
+ # @return [String]
21789
+ attr_accessor :volume_handle
21790
+
21791
+ def initialize(**args)
21792
+ update!(**args)
21793
+ end
21794
+
21795
+ # Update properties of this object
21796
+ def update!(**args)
21797
+ @filesystem = args[:filesystem] if args.key?(:filesystem)
21798
+ @instance_ip = args[:instance_ip] if args.key?(:instance_ip)
21799
+ @mount_point = args[:mount_point] if args.key?(:mount_point)
21800
+ @volume_handle = args[:volume_handle] if args.key?(:volume_handle)
21801
+ end
21802
+ end
21803
+
21525
21804
  # Specification of a single machine.
21526
21805
  class GoogleCloudAiplatformV1beta1MachineSpec
21527
21806
  include Google::Apis::Core::Hashable
@@ -25870,6 +26149,27 @@ module Google
25870
26149
  end
25871
26150
  end
25872
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
+
25873
26173
  # Runtime operation information for IndexEndpointService.MutateDeployedIndex.
25874
26174
  class GoogleCloudAiplatformV1beta1MutateDeployedIndexOperationMetadata
25875
26175
  include Google::Apis::Core::Hashable
@@ -33992,7 +34292,8 @@ module Google
33992
34292
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineSpecDeploymentSpec]
33993
34293
  attr_accessor :deployment_spec
33994
34294
 
33995
- # User provided package spec like pickled object and package requirements.
34295
+ # User-provided package specification, containing pickled object and package
34296
+ # requirements.
33996
34297
  # Corresponds to the JSON property `packageSpec`
33997
34298
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineSpecPackageSpec]
33998
34299
  attr_accessor :package_spec
@@ -34095,7 +34396,8 @@ module Google
34095
34396
  end
34096
34397
  end
34097
34398
 
34098
- # User provided package spec like pickled object and package requirements.
34399
+ # User-provided package specification, containing pickled object and package
34400
+ # requirements.
34099
34401
  class GoogleCloudAiplatformV1beta1ReasoningEngineSpecPackageSpec
34100
34402
  include Google::Apis::Core::Hashable
34101
34403
 
@@ -36078,6 +36380,11 @@ module Google
36078
36380
  class GoogleCloudAiplatformV1beta1SandboxEnvironment
36079
36381
  include Google::Apis::Core::Hashable
36080
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
+
36081
36388
  # Output only. The timestamp when this SandboxEnvironment was created.
36082
36389
  # Corresponds to the JSON property `createTime`
36083
36390
  # @return [String]
@@ -36088,6 +36395,13 @@ module Google
36088
36395
  # @return [String]
36089
36396
  attr_accessor :display_name
36090
36397
 
36398
+ # Optional. Timestamp in UTC of when this SandboxEnvironment is considered
36399
+ # expired. This is *always* provided on output, regardless of what `expiration`
36400
+ # was sent on input.
36401
+ # Corresponds to the JSON property `expireTime`
36402
+ # @return [String]
36403
+ attr_accessor :expire_time
36404
+
36091
36405
  # Identifier. The name of the SandboxEnvironment.
36092
36406
  # Corresponds to the JSON property `name`
36093
36407
  # @return [String]
@@ -36103,6 +36417,12 @@ module Google
36103
36417
  # @return [String]
36104
36418
  attr_accessor :state
36105
36419
 
36420
+ # Optional. Input only. The TTL for the sandbox environment. The expiration time
36421
+ # is computed: now + TTL.
36422
+ # Corresponds to the JSON property `ttl`
36423
+ # @return [String]
36424
+ attr_accessor :ttl
36425
+
36106
36426
  # Output only. The timestamp when this SandboxEnvironment was most recently
36107
36427
  # updated.
36108
36428
  # Corresponds to the JSON property `updateTime`
@@ -36115,15 +36435,49 @@ module Google
36115
36435
 
36116
36436
  # Update properties of this object
36117
36437
  def update!(**args)
36438
+ @connection_info = args[:connection_info] if args.key?(:connection_info)
36118
36439
  @create_time = args[:create_time] if args.key?(:create_time)
36119
36440
  @display_name = args[:display_name] if args.key?(:display_name)
36441
+ @expire_time = args[:expire_time] if args.key?(:expire_time)
36120
36442
  @name = args[:name] if args.key?(:name)
36121
36443
  @spec = args[:spec] if args.key?(:spec)
36122
36444
  @state = args[:state] if args.key?(:state)
36445
+ @ttl = args[:ttl] if args.key?(:ttl)
36123
36446
  @update_time = args[:update_time] if args.key?(:update_time)
36124
36447
  end
36125
36448
  end
36126
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
+
36127
36481
  # The specification of a SandboxEnvironment.
36128
36482
  class GoogleCloudAiplatformV1beta1SandboxEnvironmentSpec
36129
36483
  include Google::Apis::Core::Hashable
@@ -36133,6 +36487,11 @@ module Google
36133
36487
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SandboxEnvironmentSpecCodeExecutionEnvironment]
36134
36488
  attr_accessor :code_execution_environment
36135
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
+
36136
36495
  def initialize(**args)
36137
36496
  update!(**args)
36138
36497
  end
@@ -36140,6 +36499,7 @@ module Google
36140
36499
  # Update properties of this object
36141
36500
  def update!(**args)
36142
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)
36143
36503
  end
36144
36504
  end
36145
36505
 
@@ -36168,6 +36528,19 @@ module Google
36168
36528
  end
36169
36529
  end
36170
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
+
36171
36544
  # A SavedQuery is a view of the dataset. It references a subset of annotations
36172
36545
  # by problem type and filters.
36173
36546
  class GoogleCloudAiplatformV1beta1SavedQuery
@@ -44466,6 +44839,32 @@ module Google
44466
44839
  end
44467
44840
  end
44468
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
+
44469
44868
  # SpecialistPool represents customers' own workforce to work on their data
44470
44869
  # labeling jobs. It includes a group of specialist managers and workers.
44471
44870
  # Managers are responsible for managing the workers in this pool as well as
@@ -44606,6 +45005,12 @@ module Google
44606
45005
  # @return [String]
44607
45006
  attr_accessor :language_code
44608
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
+
44609
45014
  # The configuration for the voice to use.
44610
45015
  # Corresponds to the JSON property `voiceConfig`
44611
45016
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1VoiceConfig]
@@ -44618,6 +45023,7 @@ module Google
44618
45023
  # Update properties of this object
44619
45024
  def update!(**args)
44620
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)
44621
45027
  @voice_config = args[:voice_config] if args.key?(:voice_config)
44622
45028
  end
44623
45029
  end
@@ -47854,6 +48260,12 @@ module Google
47854
48260
  class GoogleCloudAiplatformV1beta1ToolGoogleSearch
47855
48261
  include Google::Apis::Core::Hashable
47856
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
+
47857
48269
  # Optional. List of domains to be excluded from the search results. The default
47858
48270
  # limit is 2000 domains. Example: ["amazon.com", "facebook.com"].
47859
48271
  # Corresponds to the JSON property `excludeDomains`
@@ -47866,6 +48278,7 @@ module Google
47866
48278
 
47867
48279
  # Update properties of this object
47868
48280
  def update!(**args)
48281
+ @blocking_confidence = args[:blocking_confidence] if args.key?(:blocking_confidence)
47869
48282
  @exclude_domains = args[:exclude_domains] if args.key?(:exclude_domains)
47870
48283
  end
47871
48284
  end
@@ -49254,9 +49667,12 @@ module Google
49254
49667
 
49255
49668
  # Output only. The resource name of the TunedModel. Format: `projects/`project`/
49256
49669
  # locations/`location`/models/`model`@`version_id`` When tuning from a base
49257
- # model, the version_id will be 1. For continuous tuning, the version id will be
49258
- # incremented by 1 from the last version id in the parent model. E.g., `projects/
49259
- # `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``
49260
49676
  # Corresponds to the JSON property `model`
49261
49677
  # @return [String]
49262
49678
  attr_accessor :model
@@ -49443,6 +49859,11 @@ module Google
49443
49859
  # @return [String]
49444
49860
  attr_accessor :experiment
49445
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
+
49446
49867
  # Optional. The labels with user-defined metadata to organize TuningJob and
49447
49868
  # generated resources such as Model and Endpoint. Label keys and values can be
49448
49869
  # no longer than 64 characters (Unicode codepoints), can only contain lowercase
@@ -49531,7 +49952,10 @@ module Google
49531
49952
  attr_accessor :tuned_model
49532
49953
 
49533
49954
  # Optional. The display name of the TunedModel. The name can be up to 128
49534
- # 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.
49535
49959
  # Corresponds to the JSON property `tunedModelDisplayName`
49536
49960
  # @return [String]
49537
49961
  attr_accessor :tuned_model_display_name
@@ -49573,6 +49997,7 @@ module Google
49573
49997
  @error = args[:error] if args.key?(:error)
49574
49998
  @evaluate_dataset_runs = args[:evaluate_dataset_runs] if args.key?(:evaluate_dataset_runs)
49575
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)
49576
50001
  @labels = args[:labels] if args.key?(:labels)
49577
50002
  @name = args[:name] if args.key?(:name)
49578
50003
  @output_uri = args[:output_uri] if args.key?(:output_uri)
@@ -50874,6 +51299,11 @@ module Google
50874
51299
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DiskSpec]
50875
51300
  attr_accessor :disk_spec
50876
51301
 
51302
+ # Optional. List of Lustre mounts.
51303
+ # Corresponds to the JSON property `lustreMounts`
51304
+ # @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1LustreMount>]
51305
+ attr_accessor :lustre_mounts
51306
+
50877
51307
  # Specification of a single machine.
50878
51308
  # Corresponds to the JSON property `machineSpec`
50879
51309
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MachineSpec]
@@ -50902,6 +51332,7 @@ module Google
50902
51332
  def update!(**args)
50903
51333
  @container_spec = args[:container_spec] if args.key?(:container_spec)
50904
51334
  @disk_spec = args[:disk_spec] if args.key?(:disk_spec)
51335
+ @lustre_mounts = args[:lustre_mounts] if args.key?(:lustre_mounts)
50905
51336
  @machine_spec = args[:machine_spec] if args.key?(:machine_spec)
50906
51337
  @nfs_mounts = args[:nfs_mounts] if args.key?(:nfs_mounts)
50907
51338
  @python_package_spec = args[:python_package_spec] if args.key?(:python_package_spec)
@@ -51496,6 +51927,13 @@ module Google
51496
51927
  # @return [Array<Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation>]
51497
51928
  attr_accessor :operations
51498
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
+
51499
51937
  def initialize(**args)
51500
51938
  update!(**args)
51501
51939
  end
@@ -51504,6 +51942,7 @@ module Google
51504
51942
  def update!(**args)
51505
51943
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
51506
51944
  @operations = args[:operations] if args.key?(:operations)
51945
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
51507
51946
  end
51508
51947
  end
51509
51948