google-apis-aiplatform_v1 0.66.0 → 0.68.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: a20e2c9258c1e130c3165997ef84fb43b0b1a5eab15cd8100489595cad7c2379
4
- data.tar.gz: 4f22d4fd36c00895d8b4d156e91fedc2b313c21f65a85c465e317d331b6a8f6a
3
+ metadata.gz: 35c6cc21c381bac5f5254deb1a5a9e0606f9a6b6d2841f05a3c7d5fc2023c3d5
4
+ data.tar.gz: aef95c48d6565e8f4d8fb5097f0fba24ac2753b468fd38280f98f1b65c3d5523
5
5
  SHA512:
6
- metadata.gz: 48d871367a05225a7bc3673b4a692a975d754693b44a050b1be644ced476e0bcb0ac6020ae5d31f8b0b340cf232ccc76e99d1020062cee01a828d9ed6013995a
7
- data.tar.gz: e3b31c820dcdabea2c14929a6c42ea797e993244267c27757b562ec4d10612af89b13c4bd0d9e90cf5b5ab5bea0cf988892ceff4d997cf9d64808acbc621264d
6
+ metadata.gz: 7d309c56df9c8f7d92bd6615a0e61f286f2289c388e193c8b364085aa0e3425a8fd886ddef295459e2360583fdc3e85af49749f59d216fd65fc2fe0d803cfafa
7
+ data.tar.gz: cca7f23adcb8b91c8b97f6583fd17694c12948db37d4c4e11938029da233397f03841daf55d0b7c2dc8b0469a762182f33f12886932b399fca65dec65ca14c9d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-aiplatform_v1
2
2
 
3
+ ### v0.68.0 (2025-10-05)
4
+
5
+ * Regenerated from discovery document revision 20250926
6
+
7
+ ### v0.67.0 (2025-09-28)
8
+
9
+ * Regenerated from discovery document revision 20250920
10
+
3
11
  ### v0.66.0 (2025-09-21)
4
12
 
5
13
  * Regenerated from discovery document revision 20250916
@@ -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 will be in
2627
- # evaluation_rubric.RubricGroup format (cl/762595858).
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 GCS object where the request or response is stored.
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
- # Required. The name of the function to call. Matches [FunctionDeclaration.name].
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
@@ -27910,7 +27954,8 @@ module Google
27910
27954
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecDeploymentSpec]
27911
27955
  attr_accessor :deployment_spec
27912
27956
 
27913
- # User provided package spec like pickled object and package requirements.
27957
+ # User-provided package specification, containing pickled object and package
27958
+ # requirements.
27914
27959
  # Corresponds to the JSON property `packageSpec`
27915
27960
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecPackageSpec]
27916
27961
  attr_accessor :package_spec
@@ -28007,7 +28052,8 @@ module Google
28007
28052
  end
28008
28053
  end
28009
28054
 
28010
- # User provided package spec like pickled object and package requirements.
28055
+ # User-provided package specification, containing pickled object and package
28056
+ # requirements.
28011
28057
  class GoogleCloudAiplatformV1ReasoningEngineSpecPackageSpec
28012
28058
  include Google::Apis::Core::Hashable
28013
28059
 
@@ -42822,6 +42868,11 @@ module Google
42822
42868
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DiskSpec]
42823
42869
  attr_accessor :disk_spec
42824
42870
 
42871
+ # Optional. List of Lustre mounts.
42872
+ # Corresponds to the JSON property `lustreMounts`
42873
+ # @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1LustreMount>]
42874
+ attr_accessor :lustre_mounts
42875
+
42825
42876
  # Specification of a single machine.
42826
42877
  # Corresponds to the JSON property `machineSpec`
42827
42878
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MachineSpec]
@@ -42850,6 +42901,7 @@ module Google
42850
42901
  def update!(**args)
42851
42902
  @container_spec = args[:container_spec] if args.key?(:container_spec)
42852
42903
  @disk_spec = args[:disk_spec] if args.key?(:disk_spec)
42904
+ @lustre_mounts = args[:lustre_mounts] if args.key?(:lustre_mounts)
42853
42905
  @machine_spec = args[:machine_spec] if args.key?(:machine_spec)
42854
42906
  @nfs_mounts = args[:nfs_mounts] if args.key?(:nfs_mounts)
42855
42907
  @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.66.0"
19
+ GEM_VERSION = "0.68.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 = "20250916"
25
+ REVISION = "20250926"
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
@@ -11624,7 +11624,7 @@ module Google
11624
11624
  # projects/`project`/locations/`location``
11625
11625
  # @param [Fixnum] page_size
11626
11626
  # The maximum number of Metadata Stores to return. The service may return fewer.
11627
- # Must be in range 1-1000, inclusive. Defaults to 100.
11627
+ # Must be in range 1-100, inclusive. Defaults to 100.
11628
11628
  # @param [String] page_token
11629
11629
  # A page token, received from a previous MetadataService.ListMetadataStores call.
11630
11630
  # Provide this to retrieve the subsequent page. When paginating, all other
@@ -11803,7 +11803,7 @@ module Google
11803
11803
  # https://google.aip.dev/132#ordering for more details.
11804
11804
  # @param [Fixnum] page_size
11805
11805
  # The maximum number of Artifacts to return. The service may return fewer. Must
11806
- # be in range 1-1000, inclusive. Defaults to 100.
11806
+ # be in range 1-100, inclusive. Defaults to 100.
11807
11807
  # @param [String] page_token
11808
11808
  # A page token, received from a previous MetadataService.ListArtifacts call.
11809
11809
  # Provide this to retrieve the subsequent page. When paginating, all other
@@ -12376,7 +12376,7 @@ module Google
12376
12376
  # https://google.aip.dev/132#ordering for more details.
12377
12377
  # @param [Fixnum] page_size
12378
12378
  # The maximum number of Contexts to return. The service may return fewer. Must
12379
- # be in range 1-1000, inclusive. Defaults to 100.
12379
+ # be in range 1-100, inclusive. Defaults to 100.
12380
12380
  # @param [String] page_token
12381
12381
  # A page token, received from a previous MetadataService.ListContexts call.
12382
12382
  # Provide this to retrieve the subsequent page. When paginating, all other
@@ -12921,7 +12921,7 @@ module Google
12921
12921
  # https://google.aip.dev/132#ordering for more details.
12922
12922
  # @param [Fixnum] page_size
12923
12923
  # The maximum number of Executions to return. The service may return fewer. Must
12924
- # be in range 1-1000, inclusive. Defaults to 100.
12924
+ # be in range 1-100, inclusive. Defaults to 100.
12925
12925
  # @param [String] page_token
12926
12926
  # A page token, received from a previous MetadataService.ListExecutions call.
12927
12927
  # Provide this to retrieve the subsequent page. When paginating, all other
@@ -13331,7 +13331,7 @@ module Google
13331
13331
  # A query to filter available MetadataSchemas for matching results.
13332
13332
  # @param [Fixnum] page_size
13333
13333
  # The maximum number of MetadataSchemas to return. The service may return fewer.
13334
- # Must be in range 1-1000, inclusive. Defaults to 100.
13334
+ # Must be in range 1-100, inclusive. Defaults to 100.
13335
13335
  # @param [String] page_token
13336
13336
  # A page token, received from a previous MetadataService.ListMetadataSchemas
13337
13337
  # 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_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.66.0
4
+ version: 0.68.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.66.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1/v0.68.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: