google-apis-aiplatform_v1 0.54.0 → 0.56.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4bcf24d4010f97cb7b928af26c22535dc303d8958ca4163743ef5e2374684d35
|
4
|
+
data.tar.gz: 39b35db6200d3055f33f0d1907bc44a1211882095a7229e27ff696e5224bbfc9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b786d153cc14345949c9122b8051aa391527da461ca10e76ec5498038ea45372460a271b99d47bb7c179bba0edd465575ce4f89e9c74fcef43a7a58b6baa0aae
|
7
|
+
data.tar.gz: 960262acd924dbe09ad661eb2e7c877238b78452095f0ea1f1f4619bf16988313187619e0780ae5c91b4353a68ab9eda6cb1aff915060afb8054c2a2b7f0cf30
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-aiplatform_v1
|
2
2
|
|
3
|
+
### v0.56.0 (2025-06-15)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250602
|
6
|
+
|
7
|
+
### v0.55.0 (2025-06-08)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250529
|
10
|
+
|
3
11
|
### v0.54.0 (2025-06-01)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250527
|
@@ -5122,6 +5122,11 @@ module Google
|
|
5122
5122
|
# @return [String]
|
5123
5123
|
attr_accessor :protected_artifact_location_id
|
5124
5124
|
|
5125
|
+
# Configuration for PSC-I.
|
5126
|
+
# Corresponds to the JSON property `pscInterfaceConfig`
|
5127
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PscInterfaceConfig]
|
5128
|
+
attr_accessor :psc_interface_config
|
5129
|
+
|
5125
5130
|
# Optional. A list of names for the reserved ip ranges under the VPC network
|
5126
5131
|
# that can be used for this job. If set, we will deploy the job within the
|
5127
5132
|
# provided ip ranges. Otherwise, the job will be deployed to any ip ranges under
|
@@ -5172,6 +5177,7 @@ module Google
|
|
5172
5177
|
@network = args[:network] if args.key?(:network)
|
5173
5178
|
@persistent_resource_id = args[:persistent_resource_id] if args.key?(:persistent_resource_id)
|
5174
5179
|
@protected_artifact_location_id = args[:protected_artifact_location_id] if args.key?(:protected_artifact_location_id)
|
5180
|
+
@psc_interface_config = args[:psc_interface_config] if args.key?(:psc_interface_config)
|
5175
5181
|
@reserved_ip_ranges = args[:reserved_ip_ranges] if args.key?(:reserved_ip_ranges)
|
5176
5182
|
@scheduling = args[:scheduling] if args.key?(:scheduling)
|
5177
5183
|
@service_account = args[:service_account] if args.key?(:service_account)
|
@@ -12047,6 +12053,16 @@ module Google
|
|
12047
12053
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema]
|
12048
12054
|
attr_accessor :parameters
|
12049
12055
|
|
12056
|
+
# Optional. Describes the parameters to the function in JSON Schema format. The
|
12057
|
+
# schema must describe an object where the properties are the parameters to the
|
12058
|
+
# function. For example: ``` ` "type": "object", "properties": ` "name": ` "type"
|
12059
|
+
# : "string" `, "age": ` "type": "integer" ` `, "additionalProperties": false, "
|
12060
|
+
# required": ["name", "age"], "propertyOrdering": ["name", "age"] ` ``` This
|
12061
|
+
# field is mutually exclusive with `parameters`.
|
12062
|
+
# Corresponds to the JSON property `parametersJsonSchema`
|
12063
|
+
# @return [Object]
|
12064
|
+
attr_accessor :parameters_json_schema
|
12065
|
+
|
12050
12066
|
# Schema is used to define the format of input/output data. Represents a select
|
12051
12067
|
# subset of an [OpenAPI 3.0 schema object](https://spec.openapis.org/oas/v3.0.3#
|
12052
12068
|
# schema-object). More fields may be added in the future as needed.
|
@@ -12054,6 +12070,13 @@ module Google
|
|
12054
12070
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema]
|
12055
12071
|
attr_accessor :response
|
12056
12072
|
|
12073
|
+
# Optional. Describes the output from this function in JSON Schema format. The
|
12074
|
+
# value specified by the schema is the response value of the function. This
|
12075
|
+
# field is mutually exclusive with `response`.
|
12076
|
+
# Corresponds to the JSON property `responseJsonSchema`
|
12077
|
+
# @return [Object]
|
12078
|
+
attr_accessor :response_json_schema
|
12079
|
+
|
12057
12080
|
def initialize(**args)
|
12058
12081
|
update!(**args)
|
12059
12082
|
end
|
@@ -12063,7 +12086,9 @@ module Google
|
|
12063
12086
|
@description = args[:description] if args.key?(:description)
|
12064
12087
|
@name = args[:name] if args.key?(:name)
|
12065
12088
|
@parameters = args[:parameters] if args.key?(:parameters)
|
12089
|
+
@parameters_json_schema = args[:parameters_json_schema] if args.key?(:parameters_json_schema)
|
12066
12090
|
@response = args[:response] if args.key?(:response)
|
12091
|
+
@response_json_schema = args[:response_json_schema] if args.key?(:response_json_schema)
|
12067
12092
|
end
|
12068
12093
|
end
|
12069
12094
|
|
@@ -12542,6 +12567,23 @@ module Google
|
|
12542
12567
|
# @return [Float]
|
12543
12568
|
attr_accessor :presence_penalty
|
12544
12569
|
|
12570
|
+
# Optional. Output schema of the generated response. This is an alternative to `
|
12571
|
+
# response_schema` that accepts [JSON Schema](https://json-schema.org/). If set,
|
12572
|
+
# `response_schema` must be omitted, but `response_mime_type` is required. While
|
12573
|
+
# the full JSON Schema may be sent, not all features are supported. Specifically,
|
12574
|
+
# only the following properties are supported: - `$id` - `$defs` - `$ref` - `$
|
12575
|
+
# anchor` - `type` - `format` - `title` - `description` - `enum` (for strings
|
12576
|
+
# and numbers) - `items` - `prefixItems` - `minItems` - `maxItems` - `minimum` -
|
12577
|
+
# `maximum` - `anyOf` - `oneOf` (interpreted the same as `anyOf`) - `properties`
|
12578
|
+
# - `additionalProperties` - `required` The non-standard `propertyOrdering`
|
12579
|
+
# property may also be set. Cyclic references are unrolled to a limited degree
|
12580
|
+
# and, as such, may only be used within non-required properties. (Nullable
|
12581
|
+
# properties are not sufficient.) If `$ref` is set on a sub-schema, no other
|
12582
|
+
# properties, except for than those starting as a `$`, may be set.
|
12583
|
+
# Corresponds to the JSON property `responseJsonSchema`
|
12584
|
+
# @return [Object]
|
12585
|
+
attr_accessor :response_json_schema
|
12586
|
+
|
12545
12587
|
# Optional. If true, export the logprobs results in response.
|
12546
12588
|
# Corresponds to the JSON property `responseLogprobs`
|
12547
12589
|
# @return [Boolean]
|
@@ -12623,6 +12665,7 @@ module Google
|
|
12623
12665
|
@max_output_tokens = args[:max_output_tokens] if args.key?(:max_output_tokens)
|
12624
12666
|
@media_resolution = args[:media_resolution] if args.key?(:media_resolution)
|
12625
12667
|
@presence_penalty = args[:presence_penalty] if args.key?(:presence_penalty)
|
12668
|
+
@response_json_schema = args[:response_json_schema] if args.key?(:response_json_schema)
|
12626
12669
|
@response_logprobs = args[:response_logprobs] if args.key?(:response_logprobs)
|
12627
12670
|
@response_mime_type = args[:response_mime_type] if args.key?(:response_mime_type)
|
12628
12671
|
@response_modalities = args[:response_modalities] if args.key?(:response_modalities)
|
@@ -21055,12 +21098,19 @@ module Google
|
|
21055
21098
|
# @return [String]
|
21056
21099
|
attr_accessor :text
|
21057
21100
|
|
21058
|
-
#
|
21101
|
+
# Optional. Indicates if the part is thought from the model.
|
21059
21102
|
# Corresponds to the JSON property `thought`
|
21060
21103
|
# @return [Boolean]
|
21061
21104
|
attr_accessor :thought
|
21062
21105
|
alias_method :thought?, :thought
|
21063
21106
|
|
21107
|
+
# Optional. An opaque signature for the thought so it can be reused in
|
21108
|
+
# subsequent requests.
|
21109
|
+
# Corresponds to the JSON property `thoughtSignature`
|
21110
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
21111
|
+
# @return [String]
|
21112
|
+
attr_accessor :thought_signature
|
21113
|
+
|
21064
21114
|
# Metadata describes the input video content.
|
21065
21115
|
# Corresponds to the JSON property `videoMetadata`
|
21066
21116
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VideoMetadata]
|
@@ -21080,6 +21130,7 @@ module Google
|
|
21080
21130
|
@inline_data = args[:inline_data] if args.key?(:inline_data)
|
21081
21131
|
@text = args[:text] if args.key?(:text)
|
21082
21132
|
@thought = args[:thought] if args.key?(:thought)
|
21133
|
+
@thought_signature = args[:thought_signature] if args.key?(:thought_signature)
|
21083
21134
|
@video_metadata = args[:video_metadata] if args.key?(:video_metadata)
|
21084
21135
|
end
|
21085
21136
|
end
|
@@ -21198,6 +21249,11 @@ module Google
|
|
21198
21249
|
# @return [String]
|
21199
21250
|
attr_accessor :network
|
21200
21251
|
|
21252
|
+
# Configuration for PSC-I.
|
21253
|
+
# Corresponds to the JSON property `pscInterfaceConfig`
|
21254
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PscInterfaceConfig]
|
21255
|
+
attr_accessor :psc_interface_config
|
21256
|
+
|
21201
21257
|
# Optional. A list of names for the reserved IP ranges under the VPC network
|
21202
21258
|
# that can be used for this persistent resource. If set, we will deploy the
|
21203
21259
|
# persistent resource within the provided IP ranges. Otherwise, the persistent
|
@@ -21265,6 +21321,7 @@ module Google
|
|
21265
21321
|
@labels = args[:labels] if args.key?(:labels)
|
21266
21322
|
@name = args[:name] if args.key?(:name)
|
21267
21323
|
@network = args[:network] if args.key?(:network)
|
21324
|
+
@psc_interface_config = args[:psc_interface_config] if args.key?(:psc_interface_config)
|
21268
21325
|
@reserved_ip_ranges = args[:reserved_ip_ranges] if args.key?(:reserved_ip_ranges)
|
21269
21326
|
@resource_pools = args[:resource_pools] if args.key?(:resource_pools)
|
21270
21327
|
@resource_runtime = args[:resource_runtime] if args.key?(:resource_runtime)
|
@@ -21359,6 +21416,11 @@ module Google
|
|
21359
21416
|
attr_accessor :preflight_validations
|
21360
21417
|
alias_method :preflight_validations?, :preflight_validations
|
21361
21418
|
|
21419
|
+
# Configuration for PSC-I.
|
21420
|
+
# Corresponds to the JSON property `pscInterfaceConfig`
|
21421
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PscInterfaceConfig]
|
21422
|
+
attr_accessor :psc_interface_config
|
21423
|
+
|
21362
21424
|
# A list of names for the reserved ip ranges under the VPC network that can be
|
21363
21425
|
# used for this Pipeline Job's workload. If set, we will deploy the Pipeline Job'
|
21364
21426
|
# s workload within the provided ip ranges. Otherwise, the job will be deployed
|
@@ -21434,6 +21496,7 @@ module Google
|
|
21434
21496
|
@network = args[:network] if args.key?(:network)
|
21435
21497
|
@pipeline_spec = args[:pipeline_spec] if args.key?(:pipeline_spec)
|
21436
21498
|
@preflight_validations = args[:preflight_validations] if args.key?(:preflight_validations)
|
21499
|
+
@psc_interface_config = args[:psc_interface_config] if args.key?(:psc_interface_config)
|
21437
21500
|
@reserved_ip_ranges = args[:reserved_ip_ranges] if args.key?(:reserved_ip_ranges)
|
21438
21501
|
@runtime_config = args[:runtime_config] if args.key?(:runtime_config)
|
21439
21502
|
@schedule_name = args[:schedule_name] if args.key?(:schedule_name)
|
@@ -22615,6 +22678,30 @@ module Google
|
|
22615
22678
|
end
|
22616
22679
|
end
|
22617
22680
|
|
22681
|
+
# Configuration for PSC-I.
|
22682
|
+
class GoogleCloudAiplatformV1PscInterfaceConfig
|
22683
|
+
include Google::Apis::Core::Hashable
|
22684
|
+
|
22685
|
+
# Optional. The name of the Compute Engine [network attachment](https://cloud.
|
22686
|
+
# google.com/vpc/docs/about-network-attachments) to attach to the resource
|
22687
|
+
# within the region and user project. To specify this field, you must have
|
22688
|
+
# already [created a network attachment] (https://cloud.google.com/vpc/docs/
|
22689
|
+
# create-manage-network-attachments#create-network-attachments). This field is
|
22690
|
+
# only used for resources using PSC-I.
|
22691
|
+
# Corresponds to the JSON property `networkAttachment`
|
22692
|
+
# @return [String]
|
22693
|
+
attr_accessor :network_attachment
|
22694
|
+
|
22695
|
+
def initialize(**args)
|
22696
|
+
update!(**args)
|
22697
|
+
end
|
22698
|
+
|
22699
|
+
# Update properties of this object
|
22700
|
+
def update!(**args)
|
22701
|
+
@network_attachment = args[:network_attachment] if args.key?(:network_attachment)
|
22702
|
+
end
|
22703
|
+
end
|
22704
|
+
|
22618
22705
|
# A Model Garden Publisher Model.
|
22619
22706
|
class GoogleCloudAiplatformV1PublisherModel
|
22620
22707
|
include Google::Apis::Core::Hashable
|
@@ -37016,6 +37103,11 @@ module Google
|
|
37016
37103
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolCodeExecution]
|
37017
37104
|
attr_accessor :code_execution
|
37018
37105
|
|
37106
|
+
# Tool to support computer use.
|
37107
|
+
# Corresponds to the JSON property `computerUse`
|
37108
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolComputerUse]
|
37109
|
+
attr_accessor :computer_use
|
37110
|
+
|
37019
37111
|
# Tool to search public web data, powered by Vertex AI Search and Sec4
|
37020
37112
|
# compliance.
|
37021
37113
|
# Corresponds to the JSON property `enterpriseWebSearch`
|
@@ -37048,6 +37140,11 @@ module Google
|
|
37048
37140
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Retrieval]
|
37049
37141
|
attr_accessor :retrieval
|
37050
37142
|
|
37143
|
+
# Tool to support URL context.
|
37144
|
+
# Corresponds to the JSON property `urlContext`
|
37145
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1UrlContext]
|
37146
|
+
attr_accessor :url_context
|
37147
|
+
|
37051
37148
|
def initialize(**args)
|
37052
37149
|
update!(**args)
|
37053
37150
|
end
|
@@ -37055,11 +37152,13 @@ module Google
|
|
37055
37152
|
# Update properties of this object
|
37056
37153
|
def update!(**args)
|
37057
37154
|
@code_execution = args[:code_execution] if args.key?(:code_execution)
|
37155
|
+
@computer_use = args[:computer_use] if args.key?(:computer_use)
|
37058
37156
|
@enterprise_web_search = args[:enterprise_web_search] if args.key?(:enterprise_web_search)
|
37059
37157
|
@function_declarations = args[:function_declarations] if args.key?(:function_declarations)
|
37060
37158
|
@google_search = args[:google_search] if args.key?(:google_search)
|
37061
37159
|
@google_search_retrieval = args[:google_search_retrieval] if args.key?(:google_search_retrieval)
|
37062
37160
|
@retrieval = args[:retrieval] if args.key?(:retrieval)
|
37161
|
+
@url_context = args[:url_context] if args.key?(:url_context)
|
37063
37162
|
end
|
37064
37163
|
end
|
37065
37164
|
|
@@ -37204,6 +37303,25 @@ module Google
|
|
37204
37303
|
end
|
37205
37304
|
end
|
37206
37305
|
|
37306
|
+
# Tool to support computer use.
|
37307
|
+
class GoogleCloudAiplatformV1ToolComputerUse
|
37308
|
+
include Google::Apis::Core::Hashable
|
37309
|
+
|
37310
|
+
# Required. The environment being operated.
|
37311
|
+
# Corresponds to the JSON property `environment`
|
37312
|
+
# @return [String]
|
37313
|
+
attr_accessor :environment
|
37314
|
+
|
37315
|
+
def initialize(**args)
|
37316
|
+
update!(**args)
|
37317
|
+
end
|
37318
|
+
|
37319
|
+
# Update properties of this object
|
37320
|
+
def update!(**args)
|
37321
|
+
@environment = args[:environment] if args.key?(:environment)
|
37322
|
+
end
|
37323
|
+
end
|
37324
|
+
|
37207
37325
|
# Tool config. This config is shared for all tools provided in the request.
|
37208
37326
|
class GoogleCloudAiplatformV1ToolConfig
|
37209
37327
|
include Google::Apis::Core::Hashable
|
@@ -39488,6 +39606,19 @@ module Google
|
|
39488
39606
|
end
|
39489
39607
|
end
|
39490
39608
|
|
39609
|
+
# Tool to support URL context.
|
39610
|
+
class GoogleCloudAiplatformV1UrlContext
|
39611
|
+
include Google::Apis::Core::Hashable
|
39612
|
+
|
39613
|
+
def initialize(**args)
|
39614
|
+
update!(**args)
|
39615
|
+
end
|
39616
|
+
|
39617
|
+
# Update properties of this object
|
39618
|
+
def update!(**args)
|
39619
|
+
end
|
39620
|
+
end
|
39621
|
+
|
39491
39622
|
# References an API call. It contains more information about long running
|
39492
39623
|
# operation and Jobs that are triggered by the API call.
|
39493
39624
|
class GoogleCloudAiplatformV1UserActionReference
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AiplatformV1
|
18
18
|
# Version of the google-apis-aiplatform_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.56.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 = "
|
25
|
+
REVISION = "20250602"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -3622,6 +3622,12 @@ module Google
|
|
3622
3622
|
include Google::Apis::Core::JsonObjectSupport
|
3623
3623
|
end
|
3624
3624
|
|
3625
|
+
class GoogleCloudAiplatformV1PscInterfaceConfig
|
3626
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3627
|
+
|
3628
|
+
include Google::Apis::Core::JsonObjectSupport
|
3629
|
+
end
|
3630
|
+
|
3625
3631
|
class GoogleCloudAiplatformV1PublisherModel
|
3626
3632
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3627
3633
|
|
@@ -6136,6 +6142,12 @@ module Google
|
|
6136
6142
|
include Google::Apis::Core::JsonObjectSupport
|
6137
6143
|
end
|
6138
6144
|
|
6145
|
+
class GoogleCloudAiplatformV1ToolComputerUse
|
6146
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6147
|
+
|
6148
|
+
include Google::Apis::Core::JsonObjectSupport
|
6149
|
+
end
|
6150
|
+
|
6139
6151
|
class GoogleCloudAiplatformV1ToolConfig
|
6140
6152
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6141
6153
|
|
@@ -6676,6 +6688,12 @@ module Google
|
|
6676
6688
|
include Google::Apis::Core::JsonObjectSupport
|
6677
6689
|
end
|
6678
6690
|
|
6691
|
+
class GoogleCloudAiplatformV1UrlContext
|
6692
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6693
|
+
|
6694
|
+
include Google::Apis::Core::JsonObjectSupport
|
6695
|
+
end
|
6696
|
+
|
6679
6697
|
class GoogleCloudAiplatformV1UserActionReference
|
6680
6698
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6681
6699
|
|
@@ -8403,6 +8421,8 @@ module Google
|
|
8403
8421
|
property :network, as: 'network'
|
8404
8422
|
property :persistent_resource_id, as: 'persistentResourceId'
|
8405
8423
|
property :protected_artifact_location_id, as: 'protectedArtifactLocationId'
|
8424
|
+
property :psc_interface_config, as: 'pscInterfaceConfig', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PscInterfaceConfig, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PscInterfaceConfig::Representation
|
8425
|
+
|
8406
8426
|
collection :reserved_ip_ranges, as: 'reservedIpRanges'
|
8407
8427
|
property :scheduling, as: 'scheduling', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Scheduling, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Scheduling::Representation
|
8408
8428
|
|
@@ -10277,8 +10297,10 @@ module Google
|
|
10277
10297
|
property :name, as: 'name'
|
10278
10298
|
property :parameters, as: 'parameters', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema::Representation
|
10279
10299
|
|
10300
|
+
property :parameters_json_schema, as: 'parametersJsonSchema'
|
10280
10301
|
property :response, as: 'response', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema::Representation
|
10281
10302
|
|
10303
|
+
property :response_json_schema, as: 'responseJsonSchema'
|
10282
10304
|
end
|
10283
10305
|
end
|
10284
10306
|
|
@@ -10416,6 +10438,7 @@ module Google
|
|
10416
10438
|
property :max_output_tokens, as: 'maxOutputTokens'
|
10417
10439
|
property :media_resolution, as: 'mediaResolution'
|
10418
10440
|
property :presence_penalty, as: 'presencePenalty'
|
10441
|
+
property :response_json_schema, as: 'responseJsonSchema'
|
10419
10442
|
property :response_logprobs, as: 'responseLogprobs'
|
10420
10443
|
property :response_mime_type, as: 'responseMimeType'
|
10421
10444
|
collection :response_modalities, as: 'responseModalities'
|
@@ -12815,6 +12838,7 @@ module Google
|
|
12815
12838
|
|
12816
12839
|
property :text, as: 'text'
|
12817
12840
|
property :thought, as: 'thought'
|
12841
|
+
property :thought_signature, :base64 => true, as: 'thoughtSignature'
|
12818
12842
|
property :video_metadata, as: 'videoMetadata', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VideoMetadata, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VideoMetadata::Representation
|
12819
12843
|
|
12820
12844
|
end
|
@@ -12852,6 +12876,8 @@ module Google
|
|
12852
12876
|
hash :labels, as: 'labels'
|
12853
12877
|
property :name, as: 'name'
|
12854
12878
|
property :network, as: 'network'
|
12879
|
+
property :psc_interface_config, as: 'pscInterfaceConfig', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PscInterfaceConfig, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PscInterfaceConfig::Representation
|
12880
|
+
|
12855
12881
|
collection :reserved_ip_ranges, as: 'reservedIpRanges'
|
12856
12882
|
collection :resource_pools, as: 'resourcePools', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ResourcePool, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ResourcePool::Representation
|
12857
12883
|
|
@@ -12884,6 +12910,8 @@ module Google
|
|
12884
12910
|
property :network, as: 'network'
|
12885
12911
|
hash :pipeline_spec, as: 'pipelineSpec'
|
12886
12912
|
property :preflight_validations, as: 'preflightValidations'
|
12913
|
+
property :psc_interface_config, as: 'pscInterfaceConfig', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PscInterfaceConfig, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PscInterfaceConfig::Representation
|
12914
|
+
|
12887
12915
|
collection :reserved_ip_ranges, as: 'reservedIpRanges'
|
12888
12916
|
property :runtime_config, as: 'runtimeConfig', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PipelineJobRuntimeConfig, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PipelineJobRuntimeConfig::Representation
|
12889
12917
|
|
@@ -13222,6 +13250,13 @@ module Google
|
|
13222
13250
|
end
|
13223
13251
|
end
|
13224
13252
|
|
13253
|
+
class GoogleCloudAiplatformV1PscInterfaceConfig
|
13254
|
+
# @private
|
13255
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
13256
|
+
property :network_attachment, as: 'networkAttachment'
|
13257
|
+
end
|
13258
|
+
end
|
13259
|
+
|
13225
13260
|
class GoogleCloudAiplatformV1PublisherModel
|
13226
13261
|
# @private
|
13227
13262
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -17279,6 +17314,8 @@ module Google
|
|
17279
17314
|
class Representation < Google::Apis::Core::JsonRepresentation
|
17280
17315
|
property :code_execution, as: 'codeExecution', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolCodeExecution, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolCodeExecution::Representation
|
17281
17316
|
|
17317
|
+
property :computer_use, as: 'computerUse', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolComputerUse, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolComputerUse::Representation
|
17318
|
+
|
17282
17319
|
property :enterprise_web_search, as: 'enterpriseWebSearch', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EnterpriseWebSearch, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EnterpriseWebSearch::Representation
|
17283
17320
|
|
17284
17321
|
collection :function_declarations, as: 'functionDeclarations', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FunctionDeclaration, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FunctionDeclaration::Representation
|
@@ -17289,6 +17326,8 @@ module Google
|
|
17289
17326
|
|
17290
17327
|
property :retrieval, as: 'retrieval', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Retrieval, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Retrieval::Representation
|
17291
17328
|
|
17329
|
+
property :url_context, as: 'urlContext', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1UrlContext, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1UrlContext::Representation
|
17330
|
+
|
17292
17331
|
end
|
17293
17332
|
end
|
17294
17333
|
|
@@ -17345,6 +17384,13 @@ module Google
|
|
17345
17384
|
end
|
17346
17385
|
end
|
17347
17386
|
|
17387
|
+
class GoogleCloudAiplatformV1ToolComputerUse
|
17388
|
+
# @private
|
17389
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
17390
|
+
property :environment, as: 'environment'
|
17391
|
+
end
|
17392
|
+
end
|
17393
|
+
|
17348
17394
|
class GoogleCloudAiplatformV1ToolConfig
|
17349
17395
|
# @private
|
17350
17396
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -18130,6 +18176,12 @@ module Google
|
|
18130
18176
|
end
|
18131
18177
|
end
|
18132
18178
|
|
18179
|
+
class GoogleCloudAiplatformV1UrlContext
|
18180
|
+
# @private
|
18181
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
18182
|
+
end
|
18183
|
+
end
|
18184
|
+
|
18133
18185
|
class GoogleCloudAiplatformV1UserActionReference
|
18134
18186
|
# @private
|
18135
18187
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-aiplatform_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.56.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1/v0.56.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|