google-apis-aiplatform_v1beta1 0.47.0 → 0.48.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: 21bf8dcfdcd72560b5429c5b463f9949e6839337cf36bbd3a0e4fd6b15fcda72
4
- data.tar.gz: c5dc2b04cb2fba116c414c0b65ba68789327e34f7a3d6e085b5ed741ed160785
3
+ metadata.gz: d9a47818def38e20595eadd75640f9fb5bef75813b580461c99d878508788ad8
4
+ data.tar.gz: 437d1e7f5c18b14f8f4c4a68a7f0b129dec759e19b746f22dcaa9f899fa1b82b
5
5
  SHA512:
6
- metadata.gz: a34e69621d92be2102d7a4506a94923cbe926b55b93c7405a10c45ca960fc9b77e62d72118631ca4eb9687084b7cdc903c4c966c2463297d13dfdcd776ebf146
7
- data.tar.gz: a3d2c2f34476b1e46c42d13f022ead2a95432dbabd2d028c53c285ce2ee095015810fe81f50d6c2de44d0fa65fa1b23802dee52ecf774568218376ccec4288d9
6
+ metadata.gz: 39071e7a23b9fdcf661ea4dc02e12d72765d727aa2085c0a46857efec15a0be63e4e3413abce0ba1d7390d98d536e92ee38b0ea4aae10647873d04adb5b09879
7
+ data.tar.gz: 6fc54559bcf827839d6bd26c32eb84153f59dccce559fa545b4f25e5e1a1889d346b6a6db78330bd84f2896b61a217044e9e76c8cc4ca61555eed796e51c5279
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-aiplatform_v1beta1
2
2
 
3
+ ### v0.48.0 (2025-06-01)
4
+
5
+ * Regenerated from discovery document revision 20250527
6
+ * Regenerated using generator version 0.18.0
7
+
3
8
  ### v0.47.0 (2025-05-21)
4
9
 
5
10
  * Regenerated from discovery document revision 20250519
@@ -3723,8 +3723,9 @@ module Google
3723
3723
  end
3724
3724
  end
3725
3725
 
3726
- # Result of executing the [ExecutableCode]. Always follows a `part` containing
3727
- # the [ExecutableCode].
3726
+ # Result of executing the [ExecutableCode]. Only generated when using the [
3727
+ # CodeExecution] tool, and always follows a `part` containing the [
3728
+ # ExecutableCode].
3728
3729
  class GoogleCloudAiplatformV1beta1CodeExecutionResult
3729
3730
  include Google::Apis::Core::Hashable
3730
3731
 
@@ -3844,6 +3845,34 @@ module Google
3844
3845
  end
3845
3846
  end
3846
3847
 
3848
+ # Colab image of the runtime.
3849
+ class GoogleCloudAiplatformV1beta1ColabImage
3850
+ include Google::Apis::Core::Hashable
3851
+
3852
+ # Output only. A human-readable description of the specified colab image release,
3853
+ # populated by the system. Example: "Python 3.10", "Latest - current Python 3.
3854
+ # 11"
3855
+ # Corresponds to the JSON property `description`
3856
+ # @return [String]
3857
+ attr_accessor :description
3858
+
3859
+ # Optional. The release name of the NotebookRuntime Colab image, e.g. "py310".
3860
+ # If not specified, detault to the latest release.
3861
+ # Corresponds to the JSON property `releaseName`
3862
+ # @return [String]
3863
+ attr_accessor :release_name
3864
+
3865
+ def initialize(**args)
3866
+ update!(**args)
3867
+ end
3868
+
3869
+ # Update properties of this object
3870
+ def update!(**args)
3871
+ @description = args[:description] if args.key?(:description)
3872
+ @release_name = args[:release_name] if args.key?(:release_name)
3873
+ end
3874
+ end
3875
+
3847
3876
  # Input for Comet metric.
3848
3877
  class GoogleCloudAiplatformV1beta1CometInput
