google-apis-aiplatform_v1beta1 0.5.0 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c920dbad5b429ffa91df130b6695eb05df6c7de33da77016abdf4b40d8f5cfcf
4
- data.tar.gz: 0566a47ec9037b93af82813edb8d5924125c3862ec2357efc0558078cb446638
3
+ metadata.gz: dce9f109f172515a8882be0432b1ee3a04ae4e4ac2e98089bb2e39db3e56892a
4
+ data.tar.gz: c0c400a9f9046cd5f30f22e6b3b98d3c7537e94716bacfc7e9776b67edfb6703
5
5
  SHA512:
6
- metadata.gz: 5baab15b348bc81be10b00d75d26a46f6950424c4072151e5637330bf347feedc8f69dfce44471da431c090ffe1a7284e3a3426eb5a2aa99b49598a4be943433
7
- data.tar.gz: 13812060cf43255643715ad42aa9824b9d7f4bcdbd5d7bc556806d307391bfee36d327177caa51d56218a2905011426071411b1c1e7f82e67a9b98c8c2a98d98
6
+ metadata.gz: 60c9e3ac9c837b2c7ff2ba7ca11f62d29fb2ed865b84705538b73a1431a367ba4e88baec457517daf5a7bf7cf199297384be30d660462500210acd706f9e41be
7
+ data.tar.gz: 4a28822f4d28bd165393e4b0eb94e4892af74cd012b1c8dba832833143d2f48e5bb850d135c4ec0f98ca00bb8fee88ff4ab3afc5efd754dd35f98759968e2954
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-aiplatform_v1beta1
2
2
 
3
+ ### v0.7.0 (2023-10-22)
4
+
5
+ * Regenerated from discovery document revision 20231012
6
+
7
+ ### v0.6.0 (2023-10-15)
8
+
9
+ * Regenerated from discovery document revision 20231002
10
+
3
11
  ### v0.5.0 (2023-10-08)
4
12
 
5
13
  * Regenerated from discovery document revision 20230929
@@ -2486,9 +2486,8 @@ module Google
2486
2486
  class GoogleCloudAiplatformV1beta1CreateFeatureRequest
2487
2487
  include Google::Apis::Core::Hashable
2488
2488
 
2489
- # Feature Metadata information that describes an attribute of an entity type.
2490
- # For example, apple is an entity type, and color is a feature that describes
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)
@@ -5785,15 +5823,6 @@ module Google
5785
5823
  # @return [String]
5786
5824
  attr_accessor :annotations_filter
5787
5825
 
5788
- # Assigns input data to training, validation, and test sets based on the given
5789
- # filters, data pieces not matched by any filter are ignored. Currently only
5790
- # supported for Datasets containing DataItems. If any of the filters in this
5791
- # message are to match nothing, then they can be set as '-' (the minus sign).
5792
- # Supported only for unstructured Datasets.
5793
- # Corresponds to the JSON property `filterSplit`
5794
- # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExportFilterSplit]
5795
- attr_accessor :filter_split
5796
-
5797
5826
  # Assigns the input data to training, validation, and test sets as per the given
5798
5827
  # fractions. Any of `training_fraction`, `validation_fraction` and `
5799
5828
  # test_fraction` may optionally be provided, they must sum to up to 1. If the
@@ -5816,7 +5845,6 @@ module Google
5816
5845
  # Update properties of this object
5817
5846
  def update!(**args)
5818
5847
  @annotations_filter = args[:annotations_filter] if args.key?(:annotations_filter)
5819
- @filter_split = args[:filter_split] if args.key?(:filter_split)
5820
5848
  @fraction_split = args[:fraction_split] if args.key?(:fraction_split)
5821
5849
  @gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination)
5822
5850
  end
@@ -6079,53 +6107,6 @@ module Google
6079
6107
  end
6080
6108
  end
6081
6109
 
