google-apis-aiplatform_v1beta1 0.6.0 → 0.8.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 +8 -0
- data/lib/google/apis/aiplatform_v1beta1/classes.rb +159 -23
- data/lib/google/apis/aiplatform_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/aiplatform_v1beta1/representations.rb +53 -0
- data/lib/google/apis/aiplatform_v1beta1/service.rb +56 -38
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cb4fa65410cb2d55e9ab55154b5ba0e3c65c66818028fa7589dc3ef85b5eac5f
|
4
|
+
data.tar.gz: ca09437eb7d44f20fcd334d9bbee81cfef693fd75f7a34fc97cf8c2fd6e2ff88
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2881f50d63236b69b370a64b0f93c4bf771bc5d46a596af0bcecf68da6642e2829a7afc0af5441a2b0cf5716eae5ef300e10d02fb7599021561e523cc040a0db
|
7
|
+
data.tar.gz: a51077036393dd17cfcf752389134ea34cf00a09e9d80f3deed6f35b0e1f6395278cedfa5240da952355d54073ebb1b0e1ab1ea68e87f90d86c4166306b81a28
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-aiplatform_v1beta1
|
2
2
|
|
3
|
+
### v0.8.0 (2023-10-29)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231023
|
6
|
+
|
7
|
+
### v0.7.0 (2023-10-22)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231012
|
10
|
+
|
3
11
|
### v0.6.0 (2023-10-15)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20231002
|
@@ -2486,9 +2486,8 @@ module Google
|
|
2486
2486
|
class GoogleCloudAiplatformV1beta1CreateFeatureRequest
|
2487
2487
|
include Google::Apis::Core::Hashable
|
2488
2488
|
|
2489
|
-
# Feature Metadata information
|
2490
|
-
#
|
2491
|
-
# apple.
|
2489
|
+
# Feature Metadata information. For example, color is a feature that describes
|
2490
|
+
# an apple.
|
2492
2491
|
# Corresponds to the JSON property `feature`
|
2493
2492
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Feature]
|
2494
2493
|
attr_accessor :feature
|
@@ -2501,7 +2500,11 @@ module Google
|
|
2501
2500
|
# @return [String]
|
2502
2501
|
attr_accessor :feature_id
|
2503
2502
|
|
2504
|
-
#
|
2503
|
+
# Required. The resource name of the EntityType or FeatureGroup to create a
|
2504
|
+
# Feature. Format for entity_type as parent: `projects/`project`/locations/`
|
2505
|
+
# location`/featurestores/`featurestore`/entityTypes/`entity_type`` Format for
|
2506
|
+
# feature_group as parent: `projects/`project`/locations/`location`/
|
2507
|
+
# featureGroups/`feature_group``
|
2505
2508
|
# Corresponds to the JSON property `parent`
|
2506
2509
|
# @return [String]
|
2507
2510
|
attr_accessor :parent
|
@@ -2619,6 +2622,32 @@ module Google
|
|
2619
2622
|
end
|
2620
2623
|
end
|
2621
2624
|
|
2625
|
+
# Metadata information for NotebookService.CreateNotebookExecutionJob.
|
2626
|
+
class GoogleCloudAiplatformV1beta1CreateNotebookExecutionJobOperationMetadata
|
2627
|
+
include Google::Apis::Core::Hashable
|
2628
|
+
|
2629
|
+
# Generic Metadata shared by all operations.
|
2630
|
+
# Corresponds to the JSON property `genericMetadata`
|
2631
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenericOperationMetadata]
|
2632
|
+
attr_accessor :generic_metadata
|
2633
|
+
|
2634
|
+
# A human-readable message that shows the intermediate progress details of
|
2635
|
+
# NotebookRuntime.
|
2636
|
+
# Corresponds to the JSON property `progressMessage`
|
2637
|
+
# @return [String]
|
2638
|
+
attr_accessor :progress_message
|
2639
|
+
|
2640
|
+
def initialize(**args)
|
2641
|
+
update!(**args)
|
2642
|
+
end
|
2643
|
+
|
2644
|
+
# Update properties of this object
|
2645
|
+
def update!(**args)
|
2646
|
+
@generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
|
2647
|
+
@progress_message = args[:progress_message] if args.key?(:progress_message)
|
2648
|
+
end
|
2649
|
+
end
|
2650
|
+
|
2622
2651
|
# Metadata information for NotebookService.CreateNotebookRuntimeTemplate.
|
2623
2652
|
class GoogleCloudAiplatformV1beta1CreateNotebookRuntimeTemplateOperationMetadata
|
2624
2653
|
include Google::Apis::Core::Hashable
|
@@ -3048,6 +3077,13 @@ module Google
|
|
3048
3077
|
# @return [String]
|
3049
3078
|
attr_accessor :persistent_resource_id
|
3050
3079
|
|
3080
|
+
# The ID of the location to store protected artifacts. e.g. us-central1.
|
3081
|
+
# Populate only when the location is different than CustomJob location. List of
|
3082
|
+
# supported locations: https://cloud.google.com/vertex-ai/docs/general/locations
|
3083
|
+
# Corresponds to the JSON property `protectedArtifactLocationId`
|
3084
|
+
# @return [String]
|
3085
|
+
attr_accessor :protected_artifact_location_id
|
3086
|
+
|
3051
3087
|
# Optional. A list of names for the reserved ip ranges under the VPC network
|
3052
3088
|
# that can be used for this job. If set, we will deploy the job within the
|
3053
3089
|
# provided ip ranges. Otherwise, the job will be deployed to any ip ranges under
|
@@ -3096,6 +3132,7 @@ module Google
|
|
3096
3132
|
@experiment_run = args[:experiment_run] if args.key?(:experiment_run)
|
3097
3133
|
@network = args[:network] if args.key?(:network)
|
3098
3134
|
@persistent_resource_id = args[:persistent_resource_id] if args.key?(:persistent_resource_id)
|
3135
|
+
@protected_artifact_location_id = args[:protected_artifact_location_id] if args.key?(:protected_artifact_location_id)
|
3099
3136
|
@reserved_ip_ranges = args[:reserved_ip_ranges] if args.key?(:reserved_ip_ranges)
|
3100
3137
|
@scheduling = args[:scheduling] if args.key?(:scheduling)
|
3101
3138
|
@service_account = args[:service_account] if args.key?(:service_account)
|
@@ -6294,13 +6331,13 @@ module Google
|
|
6294
6331
|
end
|
6295
6332
|
end
|
6296
6333
|
|
6297
|
-
# Feature Metadata information
|
6298
|
-
#
|
6299
|
-
# apple.
|
6334
|
+
# Feature Metadata information. For example, color is a feature that describes
|
6335
|
+
# an apple.
|
6300
6336
|
class GoogleCloudAiplatformV1beta1Feature
|
6301
6337
|
include Google::Apis::Core::Hashable
|
6302
6338
|
|
6303
|
-
# Output only.
|
6339
|
+
# Output only. Only applicable for Vertex AI Feature Store (Legacy). Timestamp
|
6340
|
+
# when this EntityType was created.
|
6304
6341
|
# Corresponds to the JSON property `createTime`
|
6305
6342
|
# @return [String]
|
6306
6343
|
attr_accessor :create_time
|
@@ -6310,10 +6347,11 @@ module Google
|
|
6310
6347
|
# @return [String]
|
6311
6348
|
attr_accessor :description
|
6312
6349
|
|
6313
|
-
# Optional.
|
6314
|
-
#
|
6315
|
-
#
|
6316
|
-
#
|
6350
|
+
# Optional. Only applicable for Vertex AI Feature Store (Legacy). If not set,
|
6351
|
+
# use the monitoring_config defined for the EntityType this Feature belongs to.
|
6352
|
+
# Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can
|
6353
|
+
# enable monitoring. If set to true, all types of data monitoring are disabled
|
6354
|
+
# despite the config on EntityType.
|
6317
6355
|
# Corresponds to the JSON property `disableMonitoring`
|
6318
6356
|
# @return [Boolean]
|
6319
6357
|
attr_accessor :disable_monitoring
|
@@ -6341,34 +6379,38 @@ module Google
|
|
6341
6379
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeaturestoreMonitoringConfig]
|
6342
6380
|
attr_accessor :monitoring_config
|
6343
6381
|
|
6344
|
-
# Output only.
|
6345
|
-
#
|
6382
|
+
# Output only. Only applicable for Vertex AI Feature Store (Legacy). A list of
|
6383
|
+
# historical SnapshotAnalysis stats requested by user, sorted by
|
6384
|
+
# FeatureStatsAnomaly.start_time descending.
|
6346
6385
|
# Corresponds to the JSON property `monitoringStats`
|
6347
6386
|
# @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureStatsAnomaly>]
|
6348
6387
|
attr_accessor :monitoring_stats
|
6349
6388
|
|
6350
|
-
# Output only.
|
6351
|
-
# objectives.
|
6389
|
+
# Output only. Only applicable for Vertex AI Feature Store (Legacy). The list of
|
6390
|
+
# historical stats and anomalies with specified objectives.
|
6352
6391
|
# Corresponds to the JSON property `monitoringStatsAnomalies`
|
6353
6392
|
# @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureMonitoringStatsAnomaly>]
|
6354
6393
|
attr_accessor :monitoring_stats_anomalies
|
6355
6394
|
|
6356
6395
|
# Immutable. Name of the Feature. Format: `projects/`project`/locations/`
|
6357
6396
|
# location`/featurestores/`featurestore`/entityTypes/`entity_type`/features/`
|
6358
|
-
# feature``
|
6359
|
-
#
|
6360
|
-
#
|
6361
|
-
#
|
6397
|
+
# feature`` `projects/`project`/locations/`location`/featureGroups/`
|
6398
|
+
# feature_group`/features/`feature`` The last part feature is assigned by the
|
6399
|
+
# client. The feature can be up to 64 characters long and can consist only of
|
6400
|
+
# ASCII Latin letters A-Z and a-z, underscore(_), and ASCII digits 0-9 starting
|
6401
|
+
# with a letter. The value will be unique given an entity type.
|
6362
6402
|
# Corresponds to the JSON property `name`
|
6363
6403
|
# @return [String]
|
6364
6404
|
attr_accessor :name
|
6365
6405
|
|
6366
|
-
# Output only.
|
6406
|
+
# Output only. Only applicable for Vertex AI Feature Store (Legacy). Timestamp
|
6407
|
+
# when this EntityType was most recently updated.
|
6367
6408
|
# Corresponds to the JSON property `updateTime`
|
6368
6409
|
# @return [String]
|
6369
6410
|
attr_accessor :update_time
|
6370
6411
|
|
6371
|
-
# Immutable.
|
6412
|
+
# Immutable. Only applicable for Vertex AI Feature Store (Legacy). Type of
|
6413
|
+
# Feature value.
|
6372
6414
|
# Corresponds to the JSON property `valueType`
|
6373
6415
|
# @return [String]
|
6374
6416
|
attr_accessor :value_type
|
@@ -23478,7 +23520,7 @@ module Google
|
|
23478
23520
|
end
|
23479
23521
|
end
|
23480
23522
|
|
23481
|
-
# A message representing a Study.
|
23523
|
+
# A message representing a Study. Next id: 12
|
23482
23524
|
class GoogleCloudAiplatformV1beta1Study
|
23483
23525
|
include Google::Apis::Core::Hashable
|
23484
23526
|
|
@@ -23596,6 +23638,12 @@ module Google
|
|
23596
23638
|
# @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StudySpecParameterSpec>]
|
23597
23639
|
attr_accessor :parameters
|
23598
23640
|
|
23641
|
+
# The configuration (stopping conditions) for automated stopping of a Study.
|
23642
|
+
# Conditions include trial budgets, time budgets, and convergence detection.
|
23643
|
+
# Corresponds to the JSON property `studyStoppingConfig`
|
23644
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StudySpecStudyStoppingConfig]
|
23645
|
+
attr_accessor :study_stopping_config
|
23646
|
+
|
23599
23647
|
# This contains flag for manually disabling transfer learning for a study. The
|
23600
23648
|
# names of prior studies being used for transfer learning (if any) are also
|
23601
23649
|
# listed here.
|
@@ -23618,6 +23666,7 @@ module Google
|
|
23618
23666
|
@metrics = args[:metrics] if args.key?(:metrics)
|
23619
23667
|
@observation_noise = args[:observation_noise] if args.key?(:observation_noise)
|
23620
23668
|
@parameters = args[:parameters] if args.key?(:parameters)
|
23669
|
+
@study_stopping_config = args[:study_stopping_config] if args.key?(:study_stopping_config)
|
23621
23670
|
@transfer_learning_config = args[:transfer_learning_config] if args.key?(:transfer_learning_config)
|
23622
23671
|
end
|
23623
23672
|
end
|
@@ -24161,6 +24210,68 @@ module Google
|
|
24161
24210
|
end
|
24162
24211
|
end
|
24163
24212
|
|
24213
|
+
# The configuration (stopping conditions) for automated stopping of a Study.
|
24214
|
+
# Conditions include trial budgets, time budgets, and convergence detection.
|
24215
|
+
class GoogleCloudAiplatformV1beta1StudySpecStudyStoppingConfig
|
24216
|
+
include Google::Apis::Core::Hashable
|
24217
|
+
|
24218
|
+
# If the objective value has not improved for this much time, stop the study.
|
24219
|
+
# WARNING: Effective only for single-objective studies.
|
24220
|
+
# Corresponds to the JSON property `maxDurationNoProgress`
|
24221
|
+
# @return [String]
|
24222
|
+
attr_accessor :max_duration_no_progress
|
24223
|
+
|
24224
|
+
# If there are more than this many trials, stop the study.
|
24225
|
+
# Corresponds to the JSON property `maxNumTrials`
|
24226
|
+
# @return [Fixnum]
|
24227
|
+
attr_accessor :max_num_trials
|
24228
|
+
|
24229
|
+
# If the objective value has not improved for this many consecutive trials, stop
|
24230
|
+
# the study. WARNING: Effective only for single-objective studies.
|
24231
|
+
# Corresponds to the JSON property `maxNumTrialsNoProgress`
|
24232
|
+
# @return [Fixnum]
|
24233
|
+
attr_accessor :max_num_trials_no_progress
|
24234
|
+
|
24235
|
+
# Time-based Constraint for Study
|
24236
|
+
# Corresponds to the JSON property `maximumRuntimeConstraint`
|
24237
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StudyTimeConstraint]
|
24238
|
+
attr_accessor :maximum_runtime_constraint
|
24239
|
+
|
24240
|
+
# If there are fewer than this many COMPLETED trials, do not stop the study.
|
24241
|
+
# Corresponds to the JSON property `minNumTrials`
|
24242
|
+
# @return [Fixnum]
|
24243
|
+
attr_accessor :min_num_trials
|
24244
|
+
|
24245
|
+
# Time-based Constraint for Study
|
24246
|
+
# Corresponds to the JSON property `minimumRuntimeConstraint`
|
24247
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StudyTimeConstraint]
|
24248
|
+
attr_accessor :minimum_runtime_constraint
|
24249
|
+
|
24250
|
+
# If true, a Study enters STOPPING_ASAP whenever it would normally enters
|
24251
|
+
# STOPPING state. The bottom line is: set to true if you want to interrupt on-
|
24252
|
+
# going evaluations of Trials as soon as the study stopping condition is met. (
|
24253
|
+
# Please see Study.State documentation for the source of truth).
|
24254
|
+
# Corresponds to the JSON property `shouldStopAsap`
|
24255
|
+
# @return [Boolean]
|
24256
|
+
attr_accessor :should_stop_asap
|
24257
|
+
alias_method :should_stop_asap?, :should_stop_asap
|
24258
|
+
|
24259
|
+
def initialize(**args)
|
24260
|
+
update!(**args)
|
24261
|
+
end
|
24262
|
+
|
24263
|
+
# Update properties of this object
|
24264
|
+
def update!(**args)
|
24265
|
+
@max_duration_no_progress = args[:max_duration_no_progress] if args.key?(:max_duration_no_progress)
|
24266
|
+
@max_num_trials = args[:max_num_trials] if args.key?(:max_num_trials)
|
24267
|
+
@max_num_trials_no_progress = args[:max_num_trials_no_progress] if args.key?(:max_num_trials_no_progress)
|
24268
|
+
@maximum_runtime_constraint = args[:maximum_runtime_constraint] if args.key?(:maximum_runtime_constraint)
|
24269
|
+
@min_num_trials = args[:min_num_trials] if args.key?(:min_num_trials)
|
24270
|
+
@minimum_runtime_constraint = args[:minimum_runtime_constraint] if args.key?(:minimum_runtime_constraint)
|
24271
|
+
@should_stop_asap = args[:should_stop_asap] if args.key?(:should_stop_asap)
|
24272
|
+
end
|
24273
|
+
end
|
24274
|
+
|
24164
24275
|
# This contains flag for manually disabling transfer learning for a study. The
|
24165
24276
|
# names of prior studies being used for transfer learning (if any) are also
|
24166
24277
|
# listed here.
|
@@ -24191,6 +24302,31 @@ module Google
|
|
24191
24302
|
end
|
24192
24303
|
end
|
24193
24304
|
|
24305
|
+
# Time-based Constraint for Study
|
24306
|
+
class GoogleCloudAiplatformV1beta1StudyTimeConstraint
|
24307
|
+
include Google::Apis::Core::Hashable
|
24308
|
+
|
24309
|
+
# Compares the wallclock time to this time. Must use UTC timezone.
|
24310
|
+
# Corresponds to the JSON property `endTime`
|
24311
|
+
# @return [String]
|
24312
|
+
attr_accessor :end_time
|
24313
|
+
|
24314
|
+
# Counts the wallclock time passed since the creation of this Study.
|
24315
|
+
# Corresponds to the JSON property `maxDuration`
|
24316
|
+
# @return [String]
|
24317
|
+
attr_accessor :max_duration
|
24318
|
+
|
24319
|
+
def initialize(**args)
|
24320
|
+
update!(**args)
|
24321
|
+
end
|
24322
|
+
|
24323
|
+
# Update properties of this object
|
24324
|
+
def update!(**args)
|
24325
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
24326
|
+
@max_duration = args[:max_duration] if args.key?(:max_duration)
|
24327
|
+
end
|
24328
|
+
end
|
24329
|
+
|
24194
24330
|
# Details of operations that perform Trials suggestion.
|
24195
24331
|
class GoogleCloudAiplatformV1beta1SuggestTrialsMetadata
|
24196
24332
|
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.8.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231023"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -538,6 +538,12 @@ module Google
|
|
538
538
|
include Google::Apis::Core::JsonObjectSupport
|
539
539
|
end
|
540
540
|
|
541
|
+
class GoogleCloudAiplatformV1beta1CreateNotebookExecutionJobOperationMetadata
|
542
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
543
|
+
|
544
|
+
include Google::Apis::Core::JsonObjectSupport
|
545
|
+
end
|
546
|
+
|
541
547
|
class GoogleCloudAiplatformV1beta1CreateNotebookRuntimeTemplateOperationMetadata
|
542
548
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
543
549
|
|
@@ -4030,12 +4036,24 @@ module Google
|
|
4030
4036
|
include Google::Apis::Core::JsonObjectSupport
|
4031
4037
|
end
|
4032
4038
|
|
4039
|
+
class GoogleCloudAiplatformV1beta1StudySpecStudyStoppingConfig
|
4040
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4041
|
+
|
4042
|
+
include Google::Apis::Core::JsonObjectSupport
|
4043
|
+
end
|
4044
|
+
|
4033
4045
|
class GoogleCloudAiplatformV1beta1StudySpecTransferLearningConfig
|
4034
4046
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4035
4047
|
|
4036
4048
|
include Google::Apis::Core::JsonObjectSupport
|
4037
4049
|
end
|
4038
4050
|
|
4051
|
+
class GoogleCloudAiplatformV1beta1StudyTimeConstraint
|
4052
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4053
|
+
|
4054
|
+
include Google::Apis::Core::JsonObjectSupport
|
4055
|
+
end
|
4056
|
+
|
4039
4057
|
class GoogleCloudAiplatformV1beta1SuggestTrialsMetadata
|
4040
4058
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4041
4059
|
|
@@ -5295,6 +5313,15 @@ module Google
|
|
5295
5313
|
end
|
5296
5314
|
end
|
5297
5315
|
|
5316
|
+
class GoogleCloudAiplatformV1beta1CreateNotebookExecutionJobOperationMetadata
|
5317
|
+
# @private
|
5318
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5319
|
+
property :generic_metadata, as: 'genericMetadata', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenericOperationMetadata, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenericOperationMetadata::Representation
|
5320
|
+
|
5321
|
+
property :progress_message, as: 'progressMessage'
|
5322
|
+
end
|
5323
|
+
end
|
5324
|
+
|
5298
5325
|
class GoogleCloudAiplatformV1beta1CreateNotebookRuntimeTemplateOperationMetadata
|
5299
5326
|
# @private
|
5300
5327
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5421,6 +5448,7 @@ module Google
|
|
5421
5448
|
property :experiment_run, as: 'experimentRun'
|
5422
5449
|
property :network, as: 'network'
|
5423
5450
|
property :persistent_resource_id, as: 'persistentResourceId'
|
5451
|
+
property :protected_artifact_location_id, as: 'protectedArtifactLocationId'
|
5424
5452
|
collection :reserved_ip_ranges, as: 'reservedIpRanges'
|
5425
5453
|
property :scheduling, as: 'scheduling', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Scheduling, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Scheduling::Representation
|
5426
5454
|
|
@@ -11034,6 +11062,8 @@ module Google
|
|
11034
11062
|
property :observation_noise, as: 'observationNoise'
|
11035
11063
|
collection :parameters, as: 'parameters', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StudySpecParameterSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StudySpecParameterSpec::Representation
|
11036
11064
|
|
11065
|
+
property :study_stopping_config, as: 'studyStoppingConfig', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StudySpecStudyStoppingConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StudySpecStudyStoppingConfig::Representation
|
11066
|
+
|
11037
11067
|
property :transfer_learning_config, as: 'transferLearningConfig', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StudySpecTransferLearningConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StudySpecTransferLearningConfig::Representation
|
11038
11068
|
|
11039
11069
|
end
|
@@ -11181,6 +11211,21 @@ module Google
|
|
11181
11211
|
end
|
11182
11212
|
end
|
11183
11213
|
|
11214
|
+
class GoogleCloudAiplatformV1beta1StudySpecStudyStoppingConfig
|
11215
|
+
# @private
|
11216
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
11217
|
+
property :max_duration_no_progress, as: 'maxDurationNoProgress'
|
11218
|
+
property :max_num_trials, as: 'maxNumTrials'
|
11219
|
+
property :max_num_trials_no_progress, as: 'maxNumTrialsNoProgress'
|
11220
|
+
property :maximum_runtime_constraint, as: 'maximumRuntimeConstraint', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StudyTimeConstraint, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StudyTimeConstraint::Representation
|
11221
|
+
|
11222
|
+
property :min_num_trials, as: 'minNumTrials'
|
11223
|
+
property :minimum_runtime_constraint, as: 'minimumRuntimeConstraint', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StudyTimeConstraint, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StudyTimeConstraint::Representation
|
11224
|
+
|
11225
|
+
property :should_stop_asap, as: 'shouldStopAsap'
|
11226
|
+
end
|
11227
|
+
end
|
11228
|
+
|
11184
11229
|
class GoogleCloudAiplatformV1beta1StudySpecTransferLearningConfig
|
11185
11230
|
# @private
|
11186
11231
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -11189,6 +11234,14 @@ module Google
|
|
11189
11234
|
end
|
11190
11235
|
end
|
11191
11236
|
|
11237
|
+
class GoogleCloudAiplatformV1beta1StudyTimeConstraint
|
11238
|
+
# @private
|
11239
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
11240
|
+
property :end_time, as: 'endTime'
|
11241
|
+
property :max_duration, as: 'maxDuration'
|
11242
|
+
end
|
11243
|
+
end
|
11244
|
+
|
11192
11245
|
class GoogleCloudAiplatformV1beta1SuggestTrialsMetadata
|
11193
11246
|
# @private
|
11194
11247
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4797,6 +4797,11 @@ module Google
|
|
4797
4797
|
|
4798
4798
|
# Creates a new Feature in a given FeatureGroup.
|
4799
4799
|
# @param [String] parent
|
4800
|
+
# Required. The resource name of the EntityType or FeatureGroup to create a
|
4801
|
+
# Feature. Format for entity_type as parent: `projects/`project`/locations/`
|
4802
|
+
# location`/featurestores/`featurestore`/entityTypes/`entity_type`` Format for
|
4803
|
+
# feature_group as parent: `projects/`project`/locations/`location`/
|
4804
|
+
# featureGroups/`feature_group``
|
4800
4805
|
# @param [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Feature] google_cloud_aiplatform_v1beta1_feature_object
|
4801
4806
|
# @param [String] feature_id
|
4802
4807
|
# Required. The ID to use for the Feature, which will become the final component
|
@@ -4868,9 +4873,10 @@ module Google
|
|
4868
4873
|
|
4869
4874
|
# Gets details of a single Feature.
|
4870
4875
|
# @param [String] name
|
4871
|
-
# Required. The name of the Feature resource. Format: `
|
4872
|
-
# locations/`location`/featurestores/`featurestore`/
|
4873
|
-
# projects/`
|
4876
|
+
# Required. The name of the Feature resource. Format for entity_type as parent: `
|
4877
|
+
# projects/`project`/locations/`location`/featurestores/`featurestore`/
|
4878
|
+
# entityTypes/`entity_type`` Format for feature_group as parent: `projects/`
|
4879
|
+
# project`/locations/`location`/featureGroups/`feature_group``
|
4874
4880
|
# @param [String] fields
|
4875
4881
|
# Selector specifying which fields to include in a partial response.
|
4876
4882
|
# @param [String] quota_user
|
@@ -4900,10 +4906,10 @@ module Google
|
|
4900
4906
|
|
4901
4907
|
# Lists Features in a given FeatureGroup.
|
4902
4908
|
# @param [String] parent
|
4903
|
-
# Required. The resource name of the Location to list Features. Format
|
4904
|
-
# projects/`project`/locations/`location`/featurestores/`
|
4905
|
-
# entityTypes/`entity_type`` `
|
4906
|
-
# featureGroups/`feature_group``
|
4909
|
+
# Required. The resource name of the Location to list Features. Format for
|
4910
|
+
# entity_type as parent: `projects/`project`/locations/`location`/featurestores/`
|
4911
|
+
# featurestore`/entityTypes/`entity_type`` Format for feature_group as parent: `
|
4912
|
+
# projects/`project`/locations/`location`/featureGroups/`feature_group``
|
4907
4913
|
# @param [String] filter
|
4908
4914
|
# Lists the Features that match the filter expression. The following filters are
|
4909
4915
|
# supported: * `value_type`: Supports = and != comparisons. * `create_time`:
|
@@ -4917,9 +4923,10 @@ module Google
|
|
4917
4923
|
# Features having both (active: yes) and (env: prod) labels. * `labels.env: *` --
|
4918
4924
|
# > Any Feature which has a label with 'env' as the key.
|
4919
4925
|
# @param [Fixnum] latest_stats_count
|
4920
|
-
# If set, return the most
|
4921
|
-
#
|
4922
|
-
#
|
4926
|
+
# Only applicable for Vertex AI Feature Store (Legacy). If set, return the most
|
4927
|
+
# recent ListFeaturesRequest.latest_stats_count of stats for each Feature in
|
4928
|
+
# response. Valid value is [0, 10]. If number of stats exists <
|
4929
|
+
# ListFeaturesRequest.latest_stats_count, return all existing stats.
|
4923
4930
|
# @param [String] order_by
|
4924
4931
|
# A comma-separated list of fields to order by, sorted in ascending order. Use "
|
4925
4932
|
# desc" after a field name for descending. Supported fields: * `feature_id` * `
|
@@ -4930,10 +4937,11 @@ module Google
|
|
4930
4937
|
# this value. If unspecified, at most 1000 Features will be returned. The
|
4931
4938
|
# maximum value is 1000; any value greater than 1000 will be coerced to 1000.
|
4932
4939
|
# @param [String] page_token
|
4933
|
-
# A page token, received from a previous FeaturestoreService.ListFeatures call
|
4934
|
-
# Provide this to retrieve the
|
4935
|
-
#
|
4936
|
-
#
|
4940
|
+
# A page token, received from a previous FeaturestoreService.ListFeatures call
|
4941
|
+
# or FeatureRegistryService.ListFeatures call. Provide this to retrieve the
|
4942
|
+
# subsequent page. When paginating, all other parameters provided to
|
4943
|
+
# FeaturestoreService.ListFeatures or or FeatureRegistryService.ListFeatures
|
4944
|
+
# must match the call that provided the page token.
|
4937
4945
|
# @param [String] read_mask
|
4938
4946
|
# Mask specifying which fields to read.
|
4939
4947
|
# @param [String] fields
|
@@ -4973,10 +4981,11 @@ module Google
|
|
4973
4981
|
# @param [String] name
|
4974
4982
|
# Immutable. Name of the Feature. Format: `projects/`project`/locations/`
|
4975
4983
|
# location`/featurestores/`featurestore`/entityTypes/`entity_type`/features/`
|
4976
|
-
# feature``
|
4977
|
-
#
|
4978
|
-
#
|
4979
|
-
#
|
4984
|
+
# feature`` `projects/`project`/locations/`location`/featureGroups/`
|
4985
|
+
# feature_group`/features/`feature`` The last part feature is assigned by the
|
4986
|
+
# client. The feature can be up to 64 characters long and can consist only of
|
4987
|
+
# ASCII Latin letters A-Z and a-z, underscore(_), and ASCII digits 0-9 starting
|
4988
|
+
# with a letter. The value will be unique given an entity type.
|
4980
4989
|
# @param [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Feature] google_cloud_aiplatform_v1beta1_feature_object
|
4981
4990
|
# @param [String] update_mask
|
4982
4991
|
# Field mask is used to specify the fields to be overwritten in the Features
|
@@ -4985,7 +4994,7 @@ module Google
|
|
4985
4994
|
# the mask. If the user does not provide a mask then only the non-empty fields
|
4986
4995
|
# present in the request will be overwritten. Set the update_mask to `*` to
|
4987
4996
|
# override all fields. Updatable fields: * `description` * `labels` * `
|
4988
|
-
# disable_monitoring`
|
4997
|
+
# disable_monitoring` (Not supported for FeatureRegistry Feature)
|
4989
4998
|
# @param [String] fields
|
4990
4999
|
# Selector specifying which fields to include in a partial response.
|
4991
5000
|
# @param [String] quota_user
|
@@ -7268,6 +7277,11 @@ module Google
|
|
7268
7277
|
|
7269
7278
|
# Creates a new Feature in a given EntityType.
|
7270
7279
|
# @param [String] parent
|
7280
|
+
# Required. The resource name of the EntityType or FeatureGroup to create a
|
7281
|
+
# Feature. Format for entity_type as parent: `projects/`project`/locations/`
|
7282
|
+
# location`/featurestores/`featurestore`/entityTypes/`entity_type`` Format for
|
7283
|
+
# feature_group as parent: `projects/`project`/locations/`location`/
|
7284
|
+
# featureGroups/`feature_group``
|
7271
7285
|
# @param [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Feature] google_cloud_aiplatform_v1beta1_feature_object
|
7272
7286
|
# @param [String] feature_id
|
7273
7287
|
# Required. The ID to use for the Feature, which will become the final component
|
@@ -7339,9 +7353,10 @@ module Google
|
|
7339
7353
|
|
7340
7354
|
# Gets details of a single Feature.
|
7341
7355
|
# @param [String] name
|
7342
|
-
# Required. The name of the Feature resource. Format: `
|
7343
|
-
# locations/`location`/featurestores/`featurestore`/
|
7344
|
-
# projects/`
|
7356
|
+
# Required. The name of the Feature resource. Format for entity_type as parent: `
|
7357
|
+
# projects/`project`/locations/`location`/featurestores/`featurestore`/
|
7358
|
+
# entityTypes/`entity_type`` Format for feature_group as parent: `projects/`
|
7359
|
+
# project`/locations/`location`/featureGroups/`feature_group``
|
7345
7360
|
# @param [String] fields
|
7346
7361
|
# Selector specifying which fields to include in a partial response.
|
7347
7362
|
# @param [String] quota_user
|
@@ -7371,10 +7386,10 @@ module Google
|
|
7371
7386
|
|
7372
7387
|
# Lists Features in a given EntityType.
|
7373
7388
|
# @param [String] parent
|
7374
|
-
# Required. The resource name of the Location to list Features. Format
|
7375
|
-
# projects/`project`/locations/`location`/featurestores/`
|
7376
|
-
# entityTypes/`entity_type`` `
|
7377
|
-
# featureGroups/`feature_group``
|
7389
|
+
# Required. The resource name of the Location to list Features. Format for
|
7390
|
+
# entity_type as parent: `projects/`project`/locations/`location`/featurestores/`
|
7391
|
+
# featurestore`/entityTypes/`entity_type`` Format for feature_group as parent: `
|
7392
|
+
# projects/`project`/locations/`location`/featureGroups/`feature_group``
|
7378
7393
|
# @param [String] filter
|
7379
7394
|
# Lists the Features that match the filter expression. The following filters are
|
7380
7395
|
# supported: * `value_type`: Supports = and != comparisons. * `create_time`:
|
@@ -7388,9 +7403,10 @@ module Google
|
|
7388
7403
|
# Features having both (active: yes) and (env: prod) labels. * `labels.env: *` --
|
7389
7404
|
# > Any Feature which has a label with 'env' as the key.
|
7390
7405
|
# @param [Fixnum] latest_stats_count
|
7391
|
-
# If set, return the most
|
7392
|
-
#
|
7393
|
-
#
|
7406
|
+
# Only applicable for Vertex AI Feature Store (Legacy). If set, return the most
|
7407
|
+
# recent ListFeaturesRequest.latest_stats_count of stats for each Feature in
|
7408
|
+
# response. Valid value is [0, 10]. If number of stats exists <
|
7409
|
+
# ListFeaturesRequest.latest_stats_count, return all existing stats.
|
7394
7410
|
# @param [String] order_by
|
7395
7411
|
# A comma-separated list of fields to order by, sorted in ascending order. Use "
|
7396
7412
|
# desc" after a field name for descending. Supported fields: * `feature_id` * `
|
@@ -7401,10 +7417,11 @@ module Google
|
|
7401
7417
|
# this value. If unspecified, at most 1000 Features will be returned. The
|
7402
7418
|
# maximum value is 1000; any value greater than 1000 will be coerced to 1000.
|
7403
7419
|
# @param [String] page_token
|
7404
|
-
# A page token, received from a previous FeaturestoreService.ListFeatures call
|
7405
|
-
# Provide this to retrieve the
|
7406
|
-
#
|
7407
|
-
#
|
7420
|
+
# A page token, received from a previous FeaturestoreService.ListFeatures call
|
7421
|
+
# or FeatureRegistryService.ListFeatures call. Provide this to retrieve the
|
7422
|
+
# subsequent page. When paginating, all other parameters provided to
|
7423
|
+
# FeaturestoreService.ListFeatures or or FeatureRegistryService.ListFeatures
|
7424
|
+
# must match the call that provided the page token.
|
7408
7425
|
# @param [String] read_mask
|
7409
7426
|
# Mask specifying which fields to read.
|
7410
7427
|
# @param [String] fields
|
@@ -7444,10 +7461,11 @@ module Google
|
|
7444
7461
|
# @param [String] name
|
7445
7462
|
# Immutable. Name of the Feature. Format: `projects/`project`/locations/`
|
7446
7463
|
# location`/featurestores/`featurestore`/entityTypes/`entity_type`/features/`
|
7447
|
-
# feature``
|
7448
|
-
#
|
7449
|
-
#
|
7450
|
-
#
|
7464
|
+
# feature`` `projects/`project`/locations/`location`/featureGroups/`
|
7465
|
+
# feature_group`/features/`feature`` The last part feature is assigned by the
|
7466
|
+
# client. The feature can be up to 64 characters long and can consist only of
|
7467
|
+
# ASCII Latin letters A-Z and a-z, underscore(_), and ASCII digits 0-9 starting
|
7468
|
+
# with a letter. The value will be unique given an entity type.
|
7451
7469
|
# @param [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Feature] google_cloud_aiplatform_v1beta1_feature_object
|
7452
7470
|
# @param [String] update_mask
|
7453
7471
|
# Field mask is used to specify the fields to be overwritten in the Features
|
@@ -7456,7 +7474,7 @@ module Google
|
|
7456
7474
|
# the mask. If the user does not provide a mask then only the non-empty fields
|
7457
7475
|
# present in the request will be overwritten. Set the update_mask to `*` to
|
7458
7476
|
# override all fields. Updatable fields: * `description` * `labels` * `
|
7459
|
-
# disable_monitoring`
|
7477
|
+
# disable_monitoring` (Not supported for FeatureRegistry Feature)
|
7460
7478
|
# @param [String] fields
|
7461
7479
|
# Selector specifying which fields to include in a partial response.
|
7462
7480
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-10-
|
11
|
+
date: 2023-10-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1beta1/v0.8.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|