3849
3878
  include Google::Apis::Core::Hashable
@@ -9418,8 +9447,9 @@ module Google
9418
9447
  end
9419
9448
 
9420
9449
  # Code generated by the model that is meant to be executed, and the result
9421
- # returned to the model. Generated when using the [FunctionDeclaration] tool and
9422
- # [FunctionCallingConfig] mode is set to [Mode.CODE].
9450
+ # returned to the model. Generated when using the [CodeExecution] tool, in which
9451
+ # the code will be automatically executed, and a corresponding [
9452
+ # CodeExecutionResult] will also be generated.
9423
9453
  class GoogleCloudAiplatformV1beta1ExecutableCode
9424
9454
  include Google::Apis::Core::Hashable
9425
9455
 
@@ -14928,6 +14958,13 @@ module Google
14928
14958
  # @return [Fixnum]
14929
14959
  attr_accessor :candidate_count
14930
14960
 
14961
+ # Optional. If enabled, the model will detect emotions and adapt its responses
14962
+ # accordingly.
14963
+ # Corresponds to the JSON property `enableAffectiveDialog`
14964
+ # @return [Boolean]
14965
+ attr_accessor :enable_affective_dialog
14966
+ alias_method :enable_affective_dialog?, :enable_affective_dialog
14967
+
14931
14968
  # Optional. Frequency penalties.
14932
14969
  # Corresponds to the JSON property `frequencyPenalty`
14933
14970
  # @return [Float]
@@ -15033,6 +15070,7 @@ module Google
15033
15070
  def update!(**args)
15034
15071
  @audio_timestamp = args[:audio_timestamp] if args.key?(:audio_timestamp)
15035
15072
  @candidate_count = args[:candidate_count] if args.key?(:candidate_count)
15073
+ @enable_affective_dialog = args[:enable_affective_dialog] if args.key?(:enable_affective_dialog)
15036
15074
  @frequency_penalty = args[:frequency_penalty] if args.key?(:frequency_penalty)
15037
15075
  @logprobs = args[:logprobs] if args.key?(:logprobs)
15038
15076
  @max_output_tokens = args[:max_output_tokens] if args.key?(:max_output_tokens)
@@ -16064,6 +16102,184 @@ module Google
16064
16102
  end
16065
16103
  end
16066
16104
 