6082
- # Assigns input data to training, validation, and test sets based on the given
6083
- # filters, data pieces not matched by any filter are ignored. Currently only
6084
- # supported for Datasets containing DataItems. If any of the filters in this
6085
- # message are to match nothing, then they can be set as '-' (the minus sign).
6086
- # Supported only for unstructured Datasets.
6087
- class GoogleCloudAiplatformV1beta1ExportFilterSplit
6088
- include Google::Apis::Core::Hashable
6089
-
6090
- # Required. A filter on DataItems of the Dataset. DataItems that match this
6091
- # filter are used to test the Model. A filter with same syntax as the one used
6092
- # in DatasetService.ListDataItems may be used. If a single DataItem is matched
6093
- # by more than one of the FilterSplit filters, then it is assigned to the first
6094
- # set that applies to it in the training, validation, test order.
6095
- # Corresponds to the JSON property `testFilter`
6096
- # @return [String]
6097
- attr_accessor :test_filter
6098
-
6099
- # Required. A filter on DataItems of the Dataset. DataItems that match this
6100
- # filter are used to train the Model. A filter with same syntax as the one used
6101
- # in DatasetService.ListDataItems may be used. If a single DataItem is matched
6102
- # by more than one of the FilterSplit filters, then it is assigned to the first
6103
- # set that applies to it in the training, validation, test order.
6104
- # Corresponds to the JSON property `trainingFilter`
6105
- # @return [String]
6106
- attr_accessor :training_filter
6107
-
6108
- # Required. A filter on DataItems of the Dataset. DataItems that match this
6109
- # filter are used to validate the Model. A filter with same syntax as the one
6110
- # used in DatasetService.ListDataItems may be used. If a single DataItem is
6111
- # matched by more than one of the FilterSplit filters, then it is assigned to
6112
- # the first set that applies to it in the training, validation, test order.
6113
- # Corresponds to the JSON property `validationFilter`
6114
- # @return [String]
6115
- attr_accessor :validation_filter
6116
-
6117
- def initialize(**args)
6118
- update!(**args)
6119
- end
6120
-
6121
- # Update properties of this object
6122
- def update!(**args)
6123
- @test_filter = args[:test_filter] if args.key?(:test_filter)
6124
- @training_filter = args[:training_filter] if args.key?(:training_filter)
6125
- @validation_filter = args[:validation_filter] if args.key?(:validation_filter)
6126
- end
6127
- end
6128
-
6129
6110
  # Assigns the input data to training, validation, and test sets as per the given
6130
6111
  # fractions. Any of `training_fraction`, `validation_fraction` and `
6131
6112
  # test_fraction` may optionally be provided, they must sum to up to 1. If the
@@ -6351,13 +6332,13 @@ module Google
6351
6332
  end
6352
6333
  end
6353
6334
 
6354
- # Feature Metadata information that describes an attribute of an entity type.
6355
- # For example, apple is an entity type, and color is a feature that describes
6356
- # apple.
6335
+ # Feature Metadata information. For example, color is a feature that describes
6336
+ # an apple.
6357
6337
  class GoogleCloudAiplatformV1beta1Feature
6358
6338
  include Google::Apis::Core::Hashable
6359
6339
 
6360
- # Output only. Timestamp when this EntityType was created.
6340
+ # Output only. Only applicable for Vertex AI Feature Store (Legacy). Timestamp
6341
+ # when this EntityType was created.
6361
6342
  # Corresponds to the JSON property `createTime`
6362
6343
  # @return [String]
6363
6344
  attr_accessor :create_time
@@ -6367,10 +6348,11 @@ module Google
6367
6348
  # @return [String]
6368
6349
  attr_accessor :description
6369
6350
 
6370
- # Optional. If not set, use the monitoring_config defined for the EntityType
6371
- # this Feature belongs to. Only Features with type (Feature.ValueType) BOOL,
6372
- # STRING, DOUBLE or INT64 can enable monitoring. If set to true, all types of
6373
- # data monitoring are disabled despite the config on EntityType.
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.
6374
6356
  # Corresponds to the JSON property `disableMonitoring`
6375
6357
  # @return [Boolean]
6376
6358
  attr_accessor :disable_monitoring
@@ -6398,34 +6380,38 @@ module Google
6398
6380
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeaturestoreMonitoringConfig]
6399
6381
  attr_accessor :monitoring_config
6400
6382
 
6401
- # Output only. A list of historical SnapshotAnalysis stats requested by user,
6402
- # sorted by FeatureStatsAnomaly.start_time descending.
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.
6403
6386
  # Corresponds to the JSON property `monitoringStats`
6404
6387
  # @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureStatsAnomaly>]
6405
6388
  attr_accessor :monitoring_stats
6406
6389
 
