google-apis-aiplatform_v1 0.54.0 → 0.55.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: 762ba7e7b8af479155ad480eae311263b64b24b380670179c5f0ae08f6c29dec
|
4
|
+
data.tar.gz: 2f73bc60683be92f1ae5e0e3feec10d2986016135f5789e1d94277fc4f862e63
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 53223e4367c41f8045115f029d37295c930c5b9737f4e2af94dacd284114dc18f54360db465f67f478794c751e95077d8fec29e2ac0fa835f26d600f4a2ddce5
|
7
|
+
data.tar.gz: c18404c032cd30f9b9859b9ee7d279741ed3666496dc1e78b2cc0ef7dedc46a4e122107ce9e6c2b2c92c7790452f4b2644a2c707d3adb864d98ff1d2147a21be
|
data/CHANGELOG.md
CHANGED
@@ -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)
|
@@ -21198,6 +21241,11 @@ module Google
|
|
21198
21241
|
# @return [String]
|
21199
21242
|
attr_accessor :network
|
21200
21243
|
|
21244
|
+
# Configuration for PSC-I.
|
21245
|
+
# Corresponds to the JSON property `pscInterfaceConfig`
|
21246
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PscInterfaceConfig]
|
21247
|
+
attr_accessor :psc_interface_config
|
21248
|
+
|
21201
21249
|
# Optional. A list of names for the reserved IP ranges under the VPC network
|
21202
21250
|
# that can be used for this persistent resource. If set, we will deploy the
|
21203
21251
|
# persistent resource within the provided IP ranges. Otherwise, the persistent
|
@@ -21265,6 +21313,7 @@ module Google
|
|
21265
21313
|
@labels = args[:labels] if args.key?(:labels)
|
21266
21314
|
@name = args[:name] if args.key?(:name)
|
21267
21315
|
@network = args[:network] if args.key?(:network)
|
21316
|
+
@psc_interface_config = args[:psc_interface_config] if args.key?(:psc_interface_config)
|
21268
21317
|
@reserved_ip_ranges = args[:reserved_ip_ranges] if args.key?(:reserved_ip_ranges)
|
21269
21318
|
@resource_pools = args[:resource_pools] if args.key?(:resource_pools)
|
21270
21319
|
@resource_runtime = args[:resource_runtime] if args.key?(:resource_runtime)
|
@@ -21359,6 +21408,11 @@ module Google
|
|
21359
21408
|
attr_accessor :preflight_validations
|
21360
21409
|
alias_method :preflight_validations?, :preflight_validations
|
21361
21410
|
|
21411
|
+
# Configuration for PSC-I.
|
21412
|
+
# Corresponds to the JSON property `pscInterfaceConfig`
|
21413
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PscInterfaceConfig]
|
21414
|
+
attr_accessor :psc_interface_config
|
21415
|
+
|
21362
21416
|
# A list of names for the reserved ip ranges under the VPC network that can be
|
21363
21417
|
# used for this Pipeline Job's workload. If set, we will deploy the Pipeline Job'
|
21364
21418
|
# s workload within the provided ip ranges. Otherwise, the job will be deployed
|
@@ -21434,6 +21488,7 @@ module Google
|
|
21434
21488
|
@network = args[:network] if args.key?(:network)
|
21435
21489
|
@pipeline_spec = args[:pipeline_spec] if args.key?(:pipeline_spec)
|
21436
21490
|
@preflight_validations = args[:preflight_validations] if args.key?(:preflight_validations)
|
21491
|
+
@psc_interface_config = args[:psc_interface_config] if args.key?(:psc_interface_config)
|
21437
21492
|
@reserved_ip_ranges = args[:reserved_ip_ranges] if args.key?(:reserved_ip_ranges)
|
21438
21493
|
@runtime_config = args[:runtime_config] if args.key?(:runtime_config)
|
21439
21494
|
@schedule_name = args[:schedule_name] if args.key?(:schedule_name)
|
@@ -22615,6 +22670,30 @@ module Google
|
|
22615
22670
|
end
|
22616
22671
|
end
|
22617
22672
|
|
22673
|
+
# Configuration for PSC-I.
|
22674
|
+
class GoogleCloudAiplatformV1PscInterfaceConfig
|
22675
|
+
include Google::Apis::Core::Hashable
|
22676
|
+
|
22677
|
+
# Optional. The name of the Compute Engine [network attachment](https://cloud.
|
22678
|
+
# google.com/vpc/docs/about-network-attachments) to attach to the resource
|
22679
|
+
# within the region and user project. To specify this field, you must have
|
22680
|
+
# already [created a network attachment] (https://cloud.google.com/vpc/docs/
|
22681
|
+
# create-manage-network-attachments#create-network-attachments). This field is
|
22682
|
+
# only used for resources using PSC-I.
|
22683
|
+
# Corresponds to the JSON property `networkAttachment`
|
22684
|
+
# @return [String]
|
22685
|
+
attr_accessor :network_attachment
|
22686
|
+
|
22687
|
+
def initialize(**args)
|
22688
|
+
update!(**args)
|
22689
|
+
end
|
22690
|
+
|
22691
|
+
# Update properties of this object
|
22692
|
+
def update!(**args)
|
22693
|
+
@network_attachment = args[:network_attachment] if args.key?(:network_attachment)
|
22694
|
+
end
|
22695
|
+
end
|
22696
|
+
|
22618
22697
|
# A Model Garden Publisher Model.
|
22619
22698
|
class GoogleCloudAiplatformV1PublisherModel
|
22620
22699
|
include Google::Apis::Core::Hashable
|
@@ -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.55.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 = "20250529"
|
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
|
|
@@ -8403,6 +8409,8 @@ module Google
|
|
8403
8409
|
property :network, as: 'network'
|
8404
8410
|
property :persistent_resource_id, as: 'persistentResourceId'
|
8405
8411
|
property :protected_artifact_location_id, as: 'protectedArtifactLocationId'
|
8412
|
+
property :psc_interface_config, as: 'pscInterfaceConfig', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PscInterfaceConfig, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PscInterfaceConfig::Representation
|
8413
|
+
|
8406
8414
|
collection :reserved_ip_ranges, as: 'reservedIpRanges'
|
8407
8415
|
property :scheduling, as: 'scheduling', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Scheduling, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Scheduling::Representation
|
8408
8416
|
|
@@ -10277,8 +10285,10 @@ module Google
|
|
10277
10285
|
property :name, as: 'name'
|
10278
10286
|
property :parameters, as: 'parameters', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema::Representation
|
10279
10287
|
|
10288
|
+
property :parameters_json_schema, as: 'parametersJsonSchema'
|
10280
10289
|
property :response, as: 'response', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema::Representation
|
10281
10290
|
|
10291
|
+
property :response_json_schema, as: 'responseJsonSchema'
|
10282
10292
|
end
|
10283
10293
|
end
|
10284
10294
|
|
@@ -10416,6 +10426,7 @@ module Google
|
|
10416
10426
|
property :max_output_tokens, as: 'maxOutputTokens'
|
10417
10427
|
property :media_resolution, as: 'mediaResolution'
|
10418
10428
|
property :presence_penalty, as: 'presencePenalty'
|
10429
|
+
property :response_json_schema, as: 'responseJsonSchema'
|
10419
10430
|
property :response_logprobs, as: 'responseLogprobs'
|
10420
10431
|
property :response_mime_type, as: 'responseMimeType'
|
10421
10432
|
collection :response_modalities, as: 'responseModalities'
|
@@ -12852,6 +12863,8 @@ module Google
|
|
12852
12863
|
hash :labels, as: 'labels'
|
12853
12864
|
property :name, as: 'name'
|
12854
12865
|
property :network, as: 'network'
|
12866
|
+
property :psc_interface_config, as: 'pscInterfaceConfig', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PscInterfaceConfig, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PscInterfaceConfig::Representation
|
12867
|
+
|
12855
12868
|
collection :reserved_ip_ranges, as: 'reservedIpRanges'
|
12856
12869
|
collection :resource_pools, as: 'resourcePools', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ResourcePool, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ResourcePool::Representation
|
12857
12870
|
|
@@ -12884,6 +12897,8 @@ module Google
|
|
12884
12897
|
property :network, as: 'network'
|
12885
12898
|
hash :pipeline_spec, as: 'pipelineSpec'
|
12886
12899
|
property :preflight_validations, as: 'preflightValidations'
|
12900
|
+
property :psc_interface_config, as: 'pscInterfaceConfig', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PscInterfaceConfig, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PscInterfaceConfig::Representation
|
12901
|
+
|
12887
12902
|
collection :reserved_ip_ranges, as: 'reservedIpRanges'
|
12888
12903
|
property :runtime_config, as: 'runtimeConfig', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PipelineJobRuntimeConfig, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PipelineJobRuntimeConfig::Representation
|
12889
12904
|
|
@@ -13222,6 +13237,13 @@ module Google
|
|
13222
13237
|
end
|
13223
13238
|
end
|
13224
13239
|
|
13240
|
+
class GoogleCloudAiplatformV1PscInterfaceConfig
|
13241
|
+
# @private
|
13242
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
13243
|
+
property :network_attachment, as: 'networkAttachment'
|
13244
|
+
end
|
13245
|
+
end
|
13246
|
+
|
13225
13247
|
class GoogleCloudAiplatformV1PublisherModel
|
13226
13248
|
# @private
|
13227
13249
|
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.55.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.55.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:
|