16105
+ # Request message for IndexService.ImportIndex.
16106
+ class GoogleCloudAiplatformV1beta1ImportIndexRequest
16107
+ include Google::Apis::Core::Hashable
16108
+
16109
+ # Configuration for importing data from an external source.
16110
+ # Corresponds to the JSON property `config`
16111
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfig]
16112
+ attr_accessor :config
16113
+
16114
+ # Optional. If true, completely replace existing index data. Must be true for
16115
+ # streaming update indexes.
16116
+ # Corresponds to the JSON property `isCompleteOverwrite`
16117
+ # @return [Boolean]
16118
+ attr_accessor :is_complete_overwrite
16119
+ alias_method :is_complete_overwrite?, :is_complete_overwrite
16120
+
16121
+ def initialize(**args)
16122
+ update!(**args)
16123
+ end
16124
+
16125
+ # Update properties of this object
16126
+ def update!(**args)
16127
+ @config = args[:config] if args.key?(:config)
16128
+ @is_complete_overwrite = args[:is_complete_overwrite] if args.key?(:is_complete_overwrite)
16129
+ end
16130
+ end
16131
+
16132
+ # Configuration for importing data from an external source.
16133
+ class GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfig
16134
+ include Google::Apis::Core::Hashable
16135
+
16136
+ # Configuration for importing data from a BigQuery table.
16137
+ # Corresponds to the JSON property `bigQuerySourceConfig`
16138
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigBigQuerySourceConfig]
16139
+ attr_accessor :big_query_source_config
16140
+
16141
+ def initialize(**args)
16142
+ update!(**args)
16143
+ end
16144
+
16145
+ # Update properties of this object
16146
+ def update!(**args)
16147
+ @big_query_source_config = args[:big_query_source_config] if args.key?(:big_query_source_config)
16148
+ end
16149
+ end
16150
+
16151
+ # Configuration for importing data from a BigQuery table.
16152
+ class GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigBigQuerySourceConfig
16153
+ include Google::Apis::Core::Hashable
16154
+
16155
+ # Mapping of datapoint fields to column names for columnar data sources.
16156
+ # Corresponds to the JSON property `datapointFieldMapping`
16157
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMapping]
16158
+ attr_accessor :datapoint_field_mapping
16159
+
16160
+ # Required. The path to the BigQuery table containing the index data, in the
16161
+ # format of `bq://..`.
16162
+ # Corresponds to the JSON property `tablePath`
16163
+ # @return [String]
16164
+ attr_accessor :table_path
16165
+
16166
+ def initialize(**args)
16167
+ update!(**args)
16168
+ end
16169
+
16170
+ # Update properties of this object
16171
+ def update!(**args)
16172
+ @datapoint_field_mapping = args[:datapoint_field_mapping] if args.key?(:datapoint_field_mapping)
16173
+ @table_path = args[:table_path] if args.key?(:table_path)
16174
+ end
16175
+ end
16176
+
16177
+ # Mapping of datapoint fields to column names for columnar data sources.
16178
+ class GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMapping
16179
+ include Google::Apis::Core::Hashable
16180
+
16181
+ # Required. The column with the vector embeddings for each data point.
16182
+ # Corresponds to the JSON property `embeddingColumn`
16183
+ # @return [String]
16184
+ attr_accessor :embedding_column
16185
+
16186
+ # Required. The column with unique identifiers for each data point.
16187
+ # Corresponds to the JSON property `idColumn`
16188
+ # @return [String]
16189
+ attr_accessor :id_column
16190
+
16191
+ # Optional. List of columns containing metadata to be included in the index.
16192
+ # Corresponds to the JSON property `metadataColumns`
16193
+ # @return [Array<String>]
16194
+ attr_accessor :metadata_columns
16195
+
16196
+ # Optional. List of restricts for numeric values.
16197
+ # Corresponds to the JSON property `numericRestricts`
16198
+ # @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingNumericRestrict>]
16199
+ attr_accessor :numeric_restricts
16200
+
16201
+ # Optional. List of restricts for string values.
16202
+ # Corresponds to the JSON property `restricts`
16203
+ # @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingRestrict>]
16204
+ attr_accessor :restricts
16205
+
16206
+ def initialize(**args)
16207
+ update!(**args)
16208
+ end
16209
+
16210
+ # Update properties of this object
16211
+ def update!(**args)
16212
+ @embedding_column = args[:embedding_column] if args.key?(:embedding_column)
16213
+ @id_column = args[:id_column] if args.key?(:id_column)
16214
+ @metadata_columns = args[:metadata_columns] if args.key?(:metadata_columns)
16215
+ @numeric_restricts = args[:numeric_restricts] if args.key?(:numeric_restricts)
16216
+ @restricts = args[:restricts] if args.key?(:restricts)
16217
+ end
16218
+ end
16219
+
16220
+ # Restrictions on numeric values.
16221
+ class GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingNumericRestrict
16222
+ include Google::Apis::Core::Hashable
16223
+
16224
+ # Required. The namespace of the restrict.
16225
+ # Corresponds to the JSON property `namespace`
16226
+ # @return [String]
16227
+ attr_accessor :namespace
16228
+
16229
+ # Optional. The column containing the numeric value.
16230
+ # Corresponds to the JSON property `valueColumn`
16231
+ # @return [String]
16232
+ attr_accessor :value_column
16233
+
16234
+ # Required. Numeric type of the restrict. Must be consistent for all datapoints
16235
+ # within the namespace.
16236
+ # Corresponds to the JSON property `valueType`
16237
+ # @return [String]
16238
+ attr_accessor :value_type
16239
+
16240
+ def initialize(**args)
16241
+ update!(**args)
16242
+ end
16243
+
16244
+ # Update properties of this object
16245
+ def update!(**args)
16246
+ @namespace = args[:namespace] if args.key?(:namespace)
16247
+ @value_column = args[:value_column] if args.key?(:value_column)
16248
+ @value_type = args[:value_type] if args.key?(:value_type)
16249
+ end
16250
+ end
16251
+
16252
+ # Restrictions on string values.
16253
+ class GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingRestrict
16254
+ include Google::Apis::Core::Hashable
16255
+
16256
+ # Optional. The columns containing the allow values.
16257
+ # Corresponds to the JSON property `allowColumn`
16258
+ # @return [Array<String>]
16259
+ attr_accessor :allow_column
16260
+
16261
+ # Optional. The columns containing the deny values.
16262
+ # Corresponds to the JSON property `denyColumn`
16263
+ # @return [Array<String>]
16264
+ attr_accessor :deny_column
16265
+
16266
+ # Required. The namespace of the restrict in the index.
16267
+ # Corresponds to the JSON property `namespace`
16268
+ # @return [String]
16269
+ attr_accessor :namespace
16270
+
16271
+ def initialize(**args)
16272
+ update!(**args)
16273
+ end
16274
+
16275
+ # Update properties of this object
16276
+ def update!(**args)
16277
+ @allow_column = args[:allow_column] if args.key?(:allow_column)
16278
+ @deny_column = args[:deny_column] if args.key?(:deny_column)
16279
+ @namespace = args[:namespace] if args.key?(:namespace)
16280
+ end
16281
+ end
16282
+
16067
16283
  # Request message for ModelService.ImportModelEvaluation
