google-apis-aiplatform_v1beta1 0.78.0 → 0.79.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/OVERVIEW.md +3 -3
- data/lib/google/apis/aiplatform_v1beta1/classes.rb +238 -27
- data/lib/google/apis/aiplatform_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/aiplatform_v1beta1/representations.rb +121 -15
- data/lib/google/apis/aiplatform_v1beta1/service.rb +550 -9
- data/lib/google/apis/aiplatform_v1beta1.rb +3 -4
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2590daf263e678964195b06eb1c6e54011351060b13bba590e2994ca66ebf34f
|
|
4
|
+
data.tar.gz: 7130a7efe14f6313a911c246cc640739f7e0b5b062cffec2ee0b0e07ccdd53fa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 164058a06c337c0cb2891521f4adbd1574eb669f38838bb5647b0f97417a2c3bc2613ac25776c61c0dfe57b1bbf8d270e832a8fa5af960e19366c3406cc6ee80
|
|
7
|
+
data.tar.gz: 84d8faeaf1826d8e8d7e9d2c83fa56ba0e48a7f4eb025a2b24713397087fa57e5474cd5420400fef3701b128de4583311fd9376f2c06955447022118da716e72
|
data/CHANGELOG.md
CHANGED
data/OVERVIEW.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Simple REST client for version V1beta1 of the
|
|
1
|
+
# Simple REST client for version V1beta1 of the Agent Platform API
|
|
2
2
|
|
|
3
|
-
This is a simple client library for version V1beta1 of the
|
|
3
|
+
This is a simple client library for version V1beta1 of the Agent Platform API. It provides:
|
|
4
4
|
|
|
5
5
|
* A client object that connects to the HTTP/JSON REST endpoint for the service.
|
|
6
6
|
* Ruby objects for data structures related to the service.
|
|
@@ -65,7 +65,7 @@ More detailed descriptions of the Google simple REST clients are available in tw
|
|
|
65
65
|
|
|
66
66
|
(Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Aiplatform service in particular.)
|
|
67
67
|
|
|
68
|
-
For reference information on specific calls in the
|
|
68
|
+
For reference information on specific calls in the Agent Platform API, see the {Google::Apis::AiplatformV1beta1::AiplatformService class reference docs}.
|
|
69
69
|
|
|
70
70
|
## Which client should I use?
|
|
71
71
|
|
|
@@ -61,6 +61,14 @@ module Google
|
|
|
61
61
|
# @return [String]
|
|
62
62
|
attr_accessor :request_origin_tag
|
|
63
63
|
|
|
64
|
+
# If true (default), truncate input videos that exceed the model's maximum frame
|
|
65
|
+
# count by applying a frame_selection_config to __video_file__ inputs. Set to
|
|
66
|
+
# false to preserve the existing fail-fast behavior.
|
|
67
|
+
# Corresponds to the JSON property `truncateInputVideo`
|
|
68
|
+
# @return [Boolean]
|
|
69
|
+
attr_accessor :truncate_input_video
|
|
70
|
+
alias_method :truncate_input_video?, :truncate_input_video
|
|
71
|
+
|
|
64
72
|
# GCS URI of the grayscale video mask for Differential Diffusion. Maps to
|
|
65
73
|
# sdedit_video_tmax_scale_map
|
|
66
74
|
# Corresponds to the JSON property `videoTransformMaskGcsUri`
|
|
@@ -84,6 +92,7 @@ module Google
|
|
|
84
92
|
@num_diffusion_steps = args[:num_diffusion_steps] if args.key?(:num_diffusion_steps)
|
|
85
93
|
@prompt_inputs = args[:prompt_inputs] if args.key?(:prompt_inputs)
|
|
86
94
|
@request_origin_tag = args[:request_origin_tag] if args.key?(:request_origin_tag)
|
|
95
|
+
@truncate_input_video = args[:truncate_input_video] if args.key?(:truncate_input_video)
|
|
87
96
|
@video_transform_mask_gcs_uri = args[:video_transform_mask_gcs_uri] if args.key?(:video_transform_mask_gcs_uri)
|
|
88
97
|
@video_transform_strength = args[:video_transform_strength] if args.key?(:video_transform_strength)
|
|
89
98
|
end
|
|
@@ -1941,6 +1950,31 @@ module Google
|
|
|
1941
1950
|
end
|
|
1942
1951
|
end
|
|
1943
1952
|
|
|
1953
|
+
# Request message for ReasoningEngineExecutionService.AsyncQueryReasoningEngine.
|
|
1954
|
+
class GoogleCloudAiplatformV1beta1AsyncQueryReasoningEngineRequest
|
|
1955
|
+
include Google::Apis::Core::Hashable
|
|
1956
|
+
|
|
1957
|
+
# Optional. Input Cloud Storage URI for the Async query.
|
|
1958
|
+
# Corresponds to the JSON property `inputGcsUri`
|
|
1959
|
+
# @return [String]
|
|
1960
|
+
attr_accessor :input_gcs_uri
|
|
1961
|
+
|
|
1962
|
+
# Optional. Output Cloud Storage URI for the Async query.
|
|
1963
|
+
# Corresponds to the JSON property `outputGcsUri`
|
|
1964
|
+
# @return [String]
|
|
1965
|
+
attr_accessor :output_gcs_uri
|
|
1966
|
+
|
|
1967
|
+
def initialize(**args)
|
|
1968
|
+
update!(**args)
|
|
1969
|
+
end
|
|
1970
|
+
|
|
1971
|
+
# Update properties of this object
|
|
1972
|
+
def update!(**args)
|
|
1973
|
+
@input_gcs_uri = args[:input_gcs_uri] if args.key?(:input_gcs_uri)
|
|
1974
|
+
@output_gcs_uri = args[:output_gcs_uri] if args.key?(:output_gcs_uri)
|
|
1975
|
+
end
|
|
1976
|
+
end
|
|
1977
|
+
|
|
1944
1978
|
# Request message for VertexRagService.AsyncRetrieveContexts.
|
|
1945
1979
|
class GoogleCloudAiplatformV1beta1AsyncRetrieveContextsRequest
|
|
1946
1980
|
include Google::Apis::Core::Hashable
|
|
@@ -4474,6 +4508,25 @@ module Google
|
|
|
4474
4508
|
end
|
|
4475
4509
|
end
|
|
4476
4510
|
|
|
4511
|
+
# Response message for ExpressModeService.CheckSignUpEligibility.
|
|
4512
|
+
class GoogleCloudAiplatformV1beta1CheckSignUpEligibilityResponse
|
|
4513
|
+
include Google::Apis::Core::Hashable
|
|
4514
|
+
|
|
4515
|
+
# The eligibility status of the user.
|
|
4516
|
+
# Corresponds to the JSON property `eligibility`
|
|
4517
|
+
# @return [String]
|
|
4518
|
+
attr_accessor :eligibility
|
|
4519
|
+
|
|
4520
|
+
def initialize(**args)
|
|
4521
|
+
update!(**args)
|
|
4522
|
+
end
|
|
4523
|
+
|
|
4524
|
+
# Update properties of this object
|
|
4525
|
+
def update!(**args)
|
|
4526
|
+
@eligibility = args[:eligibility] if args.key?(:eligibility)
|
|
4527
|
+
end
|
|
4528
|
+
end
|
|
4529
|
+
|
|
4477
4530
|
# This message will be placed in the metadata field of a google.longrunning.
|
|
4478
4531
|
# Operation associated with a CheckTrialEarlyStoppingState request.
|
|
4479
4532
|
class GoogleCloudAiplatformV1beta1CheckTrialEarlyStoppingStateMetatdata
|
|
@@ -5480,6 +5533,18 @@ module Google
|
|
|
5480
5533
|
class GoogleCloudAiplatformV1beta1CopyModelRequest
|
|
5481
5534
|
include Google::Apis::Core::Hashable
|
|
5482
5535
|
|
|
5536
|
+
# Optional. The user-provided custom service account to use to do the copy model.
|
|
5537
|
+
# If empty, [Vertex AI Service Agent](https://cloud.google.com/vertex-ai/docs/
|
|
5538
|
+
# general/access-control#service-agents) will be used to access resources needed
|
|
5539
|
+
# to upload the model. This account must belong to the destination project where
|
|
5540
|
+
# the model is copied to, i.e., the project specified in the `parent` field of
|
|
5541
|
+
# this request and have the Vertex AI Service Agent role in the source project.
|
|
5542
|
+
# Requires the user copying the Model to have the `iam.serviceAccounts.actAs`
|
|
5543
|
+
# permission on this service account.
|
|
5544
|
+
# Corresponds to the JSON property `customServiceAccount`
|
|
5545
|
+
# @return [String]
|
|
5546
|
+
attr_accessor :custom_service_account
|
|
5547
|
+
|
|
5483
5548
|
# Represents a customer-managed encryption key specification that can be applied
|
|
5484
5549
|
# to a Vertex AI resource.
|
|
5485
5550
|
# Corresponds to the JSON property `encryptionSpec`
|
|
@@ -5512,6 +5577,7 @@ module Google
|
|
|
5512
5577
|
|
|
5513
5578
|
# Update properties of this object
|
|
5514
5579
|
def update!(**args)
|
|
5580
|
+
@custom_service_account = args[:custom_service_account] if args.key?(:custom_service_account)
|
|
5515
5581
|
@encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
|
|
5516
5582
|
@model_id = args[:model_id] if args.key?(:model_id)
|
|
5517
5583
|
@parent_model = args[:parent_model] if args.key?(:parent_model)
|
|
@@ -26510,7 +26576,7 @@ module Google
|
|
|
26510
26576
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Metric]
|
|
26511
26577
|
attr_accessor :metric
|
|
26512
26578
|
|
|
26513
|
-
# Resource name for registered metric.
|
|
26579
|
+
# Optional. Resource name for registered metric.
|
|
26514
26580
|
# Corresponds to the JSON property `metricResourceName`
|
|
26515
26581
|
# @return [String]
|
|
26516
26582
|
attr_accessor :metric_resource_name
|
|
@@ -32033,7 +32099,8 @@ module Google
|
|
|
32033
32099
|
attr_accessor :trace_scope
|
|
32034
32100
|
|
|
32035
32101
|
# Optional. Optional trace view that will be used to query traces. If empty, the
|
|
32036
|
-
# `_Default` view will be used.
|
|
32102
|
+
# `_Default` view will be used. NOTE: This field is not supported yet and will
|
|
32103
|
+
# be ignored if set.
|
|
32037
32104
|
# Corresponds to the JSON property `traceView`
|
|
32038
32105
|
# @return [String]
|
|
32039
32106
|
attr_accessor :trace_view
|
|
@@ -40566,6 +40633,25 @@ module Google
|
|
|
40566
40633
|
end
|
|
40567
40634
|
end
|
|
40568
40635
|
|
|
40636
|
+
# Response message for ExpressModeService.RetrieveExpressProject.
|
|
40637
|
+
class GoogleCloudAiplatformV1beta1RetrieveExpressProjectResponse
|
|
40638
|
+
include Google::Apis::Core::Hashable
|
|
40639
|
+
|
|
40640
|
+
# The project for Vertex AI Express Mode.
|
|
40641
|
+
# Corresponds to the JSON property `expressProject`
|
|
40642
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExpressProject]
|
|
40643
|
+
attr_accessor :express_project
|
|
40644
|
+
|
|
40645
|
+
def initialize(**args)
|
|
40646
|
+
update!(**args)
|
|
40647
|
+
end
|
|
40648
|
+
|
|
40649
|
+
# Update properties of this object
|
|
40650
|
+
def update!(**args)
|
|
40651
|
+
@express_project = args[:express_project] if args.key?(:express_project)
|
|
40652
|
+
end
|
|
40653
|
+
end
|
|
40654
|
+
|
|
40569
40655
|
# Request message for MemoryBankService.RetrieveMemories.
|
|
40570
40656
|
class GoogleCloudAiplatformV1beta1RetrieveMemoriesRequest
|
|
40571
40657
|
include Google::Apis::Core::Hashable
|
|
@@ -42064,11 +42150,6 @@ module Google
|
|
|
42064
42150
|
# @return [String]
|
|
42065
42151
|
attr_accessor :update_time
|
|
42066
42152
|
|
|
42067
|
-
# Configuration for a warm pool of sandbox instances.
|
|
42068
|
-
# Corresponds to the JSON property `warmPoolConfig`
|
|
42069
|
-
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SandboxEnvironmentTemplateWarmPoolConfig]
|
|
42070
|
-
attr_accessor :warm_pool_config
|
|
42071
|
-
|
|
42072
42153
|
def initialize(**args)
|
|
42073
42154
|
update!(**args)
|
|
42074
42155
|
end
|
|
@@ -42083,7 +42164,6 @@ module Google
|
|
|
42083
42164
|
@name = args[:name] if args.key?(:name)
|
|
42084
42165
|
@state = args[:state] if args.key?(:state)
|
|
42085
42166
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
42086
|
-
@warm_pool_config = args[:warm_pool_config] if args.key?(:warm_pool_config)
|
|
42087
42167
|
end
|
|
42088
42168
|
end
|
|
42089
42169
|
|
|
@@ -42233,25 +42313,6 @@ module Google
|
|
|
42233
42313
|
end
|
|
42234
42314
|
end
|
|
42235
42315
|
|
|
42236
|
-
# Configuration for a warm pool of sandbox instances.
|
|
42237
|
-
class GoogleCloudAiplatformV1beta1SandboxEnvironmentTemplateWarmPoolConfig
|
|
42238
|
-
include Google::Apis::Core::Hashable
|
|
42239
|
-
|
|
42240
|
-
# Optional. The target number of pre-warmed instances to maintain.
|
|
42241
|
-
# Corresponds to the JSON property `targetInstanceCount`
|
|
42242
|
-
# @return [Fixnum]
|
|
42243
|
-
attr_accessor :target_instance_count
|
|
42244
|
-
|
|
42245
|
-
def initialize(**args)
|
|
42246
|
-
update!(**args)
|
|
42247
|
-
end
|
|
42248
|
-
|
|
42249
|
-
# Update properties of this object
|
|
42250
|
-
def update!(**args)
|
|
42251
|
-
@target_instance_count = args[:target_instance_count] if args.key?(:target_instance_count)
|
|
42252
|
-
end
|
|
42253
|
-
end
|
|
42254
|
-
|
|
42255
42316
|
# A SavedQuery is a view of the dataset. It references a subset of annotations
|
|
42256
42317
|
# by problem type and filters.
|
|
42257
42318
|
class GoogleCloudAiplatformV1beta1SavedQuery
|
|
@@ -44276,6 +44337,76 @@ module Google
|
|
|
44276
44337
|
end
|
|
44277
44338
|
end
|
|
44278
44339
|
|
|
44340
|
+
# The metadata of Multimodal Datasets.
|
|
44341
|
+
class GoogleCloudAiplatformV1beta1SchemaMultimodalDatasetMetadata
|
|
44342
|
+
include Google::Apis::Core::Hashable
|
|
44343
|
+
|
|
44344
|
+
# Configuration for how to read Gemini requests from a multimodal dataset.
|
|
44345
|
+
# Corresponds to the JSON property `geminiRequestReadConfig`
|
|
44346
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GeminiRequestReadConfig]
|
|
44347
|
+
attr_accessor :gemini_request_read_config
|
|
44348
|
+
|
|
44349
|
+
# Specifies the input source and configuration.
|
|
44350
|
+
# Corresponds to the JSON property `inputConfig`
|
|
44351
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SchemaMultimodalDatasetMetadataMultimodalDatasetInputConfig]
|
|
44352
|
+
attr_accessor :input_config
|
|
44353
|
+
|
|
44354
|
+
# The name of the column in the BigQuery table that contains the keys of the
|
|
44355
|
+
# rows.
|
|
44356
|
+
# Corresponds to the JSON property `keyColumnName`
|
|
44357
|
+
# @return [String]
|
|
44358
|
+
attr_accessor :key_column_name
|
|
44359
|
+
|
|
44360
|
+
def initialize(**args)
|
|
44361
|
+
update!(**args)
|
|
44362
|
+
end
|
|
44363
|
+
|
|
44364
|
+
# Update properties of this object
|
|
44365
|
+
def update!(**args)
|
|
44366
|
+
@gemini_request_read_config = args[:gemini_request_read_config] if args.key?(:gemini_request_read_config)
|
|
44367
|
+
@input_config = args[:input_config] if args.key?(:input_config)
|
|
44368
|
+
@key_column_name = args[:key_column_name] if args.key?(:key_column_name)
|
|
44369
|
+
end
|
|
44370
|
+
end
|
|
44371
|
+
|
|
44372
|
+
# Specifies the BigQuery source.
|
|
44373
|
+
class GoogleCloudAiplatformV1beta1SchemaMultimodalDatasetMetadataBigQuerySource
|
|
44374
|
+
include Google::Apis::Core::Hashable
|
|
44375
|
+
|
|
44376
|
+
# The URI of a BigQuery table. e.g. bq://project.bqDataset.bqTable
|
|
44377
|
+
# Corresponds to the JSON property `uri`
|
|
44378
|
+
# @return [String]
|
|
44379
|
+
attr_accessor :uri
|
|
44380
|
+
|
|
44381
|
+
def initialize(**args)
|
|
44382
|
+
update!(**args)
|
|
44383
|
+
end
|
|
44384
|
+
|
|
44385
|
+
# Update properties of this object
|
|
44386
|
+
def update!(**args)
|
|
44387
|
+
@uri = args[:uri] if args.key?(:uri)
|
|
44388
|
+
end
|
|
44389
|
+
end
|
|
44390
|
+
|
|
44391
|
+
# Specifies the input source and configuration.
|
|
44392
|
+
class GoogleCloudAiplatformV1beta1SchemaMultimodalDatasetMetadataMultimodalDatasetInputConfig
|
|
44393
|
+
include Google::Apis::Core::Hashable
|
|
44394
|
+
|
|
44395
|
+
# Specifies the BigQuery source.
|
|
44396
|
+
# Corresponds to the JSON property `bigquerySource`
|
|
44397
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SchemaMultimodalDatasetMetadataBigQuerySource]
|
|
44398
|
+
attr_accessor :bigquery_source
|
|
44399
|
+
|
|
44400
|
+
def initialize(**args)
|
|
44401
|
+
update!(**args)
|
|
44402
|
+
end
|
|
44403
|
+
|
|
44404
|
+
# Update properties of this object
|
|
44405
|
+
def update!(**args)
|
|
44406
|
+
@bigquery_source = args[:bigquery_source] if args.key?(:bigquery_source)
|
|
44407
|
+
end
|
|
44408
|
+
end
|
|
44409
|
+
|
|
44279
44410
|
# Prediction input format for Image Classification.
|
|
44280
44411
|
class GoogleCloudAiplatformV1beta1SchemaPredictInstanceImageClassificationPredictionInstance
|
|
44281
44412
|
include Google::Apis::Core::Hashable
|
|
@@ -50583,6 +50714,39 @@ module Google
|
|
|
50583
50714
|
end
|
|
50584
50715
|
end
|
|
50585
50716
|
|
|
50717
|
+
# Request message for ExpressModeService.SignUp.
|
|
50718
|
+
class GoogleCloudAiplatformV1beta1SignUpRequest
|
|
50719
|
+
include Google::Apis::Core::Hashable
|
|
50720
|
+
|
|
50721
|
+
# Optional. Whether to return the default API key string in the response.
|
|
50722
|
+
# Corresponds to the JSON property `getDefaultApiKey`
|
|
50723
|
+
# @return [Boolean]
|
|
50724
|
+
attr_accessor :get_default_api_key
|
|
50725
|
+
alias_method :get_default_api_key?, :get_default_api_key
|
|
50726
|
+
|
|
50727
|
+
# Required. The desired region for the express project.
|
|
50728
|
+
# Corresponds to the JSON property `region`
|
|
50729
|
+
# @return [String]
|
|
50730
|
+
attr_accessor :region
|
|
50731
|
+
|
|
50732
|
+
# Required. Whether the Terms of Service are accepted.
|
|
50733
|
+
# Corresponds to the JSON property `tosAccepted`
|
|
50734
|
+
# @return [Boolean]
|
|
50735
|
+
attr_accessor :tos_accepted
|
|
50736
|
+
alias_method :tos_accepted?, :tos_accepted
|
|
50737
|
+
|
|
50738
|
+
def initialize(**args)
|
|
50739
|
+
update!(**args)
|
|
50740
|
+
end
|
|
50741
|
+
|
|
50742
|
+
# Update properties of this object
|
|
50743
|
+
def update!(**args)
|
|
50744
|
+
@get_default_api_key = args[:get_default_api_key] if args.key?(:get_default_api_key)
|
|
50745
|
+
@region = args[:region] if args.key?(:region)
|
|
50746
|
+
@tos_accepted = args[:tos_accepted] if args.key?(:tos_accepted)
|
|
50747
|
+
end
|
|
50748
|
+
end
|
|
50749
|
+
|
|
50586
50750
|
# The Slack source for the ImportRagFilesRequest.
|
|
50587
50751
|
class GoogleCloudAiplatformV1beta1SlackSource
|
|
50588
50752
|
include Google::Apis::Core::Hashable
|
|
@@ -56427,6 +56591,11 @@ module Google
|
|
|
56427
56591
|
# @return [String]
|
|
56428
56592
|
attr_accessor :update_time
|
|
56429
56593
|
|
|
56594
|
+
# Tuning Spec for Veo LoRA Model Tuning.
|
|
56595
|
+
# Corresponds to the JSON property `veoLoraTuningSpec`
|
|
56596
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1VeoLoraTuningSpec]
|
|
56597
|
+
attr_accessor :veo_lora_tuning_spec
|
|
56598
|
+
|
|
56430
56599
|
# Tuning Spec for Veo Model Tuning.
|
|
56431
56600
|
# Corresponds to the JSON property `veoTuningSpec`
|
|
56432
56601
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1VeoTuningSpec]
|
|
@@ -56468,6 +56637,7 @@ module Google
|
|
|
56468
56637
|
@tuning_job_metadata = args[:tuning_job_metadata] if args.key?(:tuning_job_metadata)
|
|
56469
56638
|
@tuning_job_state = args[:tuning_job_state] if args.key?(:tuning_job_state)
|
|
56470
56639
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
56640
|
+
@veo_lora_tuning_spec = args[:veo_lora_tuning_spec] if args.key?(:veo_lora_tuning_spec)
|
|
56471
56641
|
@veo_tuning_spec = args[:veo_tuning_spec] if args.key?(:veo_tuning_spec)
|
|
56472
56642
|
end
|
|
56473
56643
|
end
|
|
@@ -57722,6 +57892,47 @@ module Google
|
|
|
57722
57892
|
end
|
|
57723
57893
|
end
|
|
57724
57894
|
|
|
57895
|
+
# Tuning Spec for Veo LoRA Model Tuning.
|
|
57896
|
+
class GoogleCloudAiplatformV1beta1VeoLoraTuningSpec
|
|
57897
|
+
include Google::Apis::Core::Hashable
|
|
57898
|
+
|
|
57899
|
+
# Hyperparameters for Veo.
|
|
57900
|
+
# Corresponds to the JSON property `hyperParameters`
|
|
57901
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1VeoHyperParameters]
|
|
57902
|
+
attr_accessor :hyper_parameters
|
|
57903
|
+
|
|
57904
|
+
# Required. Training dataset used for tuning. The dataset can be specified as
|
|
57905
|
+
# either a Cloud Storage path to a JSONL file or as the resource name of a
|
|
57906
|
+
# Vertex Multimodal Dataset.
|
|
57907
|
+
# Corresponds to the JSON property `trainingDatasetUri`
|
|
57908
|
+
# @return [String]
|
|
57909
|
+
attr_accessor :training_dataset_uri
|
|
57910
|
+
|
|
57911
|
+
# Optional. Validation dataset used for tuning. The dataset can be specified as
|
|
57912
|
+
# either a Cloud Storage path to a JSONL file or as the resource name of a
|
|
57913
|
+
# Vertex Multimodal Dataset.
|
|
57914
|
+
# Corresponds to the JSON property `validationDatasetUri`
|
|
57915
|
+
# @return [String]
|
|
57916
|
+
attr_accessor :validation_dataset_uri
|
|
57917
|
+
|
|
57918
|
+
# Optional. The orientation of the video. Defaults to LANDSCAPE.
|
|
57919
|
+
# Corresponds to the JSON property `videoOrientation`
|
|
57920
|
+
# @return [String]
|
|
57921
|
+
attr_accessor :video_orientation
|
|
57922
|
+
|
|
57923
|
+
def initialize(**args)
|
|
57924
|
+
update!(**args)
|
|
57925
|
+
end
|
|
57926
|
+
|
|
57927
|
+
# Update properties of this object
|
|
57928
|
+
def update!(**args)
|
|
57929
|
+
@hyper_parameters = args[:hyper_parameters] if args.key?(:hyper_parameters)
|
|
57930
|
+
@training_dataset_uri = args[:training_dataset_uri] if args.key?(:training_dataset_uri)
|
|
57931
|
+
@validation_dataset_uri = args[:validation_dataset_uri] if args.key?(:validation_dataset_uri)
|
|
57932
|
+
@video_orientation = args[:video_orientation] if args.key?(:video_orientation)
|
|
57933
|
+
end
|
|
57934
|
+
end
|
|
57935
|
+
|
|
57725
57936
|
# Tuning Spec for Veo Model Tuning.
|
|
57726
57937
|
class GoogleCloudAiplatformV1beta1VeoTuningSpec
|
|
57727
57938
|
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.79.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 = "20260427"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|