google-apis-aiplatform_v1 0.50.0 → 0.51.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: 2c80b3550a13ebc4046b143d742095e3ebfeea7763c2807bb95e55d61a1afa97
4
- data.tar.gz: 20e365e762991356a6f79b1dccb848a5b67587c4adf11f880ce22a38a9f330c2
3
+ metadata.gz: 94d94be44fa6695584c4db9242196196aae2ad8130045359bccb694f85975d69
4
+ data.tar.gz: b3ba3bf24c4e140d0b152edb3ce59f2705aed0f52990afceda9d13f5e81c645b
5
5
  SHA512:
6
- metadata.gz: 3e3a22fee12e3b30b64264f877626765a5624431bb3a8466daf3056baf731ffa1d975a74215b29d54e6d01cea84e377f3a4ca81b9fcefd0cdad88e29f832cfbe
7
- data.tar.gz: 499c600b9af9e475e2ad732dab7442dccd01e19abbf545aba04ff51b07cab28d3ff8a36c63daab53694f242b07ea722426dfe608d00a967249ba4ea8d6e86ec3
6
+ metadata.gz: 5e70848fa4f0f52b6aa24bea04e102607c3fe6a3109cf550c12c2c91b59706292998131eb90a68309cde2d8088d294a9a4c88b2b28465bdbc534780952be600a
7
+ data.tar.gz: ed9b107e1e5e1013cf78303c3826e358e8c26e4a4e1abb6f8d31e253c27f5445164de628fb35ad62eff363ccd74029a309b9e11255d90dcc76e7ff3068b899f8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-aiplatform_v1
2
2
 
3
+ ### v0.51.0 (2025-05-11)
4
+
5
+ * Regenerated from discovery document revision 20250501
6
+ * Regenerated using generator version 0.17.0
7
+
3
8
  ### v0.50.0 (2025-04-27)
4
9
 
5
10
  * Regenerated from discovery document revision 20250415
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/vertex-ai/) may provide gui
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.7+.
86
+ This library is supported on Ruby 3.1+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -1056,7 +1056,9 @@ module Google
1056
1056
  include Google::Apis::Core::Hashable
1057
1057
 
1058
1058
  # A runtime is a virtual machine allocated to a particular user for a particular
1059
- # Notebook file on temporary basis with lifetime limited to 24 hours.
1059
+ # Notebook file on temporary basis with lifetime. Default runtimes have a
1060
+ # lifetime of 18 hours, while custom runtimes last for 6 months from their
1061
+ # creation or last upgrade.
1060
1062
  # Corresponds to the JSON property `notebookRuntime`
1061
1063
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NotebookRuntime]
1062
1064
  attr_accessor :notebook_runtime
@@ -3009,6 +3011,37 @@ module Google
3009
3011
  end
3010
3012
  end
3011
3013
 
3014
+ # Describes the machine learning model version checkpoint.
3015
+ class GoogleCloudAiplatformV1Checkpoint
3016
+ include Google::Apis::Core::Hashable
3017
+
3018
+ # The ID of the checkpoint.
3019
+ # Corresponds to the JSON property `checkpointId`
3020
+ # @return [String]
3021
+ attr_accessor :checkpoint_id
3022
+
3023
+ # The epoch of the checkpoint.
3024
+ # Corresponds to the JSON property `epoch`
3025
+ # @return [Fixnum]
3026
+ attr_accessor :epoch
3027
+
3028
+ # The step of the checkpoint.
3029
+ # Corresponds to the JSON property `step`
3030
+ # @return [Fixnum]
3031
+ attr_accessor :step
3032
+
3033
+ def initialize(**args)
3034
+ update!(**args)
3035
+ end
3036
+
3037
+ # Update properties of this object
3038
+ def update!(**args)
3039
+ @checkpoint_id = args[:checkpoint_id] if args.key?(:checkpoint_id)
3040
+ @epoch = args[:epoch] if args.key?(:epoch)
3041
+ @step = args[:step] if args.key?(:step)
3042
+ end
3043
+ end
3044
+
3012
3045
  # Source attributions for content.
3013
3046
  class GoogleCloudAiplatformV1Citation