16068
16284
  class GoogleCloudAiplatformV1beta1ImportModelEvaluationRequest
16069
16285
  include Google::Apis::Core::Hashable
@@ -24463,6 +24679,11 @@ module Google
24463
24679
  class GoogleCloudAiplatformV1beta1NotebookSoftwareConfig
24464
24680
  include Google::Apis::Core::Hashable
24465
24681
 
24682
+ # Colab image of the runtime.
24683
+ # Corresponds to the JSON property `colabImage`
24684
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ColabImage]
24685
+ attr_accessor :colab_image
24686
+
24466
24687
  # Optional. Environment variables to be passed to the container. Maximum limit
24467
24688
  # is 100.
24468
24689
  # Corresponds to the JSON property `env`
@@ -24480,6 +24701,7 @@ module Google
24480
24701
 
24481
24702
  # Update properties of this object
24482
24703
  def update!(**args)
24704
+ @colab_image = args[:colab_image] if args.key?(:colab_image)
24483
24705
  @env = args[:env] if args.key?(:env)
24484
24706
  @post_startup_script_config = args[:post_startup_script_config] if args.key?(:post_startup_script_config)
24485
24707
  end
@@ -24509,6 +24731,18 @@ module Google
24509
24731
  class GoogleCloudAiplatformV1beta1PscAutomationConfig
24510
24732
  include Google::Apis::Core::Hashable
24511
24733
 
24734
+ # Output only. Forwarding rule created by the PSC service automation. Note for
24735
+ # Vector search, use IndexPrivateEndpoint instead.
24736
+ # Corresponds to the JSON property `forwardingRule`
24737
+ # @return [String]
24738
+ attr_accessor :forwarding_rule
24739
+
24740
+ # Output only. IP address rule created by the PSC service automation. Note for
24741
+ # Vector search, use IndexPrivateEndpoint instead.
24742
+ # Corresponds to the JSON property `ipAddress`
24743
+ # @return [String]
24744
+ attr_accessor :ip_address
24745
+
24512
24746
  # Required. The full name of the Google Compute Engine [network](https://cloud.
