google-apis-aiplatform_v1 0.66.0 → 0.67.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: 443a90be9f146cdb018c3c6b7ad2f550d7b3cd66125ae1808655cda064f5dc36
|
4
|
+
data.tar.gz: 01fd0ff47ca3dd2b7f660e95b76c2777474ce98cd581fcda81e6fb2832be35a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 63e7e5e8767a40dd75147b6d752c50eace42743bc34392ce0b7e25d76ef9dd30d53af8c451b999e0ceb5b9a068fa1155b43a745a0e0b744e6ab17c0387128fec
|
7
|
+
data.tar.gz: 42ac942cb32311e489f05192e8683a0da094a8897dbe437d9937ae70c40c71fecbc3ad744e5847531619491debd23240b5e988d40389ab4d1545849a60ec7173
|
data/CHANGELOG.md
CHANGED
@@ -1533,6 +1533,11 @@ module Google
|
|
1533
1533
|
attr_accessor :flip_enabled
|
1534
1534
|
alias_method :flip_enabled?, :flip_enabled
|
1535
1535
|
|
1536
|
+
# Generation config.
|
1537
|
+
# Corresponds to the JSON property `generationConfig`
|
1538
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenerationConfig]
|
1539
|
+
attr_accessor :generation_config
|
1540
|
+
|
1536
1541
|
# Optional. Number of samples for each instance in the dataset. If not specified,
|
1537
1542
|
# the default is 4. Minimum value is 1, maximum value is 32.
|
1538
1543
|
# Corresponds to the JSON property `samplingCount`
|
@@ -1547,6 +1552,7 @@ module Google
|
|
1547
1552
|
def update!(**args)
|
1548
1553
|
@autorater_model = args[:autorater_model] if args.key?(:autorater_model)
|
1549
1554
|
@flip_enabled = args[:flip_enabled] if args.key?(:flip_enabled)
|
1555
|
+
@generation_config = args[:generation_config] if args.key?(:generation_config)
|
1550
1556
|
@sampling_count = args[:sampling_count] if args.key?(:sampling_count)
|
1551
1557
|
end
|
1552
1558
|
end
|
@@ -2623,8 +2629,8 @@ module Google
|
|
2623
2629
|
# @return [String]
|
2624
2630
|
attr_accessor :prompt_column
|
2625
2631
|
|
2626
|
-
# Optional. The name of the column that contains the rubrics. This
|
2627
|
-
# evaluation_rubric.RubricGroup format
|
2632
|
+
# Optional. The name of the column that contains the rubrics. This is in
|
2633
|
+
# evaluation_rubric.RubricGroup format.
|
2628
2634
|
# Corresponds to the JSON property `rubricsColumn`
|
2629
2635
|
# @return [String]
|
2630
2636
|
attr_accessor :rubrics_column
|
@@ -8633,7 +8639,7 @@ module Google
|
|
8633
8639
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EvaluationResult]
|
8634
8640
|
attr_accessor :evaluation_response
|
8635
8641
|
|
8636
|
-
# The
|
8642
|
+
# The Cloud Storage object where the request or response is stored.
|
8637
8643
|
# Corresponds to the JSON property `gcsUri`
|
8638
8644
|
# @return [String]
|
8639
8645
|
attr_accessor :gcs_uri
|
@@ -13658,7 +13664,7 @@ module Google
|
|
13658
13664
|
# @return [Hash<String,Object>]
|
13659
13665
|
attr_accessor :args
|
13660
13666
|
|
13661
|
-
#
|
13667
|
+
# Optional. The name of the function to call. Matches [FunctionDeclaration.name].
|
13662
13668
|
# Corresponds to the JSON property `name`
|
13663
13669
|
# @return [String]
|
13664
13670
|
attr_accessor :name
|
@@ -18273,6 +18279,44 @@ module Google
|
|
18273
18279
|
end
|
18274
18280
|
end
|
18275
18281
|
|
18282
|
+
# Represents a mount configuration for Lustre file system.
|
18283
|
+
class GoogleCloudAiplatformV1LustreMount
|
18284
|
+
include Google::Apis::Core::Hashable
|
18285
|
+
|
18286
|
+
# Required. The name of the Lustre filesystem.
|
18287
|
+
# Corresponds to the JSON property `filesystem`
|
18288
|
+
# @return [String]
|
18289
|
+
attr_accessor :filesystem
|
18290
|
+
|
18291
|
+
# Required. IP address of the Lustre instance.
|
18292
|
+
# Corresponds to the JSON property `instanceIp`
|
18293
|
+
# @return [String]
|
18294
|
+
attr_accessor :instance_ip
|
18295
|
+
|
18296
|
+
# Required. Destination mount path. The Lustre file system will be mounted for
|
18297
|
+
# the user under /mnt/lustre/
|
18298
|
+
# Corresponds to the JSON property `mountPoint`
|
18299
|
+
# @return [String]
|
18300
|
+
attr_accessor :mount_point
|
18301
|
+
|
18302
|
+
# Required. The unique identifier of the Lustre volume.
|
18303
|
+
# Corresponds to the JSON property `volumeHandle`
|
18304
|
+
# @return [String]
|
18305
|
+
attr_accessor :volume_handle
|
18306
|
+
|
18307
|
+
def initialize(**args)
|
18308
|
+
update!(**args)
|
18309
|
+
end
|
18310
|
+
|
18311
|
+
# Update properties of this object
|
18312
|
+
def update!(**args)
|
18313
|
+
@filesystem = args[:filesystem] if args.key?(:filesystem)
|
18314
|
+
@instance_ip = args[:instance_ip] if args.key?(:instance_ip)
|
18315
|
+
@mount_point = args[:mount_point] if args.key?(:mount_point)
|
18316
|
+
@volume_handle = args[:volume_handle] if args.key?(:volume_handle)
|
18317
|
+
end
|
18318
|
+
end
|
18319
|
+
|
18276
18320
|
# Specification of a single machine.
|
18277
18321
|
class GoogleCloudAiplatformV1MachineSpec
|
18278
18322
|
include Google::Apis::Core::Hashable
|
@@ -42822,6 +42866,11 @@ module Google
|
|
42822
42866
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DiskSpec]
|
42823
42867
|
attr_accessor :disk_spec
|
42824
42868
|
|
42869
|
+
# Optional. List of Lustre mounts.
|
42870
|
+
# Corresponds to the JSON property `lustreMounts`
|
42871
|
+
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1LustreMount>]
|
42872
|
+
attr_accessor :lustre_mounts
|
42873
|
+
|
42825
42874
|
# Specification of a single machine.
|
42826
42875
|
# Corresponds to the JSON property `machineSpec`
|
42827
42876
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MachineSpec]
|
@@ -42850,6 +42899,7 @@ module Google
|
|
42850
42899
|
def update!(**args)
|
42851
42900
|
@container_spec = args[:container_spec] if args.key?(:container_spec)
|
42852
42901
|
@disk_spec = args[:disk_spec] if args.key?(:disk_spec)
|
42902
|
+
@lustre_mounts = args[:lustre_mounts] if args.key?(:lustre_mounts)
|
42853
42903
|
@machine_spec = args[:machine_spec] if args.key?(:machine_spec)
|
42854
42904
|
@nfs_mounts = args[:nfs_mounts] if args.key?(:nfs_mounts)
|
42855
42905
|
@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 AiplatformV1
|
18
18
|
# Version of the google-apis-aiplatform_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.67.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 = "20250920"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -3034,6 +3034,12 @@ module Google
|
|
3034
3034
|
include Google::Apis::Core::JsonObjectSupport
|
3035
3035
|
end
|
3036
3036
|
|
3037
|
+
class GoogleCloudAiplatformV1LustreMount
|
3038
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3039
|
+
|
3040
|
+
include Google::Apis::Core::JsonObjectSupport
|
3041
|
+
end
|
3042
|
+
|
3037
3043
|
class GoogleCloudAiplatformV1MachineSpec
|
3038
3044
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3039
3045
|
|
@@ -7772,6 +7778,8 @@ module Google
|
|
7772
7778
|
class Representation < Google::Apis::Core::JsonRepresentation
|
7773
7779
|
property :autorater_model, as: 'autoraterModel'
|
7774
7780
|
property :flip_enabled, as: 'flipEnabled'
|
7781
|
+
property :generation_config, as: 'generationConfig', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenerationConfig, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenerationConfig::Representation
|
7782
|
+
|
7775
7783
|
property :sampling_count, as: 'samplingCount'
|
7776
7784
|
end
|
7777
7785
|
end
|
@@ -12603,6 +12611,16 @@ module Google
|
|
12603
12611
|
end
|
12604
12612
|
end
|
12605
12613
|
|
12614
|
+
class GoogleCloudAiplatformV1LustreMount
|
12615
|
+
# @private
|
12616
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
12617
|
+
property :filesystem, as: 'filesystem'
|
12618
|
+
property :instance_ip, as: 'instanceIp'
|
12619
|
+
property :mount_point, as: 'mountPoint'
|
12620
|
+
property :volume_handle, as: 'volumeHandle'
|
12621
|
+
end
|
12622
|
+
end
|
12623
|
+
|
12606
12624
|
class GoogleCloudAiplatformV1MachineSpec
|
12607
12625
|
# @private
|
12608
12626
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -19574,6 +19592,8 @@ module Google
|
|
19574
19592
|
|
19575
19593
|
property :disk_spec, as: 'diskSpec', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DiskSpec, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DiskSpec::Representation
|
19576
19594
|
|
19595
|
+
collection :lustre_mounts, as: 'lustreMounts', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1LustreMount, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1LustreMount::Representation
|
19596
|
+
|
19577
19597
|
property :machine_spec, as: 'machineSpec', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MachineSpec, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MachineSpec::Representation
|
19578
19598
|
|
19579
19599
|
collection :nfs_mounts, as: 'nfsMounts', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NfsMount, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NfsMount::Representation
|
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.67.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.67.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:
|