3014
3047
  include Google::Apis::Core::Hashable
@@ -6096,6 +6129,11 @@ module Google
6096
6129
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AutomaticResources]
6097
6130
  attr_accessor :automatic_resources
6098
6131
 
6132
+ # The checkpoint id of the model.
6133
+ # Corresponds to the JSON property `checkpointId`
6134
+ # @return [String]
6135
+ attr_accessor :checkpoint_id
6136
+
6099
6137
  # Output only. Timestamp when the DeployedModel was created.
6100
6138
  # Corresponds to the JSON property `createTime`
6101
6139
  # @return [String]
@@ -6219,6 +6257,7 @@ module Google
6219
6257
  # Update properties of this object
6220
6258
  def update!(**args)
6221
6259
  @automatic_resources = args[:automatic_resources] if args.key?(:automatic_resources)
6260
+ @checkpoint_id = args[:checkpoint_id] if args.key?(:checkpoint_id)
6222
6261
  @create_time = args[:create_time] if args.key?(:create_time)
6223
6262
  @dedicated_resources = args[:dedicated_resources] if args.key?(:dedicated_resources)
6224
6263
  @disable_container_logging = args[:disable_container_logging] if args.key?(:disable_container_logging)
@@ -16568,6 +16607,11 @@ module Google
16568
16607
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ModelBaseModelSource]
16569
16608
  attr_accessor :base_model_source
16570
16609
 
16610
+ # Optional. Output only. The checkpoints of the model.
16611
+ # Corresponds to the JSON property `checkpoints`
16612
+ # @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Checkpoint>]
16613
+ attr_accessor :checkpoints
16614
+
16571
16615
  # Specification of a container for serving predictions. Some fields in this
16572
16616
  # message correspond to fields in the [Kubernetes Container v1 core
16573
16617
  # specification](https://kubernetes.io/docs/reference/generated/kubernetes-api/
@@ -16808,6 +16852,7 @@ module Google
16808
16852
  def update!(**args)
16809
16853
  @artifact_uri = args[:artifact_uri] if args.key?(:artifact_uri)
16810
16854
  @base_model_source = args[:base_model_source] if args.key?(:base_model_source)
16855
+ @checkpoints = args[:checkpoints] if args.key?(:checkpoints)
16811
16856
  @container_spec = args[:container_spec] if args.key?(:container_spec)
16812
16857
  @create_time = args[:create_time] if args.key?(:create_time)
16813
16858
  @data_stats = args[:data_stats] if args.key?(:data_stats)
@@ -18339,13 +18384,6 @@ module Google
18339
18384
  # @return [Fixnum]
18340
18385
  attr_accessor :epoch
18341
18386
 
18342
- # Identifier. The resource name of the ModelVersionCheckpoint. Format: `projects/
18343
- # `project`/locations/`location`/models/`model`/versions/`version`/checkpoints/`
18344
- # checkpoint``
18345
- # Corresponds to the JSON property `name`
18346
- # @return [String]
18347
- attr_accessor :name
18348
-
18349
18387
  # The step of the checkpoint.
18350
18388
  # Corresponds to the JSON property `step`
18351
18389
  # @return [Fixnum]
@@ -18359,7 +18397,6 @@ module Google
18359
18397
  def update!(**args)
18360
18398
  @checkpoint_id = args[:checkpoint_id] if args.key?(:checkpoint_id)
18361
18399
  @epoch = args[:epoch] if args.key?(:epoch)
18362
- @name = args[:name] if args.key?(:name)
18363
18400
  @step = args[:step] if args.key?(:step)
18364
18401
  end
18365
18402
  end
@@ -19719,7 +19756,9 @@ module Google
19719
19756
  end
19720
19757
 
19721
19758
  # A runtime is a virtual machine allocated to a particular user for a particular
19722
- # Notebook file on temporary basis with lifetime limited to 24 hours.
19759
+ # Notebook file on temporary basis with lifetime. Default runtimes have a
19760
+ # lifetime of 18 hours, while custom runtimes last for 6 months from their
19761
+ # creation or last upgrade.
19723
19762
  class GoogleCloudAiplatformV1NotebookRuntime