24513
24747
  # google.com/compute/docs/networks-and-firewalls#networks). [Format](https://
24514
24748
  # cloud.google.com/compute/docs/reference/rest/v1/networks/insert): `projects/`
@@ -24529,6 +24763,8 @@ module Google
24529
24763
 
24530
24764
  # Update properties of this object
24531
24765
  def update!(**args)
24766
+ @forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
24767
+ @ip_address = args[:ip_address] if args.key?(:ip_address)
24532
24768
  @network = args[:network] if args.key?(:network)
24533
24769
  @project_id = args[:project_id] if args.key?(:project_id)
24534
24770
  end
@@ -24921,15 +25157,17 @@ module Google
24921
25157
  class GoogleCloudAiplatformV1beta1Part
24922
25158
  include Google::Apis::Core::Hashable
24923
25159
 
24924
- # Result of executing the [ExecutableCode]. Always follows a `part` containing
24925
- # the [ExecutableCode].
25160
+ # Result of executing the [ExecutableCode]. Only generated when using the [
25161
+ # CodeExecution] tool, and always follows a `part` containing the [
25162
+ # ExecutableCode].
24926
25163
  # Corresponds to the JSON property `codeExecutionResult`
24927
25164
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1CodeExecutionResult]
24928
25165
  attr_accessor :code_execution_result
24929
25166
 
24930
25167
  # Code generated by the model that is meant to be executed, and the result
24931
- # returned to the model. Generated when using the [FunctionDeclaration] tool and
24932
- # [FunctionCallingConfig] mode is set to [Mode.CODE].
25168
+ # returned to the model. Generated when using the [CodeExecution] tool, in which
25169
+ # the code will be automatically executed, and a corresponding [
25170
+ # CodeExecutionResult] will also be generated.
24933
25171
  # Corresponds to the JSON property `executableCode`
24934
25172
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExecutableCode]
24935
25173
  attr_accessor :executable_code
@@ -39553,9 +39791,8 @@ module Google
39553
39791
  # @return [String]
39554
39792
  attr_accessor :display_name
39555
39793
 
39556
- # Required. Identifier. The resource name of the session. Format: 'projects/`
39557
- # project`/locations/`location`/reasoningEngines/`reasoning_engine`/sessions/`
39558
- # session`'.
39794
+ # Identifier. The resource name of the session. Format: 'projects/`project`/
39795
+ # locations/`location`/reasoningEngines/`reasoning_engine`/sessions/`session`'.
39559
39796
  # Corresponds to the JSON property `name`
39560
39797
  # @return [String]
39561
39798
  attr_accessor :name
@@ -39633,9 +39870,9 @@ module Google
39633
39870
  # @return [String]
39634
39871
  attr_accessor :invocation_id
39635
39872
 
39636
- # Required. Identifier. The resource name of the event. Format:`projects/`
39637
- # project`/locations/`location`/reasoningEngines/`reasoning_engine`/sessions/`
39638
- # session`/events/`event``.
39873
+ # Identifier. The resource name of the event. Format:`projects/`project`/
39874
+ # locations/`location`/reasoningEngines/`reasoning_engine`/sessions/`session`/
39875
+ # events/`event``.
39639
39876
  # Corresponds to the JSON property `name`
39640
39877
  # @return [String]
39641
39878
  attr_accessor :name
@@ -42139,14 +42376,16 @@ module Google
42139
42376
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SupervisedHyperParameters]
42140
42377
  attr_accessor :hyper_parameters
42141
42378
 
42142
- # Required. Cloud Storage path to file containing training dataset for tuning.
42143
- # The dataset must be formatted as a JSONL file.
42379
+ # Required. Training dataset used for tuning. The dataset can be specified as
42380
+ # either a Cloud Storage path to a JSONL file or as the resource name of a
42381
+ # Vertex Multimodal Dataset.
42144
42382
  # Corresponds to the JSON property `trainingDatasetUri`
