google-apis-aiplatform_v1beta1 0.61.0 → 0.62.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/aiplatform_v1beta1/classes.rb +73 -6
- data/lib/google/apis/aiplatform_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/aiplatform_v1beta1/representations.rb +22 -0
- data/lib/google/apis/aiplatform_v1beta1/service.rb +5 -5
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a74915b2e8e15144a00b462278545c554897a2a98a190e670fb86ff519b28cc8
|
4
|
+
data.tar.gz: '0252914d36e40936c1242609472b349ce4ee5698c21ade3d6e68641c4e345613'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1f3ada38e05a9de267d507c709fafc41f153888766d51084516d230d6631e823bc73319e1407a9ebef6307a9f941b356e7bdd8ff9c6baed3c00db44799c8be74
|
7
|
+
data.tar.gz: d16bb7df548c1e9e2547d27f96c8938df4312873cefd10a4b3576bc6e951cad89e3188da75612a3a5dc9e55c3f3e014bd84192463511448c4ce19e755ecfab74
|
data/CHANGELOG.md
CHANGED
@@ -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
|
3008
|
-
# evaluation_rubric.RubricGroup format
|
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
|
@@ -9697,7 +9703,7 @@ module Google
|
|
9697
9703
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EvaluationResult]
|
9698
9704
|
attr_accessor :evaluation_response
|
9699
9705
|
|
9700
|
-
# The
|
9706
|
+
# The Cloud Storage object where the request or response is stored.
|
9701
9707
|
# Corresponds to the JSON property `gcsUri`
|
9702
9708
|
# @return [String]
|
9703
9709
|
attr_accessor :gcs_uri
|
@@ -15912,7 +15918,7 @@ module Google
|
|
15912
15918
|
# @return [String]
|
15913
15919
|
attr_accessor :id
|
15914
15920
|
|
15915
|
-
#
|
15921
|
+
# Optional. The name of the function to call. Matches [FunctionDeclaration.name].
|
15916
15922
|
# Corresponds to the JSON property `name`
|
15917
15923
|
# @return [String]
|
15918
15924
|
attr_accessor :name
|
@@ -21522,6 +21528,44 @@ module Google
|
|
21522
21528
|
end
|
21523
21529
|
end
|
21524
21530
|
|
21531
|
+
# Represents a mount configuration for Lustre file system.
|
21532
|
+
class GoogleCloudAiplatformV1beta1LustreMount
|
21533
|
+
include Google::Apis::Core::Hashable
|
21534
|
+
|
21535
|
+
# Required. The name of the Lustre filesystem.
|
21536
|
+
# Corresponds to the JSON property `filesystem`
|
21537
|
+
# @return [String]
|
21538
|
+
attr_accessor :filesystem
|
21539
|
+
|
21540
|
+
# Required. IP address of the Lustre instance.
|
21541
|
+
# Corresponds to the JSON property `instanceIp`
|
21542
|
+
# @return [String]
|
21543
|
+
attr_accessor :instance_ip
|
21544
|
+
|
21545
|
+
# Required. Destination mount path. The Lustre file system will be mounted for
|
21546
|
+
# the user under /mnt/lustre/
|
21547
|
+
# Corresponds to the JSON property `mountPoint`
|
21548
|
+
# @return [String]
|
21549
|
+
attr_accessor :mount_point
|
21550
|
+
|
21551
|
+
# Required. The unique identifier of the Lustre volume.
|
21552
|
+
# Corresponds to the JSON property `volumeHandle`
|
21553
|
+
# @return [String]
|
21554
|
+
attr_accessor :volume_handle
|
21555
|
+
|
21556
|
+
def initialize(**args)
|
21557
|
+
update!(**args)
|
21558
|
+
end
|
21559
|
+
|
21560
|
+
# Update properties of this object
|
21561
|
+
def update!(**args)
|
21562
|
+
@filesystem = args[:filesystem] if args.key?(:filesystem)
|
21563
|
+
@instance_ip = args[:instance_ip] if args.key?(:instance_ip)
|
21564
|
+
@mount_point = args[:mount_point] if args.key?(:mount_point)
|
21565
|
+
@volume_handle = args[:volume_handle] if args.key?(:volume_handle)
|
21566
|
+
end
|
21567
|
+
end
|
21568
|
+
|
21525
21569
|
# Specification of a single machine.
|
21526
21570
|
class GoogleCloudAiplatformV1beta1MachineSpec
|
21527
21571
|
include Google::Apis::Core::Hashable
|
@@ -33992,7 +34036,8 @@ module Google
|
|
33992
34036
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineSpecDeploymentSpec]
|
33993
34037
|
attr_accessor :deployment_spec
|
33994
34038
|
|
33995
|
-
# User
|
34039
|
+
# User-provided package specification, containing pickled object and package
|
34040
|
+
# requirements.
|
33996
34041
|
# Corresponds to the JSON property `packageSpec`
|
33997
34042
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineSpecPackageSpec]
|
33998
34043
|
attr_accessor :package_spec
|
@@ -34095,7 +34140,8 @@ module Google
|
|
34095
34140
|
end
|
34096
34141
|
end
|
34097
34142
|
|
34098
|
-
# User
|
34143
|
+
# User-provided package specification, containing pickled object and package
|
34144
|
+
# requirements.
|
34099
34145
|
class GoogleCloudAiplatformV1beta1ReasoningEngineSpecPackageSpec
|
34100
34146
|
include Google::Apis::Core::Hashable
|
34101
34147
|
|
@@ -36088,6 +36134,13 @@ module Google
|
|
36088
36134
|
# @return [String]
|
36089
36135
|
attr_accessor :display_name
|
36090
36136
|
|
36137
|
+
# Optional. Timestamp in UTC of when this SandboxEnvironment is considered
|
36138
|
+
# expired. This is *always* provided on output, regardless of what `expiration`
|
36139
|
+
# was sent on input.
|
36140
|
+
# Corresponds to the JSON property `expireTime`
|
36141
|
+
# @return [String]
|
36142
|
+
attr_accessor :expire_time
|
36143
|
+
|
36091
36144
|
# Identifier. The name of the SandboxEnvironment.
|
36092
36145
|
# Corresponds to the JSON property `name`
|
36093
36146
|
# @return [String]
|
@@ -36103,6 +36156,12 @@ module Google
|
|
36103
36156
|
# @return [String]
|
36104
36157
|
attr_accessor :state
|
36105
36158
|
|
36159
|
+
# Optional. Input only. The TTL for the sandbox environment. The expiration time
|
36160
|
+
# is computed: now + TTL.
|
36161
|
+
# Corresponds to the JSON property `ttl`
|
36162
|
+
# @return [String]
|
36163
|
+
attr_accessor :ttl
|
36164
|
+
|
36106
36165
|
# Output only. The timestamp when this SandboxEnvironment was most recently
|
36107
36166
|
# updated.
|
36108
36167
|
# Corresponds to the JSON property `updateTime`
|
@@ -36117,9 +36176,11 @@ module Google
|
|
36117
36176
|
def update!(**args)
|
36118
36177
|
@create_time = args[:create_time] if args.key?(:create_time)
|
36119
36178
|
@display_name = args[:display_name] if args.key?(:display_name)
|
36179
|
+
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
36120
36180
|
@name = args[:name] if args.key?(:name)
|
36121
36181
|
@spec = args[:spec] if args.key?(:spec)
|
36122
36182
|
@state = args[:state] if args.key?(:state)
|
36183
|
+
@ttl = args[:ttl] if args.key?(:ttl)
|
36123
36184
|
@update_time = args[:update_time] if args.key?(:update_time)
|
36124
36185
|
end
|
36125
36186
|
end
|
@@ -50874,6 +50935,11 @@ module Google
|
|
50874
50935
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DiskSpec]
|
50875
50936
|
attr_accessor :disk_spec
|
50876
50937
|
|
50938
|
+
# Optional. List of Lustre mounts.
|
50939
|
+
# Corresponds to the JSON property `lustreMounts`
|
50940
|
+
# @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1LustreMount>]
|
50941
|
+
attr_accessor :lustre_mounts
|
50942
|
+
|
50877
50943
|
# Specification of a single machine.
|
50878
50944
|
# Corresponds to the JSON property `machineSpec`
|
50879
50945
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MachineSpec]
|
@@ -50902,6 +50968,7 @@ module Google
|
|
50902
50968
|
def update!(**args)
|
50903
50969
|
@container_spec = args[:container_spec] if args.key?(:container_spec)
|
50904
50970
|
@disk_spec = args[:disk_spec] if args.key?(:disk_spec)
|
50971
|
+
@lustre_mounts = args[:lustre_mounts] if args.key?(:lustre_mounts)
|
50905
50972
|
@machine_spec = args[:machine_spec] if args.key?(:machine_spec)
|
50906
50973
|
@nfs_mounts = args[:nfs_mounts] if args.key?(:nfs_mounts)
|
50907
50974
|
@python_package_spec = args[:python_package_spec] if args.key?(:python_package_spec)
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.62.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 = "20250926"
|
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 GoogleCloudAiplatformV1beta1LustreMount
|
3626
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3627
|
+
|
3628
|
+
include Google::Apis::Core::JsonObjectSupport
|
3629
|
+
end
|
3630
|
+
|
3625
3631
|
class GoogleCloudAiplatformV1beta1MachineSpec
|
3626
3632
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3627
3633
|
|
@@ -9315,6 +9321,8 @@ module Google
|
|
9315
9321
|
class Representation < Google::Apis::Core::JsonRepresentation
|
9316
9322
|
property :autorater_model, as: 'autoraterModel'
|
9317
9323
|
property :flip_enabled, as: 'flipEnabled'
|
9324
|
+
property :generation_config, as: 'generationConfig', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerationConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerationConfig::Representation
|
9325
|
+
|
9318
9326
|
property :sampling_count, as: 'samplingCount'
|
9319
9327
|
end
|
9320
9328
|
end
|
@@ -15039,6 +15047,16 @@ module Google
|
|
15039
15047
|
end
|
15040
15048
|
end
|
15041
15049
|
|
15050
|
+
class GoogleCloudAiplatformV1beta1LustreMount
|
15051
|
+
# @private
|
15052
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15053
|
+
property :filesystem, as: 'filesystem'
|
15054
|
+
property :instance_ip, as: 'instanceIp'
|
15055
|
+
property :mount_point, as: 'mountPoint'
|
15056
|
+
property :volume_handle, as: 'volumeHandle'
|
15057
|
+
end
|
15058
|
+
end
|
15059
|
+
|
15042
15060
|
class GoogleCloudAiplatformV1beta1MachineSpec
|
15043
15061
|
# @private
|
15044
15062
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -19254,10 +19272,12 @@ module Google
|
|
19254
19272
|
class Representation < Google::Apis::Core::JsonRepresentation
|
19255
19273
|
property :create_time, as: 'createTime'
|
19256
19274
|
property :display_name, as: 'displayName'
|
19275
|
+
property :expire_time, as: 'expireTime'
|
19257
19276
|
property :name, as: 'name'
|
19258
19277
|
property :spec, as: 'spec', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SandboxEnvironmentSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SandboxEnvironmentSpec::Representation
|
19259
19278
|
|
19260
19279
|
property :state, as: 'state'
|
19280
|
+
property :ttl, as: 'ttl'
|
19261
19281
|
property :update_time, as: 'updateTime'
|
19262
19282
|
end
|
19263
19283
|
end
|
@@ -23458,6 +23478,8 @@ module Google
|
|
23458
23478
|
|
23459
23479
|
property :disk_spec, as: 'diskSpec', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DiskSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DiskSpec::Representation
|
23460
23480
|
|
23481
|
+
collection :lustre_mounts, as: 'lustreMounts', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1LustreMount, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1LustreMount::Representation
|
23482
|
+
|
23461
23483
|
property :machine_spec, as: 'machineSpec', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MachineSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MachineSpec::Representation
|
23462
23484
|
|
23463
23485
|
collection :nfs_mounts, as: 'nfsMounts', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NfsMount, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NfsMount::Representation
|
@@ -14770,7 +14770,7 @@ module Google
|
|
14770
14770
|
# projects/`project`/locations/`location``
|
14771
14771
|
# @param [Fixnum] page_size
|
14772
14772
|
# The maximum number of Metadata Stores to return. The service may return fewer.
|
14773
|
-
# Must be in range 1-
|
14773
|
+
# Must be in range 1-100, inclusive. Defaults to 100.
|
14774
14774
|
# @param [String] page_token
|
14775
14775
|
# A page token, received from a previous MetadataService.ListMetadataStores call.
|
14776
14776
|
# Provide this to retrieve the subsequent page. When paginating, all other
|
@@ -14949,7 +14949,7 @@ module Google
|
|
14949
14949
|
# https://google.aip.dev/132#ordering for more details.
|
14950
14950
|
# @param [Fixnum] page_size
|
14951
14951
|
# The maximum number of Artifacts to return. The service may return fewer. Must
|
14952
|
-
# be in range 1-
|
14952
|
+
# be in range 1-100, inclusive. Defaults to 100.
|
14953
14953
|
# @param [String] page_token
|
14954
14954
|
# A page token, received from a previous MetadataService.ListArtifacts call.
|
14955
14955
|
# Provide this to retrieve the subsequent page. When paginating, all other
|
@@ -15522,7 +15522,7 @@ module Google
|
|
15522
15522
|
# https://google.aip.dev/132#ordering for more details.
|
15523
15523
|
# @param [Fixnum] page_size
|
15524
15524
|
# The maximum number of Contexts to return. The service may return fewer. Must
|
15525
|
-
# be in range 1-
|
15525
|
+
# be in range 1-100, inclusive. Defaults to 100.
|
15526
15526
|
# @param [String] page_token
|
15527
15527
|
# A page token, received from a previous MetadataService.ListContexts call.
|
15528
15528
|
# Provide this to retrieve the subsequent page. When paginating, all other
|
@@ -16067,7 +16067,7 @@ module Google
|
|
16067
16067
|
# https://google.aip.dev/132#ordering for more details.
|
16068
16068
|
# @param [Fixnum] page_size
|
16069
16069
|
# The maximum number of Executions to return. The service may return fewer. Must
|
16070
|
-
# be in range 1-
|
16070
|
+
# be in range 1-100, inclusive. Defaults to 100.
|
16071
16071
|
# @param [String] page_token
|
16072
16072
|
# A page token, received from a previous MetadataService.ListExecutions call.
|
16073
16073
|
# Provide this to retrieve the subsequent page. When paginating, all other
|
@@ -16477,7 +16477,7 @@ module Google
|
|
16477
16477
|
# A query to filter available MetadataSchemas for matching results.
|
16478
16478
|
# @param [Fixnum] page_size
|
16479
16479
|
# The maximum number of MetadataSchemas to return. The service may return fewer.
|
16480
|
-
# Must be in range 1-
|
16480
|
+
# Must be in range 1-100, inclusive. Defaults to 100.
|
16481
16481
|
# @param [String] page_token
|
16482
16482
|
# A page token, received from a previous MetadataService.ListMetadataSchemas
|
16483
16483
|
# call. Provide this to retrieve the next page. When paginating, all other
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-aiplatform_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.62.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_v1beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1beta1/v0.62.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|