19724
19763
  include Google::Apis::Core::Hashable
19725
19764
 
@@ -19878,7 +19917,8 @@ module Google
19878
19917
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ShieldedVmConfig]
19879
19918
  attr_accessor :shielded_vm_config
19880
19919
 
19881
- # Notebook Software Config.
19920
+ # Notebook Software Config. This is passed to the backend when user makes
19921
+ # software configurations in UI.
19882
19922
  # Corresponds to the JSON property `softwareConfig`
19883
19923
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NotebookSoftwareConfig]
19884
19924
  attr_accessor :software_config
@@ -20048,7 +20088,8 @@ module Google
20048
20088
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ShieldedVmConfig]
20049
20089
  attr_accessor :shielded_vm_config
20050
20090
 
20051
- # Notebook Software Config.
20091
+ # Notebook Software Config. This is passed to the backend when user makes
20092
+ # software configurations in UI.
20052
20093
  # Corresponds to the JSON property `softwareConfig`
20053
20094
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NotebookSoftwareConfig]
20054
20095
  attr_accessor :software_config
@@ -20107,7 +20148,8 @@ module Google
20107
20148
  end
20108
20149
  end
20109
20150
 
20110
- # Notebook Software Config.
20151
+ # Notebook Software Config. This is passed to the backend when user makes
20152
+ # software configurations in UI.
20111
20153
  class GoogleCloudAiplatformV1NotebookSoftwareConfig
20112
20154
  include Google::Apis::Core::Hashable
20113
20155
 
@@ -26259,6 +26301,12 @@ module Google
26259
26301
  class GoogleCloudAiplatformV1Schema
26260
26302
  include Google::Apis::Core::Hashable
26261
26303
 
26304
+ # Optional. Can either be a boolean or an object; controls the presence of
26305
+ # additional properties.
26306
+ # Corresponds to the JSON property `additionalProperties`
26307
+ # @return [Object]
26308
+ attr_accessor :additional_properties
26309
+
26262
26310
  # Optional. The value should be validated against any (one or more) of the
26263
26311
  # subschemas in the list.
26264
26312
  # Corresponds to the JSON property `anyOf`
@@ -26270,6 +26318,12 @@ module Google
26270
26318
  # @return [Object]
26271
26319
  attr_accessor :default
26272
26320
 
26321
+ # Optional. A map of definitions for use by `ref` Only allowed at the root of
26322
+ # the schema.
26323
+ # Corresponds to the JSON property `defs`
26324
+ # @return [Hash<String,Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema>]
26325
+ attr_accessor :defs
26326
+
26273
26327
  # Optional. The description of the data.
26274
26328
  # Corresponds to the JSON property `description`
26275
26329
  # @return [String]
@@ -26367,6 +26421,17 @@ module Google
26367
26421
  # @return [Array<String>]
26368
26422
  attr_accessor :property_ordering
26369
26423
 
26424
+ # Optional. Allows indirect references between schema nodes. The value should be
26425
+ # a valid reference to a child of the root `defs`. For example, the following
26426
+ # schema defines a reference to a schema node named "Pet": type: object
26427
+ # properties: pet: ref: #/defs/Pet defs: Pet: type: object properties: name:
26428
+ # type: string The value of the "pet" property is a reference to the schema node
26429
+ # named "Pet". See details in https://json-schema.org/understanding-json-schema/
26430
+ # structuring
26431
+ # Corresponds to the JSON property `ref`
26432
+ # @return [String]
26433
+ attr_accessor :ref
26434
+
26370
26435
  # Optional. Required properties of Type.OBJECT.
26371
26436
  # Corresponds to the JSON property `required`
26372
26437
  # @return [Array<String>]
@@ -26388,8 +26453,10 @@ module Google
26388
26453
 
26389
26454
  # Update properties of this object
26390
26455
  def update!(**args)
26456
+ @additional_properties = args[:additional_properties] if args.key?(:additional_properties)
26391
26457
  @any_of = args[:any_of] if args.key?(:any_of)
26392
26458
  @default = args[:default] if args.key?(:default)
26459
+ @defs = args[:defs] if args.key?(:defs)
26393
26460
  @description = args[:description] if args.key?(:description)