42145
42383
  # @return [String]
42146
42384
  attr_accessor :training_dataset_uri
42147
42385
 
42148
- # Optional. Cloud Storage path to file containing validation dataset for tuning.
42149
- # The dataset must be formatted as a JSONL file.
42386
+ # Optional. Validation dataset used for tuning. The dataset can be specified as
42387
+ # either a Cloud Storage path to a JSONL file or as the resource name of a
42388
+ # Vertex Multimodal Dataset.
42150
42389
  # Corresponds to the JSON property `validationDatasetUri`
42151
42390
  # @return [String]
42152
42391
  attr_accessor :validation_dataset_uri
@@ -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.47.0"
19
+ GEM_VERSION = "0.48.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250519"
25
+ REVISION = "20250527"
26
26
  end
27
27
  end
28
28
  end
@@ -742,6 +742,12 @@ module Google
742
742
  include Google::Apis::Core::JsonObjectSupport
743
743
  end
744
744
 
745
+ class GoogleCloudAiplatformV1beta1ColabImage
746
+ class Representation < Google::Apis::Core::JsonRepresentation; end
747
+
748
+ include Google::Apis::Core::JsonObjectSupport
749
+ end
750
+
745
751
  class GoogleCloudAiplatformV1beta1CometInput
746
752
  class Representation < Google::Apis::Core::JsonRepresentation; end
747
753
 
@@ -2650,6 +2656,42 @@ module Google
2650
2656
  include Google::Apis::Core::JsonObjectSupport
2651
2657
  end
2652
2658
 
2659
+ class GoogleCloudAiplatformV1beta1ImportIndexRequest
2660
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2661
+
2662
+ include Google::Apis::Core::JsonObjectSupport
2663
+ end
2664
+
2665
+ class GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfig
2666
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2667
+
2668
+ include Google::Apis::Core::JsonObjectSupport
2669
+ end
2670
+
2671
+ class GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigBigQuerySourceConfig
2672
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2673
+
2674
+ include Google::Apis::Core::JsonObjectSupport
2675
+ end
2676
+
2677
+ class GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMapping
2678
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2679
+
2680
+ include Google::Apis::Core::JsonObjectSupport
2681
+ end
2682
+
2683
+ class GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingNumericRestrict
2684
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2685
+
2686
+ include Google::Apis::Core::JsonObjectSupport
2687
+ end
2688
+
2689
+ class GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingRestrict
2690
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2691
+
2692
+ include Google::Apis::Core::JsonObjectSupport
2693
+ end
2694
+
2653
2695
  class GoogleCloudAiplatformV1beta1ImportModelEvaluationRequest
2654
2696
  class Representation < Google::Apis::Core::JsonRepresentation; end
2655
2697
 
@@ -9121,6 +9163,14 @@ module Google
9121
9163
  end
9122
9164
  end
9123
9165
 
9166
+ class GoogleCloudAiplatformV1beta1ColabImage
9167
+ # @private
9168
+ class Representation < Google::Apis::Core::JsonRepresentation
9169
+ property :description, as: 'description'
9170
+ property :release_name, as: 'releaseName'
9171
+ end
9172
+ end
9173
+
9124
9174
  class GoogleCloudAiplatformV1beta1CometInput
9125
9175
  # @private
9126
9176
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -12230,6 +12280,7 @@ module Google
12230
12280
  class Representation < Google::Apis::Core::JsonRepresentation
12231
12281
  property :audio_timestamp, as: 'audioTimestamp'
12232
12282
  property :candidate_count, as: 'candidateCount'
12283
+ property :enable_affective_dialog, as: 'enableAffectiveDialog'
12233
12284
  property :frequency_penalty, as: 'frequencyPenalty'
12234
12285
  property :logprobs, as: 'logprobs'