6407
- # Output only. The list of historical stats and anomalies with specified
6408
- # objectives.
6390
+ # Output only. Only applicable for Vertex AI Feature Store (Legacy). The list of
6391
+ # historical stats and anomalies with specified objectives.
6409
6392
  # Corresponds to the JSON property `monitoringStatsAnomalies`
6410
6393
  # @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureMonitoringStatsAnomaly>]
6411
6394
  attr_accessor :monitoring_stats_anomalies
6412
6395
 
6413
6396
  # Immutable. Name of the Feature. Format: `projects/`project`/locations/`
6414
6397
  # location`/featurestores/`featurestore`/entityTypes/`entity_type`/features/`
6415
- # feature`` The last part feature is assigned by the client. The feature can be
6416
- # up to 64 characters long and can consist only of ASCII Latin letters A-Z and a-
6417
- # z, underscore(_), and ASCII digits 0-9 starting with a letter. The value will
6418
- # be unique given an entity type.
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.
6419
6403
  # Corresponds to the JSON property `name`
6420
6404
  # @return [String]
6421
6405
  attr_accessor :name
6422
6406
 
6423
- # Output only. Timestamp when this EntityType was most recently updated.
6407
+ # Output only. Only applicable for Vertex AI Feature Store (Legacy). Timestamp
6408
+ # when this EntityType was most recently updated.
6424
6409
  # Corresponds to the JSON property `updateTime`
6425
6410
  # @return [String]
6426
6411
  attr_accessor :update_time
6427
6412
 
6428
- # Immutable. Type of Feature value.
6413
+ # Immutable. Only applicable for Vertex AI Feature Store (Legacy). Type of
6414
+ # Feature value.
6429
6415
  # Corresponds to the JSON property `valueType`
6430
6416
  # @return [String]
6431
6417
  attr_accessor :value_type
@@ -7141,7 +7127,7 @@ module Google
7141
7127
  # @return [Array<String>]
7142
7128
  attr_accessor :entity_id_columns
7143
7129
 
7144
- # Required. The Bigquery View URI that will be materialized on each sync trigger
7130
+ # Required. The BigQuery view URI that will be materialized on each sync trigger
7145
7131
  # based on FeatureView.SyncConfig.
7146
7132
  # Corresponds to the JSON property `uri`
7147
7133
  # @return [String]
@@ -10602,6 +10588,12 @@ module Google
10602
10588
  # @return [String]
10603
10589
  attr_accessor :machine_type
10604
10590
 
10591
+ # Immutable. The topology of the TPUs. Corresponds to the TPU topologies
10592
+ # available from GKE. (Example: tpu_topology: "2x2x1").
10593
+ # Corresponds to the JSON property `tpuTopology`
10594
+ # @return [String]
10595
+ attr_accessor :tpu_topology
10596
+
10605
10597
  def initialize(**args)
10606
10598
  update!(**args)
10607
10599
  end
@@ -10611,6 +10603,7 @@ module Google
10611
10603
  @accelerator_count = args[:accelerator_count] if args.key?(:accelerator_count)
10612
10604
  @accelerator_type = args[:accelerator_type] if args.key?(:accelerator_type)
10613
10605
  @machine_type = args[:machine_type] if args.key?(:machine_type)
10606
+ @tpu_topology = args[:tpu_topology] if args.key?(:tpu_topology)
10614
10607
  end
10615
10608
  end
10616
10609
 
@@ -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.5.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 = "20230929"
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
 
@@ -1048,12 +1054,6 @@ module Google
1048
1054
  include Google::Apis::Core::JsonObjectSupport
1049
1055
  end
1050
1056
 
1051
- class GoogleCloudAiplatformV1beta1ExportFilterSplit
1052
- class Representation < Google::Apis::Core::JsonRepresentation; end
1053
-
1054
- include Google::Apis::Core::JsonObjectSupport
1055
- end
1056
-
1057
1057
  class GoogleCloudAiplatformV1beta1ExportFractionSplit
1058
1058
  class Representation < Google::Apis::Core::JsonRepresentation; end
1059
1059
 
@@ -5301,6 +5301,15 @@ module Google
5301
5301
  end
5302
5302
  end
5303
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
+
5304
5313
  class GoogleCloudAiplatformV1beta1CreateNotebookRuntimeTemplateOperationMetadata