26394
26461
  @enum = args[:enum] if args.key?(:enum)
26395
26462
  @example = args[:example] if args.key?(:example)
@@ -26407,6 +26474,7 @@ module Google
26407
26474
  @pattern = args[:pattern] if args.key?(:pattern)
26408
26475
  @properties = args[:properties] if args.key?(:properties)
26409
26476
  @property_ordering = args[:property_ordering] if args.key?(:property_ordering)
26477
+ @ref = args[:ref] if args.key?(:ref)
26410
26478
  @required = args[:required] if args.key?(:required)
26411
26479
  @title = args[:title] if args.key?(:title)
26412
26480
  @type = args[:type] if args.key?(:type)
@@ -35419,7 +35487,7 @@ module Google
35419
35487
  include Google::Apis::Core::Hashable
35420
35488
 
35421
35489
  # Output only. For each index in `truncated_example_indices`, the user-facing
35422
- # reason why the example was dropped. Must not include example itself.
35490
+ # reason why the example was dropped.
35423
35491
  # Corresponds to the JSON property `droppedExampleReasons`
35424
35492
  # @return [Array<String>]
35425
35493
  attr_accessor :dropped_example_reasons
@@ -35606,6 +35674,14 @@ module Google
35606
35674
  class GoogleCloudAiplatformV1SupervisedTuningSpec
35607
35675
  include Google::Apis::Core::Hashable
35608
35676
 
35677
+ # Optional. If set to true, disable intermediate checkpoints for SFT and only
35678
+ # the last checkpoint will be exported. Otherwise, enable intermediate
35679
+ # checkpoints for SFT. Default is false.
35680
+ # Corresponds to the JSON property `exportLastCheckpointOnly`
35681
+ # @return [Boolean]
35682
+ attr_accessor :export_last_checkpoint_only
35683
+ alias_method :export_last_checkpoint_only?, :export_last_checkpoint_only
35684
+
35609
35685
  # Hyperparameters for SFT.
35610
35686
  # Corresponds to the JSON property `hyperParameters`
35611
35687
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SupervisedHyperParameters]
@@ -35629,6 +35705,7 @@ module Google
35629
35705
 
35630
35706
  # Update properties of this object
35631
35707
  def update!(**args)
35708
+ @export_last_checkpoint_only = args[:export_last_checkpoint_only] if args.key?(:export_last_checkpoint_only)
35632
35709
  @hyper_parameters = args[:hyper_parameters] if args.key?(:hyper_parameters)
35633
35710
  @training_dataset_uri = args[:training_dataset_uri] if args.key?(:training_dataset_uri)
35634
35711
  @validation_dataset_uri = args[:validation_dataset_uri] if args.key?(:validation_dataset_uri)
@@ -37936,6 +38013,12 @@ module Google
37936
38013
  class GoogleCloudAiplatformV1TunedModel
37937
38014
  include Google::Apis::Core::Hashable
37938
38015
 
38016
+ # Output only. The checkpoints associated with this TunedModel. This field is
38017
+ # only populated for tuning jobs that enable intermediate checkpoints.
38018
+ # Corresponds to the JSON property `checkpoints`
38019
+ # @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1TunedModelCheckpoint>]
38020
+ attr_accessor :checkpoints
38021
+
37939
38022
  # Output only. A resource name of an Endpoint. Format: `projects/`project`/
37940
38023
  # locations/`location`/endpoints/`endpoint``.
37941
38024
  # Corresponds to the JSON property `endpoint`
@@ -37954,11 +38037,50 @@ module Google
37954
38037
 
37955
38038
  # Update properties of this object
37956
38039
  def update!(**args)
38040
+ @checkpoints = args[:checkpoints] if args.key?(:checkpoints)
37957
38041
  @endpoint = args[:endpoint] if args.key?(:endpoint)
37958
38042
  @model = args[:model] if args.key?(:model)
37959
38043
  end
37960
38044
  end
37961
38045
 