12235
12286
  property :max_output_tokens, as: 'maxOutputTokens'
@@ -12555,6 +12606,63 @@ module Google
12555
12606
  end
12556
12607
  end
12557
12608
 
12609
+ class GoogleCloudAiplatformV1beta1ImportIndexRequest
12610
+ # @private
12611
+ class Representation < Google::Apis::Core::JsonRepresentation
12612
+ property :config, as: 'config', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfig::Representation
12613
+
12614
+ property :is_complete_overwrite, as: 'isCompleteOverwrite'
12615
+ end
12616
+ end
12617
+
12618
+ class GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfig
12619
+ # @private
12620
+ class Representation < Google::Apis::Core::JsonRepresentation
12621
+ property :big_query_source_config, as: 'bigQuerySourceConfig', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigBigQuerySourceConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigBigQuerySourceConfig::Representation
12622
+
12623
+ end
12624
+ end
12625
+
12626
+ class GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigBigQuerySourceConfig
12627
+ # @private
12628
+ class Representation < Google::Apis::Core::JsonRepresentation
12629
+ property :datapoint_field_mapping, as: 'datapointFieldMapping', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMapping, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMapping::Representation
12630
+
12631
+ property :table_path, as: 'tablePath'
12632
+ end
12633
+ end
12634
+
12635
+ class GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMapping
12636
+ # @private
12637
+ class Representation < Google::Apis::Core::JsonRepresentation
12638
+ property :embedding_column, as: 'embeddingColumn'
12639
+ property :id_column, as: 'idColumn'
12640
+ collection :metadata_columns, as: 'metadataColumns'
12641
+ collection :numeric_restricts, as: 'numericRestricts', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingNumericRestrict, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingNumericRestrict::Representation
12642
+
12643
+ collection :restricts, as: 'restricts', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingRestrict, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingRestrict::Representation
12644
+
12645
+ end
12646
+ end
12647
+
12648
+ class GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingNumericRestrict
12649
+ # @private
12650
+ class Representation < Google::Apis::Core::JsonRepresentation
12651
+ property :namespace, as: 'namespace'
12652
+ property :value_column, as: 'valueColumn'
12653
+ property :value_type, as: 'valueType'
12654
+ end
12655
+ end
12656
+
12657
+ class GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingRestrict
12658
+ # @private
12659
+ class Representation < Google::Apis::Core::JsonRepresentation
12660
+ collection :allow_column, as: 'allowColumn'
12661
+ collection :deny_column, as: 'denyColumn'
12662
+ property :namespace, as: 'namespace'
12663
+ end
12664
+ end
12665
+
12558
12666
  class GoogleCloudAiplatformV1beta1ImportModelEvaluationRequest
12559
12667
  # @private
12560
12668
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -14952,6 +15060,8 @@ module Google
14952
15060
  class GoogleCloudAiplatformV1beta1NotebookSoftwareConfig
14953
15061
  # @private
14954
15062
  class Representation < Google::Apis::Core::JsonRepresentation
15063
+ property :colab_image, as: 'colabImage', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ColabImage, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ColabImage::Representation
15064
+
14955
15065
  collection :env, as: 'env', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EnvVar, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EnvVar::Representation
14956
15066
 
14957
15067
  property :post_startup_script_config, as: 'postStartupScriptConfig', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PostStartupScriptConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PostStartupScriptConfig::Representation
@@ -14970,6 +15080,8 @@ module Google
14970
15080
  class GoogleCloudAiplatformV1beta1PscAutomationConfig
14971
15081
  # @private
14972
15082
  class Representation < Google::Apis::Core::JsonRepresentation
15083
+ property :forwarding_rule, as: 'forwardingRule'
15084
+ property :ip_address, as: 'ipAddress'
14973
15085
  property :network, as: 'network'
14974
15086
  property :project_id, as: 'projectId'
14975
15087
  end