5305
5314
  # @private
5306
5315
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5427,6 +5436,7 @@ module Google
5427
5436
  property :experiment_run, as: 'experimentRun'
5428
5437
  property :network, as: 'network'
5429
5438
  property :persistent_resource_id, as: 'persistentResourceId'
5439
+ property :protected_artifact_location_id, as: 'protectedArtifactLocationId'
5430
5440
  collection :reserved_ip_ranges, as: 'reservedIpRanges'
5431
5441
  property :scheduling, as: 'scheduling', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Scheduling, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Scheduling::Representation
5432
5442
 
@@ -6109,8 +6119,6 @@ module Google
6109
6119
  # @private
6110
6120
  class Representation < Google::Apis::Core::JsonRepresentation
6111
6121
  property :annotations_filter, as: 'annotationsFilter'
6112
- property :filter_split, as: 'filterSplit', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExportFilterSplit, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExportFilterSplit::Representation
6113
-
6114
6122
  property :fraction_split, as: 'fractionSplit', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExportFractionSplit, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExportFractionSplit::Representation
6115
6123
 
6116
6124
  property :gcs_destination, as: 'gcsDestination', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GcsDestination, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GcsDestination::Representation
@@ -6212,15 +6220,6 @@ module Google
6212
6220
  end
6213
6221
  end
6214
6222
 
6215
- class GoogleCloudAiplatformV1beta1ExportFilterSplit
6216
- # @private
6217
- class Representation < Google::Apis::Core::JsonRepresentation
6218
- property :test_filter, as: 'testFilter'
6219
- property :training_filter, as: 'trainingFilter'
6220
- property :validation_filter, as: 'validationFilter'
6221
- end
6222
- end
6223
-
6224
6223
  class GoogleCloudAiplatformV1beta1ExportFractionSplit
6225
6224
  # @private
6226
6225
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7517,6 +7516,7 @@ module Google
7517
7516
  property :accelerator_count, as: 'acceleratorCount'
7518
7517
  property :accelerator_type, as: 'acceleratorType'
7519
7518
  property :machine_type, as: 'machineType'
7519
+ property :tpu_topology, as: 'tpuTopology'
7520
7520
  end
7521
7521
  end
7522
7522
 
@@ -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: `projects/`project`/
4872
- # locations/`location`/featurestores/`featurestore`/entityTypes/`entity_type`` `
4873
- # projects/`project`/locations/`location`/featureGroups/`feature_group``
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/`featurestore`/
4905
- # entityTypes/`entity_type`` `projects/`project`/locations/`location`/
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 recent ListFeaturesRequest.latest_stats_count of stats
4921
- # for each Feature in response. Valid value is [0, 10]. If number of stats
4922
- # exists < ListFeaturesRequest.latest_stats_count, return all existing stats.
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 subsequent page. When paginating, all other
4935
- # parameters provided to FeaturestoreService.ListFeatures must match the call
4936
- # that provided the page token.
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`` The last part feature is assigned by the client. The feature can be
4977
- # up to 64 characters long and can consist only of ASCII Latin letters A-Z and a-
4978
- # z, underscore(_), and ASCII digits 0-9 starting with a letter. The value will
4979
- # be unique given an entity type.
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: `projects/`project`/
7343
- # locations/`location`/featurestores/`featurestore`/entityTypes/`entity_type`` `
7344
- # projects/`project`/locations/`location`/featureGroups/`feature_group``
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/`featurestore`/
7376
- # entityTypes/`entity_type`` `projects/`project`/locations/`location`/
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 recent ListFeaturesRequest.latest_stats_count of stats
7392
- # for each Feature in response. Valid value is [0, 10]. If number of stats
7393
- # exists < ListFeaturesRequest.latest_stats_count, return all existing stats.
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 subsequent page. When paginating, all other
7406
- # parameters provided to FeaturestoreService.ListFeatures must match the call
7407
- # that provided the page token.
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`` The last part feature is assigned by the client. The feature can be
7448
- # up to 64 characters long and can consist only of ASCII Latin letters A-Z and a-
7449
- # z, underscore(_), and ASCII digits 0-9 starting with a letter. The value will
7450
- # be unique given an entity type.
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.5.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-08 00:00:00.000000000 Z
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.5.0
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: []