38046
+ # TunedModelCheckpoint for the Tuned Model of a Tuning Job.
38047
+ class GoogleCloudAiplatformV1TunedModelCheckpoint
38048
+ include Google::Apis::Core::Hashable
38049
+
38050
+ # The ID of the checkpoint.
38051
+ # Corresponds to the JSON property `checkpointId`
38052
+ # @return [String]
38053
+ attr_accessor :checkpoint_id
38054
+
38055
+ # The Endpoint resource name that the checkpoint is deployed to. Format: `
38056
+ # projects/`project`/locations/`location`/endpoints/`endpoint``.
38057
+ # Corresponds to the JSON property `endpoint`
38058
+ # @return [String]
38059
+ attr_accessor :endpoint
38060
+
38061
+ # The epoch of the checkpoint.
38062
+ # Corresponds to the JSON property `epoch`
38063
+ # @return [Fixnum]
38064
+ attr_accessor :epoch
38065
+
38066
+ # The step of the checkpoint.
38067
+ # Corresponds to the JSON property `step`
38068
+ # @return [Fixnum]
38069
+ attr_accessor :step
38070
+
38071
+ def initialize(**args)
38072
+ update!(**args)
38073
+ end
38074
+
38075
+ # Update properties of this object
38076
+ def update!(**args)
38077
+ @checkpoint_id = args[:checkpoint_id] if args.key?(:checkpoint_id)
38078
+ @endpoint = args[:endpoint] if args.key?(:endpoint)
38079
+ @epoch = args[:epoch] if args.key?(:epoch)
38080
+ @step = args[:step] if args.key?(:step)
38081
+ end
38082
+ end
38083
+
37962
38084
  # TunedModel Reference for legacy model migration.
37963
38085
  class GoogleCloudAiplatformV1TunedModelRef
37964
38086
  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.50.0"
19
+ GEM_VERSION = "0.51.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.16.0"
22
+ GENERATOR_VERSION = "0.17.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250415"
25
+ REVISION = "20250501"
26
26
  end
27
27
  end
28
28
  end
@@ -574,6 +574,12 @@ module Google
574
574
  include Google::Apis::Core::JsonObjectSupport
575
575
  end
576
576
 
577
+ class GoogleCloudAiplatformV1Checkpoint
578
+ class Representation < Google::Apis::Core::JsonRepresentation; end
579
+
580
+ include Google::Apis::Core::JsonObjectSupport
581
+ end
582
+
577
583
  class GoogleCloudAiplatformV1Citation
578
584
  class Representation < Google::Apis::Core::JsonRepresentation; end
579
585
 
@@ -6376,6 +6382,12 @@ module Google
6376
6382
  include Google::Apis::Core::JsonObjectSupport
6377
6383
  end
6378
6384
 
6385
+ class GoogleCloudAiplatformV1TunedModelCheckpoint
6386
+ class Representation < Google::Apis::Core::JsonRepresentation; end
6387
+
6388
+ include Google::Apis::Core::JsonObjectSupport
6389
+ end
6390
+
6379
6391
  class GoogleCloudAiplatformV1TunedModelRef
6380
6392
  class Representation < Google::Apis::Core::JsonRepresentation; end
6381
6393
 
@@ -7662,6 +7674,15 @@ module Google
7662
7674
  end
7663
7675
  end
7664
7676
 
7677
+ class GoogleCloudAiplatformV1Checkpoint
7678
+ # @private
7679
+ class Representation < Google::Apis::Core::JsonRepresentation
7680
+ property :checkpoint_id, as: 'checkpointId'
7681
+ property :epoch, :numeric_string => true, as: 'epoch'
7682
+ property :step, :numeric_string => true, as: 'step'
7683
+ end
7684
+ end
7685
+
7665
7686
  class GoogleCloudAiplatformV1Citation
7666
7687
  # @private
7667
7688
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -8546,6 +8567,7 @@ module Google
8546
8567
  class Representation < Google::Apis::Core::JsonRepresentation
8547
8568
  property :automatic_resources, as: 'automaticResources', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AutomaticResources, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AutomaticResources::Representation
8548
8569
 
8570
+ property :checkpoint_id, as: 'checkpointId'
8549
8571
  property :create_time, as: 'createTime'
8550
8572
  property :dedicated_resources, as: 'dedicatedResources', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DedicatedResources, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DedicatedResources::Representation
