google-apis-aiplatform_v1beta1 0.44.0 → 0.45.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: aeb4454fa22c4afe6e67088c639731496d2276c80a1a6fa03358ef28f87d5bdf
|
4
|
+
data.tar.gz: 72c416d719f200e4bcb7ba3048f05a1544de7afe05916741a5e9843f9658b32f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 30cc2e5166cc1c9f58b2d31eef3b225f6eecd7c0e4faf3fa1ea1be1adba6dc1b0ac6dc52ebc95b8533f6736acf1c1216e5a3a5fb2b5702fb0eb020f88dd221f6
|
7
|
+
data.tar.gz: 78ad5d3683dc34c23bf0dcd4b3adf8f5ed95138298fa2509b996b23f4a96bef80d074ad92ee8305ef63a45786873f0487fb30a3f7f0a782a8305c97a85c359a8
|
data/CHANGELOG.md
CHANGED
@@ -1306,7 +1306,9 @@ module Google
|
|
1306
1306
|
include Google::Apis::Core::Hashable
|
1307
1307
|
|
1308
1308
|
# A runtime is a virtual machine allocated to a particular user for a particular
|
1309
|
-
# Notebook file on temporary basis with lifetime
|
1309
|
+
# Notebook file on temporary basis with lifetime. Default runtimes have a
|
1310
|
+
# lifetime of 18 hours, while custom runtimes last for 6 months from their
|
1311
|
+
# creation or last upgrade.
|
1310
1312
|
# Corresponds to the JSON property `notebookRuntime`
|
1311
1313
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookRuntime]
|
1312
1314
|
attr_accessor :notebook_runtime
|
@@ -3546,6 +3548,37 @@ module Google
|
|
3546
3548
|
end
|
3547
3549
|
end
|
3548
3550
|
|
3551
|
+
# Describes the machine learning model version checkpoint.
|
3552
|
+
class GoogleCloudAiplatformV1beta1Checkpoint
|
3553
|
+
include Google::Apis::Core::Hashable
|
3554
|
+
|
3555
|
+
# The ID of the checkpoint.
|
3556
|
+
# Corresponds to the JSON property `checkpointId`
|
3557
|
+
# @return [String]
|
3558
|
+
attr_accessor :checkpoint_id
|
3559
|
+
|
3560
|
+
# The epoch of the checkpoint.
|
3561
|
+
# Corresponds to the JSON property `epoch`
|
3562
|
+
# @return [Fixnum]
|
3563
|
+
attr_accessor :epoch
|
3564
|
+
|
3565
|
+
# The step of the checkpoint.
|
3566
|
+
# Corresponds to the JSON property `step`
|
3567
|
+
# @return [Fixnum]
|
3568
|
+
attr_accessor :step
|
3569
|
+
|
3570
|
+
def initialize(**args)
|
3571
|
+
update!(**args)
|
3572
|
+
end
|
3573
|
+
|
3574
|
+
# Update properties of this object
|
3575
|
+
def update!(**args)
|
3576
|
+
@checkpoint_id = args[:checkpoint_id] if args.key?(:checkpoint_id)
|
3577
|
+
@epoch = args[:epoch] if args.key?(:epoch)
|
3578
|
+
@step = args[:step] if args.key?(:step)
|
3579
|
+
end
|
3580
|
+
end
|
3581
|
+
|
3549
3582
|
# Source attributions for content.
|
3550
3583
|
class GoogleCloudAiplatformV1beta1Citation
|
3551
3584
|
include Google::Apis::Core::Hashable
|
@@ -7180,6 +7213,11 @@ module Google
|
|
7180
7213
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AutomaticResources]
|
7181
7214
|
attr_accessor :automatic_resources
|
7182
7215
|
|
7216
|
+
# The checkpoint id of the model.
|
7217
|
+
# Corresponds to the JSON property `checkpointId`
|
7218
|
+
# @return [String]
|
7219
|
+
attr_accessor :checkpoint_id
|
7220
|
+
|
7183
7221
|
# Output only. Timestamp when the DeployedModel was created.
|
7184
7222
|
# Corresponds to the JSON property `createTime`
|
7185
7223
|
# @return [String]
|
@@ -7306,6 +7344,7 @@ module Google
|
|
7306
7344
|
# Update properties of this object
|
7307
7345
|
def update!(**args)
|
7308
7346
|
@automatic_resources = args[:automatic_resources] if args.key?(:automatic_resources)
|
7347
|
+
@checkpoint_id = args[:checkpoint_id] if args.key?(:checkpoint_id)
|
7309
7348
|
@create_time = args[:create_time] if args.key?(:create_time)
|
7310
7349
|
@dedicated_resources = args[:dedicated_resources] if args.key?(:dedicated_resources)
|
7311
7350
|
@disable_explanations = args[:disable_explanations] if args.key?(:disable_explanations)
|
@@ -9096,6 +9135,12 @@ module Google
|
|
9096
9135
|
# @return [String]
|
9097
9136
|
attr_accessor :example_id
|
9098
9137
|
|
9138
|
+
# Identifier. The resource name of the Example. Format: `projects/`project`/
|
9139
|
+
# locations/`location`/reasoningEngines/`reasoning_engine`/examples/`example``
|
9140
|
+
# Corresponds to the JSON property `name`
|
9141
|
+
# @return [String]
|
9142
|
+
attr_accessor :name
|
9143
|
+
|
9099
9144
|
# A ContentsExample to be used with GenerateContent alongside information
|
9100
9145
|
# required for storage and retrieval with Example Store.
|
9101
9146
|
# Corresponds to the JSON property `storedContentsExample`
|
@@ -9111,6 +9156,7 @@ module Google
|
|
9111
9156
|
@create_time = args[:create_time] if args.key?(:create_time)
|
9112
9157
|
@display_name = args[:display_name] if args.key?(:display_name)
|
9113
9158
|
@example_id = args[:example_id] if args.key?(:example_id)
|
9159
|
+
@name = args[:name] if args.key?(:name)
|
9114
9160
|
@stored_contents_example = args[:stored_contents_example] if args.key?(:stored_contents_example)
|
9115
9161
|
end
|
9116
9162
|
end
|
@@ -19554,6 +19600,11 @@ module Google
|
|
19554
19600
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelBaseModelSource]
|
19555
19601
|
attr_accessor :base_model_source
|
19556
19602
|
|
19603
|
+
# Optional. Output only. The checkpoints of the model.
|
19604
|
+
# Corresponds to the JSON property `checkpoints`
|
19605
|
+
# @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Checkpoint>]
|
19606
|
+
attr_accessor :checkpoints
|
19607
|
+
|
19557
19608
|
# Specification of a container for serving predictions. Some fields in this
|
19558
19609
|
# message correspond to fields in the [Kubernetes Container v1 core
|
19559
19610
|
# specification](https://kubernetes.io/docs/reference/generated/kubernetes-api/
|
@@ -19784,6 +19835,7 @@ module Google
|
|
19784
19835
|
def update!(**args)
|
19785
19836
|
@artifact_uri = args[:artifact_uri] if args.key?(:artifact_uri)
|
19786
19837
|
@base_model_source = args[:base_model_source] if args.key?(:base_model_source)
|
19838
|
+
@checkpoints = args[:checkpoints] if args.key?(:checkpoints)
|
19787
19839
|
@container_spec = args[:container_spec] if args.key?(:container_spec)
|
19788
19840
|
@create_time = args[:create_time] if args.key?(:create_time)
|
19789
19841
|
@default_checkpoint_id = args[:default_checkpoint_id] if args.key?(:default_checkpoint_id)
|
@@ -23878,7 +23930,9 @@ module Google
|
|
23878
23930
|
end
|
23879
23931
|
|
23880
23932
|
# A runtime is a virtual machine allocated to a particular user for a particular
|
23881
|
-
# Notebook file on temporary basis with lifetime
|
23933
|
+
# Notebook file on temporary basis with lifetime. Default runtimes have a
|
23934
|
+
# lifetime of 18 hours, while custom runtimes last for 6 months from their
|
23935
|
+
# creation or last upgrade.
|
23882
23936
|
class GoogleCloudAiplatformV1beta1NotebookRuntime
|
23883
23937
|
include Google::Apis::Core::Hashable
|
23884
23938
|
|
@@ -24037,7 +24091,8 @@ module Google
|
|
24037
24091
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ShieldedVmConfig]
|
24038
24092
|
attr_accessor :shielded_vm_config
|
24039
24093
|
|
24040
|
-
# Notebook Software Config.
|
24094
|
+
# Notebook Software Config. This is passed to the backend when user makes
|
24095
|
+
# software configurations in UI.
|
24041
24096
|
# Corresponds to the JSON property `softwareConfig`
|
24042
24097
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookSoftwareConfig]
|
24043
24098
|
attr_accessor :software_config
|
@@ -24207,7 +24262,8 @@ module Google
|
|
24207
24262
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ShieldedVmConfig]
|
24208
24263
|
attr_accessor :shielded_vm_config
|
24209
24264
|
|
24210
|
-
# Notebook Software Config.
|
24265
|
+
# Notebook Software Config. This is passed to the backend when user makes
|
24266
|
+
# software configurations in UI.
|
24211
24267
|
# Corresponds to the JSON property `softwareConfig`
|
24212
24268
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookSoftwareConfig]
|
24213
24269
|
attr_accessor :software_config
|
@@ -24266,7 +24322,8 @@ module Google
|
|
24266
24322
|
end
|
24267
24323
|
end
|
24268
24324
|
|
24269
|
-
# Notebook Software Config.
|
24325
|
+
# Notebook Software Config. This is passed to the backend when user makes
|
24326
|
+
# software configurations in UI.
|
24270
24327
|
class GoogleCloudAiplatformV1beta1NotebookSoftwareConfig
|
24271
24328
|
include Google::Apis::Core::Hashable
|
24272
24329
|
|
@@ -31730,6 +31787,12 @@ module Google
|
|
31730
31787
|
class GoogleCloudAiplatformV1beta1Schema
|
31731
31788
|
include Google::Apis::Core::Hashable
|
31732
31789
|
|
31790
|
+
# Optional. Can either be a boolean or an object; controls the presence of
|
31791
|
+
# additional properties.
|
31792
|
+
# Corresponds to the JSON property `additionalProperties`
|
31793
|
+
# @return [Object]
|
31794
|
+
attr_accessor :additional_properties
|
31795
|
+
|
31733
31796
|
# Optional. The value should be validated against any (one or more) of the
|
31734
31797
|
# subschemas in the list.
|
31735
31798
|
# Corresponds to the JSON property `anyOf`
|
@@ -31741,6 +31804,12 @@ module Google
|
|
31741
31804
|
# @return [Object]
|
31742
31805
|
attr_accessor :default
|
31743
31806
|
|
31807
|
+
# Optional. A map of definitions for use by `ref` Only allowed at the root of
|
31808
|
+
# the schema.
|
31809
|
+
# Corresponds to the JSON property `defs`
|
31810
|
+
# @return [Hash<String,Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Schema>]
|
31811
|
+
attr_accessor :defs
|
31812
|
+
|
31744
31813
|
# Optional. The description of the data.
|
31745
31814
|
# Corresponds to the JSON property `description`
|
31746
31815
|
# @return [String]
|
@@ -31838,6 +31907,17 @@ module Google
|
|
31838
31907
|
# @return [Array<String>]
|
31839
31908
|
attr_accessor :property_ordering
|
31840
31909
|
|
31910
|
+
# Optional. Allows indirect references between schema nodes. The value should be
|
31911
|
+
# a valid reference to a child of the root `defs`. For example, the following
|
31912
|
+
# schema defines a reference to a schema node named "Pet": type: object
|
31913
|
+
# properties: pet: ref: #/defs/Pet defs: Pet: type: object properties: name:
|
31914
|
+
# type: string The value of the "pet" property is a reference to the schema node
|
31915
|
+
# named "Pet". See details in https://json-schema.org/understanding-json-schema/
|
31916
|
+
# structuring
|
31917
|
+
# Corresponds to the JSON property `ref`
|
31918
|
+
# @return [String]
|
31919
|
+
attr_accessor :ref
|
31920
|
+
|
31841
31921
|
# Optional. Required properties of Type.OBJECT.
|
31842
31922
|
# Corresponds to the JSON property `required`
|
31843
31923
|
# @return [Array<String>]
|
@@ -31859,8 +31939,10 @@ module Google
|
|
31859
31939
|
|
31860
31940
|
# Update properties of this object
|
31861
31941
|
def update!(**args)
|
31942
|
+
@additional_properties = args[:additional_properties] if args.key?(:additional_properties)
|
31862
31943
|
@any_of = args[:any_of] if args.key?(:any_of)
|
31863
31944
|
@default = args[:default] if args.key?(:default)
|
31945
|
+
@defs = args[:defs] if args.key?(:defs)
|
31864
31946
|
@description = args[:description] if args.key?(:description)
|
31865
31947
|
@enum = args[:enum] if args.key?(:enum)
|
31866
31948
|
@example = args[:example] if args.key?(:example)
|
@@ -31878,6 +31960,7 @@ module Google
|
|
31878
31960
|
@pattern = args[:pattern] if args.key?(:pattern)
|
31879
31961
|
@properties = args[:properties] if args.key?(:properties)
|
31880
31962
|
@property_ordering = args[:property_ordering] if args.key?(:property_ordering)
|
31963
|
+
@ref = args[:ref] if args.key?(:ref)
|
31881
31964
|
@required = args[:required] if args.key?(:required)
|
31882
31965
|
@title = args[:title] if args.key?(:title)
|
31883
31966
|
@type = args[:type] if args.key?(:type)
|
@@ -41644,7 +41727,7 @@ module Google
|
|
41644
41727
|
include Google::Apis::Core::Hashable
|
41645
41728
|
|
41646
41729
|
# Output only. For each index in `truncated_example_indices`, the user-facing
|
41647
|
-
# reason why the example was dropped.
|
41730
|
+
# reason why the example was dropped.
|
41648
41731
|
# Corresponds to the JSON property `droppedExampleReasons`
|
41649
41732
|
# @return [Array<String>]
|
41650
41733
|
attr_accessor :dropped_example_reasons
|
@@ -41831,6 +41914,14 @@ module Google
|
|
41831
41914
|
class GoogleCloudAiplatformV1beta1SupervisedTuningSpec
|
41832
41915
|
include Google::Apis::Core::Hashable
|
41833
41916
|
|
41917
|
+
# Optional. If set to true, disable intermediate checkpoints for SFT and only
|
41918
|
+
# the last checkpoint will be exported. Otherwise, enable intermediate
|
41919
|
+
# checkpoints for SFT. Default is false.
|
41920
|
+
# Corresponds to the JSON property `exportLastCheckpointOnly`
|
41921
|
+
# @return [Boolean]
|
41922
|
+
attr_accessor :export_last_checkpoint_only
|
41923
|
+
alias_method :export_last_checkpoint_only?, :export_last_checkpoint_only
|
41924
|
+
|
41834
41925
|
# Hyperparameters for SFT.
|
41835
41926
|
# Corresponds to the JSON property `hyperParameters`
|
41836
41927
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SupervisedHyperParameters]
|
@@ -41854,6 +41945,7 @@ module Google
|
|
41854
41945
|
|
41855
41946
|
# Update properties of this object
|
41856
41947
|
def update!(**args)
|
41948
|
+
@export_last_checkpoint_only = args[:export_last_checkpoint_only] if args.key?(:export_last_checkpoint_only)
|
41857
41949
|
@hyper_parameters = args[:hyper_parameters] if args.key?(:hyper_parameters)
|
41858
41950
|
@training_dataset_uri = args[:training_dataset_uri] if args.key?(:training_dataset_uri)
|
41859
41951
|
@validation_dataset_uri = args[:validation_dataset_uri] if args.key?(:validation_dataset_uri)
|
@@ -44241,6 +44333,12 @@ module Google
|
|
44241
44333
|
class GoogleCloudAiplatformV1beta1TunedModel
|
44242
44334
|
include Google::Apis::Core::Hashable
|
44243
44335
|
|
44336
|
+
# Output only. The checkpoints associated with this TunedModel. This field is
|
44337
|
+
# only populated for tuning jobs that enable intermediate checkpoints.
|
44338
|
+
# Corresponds to the JSON property `checkpoints`
|
44339
|
+
# @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TunedModelCheckpoint>]
|
44340
|
+
attr_accessor :checkpoints
|
44341
|
+
|
44244
44342
|
# Output only. A resource name of an Endpoint. Format: `projects/`project`/
|
44245
44343
|
# locations/`location`/endpoints/`endpoint``.
|
44246
44344
|
# Corresponds to the JSON property `endpoint`
|
@@ -44259,11 +44357,50 @@ module Google
|
|
44259
44357
|
|
44260
44358
|
# Update properties of this object
|
44261
44359
|
def update!(**args)
|
44360
|
+
@checkpoints = args[:checkpoints] if args.key?(:checkpoints)
|
44262
44361
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
44263
44362
|
@model = args[:model] if args.key?(:model)
|
44264
44363
|
end
|
44265
44364
|
end
|
44266
44365
|
|
44366
|
+
# TunedModelCheckpoint for the Tuned Model of a Tuning Job.
|
44367
|
+
class GoogleCloudAiplatformV1beta1TunedModelCheckpoint
|
44368
|
+
include Google::Apis::Core::Hashable
|
44369
|
+
|
44370
|
+
# The ID of the checkpoint.
|
44371
|
+
# Corresponds to the JSON property `checkpointId`
|
44372
|
+
# @return [String]
|
44373
|
+
attr_accessor :checkpoint_id
|
44374
|
+
|
44375
|
+
# The Endpoint resource name that the checkpoint is deployed to. Format: `
|
44376
|
+
# projects/`project`/locations/`location`/endpoints/`endpoint``.
|
44377
|
+
# Corresponds to the JSON property `endpoint`
|
44378
|
+
# @return [String]
|
44379
|
+
attr_accessor :endpoint
|
44380
|
+
|
44381
|
+
# The epoch of the checkpoint.
|
44382
|
+
# Corresponds to the JSON property `epoch`
|
44383
|
+
# @return [Fixnum]
|
44384
|
+
attr_accessor :epoch
|
44385
|
+
|
44386
|
+
# The step of the checkpoint.
|
44387
|
+
# Corresponds to the JSON property `step`
|
44388
|
+
# @return [Fixnum]
|
44389
|
+
attr_accessor :step
|
44390
|
+
|
44391
|
+
def initialize(**args)
|
44392
|
+
update!(**args)
|
44393
|
+
end
|
44394
|
+
|
44395
|
+
# Update properties of this object
|
44396
|
+
def update!(**args)
|
44397
|
+
@checkpoint_id = args[:checkpoint_id] if args.key?(:checkpoint_id)
|
44398
|
+
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
44399
|
+
@epoch = args[:epoch] if args.key?(:epoch)
|
44400
|
+
@step = args[:step] if args.key?(:step)
|
44401
|
+
end
|
44402
|
+
end
|
44403
|
+
|
44267
44404
|
# TunedModel Reference for legacy model migration.
|
44268
44405
|
class GoogleCloudAiplatformV1beta1TunedModelRef
|
44269
44406
|
include Google::Apis::Core::Hashable
|
@@ -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.45.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.17.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250501"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -682,6 +682,12 @@ module Google
|
|
682
682
|
include Google::Apis::Core::JsonObjectSupport
|
683
683
|
end
|
684
684
|
|
685
|
+
class GoogleCloudAiplatformV1beta1Checkpoint
|
686
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
687
|
+
|
688
|
+
include Google::Apis::Core::JsonObjectSupport
|
689
|
+
end
|
690
|
+
|
685
691
|
class GoogleCloudAiplatformV1beta1Citation
|
686
692
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
687
693
|
|
@@ -7480,6 +7486,12 @@ module Google
|
|
7480
7486
|
include Google::Apis::Core::JsonObjectSupport
|
7481
7487
|
end
|
7482
7488
|
|
7489
|
+
class GoogleCloudAiplatformV1beta1TunedModelCheckpoint
|
7490
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
7491
|
+
|
7492
|
+
include Google::Apis::Core::JsonObjectSupport
|
7493
|
+
end
|
7494
|
+
|
7483
7495
|
class GoogleCloudAiplatformV1beta1TunedModelRef
|
7484
7496
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
7485
7497
|
|
@@ -8982,6 +8994,15 @@ module Google
|
|
8982
8994
|
end
|
8983
8995
|
end
|
8984
8996
|
|
8997
|
+
class GoogleCloudAiplatformV1beta1Checkpoint
|
8998
|
+
# @private
|
8999
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9000
|
+
property :checkpoint_id, as: 'checkpointId'
|
9001
|
+
property :epoch, :numeric_string => true, as: 'epoch'
|
9002
|
+
property :step, :numeric_string => true, as: 'step'
|
9003
|
+
end
|
9004
|
+
end
|
9005
|
+
|
8985
9006
|
class GoogleCloudAiplatformV1beta1Citation
|
8986
9007
|
# @private
|
8987
9008
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -10027,6 +10048,7 @@ module Google
|
|
10027
10048
|
class Representation < Google::Apis::Core::JsonRepresentation
|
10028
10049
|
property :automatic_resources, as: 'automaticResources', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AutomaticResources, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AutomaticResources::Representation
|
10029
10050
|
|
10051
|
+
property :checkpoint_id, as: 'checkpointId'
|
10030
10052
|
property :create_time, as: 'createTime'
|
10031
10053
|
property :dedicated_resources, as: 'dedicatedResources', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DedicatedResources, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DedicatedResources::Representation
|
10032
10054
|
|
@@ -10562,6 +10584,7 @@ module Google
|
|
10562
10584
|
property :create_time, as: 'createTime'
|
10563
10585
|
property :display_name, as: 'displayName'
|
10564
10586
|
property :example_id, as: 'exampleId'
|
10587
|
+
property :name, as: 'name'
|
10565
10588
|
property :stored_contents_example, as: 'storedContentsExample', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StoredContentsExample, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StoredContentsExample::Representation
|
10566
10589
|
|
10567
10590
|
end
|
@@ -13592,6 +13615,8 @@ module Google
|
|
13592
13615
|
property :artifact_uri, as: 'artifactUri'
|
13593
13616
|
property :base_model_source, as: 'baseModelSource', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelBaseModelSource, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelBaseModelSource::Representation
|
13594
13617
|
|
13618
|
+
collection :checkpoints, as: 'checkpoints', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Checkpoint, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Checkpoint::Representation
|
13619
|
+
|
13595
13620
|
property :container_spec, as: 'containerSpec', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelContainerSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelContainerSpec::Representation
|
13596
13621
|
|
13597
13622
|
property :create_time, as: 'createTime'
|
@@ -17078,9 +17103,12 @@ module Google
|
|
17078
17103
|
class GoogleCloudAiplatformV1beta1Schema
|
17079
17104
|
# @private
|
17080
17105
|
class Representation < Google::Apis::Core::JsonRepresentation
|
17106
|
+
property :additional_properties, as: 'additionalProperties'
|
17081
17107
|
collection :any_of, as: 'anyOf', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Schema, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Schema::Representation
|
17082
17108
|
|
17083
17109
|
property :default, as: 'default'
|
17110
|
+
hash :defs, as: 'defs', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Schema, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Schema::Representation
|
17111
|
+
|
17084
17112
|
property :description, as: 'description'
|
17085
17113
|
collection :enum, as: 'enum'
|
17086
17114
|
property :example, as: 'example'
|
@@ -17100,6 +17128,7 @@ module Google
|
|
17100
17128
|
hash :properties, as: 'properties', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Schema, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Schema::Representation
|
17101
17129
|
|
17102
17130
|
collection :property_ordering, as: 'propertyOrdering'
|
17131
|
+
property :ref, as: 'ref'
|
17103
17132
|
collection :required, as: 'required'
|
17104
17133
|
property :title, as: 'title'
|
17105
17134
|
property :type, as: 'type'
|
@@ -19848,6 +19877,7 @@ module Google
|
|
19848
19877
|
class GoogleCloudAiplatformV1beta1SupervisedTuningSpec
|
19849
19878
|
# @private
|
19850
19879
|
class Representation < Google::Apis::Core::JsonRepresentation
|
19880
|
+
property :export_last_checkpoint_only, as: 'exportLastCheckpointOnly'
|
19851
19881
|
property :hyper_parameters, as: 'hyperParameters', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SupervisedHyperParameters, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SupervisedHyperParameters::Representation
|
19852
19882
|
|
19853
19883
|
property :training_dataset_uri, as: 'trainingDatasetUri'
|
@@ -20600,11 +20630,23 @@ module Google
|
|
20600
20630
|
class GoogleCloudAiplatformV1beta1TunedModel
|
20601
20631
|
# @private
|
20602
20632
|
class Representation < Google::Apis::Core::JsonRepresentation
|
20633
|
+
collection :checkpoints, as: 'checkpoints', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TunedModelCheckpoint, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TunedModelCheckpoint::Representation
|
20634
|
+
|
20603
20635
|
property :endpoint, as: 'endpoint'
|
20604
20636
|
property :model, as: 'model'
|
20605
20637
|
end
|
20606
20638
|
end
|
20607
20639
|
|
20640
|
+
class GoogleCloudAiplatformV1beta1TunedModelCheckpoint
|
20641
|
+
# @private
|
20642
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
20643
|
+
property :checkpoint_id, as: 'checkpointId'
|
20644
|
+
property :endpoint, as: 'endpoint'
|
20645
|
+
property :epoch, :numeric_string => true, as: 'epoch'
|
20646
|
+
property :step, :numeric_string => true, as: 'step'
|
20647
|
+
end
|
20648
|
+
end
|
20649
|
+
|
20608
20650
|
class GoogleCloudAiplatformV1beta1TunedModelRef
|
20609
20651
|
# @private
|
20610
20652
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.45.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.45.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:
|