google-apis-aiplatform_v1beta1 0.6.0 → 0.7.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/lib/google/apis/aiplatform_v1beta1/classes.rb +65 -22
- data/lib/google/apis/aiplatform_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/aiplatform_v1beta1/representations.rb +16 -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: dce9f109f172515a8882be0432b1ee3a04ae4e4ac2e98089bb2e39db3e56892a
|
4
|
+
data.tar.gz: c0c400a9f9046cd5f30f22e6b3b98d3c7537e94716bacfc7e9776b67edfb6703
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 60c9e3ac9c837b2c7ff2ba7ca11f62d29fb2ed865b84705538b73a1431a367ba4e88baec457517daf5a7bf7cf199297384be30d660462500210acd706f9e41be
|
7
|
+
data.tar.gz: 4a28822f4d28bd165393e4b0eb94e4892af74cd012b1c8dba832833143d2f48e5bb850d135c4ec0f98ca00bb8fee88ff4ab3afc5efd754dd35f98759968e2954
|
data/CHANGELOG.md
CHANGED
@@ -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,14 @@ 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. For
|
3082
|
+
# unprotected artifacts, the value of this field is ignored. List of supported
|
3083
|
+
# locations: https://cloud.google.com/vertex-ai/docs/general/locations
|
3084
|
+
# Corresponds to the JSON property `protectedArtifactLocationId`
|
3085
|
+
# @return [String]
|
3086
|
+
attr_accessor :protected_artifact_location_id
|
3087
|
+
|
3051
3088
|
# Optional. A list of names for the reserved ip ranges under the VPC network
|
3052
3089
|
# that can be used for this job. If set, we will deploy the job within the
|
3053
3090
|
# provided ip ranges. Otherwise, the job will be deployed to any ip ranges under
|
@@ -3096,6 +3133,7 @@ module Google
|
|
3096
3133
|
@experiment_run = args[:experiment_run] if args.key?(:experiment_run)
|
3097
3134
|
@network = args[:network] if args.key?(:network)
|
3098
3135
|
@persistent_resource_id = args[:persistent_resource_id] if args.key?(:persistent_resource_id)
|
3136
|
+
@protected_artifact_location_id = args[:protected_artifact_location_id] if args.key?(:protected_artifact_location_id)
|
3099
3137
|
@reserved_ip_ranges = args[:reserved_ip_ranges] if args.key?(:reserved_ip_ranges)
|
3100
3138
|
@scheduling = args[:scheduling] if args.key?(:scheduling)
|
3101
3139
|
@service_account = args[:service_account] if args.key?(:service_account)
|
@@ -6294,13 +6332,13 @@ module Google
|
|
6294
6332
|
end
|
6295
6333
|
end
|
6296
6334
|
|
6297
|
-
# Feature Metadata information
|
6298
|
-
#
|
6299
|
-
# apple.
|
6335
|
+
# Feature Metadata information. For example, color is a feature that describes
|
6336
|
+
# an apple.
|
6300
6337
|
class GoogleCloudAiplatformV1beta1Feature
|
6301
6338
|
include Google::Apis::Core::Hashable
|
6302
6339
|
|
6303
|
-
# Output only.
|
6340
|
+
# Output only. Only applicable for Vertex AI Feature Store (Legacy). Timestamp
|
6341
|
+
# when this EntityType was created.
|
6304
6342
|
# Corresponds to the JSON property `createTime`
|
6305
6343
|
# @return [String]
|
6306
6344
|
attr_accessor :create_time
|
@@ -6310,10 +6348,11 @@ module Google
|
|
6310
6348
|
# @return [String]
|
6311
6349
|
attr_accessor :description
|
6312
6350
|
|
6313
|
-
# Optional.
|
6314
|
-
#
|
6315
|
-
#
|
6316
|
-
#
|
6351
|
+
# Optional. Only applicable for Vertex AI Feature Store (Legacy). If not set,
|
6352
|
+
# use the monitoring_config defined for the EntityType this Feature belongs to.
|
6353
|
+
# Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can
|
6354
|
+
# enable monitoring. If set to true, all types of data monitoring are disabled
|
6355
|
+
# despite the config on EntityType.
|
6317
6356
|
# Corresponds to the JSON property `disableMonitoring`
|
6318
6357
|
# @return [Boolean]
|
6319
6358
|
attr_accessor :disable_monitoring
|
@@ -6341,34 +6380,38 @@ module Google
|
|
6341
6380
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeaturestoreMonitoringConfig]
|
6342
6381
|
attr_accessor :monitoring_config
|
6343
6382
|
|
6344
|
-
# Output only.
|
6345
|
-
#
|
6383
|
+
# Output only. Only applicable for Vertex AI Feature Store (Legacy). A list of
|
6384
|
+
# historical SnapshotAnalysis stats requested by user, sorted by
|
6385
|
+
# FeatureStatsAnomaly.start_time descending.
|
6346
6386
|
# Corresponds to the JSON property `monitoringStats`
|
6347
6387
|
# @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureStatsAnomaly>]
|
6348
6388
|
attr_accessor :monitoring_stats
|
6349
6389
|
|
6350
|
-
# Output only.
|
6351
|
-
# objectives.
|
6390
|
+
# Output only. Only applicable for Vertex AI Feature Store (Legacy). The list of
|
6391
|
+
# historical stats and anomalies with specified objectives.
|
6352
6392
|
# Corresponds to the JSON property `monitoringStatsAnomalies`
|
6353
6393
|
# @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureMonitoringStatsAnomaly>]
|
6354
6394
|
attr_accessor :monitoring_stats_anomalies
|
6355
6395
|
|
6356
6396
|
# Immutable. Name of the Feature. Format: `projects/`project`/locations/`
|
6357
6397
|
# location`/featurestores/`featurestore`/entityTypes/`entity_type`/features/`
|
6358
|
-
# feature``
|
6359
|
-
#
|
6360
|
-
#
|
6361
|
-
#
|
6398
|
+
# feature`` `projects/`project`/locations/`location`/featureGroups/`
|
6399
|
+
# feature_group`/features/`feature`` The last part feature is assigned by the
|
6400
|
+
# client. The feature can be up to 64 characters long and can consist only of
|
6401
|
+
# ASCII Latin letters A-Z and a-z, underscore(_), and ASCII digits 0-9 starting
|
6402
|
+
# with a letter. The value will be unique given an entity type.
|
6362
6403
|
# Corresponds to the JSON property `name`
|
6363
6404
|
# @return [String]
|
6364
6405
|
attr_accessor :name
|
6365
6406
|
|
6366
|
-
# Output only.
|
6407
|
+
# Output only. Only applicable for Vertex AI Feature Store (Legacy). Timestamp
|
6408
|
+
# when this EntityType was most recently updated.
|
6367
6409
|
# Corresponds to the JSON property `updateTime`
|
6368
6410
|
# @return [String]
|
6369
6411
|
attr_accessor :update_time
|
6370
6412
|
|
6371
|
-
# Immutable.
|
6413
|
+
# Immutable. Only applicable for Vertex AI Feature Store (Legacy). Type of
|
6414
|
+
# Feature value.
|
6372
6415
|
# Corresponds to the JSON property `valueType`
|
6373
6416
|
# @return [String]
|
6374
6417
|
attr_accessor :value_type
|
@@ -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.7.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 = "20231012"
|
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
|
|
@@ -5295,6 +5301,15 @@ module Google
|
|
5295
5301
|
end
|
5296
5302
|
end
|
5297
5303
|
|
5304
|
+
class GoogleCloudAiplatformV1beta1CreateNotebookExecutionJobOperationMetadata
|
5305
|
+
# @private
|
5306
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5307
|
+
property :generic_metadata, as: 'genericMetadata', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenericOperationMetadata, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenericOperationMetadata::Representation
|
5308
|
+
|
5309
|
+
property :progress_message, as: 'progressMessage'
|
5310
|
+
end
|
5311
|
+
end
|
5312
|
+
|
5298
5313
|
class GoogleCloudAiplatformV1beta1CreateNotebookRuntimeTemplateOperationMetadata
|
5299
5314
|
# @private
|
5300
5315
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5421,6 +5436,7 @@ module Google
|
|
5421
5436
|
property :experiment_run, as: 'experimentRun'
|
5422
5437
|
property :network, as: 'network'
|
5423
5438
|
property :persistent_resource_id, as: 'persistentResourceId'
|
5439
|
+
property :protected_artifact_location_id, as: 'protectedArtifactLocationId'
|
5424
5440
|
collection :reserved_ip_ranges, as: 'reservedIpRanges'
|
5425
5441
|
property :scheduling, as: 'scheduling', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Scheduling, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Scheduling::Representation
|
5426
5442
|
|
@@ -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.7.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-22 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.7.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: []
|