8551
8573
 
@@ -11548,6 +11570,8 @@ module Google
11548
11570
  property :artifact_uri, as: 'artifactUri'
11549
11571
  property :base_model_source, as: 'baseModelSource', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ModelBaseModelSource, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ModelBaseModelSource::Representation
11550
11572
 
11573
+ collection :checkpoints, as: 'checkpoints', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Checkpoint, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Checkpoint::Representation
11574
+
11551
11575
  property :container_spec, as: 'containerSpec', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ModelContainerSpec, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ModelContainerSpec::Representation
11552
11576
 
11553
11577
  property :create_time, as: 'createTime'
@@ -11961,7 +11985,6 @@ module Google
11961
11985
  class Representation < Google::Apis::Core::JsonRepresentation
11962
11986
  property :checkpoint_id, as: 'checkpointId'
11963
11987
  property :epoch, :numeric_string => true, as: 'epoch'
11964
- property :name, as: 'name'
11965
11988
  property :step, :numeric_string => true, as: 'step'
11966
11989
  end
11967
11990
  end
@@ -14282,9 +14305,12 @@ module Google
14282
14305
  class GoogleCloudAiplatformV1Schema
14283
14306
  # @private
14284
14307
  class Representation < Google::Apis::Core::JsonRepresentation
14308
+ property :additional_properties, as: 'additionalProperties'
14285
14309
  collection :any_of, as: 'anyOf', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema::Representation
14286
14310
 
14287
14311
  property :default, as: 'default'
14312
+ hash :defs, as: 'defs', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema::Representation
14313
+
14288
14314
  property :description, as: 'description'
14289
14315
  collection :enum, as: 'enum'
14290
14316
  property :example, as: 'example'
@@ -14304,6 +14330,7 @@ module Google
14304
14330
  hash :properties, as: 'properties', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema::Representation
14305
14331
 
14306
14332
  collection :property_ordering, as: 'propertyOrdering'
14333
+ property :ref, as: 'ref'
14307
14334
  collection :required, as: 'required'
14308
14335
  property :title, as: 'title'
14309
14336
  property :type, as: 'type'
@@ -16826,6 +16853,7 @@ module Google
16826
16853
  class GoogleCloudAiplatformV1SupervisedTuningSpec
16827
16854
  # @private
16828
16855
  class Representation < Google::Apis::Core::JsonRepresentation
16856
+ property :export_last_checkpoint_only, as: 'exportLastCheckpointOnly'
16829
16857
  property :hyper_parameters, as: 'hyperParameters', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SupervisedHyperParameters, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SupervisedHyperParameters::Representation
16830
16858
 
16831
16859
  property :training_dataset_uri, as: 'trainingDatasetUri'
@@ -17556,11 +17584,23 @@ module Google
17556
17584
  class GoogleCloudAiplatformV1TunedModel
17557
17585
  # @private
17558
17586
  class Representation < Google::Apis::Core::JsonRepresentation
17587
+ collection :checkpoints, as: 'checkpoints', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1TunedModelCheckpoint, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1TunedModelCheckpoint::Representation
17588
+
17559
17589
  property :endpoint, as: 'endpoint'
17560
17590
  property :model, as: 'model'
17561
17591
  end
17562
17592
  end
17563
17593
 
17594
+ class GoogleCloudAiplatformV1TunedModelCheckpoint
17595
+ # @private
17596
+ class Representation < Google::Apis::Core::JsonRepresentation
17597
+ property :checkpoint_id, as: 'checkpointId'
17598
+ property :endpoint, as: 'endpoint'
17599
+ property :epoch, :numeric_string => true, as: 'epoch'
17600
+ property :step, :numeric_string => true, as: 'step'
17601
+ end
17602
+ end
17603
+
17564
17604
  class GoogleCloudAiplatformV1TunedModelRef
17565
17605
  # @private
17566
17606
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-aiplatform_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.50.0
4
+ version: 0.51.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-04-27 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -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.50.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1/v0.51.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:
@@ -66,14 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '2.7'
69
+ version: '3.1'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.5
76
+ rubygems_version: 3.6.8
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Vertex AI API V1
79
79
  test_files: []