google-apis-aiplatform_v1 0.2.0 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 26b0157797450eb16685d71024fcc67c2f8e40be8a2c556be3b98de713977f2a
4
- data.tar.gz: a5ec0f7cccdda31dd9dc4d8aa16de84c1a7583d1404735c0b5424a82c6c6086c
3
+ metadata.gz: 541f2b095bb7e53c7e59602a4698786a84360a650575eb53f0dba6af63c25334
4
+ data.tar.gz: 99d893179df77a2c766e7488c734de5cdf4dbd181f966b348f222d4e0ab837fd
5
5
  SHA512:
6
- metadata.gz: 0d9ea45c28da9ed10b9daa41d5463e2d7a3be8ac8f11ce754a0c4feaf072c62cc926895cb8b7f4d356bc169aaea55af720ad3884eb2d57914386918b15d9fc27
7
- data.tar.gz: 68c7410a350d91b9a8fbf42c007c4b1b4e29b0ad6163b59da457f759cdf0e3b95fe168de79b2496944b171d740503e11bb97b3d56d902bfa43ae1c2ca7530520
6
+ metadata.gz: 317660ccea0203847e117d3625ba428f8ba183b9898ff8fbe9c04a54a5fb709b72e9513927d112b722777c8b2981602a163debe7318aee9fe202693d4b84913b
7
+ data.tar.gz: '0499fcd874ef1f7ca35a5d1b65724e029a516cc8b43f1e58a273b1a525a0cc849ceb6138a3209584ba5cb1b6e526daff55066ea4497eedc276e7130d1a99b605'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-aiplatform_v1
2
2
 
3
+ ### v0.4.0 (2023-10-22)
4
+
5
+ * Regenerated from discovery document revision 20231012
6
+
7
+ ### v0.3.0 (2023-10-15)
8
+
9
+ * Regenerated from discovery document revision 20231002
10
+
3
11
  ### v0.2.0 (2023-10-08)
4
12
 
5
13
  * Regenerated from discovery document revision 20230929
@@ -2293,9 +2293,8 @@ module Google
2293
2293
  class GoogleCloudAiplatformV1CreateFeatureRequest
2294
2294
  include Google::Apis::Core::Hashable
2295
2295
 
2296
- # Feature Metadata information that describes an attribute of an entity type.
2297
- # For example, apple is an entity type, and color is a feature that describes
2298
- # apple.
2296
+ # Feature Metadata information. For example, color is a feature that describes
2297
+ # an apple.
2299
2298
  # Corresponds to the JSON property `feature`
2300
2299
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Feature]
2301
2300
  attr_accessor :feature
@@ -2308,7 +2307,11 @@ module Google
2308
2307
  # @return [String]
2309
2308
  attr_accessor :feature_id
2310
2309
 
2311
- #
2310
+ # Required. The resource name of the EntityType or FeatureGroup to create a
2311
+ # Feature. Format for entity_type as parent: `projects/`project`/locations/`
2312
+ # location`/featurestores/`featurestore`/entityTypes/`entity_type`` Format for
2313
+ # feature_group as parent: `projects/`project`/locations/`location`/
2314
+ # featureGroups/`feature_group``
2312
2315
  # Corresponds to the JSON property `parent`
2313
2316
  # @return [String]
2314
2317
  attr_accessor :parent
@@ -2770,6 +2773,14 @@ module Google
2770
2773
  # @return [String]
2771
2774
  attr_accessor :network
2772
2775
 
2776
+ # The ID of the location to store protected artifacts. e.g. us-central1.
2777
+ # Populate only when the location is different than CustomJob location. For
2778
+ # unprotected artifacts, the value of this field is ignored. List of supported
2779
+ # locations: https://cloud.google.com/vertex-ai/docs/general/locations
2780
+ # Corresponds to the JSON property `protectedArtifactLocationId`
2781
+ # @return [String]
2782
+ attr_accessor :protected_artifact_location_id
2783
+
2773
2784
  # Optional. A list of names for the reserved ip ranges under the VPC network
2774
2785
  # that can be used for this job. If set, we will deploy the job within the
2775
2786
  # provided ip ranges. Otherwise, the job will be deployed to any ip ranges under
@@ -2817,6 +2828,7 @@ module Google
2817
2828
  @experiment = args[:experiment] if args.key?(:experiment)
2818
2829
  @experiment_run = args[:experiment_run] if args.key?(:experiment_run)
2819
2830
  @network = args[:network] if args.key?(:network)
2831
+ @protected_artifact_location_id = args[:protected_artifact_location_id] if args.key?(:protected_artifact_location_id)
2820
2832
  @reserved_ip_ranges = args[:reserved_ip_ranges] if args.key?(:reserved_ip_ranges)
2821
2833
  @scheduling = args[:scheduling] if args.key?(:scheduling)
2822
2834
  @service_account = args[:service_account] if args.key?(:service_account)
@@ -5432,15 +5444,6 @@ module Google
5432
5444
  # @return [String]
5433
5445
  attr_accessor :annotations_filter
5434
5446
 
5435
- # Assigns input data to training, validation, and test sets based on the given
5436
- # filters, data pieces not matched by any filter are ignored. Currently only
5437
- # supported for Datasets containing DataItems. If any of the filters in this
5438
- # message are to match nothing, then they can be set as '-' (the minus sign).
5439
- # Supported only for unstructured Datasets.
5440
- # Corresponds to the JSON property `filterSplit`
5441
- # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ExportFilterSplit]
5442
- attr_accessor :filter_split
5443
-
5444
5447
  # Assigns the input data to training, validation, and test sets as per the given
5445
5448
  # fractions. Any of `training_fraction`, `validation_fraction` and `
5446
5449
  # test_fraction` may optionally be provided, they must sum to up to 1. If the
@@ -5463,7 +5466,6 @@ module Google
5463
5466
  # Update properties of this object
5464
5467
  def update!(**args)
5465
5468
  @annotations_filter = args[:annotations_filter] if args.key?(:annotations_filter)
5466
- @filter_split = args[:filter_split] if args.key?(:filter_split)
5467
5469
  @fraction_split = args[:fraction_split] if args.key?(:fraction_split)
5468
5470
  @gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination)
5469
5471
  end
@@ -5669,53 +5671,6 @@ module Google
5669
5671
  end
5670
5672
  end
5671
5673
 
5672
- # Assigns input data to training, validation, and test sets based on the given
5673
- # filters, data pieces not matched by any filter are ignored. Currently only
5674
- # supported for Datasets containing DataItems. If any of the filters in this
5675
- # message are to match nothing, then they can be set as '-' (the minus sign).
5676
- # Supported only for unstructured Datasets.
5677
- class GoogleCloudAiplatformV1ExportFilterSplit
5678
- include Google::Apis::Core::Hashable
5679
-
5680
- # Required. A filter on DataItems of the Dataset. DataItems that match this
5681
- # filter are used to test the Model. A filter with same syntax as the one used
5682
- # in DatasetService.ListDataItems may be used. If a single DataItem is matched
5683
- # by more than one of the FilterSplit filters, then it is assigned to the first
5684
- # set that applies to it in the training, validation, test order.
5685
- # Corresponds to the JSON property `testFilter`
5686
- # @return [String]
5687
- attr_accessor :test_filter
5688
-
5689
- # Required. A filter on DataItems of the Dataset. DataItems that match this
5690
- # filter are used to train the Model. A filter with same syntax as the one used
5691
- # in DatasetService.ListDataItems may be used. If a single DataItem is matched
5692
- # by more than one of the FilterSplit filters, then it is assigned to the first
5693
- # set that applies to it in the training, validation, test order.
5694
- # Corresponds to the JSON property `trainingFilter`
5695
- # @return [String]
5696
- attr_accessor :training_filter
5697
-
5698
- # Required. A filter on DataItems of the Dataset. DataItems that match this
5699
- # filter are used to validate the Model. A filter with same syntax as the one
5700
- # used in DatasetService.ListDataItems may be used. If a single DataItem is
5701
- # matched by more than one of the FilterSplit filters, then it is assigned to
5702
- # the first set that applies to it in the training, validation, test order.
5703
- # Corresponds to the JSON property `validationFilter`
5704
- # @return [String]
5705
- attr_accessor :validation_filter
5706
-
5707
- def initialize(**args)
5708
- update!(**args)
5709
- end
5710
-
5711
- # Update properties of this object
5712
- def update!(**args)
5713
- @test_filter = args[:test_filter] if args.key?(:test_filter)
5714
- @training_filter = args[:training_filter] if args.key?(:training_filter)
5715
- @validation_filter = args[:validation_filter] if args.key?(:validation_filter)
5716
- end
5717
- end
5718
-
5719
5674
  # Assigns the input data to training, validation, and test sets as per the given
5720
5675
  # fractions. Any of `training_fraction`, `validation_fraction` and `
5721
5676
  # test_fraction` may optionally be provided, they must sum to up to 1. If the
@@ -5941,13 +5896,13 @@ module Google
5941
5896
  end
5942
5897
  end
5943
5898
 
5944
- # Feature Metadata information that describes an attribute of an entity type.
5945
- # For example, apple is an entity type, and color is a feature that describes
5946
- # apple.
5899
+ # Feature Metadata information. For example, color is a feature that describes
5900
+ # an apple.
5947
5901
  class GoogleCloudAiplatformV1Feature
5948
5902
  include Google::Apis::Core::Hashable
5949
5903
 
5950
- # Output only. Timestamp when this EntityType was created.
5904
+ # Output only. Only applicable for Vertex AI Feature Store (Legacy). Timestamp
5905
+ # when this EntityType was created.
5951
5906
  # Corresponds to the JSON property `createTime`
5952
5907
  # @return [String]
5953
5908
  attr_accessor :create_time
@@ -5957,10 +5912,11 @@ module Google
5957
5912
  # @return [String]
5958
5913
  attr_accessor :description
5959
5914
 
5960
- # Optional. If not set, use the monitoring_config defined for the EntityType
5961
- # this Feature belongs to. Only Features with type (Feature.ValueType) BOOL,
5962
- # STRING, DOUBLE or INT64 can enable monitoring. If set to true, all types of
5963
- # data monitoring are disabled despite the config on EntityType.
5915
+ # Optional. Only applicable for Vertex AI Feature Store (Legacy). If not set,
5916
+ # use the monitoring_config defined for the EntityType this Feature belongs to.
5917
+ # Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can
5918
+ # enable monitoring. If set to true, all types of data monitoring are disabled
5919
+ # despite the config on EntityType.
5964
5920
  # Corresponds to the JSON property `disableMonitoring`
5965
5921
  # @return [Boolean]
5966
5922
  attr_accessor :disable_monitoring
@@ -5983,28 +5939,31 @@ module Google
5983
5939
  # @return [Hash<String,String>]
5984
5940
  attr_accessor :labels
5985
5941
 
5986
- # Output only. The list of historical stats and anomalies with specified
5987
- # objectives.
5942
+ # Output only. Only applicable for Vertex AI Feature Store (Legacy). The list of
5943
+ # historical stats and anomalies with specified objectives.
5988
5944
  # Corresponds to the JSON property `monitoringStatsAnomalies`
5989
5945
  # @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureMonitoringStatsAnomaly>]
5990
5946
  attr_accessor :monitoring_stats_anomalies
5991
5947
 
5992
5948
  # Immutable. Name of the Feature. Format: `projects/`project`/locations/`
5993
5949
  # location`/featurestores/`featurestore`/entityTypes/`entity_type`/features/`
5994
- # feature`` The last part feature is assigned by the client. The feature can be
5995
- # up to 64 characters long and can consist only of ASCII Latin letters A-Z and a-
5996
- # z, underscore(_), and ASCII digits 0-9 starting with a letter. The value will
5997
- # be unique given an entity type.
5950
+ # feature`` `projects/`project`/locations/`location`/featureGroups/`
5951
+ # feature_group`/features/`feature`` The last part feature is assigned by the
5952
+ # client. The feature can be up to 64 characters long and can consist only of
5953
+ # ASCII Latin letters A-Z and a-z, underscore(_), and ASCII digits 0-9 starting
5954
+ # with a letter. The value will be unique given an entity type.
5998
5955
  # Corresponds to the JSON property `name`
5999
5956
  # @return [String]
6000
5957
  attr_accessor :name
6001
5958
 
6002
- # Output only. Timestamp when this EntityType was most recently updated.
5959
+ # Output only. Only applicable for Vertex AI Feature Store (Legacy). Timestamp
5960
+ # when this EntityType was most recently updated.
6003
5961
  # Corresponds to the JSON property `updateTime`
6004
5962
  # @return [String]
6005
5963
  attr_accessor :update_time
6006
5964
 
6007
- # Immutable. Type of Feature value.
5965
+ # Immutable. Only applicable for Vertex AI Feature Store (Legacy). Type of
5966
+ # Feature value.
6008
5967
  # Corresponds to the JSON property `valueType`
6009
5968
  # @return [String]
6010
5969
  attr_accessor :value_type
@@ -9199,6 +9158,12 @@ module Google
9199
9158
  # @return [String]
9200
9159
  attr_accessor :machine_type
9201
9160
 
9161
+ # Immutable. The topology of the TPUs. Corresponds to the TPU topologies
9162
+ # available from GKE. (Example: tpu_topology: "2x2x1").
9163
+ # Corresponds to the JSON property `tpuTopology`
9164
+ # @return [String]
9165
+ attr_accessor :tpu_topology
9166
+
9202
9167
  def initialize(**args)
9203
9168
  update!(**args)
9204
9169
  end
@@ -9208,6 +9173,7 @@ module Google
9208
9173
  @accelerator_count = args[:accelerator_count] if args.key?(:accelerator_count)
9209
9174
  @accelerator_type = args[:accelerator_type] if args.key?(:accelerator_type)
9210
9175
  @machine_type = args[:machine_type] if args.key?(:machine_type)
9176
+ @tpu_topology = args[:tpu_topology] if args.key?(:tpu_topology)
9211
9177
  end
9212
9178
  end
9213
9179
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AiplatformV1
18
18
  # Version of the google-apis-aiplatform_v1 gem
19
- GEM_VERSION = "0.2.0"
19
+ GEM_VERSION = "0.4.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
@@ -946,12 +946,6 @@ module Google
946
946
  include Google::Apis::Core::JsonObjectSupport
947
947
  end
948
948
 
949
- class GoogleCloudAiplatformV1ExportFilterSplit
950
- class Representation < Google::Apis::Core::JsonRepresentation; end
951
-
952
- include Google::Apis::Core::JsonObjectSupport
953
- end
954
-
955
949
  class GoogleCloudAiplatformV1ExportFractionSplit
956
950
  class Representation < Google::Apis::Core::JsonRepresentation; end
957
951
 
@@ -4820,6 +4814,7 @@ module Google
4820
4814
  property :experiment, as: 'experiment'
4821
4815
  property :experiment_run, as: 'experimentRun'
4822
4816
  property :network, as: 'network'
4817
+ property :protected_artifact_location_id, as: 'protectedArtifactLocationId'
4823
4818
  collection :reserved_ip_ranges, as: 'reservedIpRanges'
4824
4819
  property :scheduling, as: 'scheduling', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Scheduling, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Scheduling::Representation
4825
4820
 
@@ -5480,8 +5475,6 @@ module Google
5480
5475
  # @private
5481
5476
  class Representation < Google::Apis::Core::JsonRepresentation
5482
5477
  property :annotations_filter, as: 'annotationsFilter'
5483
- property :filter_split, as: 'filterSplit', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ExportFilterSplit, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ExportFilterSplit::Representation
5484
-
5485
5478
  property :fraction_split, as: 'fractionSplit', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ExportFractionSplit, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ExportFractionSplit::Representation
5486
5479
 
5487
5480
  property :gcs_destination, as: 'gcsDestination', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GcsDestination, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GcsDestination::Representation
@@ -5559,15 +5552,6 @@ module Google
5559
5552
  end
5560
5553
  end
5561
5554
 
5562
- class GoogleCloudAiplatformV1ExportFilterSplit
5563
- # @private
5564
- class Representation < Google::Apis::Core::JsonRepresentation
5565
- property :test_filter, as: 'testFilter'
5566
- property :training_filter, as: 'trainingFilter'
5567
- property :validation_filter, as: 'validationFilter'
5568
- end
5569
- end
5570
-
5571
5555
  class GoogleCloudAiplatformV1ExportFractionSplit
5572
5556
  # @private
5573
5557
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6568,6 +6552,7 @@ module Google
6568
6552
  property :accelerator_count, as: 'acceleratorCount'
6569
6553
  property :accelerator_type, as: 'acceleratorType'
6570
6554
  property :machine_type, as: 'machineType'
6555
+ property :tpu_topology, as: 'tpuTopology'
6571
6556
  end
6572
6557
  end
6573
6558
 
@@ -4593,6 +4593,11 @@ module Google
4593
4593
 
4594
4594
  # Creates a new Feature in a given EntityType.
4595
4595
  # @param [String] parent
4596
+ # Required. The resource name of the EntityType or FeatureGroup to create a
4597
+ # Feature. Format for entity_type as parent: `projects/`project`/locations/`
4598
+ # location`/featurestores/`featurestore`/entityTypes/`entity_type`` Format for
4599
+ # feature_group as parent: `projects/`project`/locations/`location`/
4600
+ # featureGroups/`feature_group``
4596
4601
  # @param [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Feature] google_cloud_aiplatform_v1_feature_object
4597
4602
  # @param [String] feature_id
4598
4603
  # Required. The ID to use for the Feature, which will become the final component
@@ -4664,9 +4669,10 @@ module Google
4664
4669
 
4665
4670
  # Gets details of a single Feature.
4666
4671
  # @param [String] name
4667
- # Required. The name of the Feature resource. Format: `projects/`project`/
4668
- # locations/`location`/featurestores/`featurestore`/entityTypes/`entity_type`` `
4669
- # projects/`project`/locations/`location`/featureGroups/`feature_group``
4672
+ # Required. The name of the Feature resource. Format for entity_type as parent: `
4673
+ # projects/`project`/locations/`location`/featurestores/`featurestore`/
4674
+ # entityTypes/`entity_type`` Format for feature_group as parent: `projects/`
4675
+ # project`/locations/`location`/featureGroups/`feature_group``
4670
4676
  # @param [String] fields
4671
4677
  # Selector specifying which fields to include in a partial response.
4672
4678
  # @param [String] quota_user
@@ -4696,10 +4702,10 @@ module Google
4696
4702
 
4697
4703
  # Lists Features in a given EntityType.
4698
4704
  # @param [String] parent
4699
- # Required. The resource name of the Location to list Features. Format: `
4700
- # projects/`project`/locations/`location`/featurestores/`featurestore`/
4701
- # entityTypes/`entity_type`` `projects/`project`/locations/`location`/
4702
- # featureGroups/`feature_group``
4705
+ # Required. The resource name of the Location to list Features. Format for
4706
+ # entity_type as parent: `projects/`project`/locations/`location`/featurestores/`
4707
+ # featurestore`/entityTypes/`entity_type`` Format for feature_group as parent: `
4708
+ # projects/`project`/locations/`location`/featureGroups/`feature_group``
4703
4709
  # @param [String] filter
4704
4710
  # Lists the Features that match the filter expression. The following filters are
4705
4711
  # supported: * `value_type`: Supports = and != comparisons. * `create_time`:
@@ -4713,9 +4719,10 @@ module Google
4713
4719
  # Features having both (active: yes) and (env: prod) labels. * `labels.env: *` --
4714
4720
  # > Any Feature which has a label with 'env' as the key.
4715
4721
  # @param [Fixnum] latest_stats_count
4716
- # If set, return the most recent ListFeaturesRequest.latest_stats_count of stats
4717
- # for each Feature in response. Valid value is [0, 10]. If number of stats
4718
- # exists < ListFeaturesRequest.latest_stats_count, return all existing stats.
4722
+ # Only applicable for Vertex AI Feature Store (Legacy). If set, return the most
4723
+ # recent ListFeaturesRequest.latest_stats_count of stats for each Feature in
4724
+ # response. Valid value is [0, 10]. If number of stats exists <
4725
+ # ListFeaturesRequest.latest_stats_count, return all existing stats.
4719
4726
  # @param [String] order_by
4720
4727
  # A comma-separated list of fields to order by, sorted in ascending order. Use "
4721
4728
  # desc" after a field name for descending. Supported fields: * `feature_id` * `
@@ -4726,10 +4733,11 @@ module Google
4726
4733
  # this value. If unspecified, at most 1000 Features will be returned. The
4727
4734
  # maximum value is 1000; any value greater than 1000 will be coerced to 1000.
4728
4735
  # @param [String] page_token
4729
- # A page token, received from a previous FeaturestoreService.ListFeatures call.
4730
- # Provide this to retrieve the subsequent page. When paginating, all other
4731
- # parameters provided to FeaturestoreService.ListFeatures must match the call
4732
- # that provided the page token.
4736
+ # A page token, received from a previous FeaturestoreService.ListFeatures call
4737
+ # or FeatureRegistryService.ListFeatures call. Provide this to retrieve the
4738
+ # subsequent page. When paginating, all other parameters provided to
4739
+ # FeaturestoreService.ListFeatures or or FeatureRegistryService.ListFeatures
4740
+ # must match the call that provided the page token.
4733
4741
  # @param [String] read_mask
4734
4742
  # Mask specifying which fields to read.
4735
4743
  # @param [String] fields
@@ -4769,10 +4777,11 @@ module Google
4769
4777
  # @param [String] name
4770
4778
  # Immutable. Name of the Feature. Format: `projects/`project`/locations/`
4771
4779
  # location`/featurestores/`featurestore`/entityTypes/`entity_type`/features/`
4772
- # feature`` The last part feature is assigned by the client. The feature can be
4773
- # up to 64 characters long and can consist only of ASCII Latin letters A-Z and a-
4774
- # z, underscore(_), and ASCII digits 0-9 starting with a letter. The value will
4775
- # be unique given an entity type.
4780
+ # feature`` `projects/`project`/locations/`location`/featureGroups/`
4781
+ # feature_group`/features/`feature`` The last part feature is assigned by the
4782
+ # client. The feature can be up to 64 characters long and can consist only of
4783
+ # ASCII Latin letters A-Z and a-z, underscore(_), and ASCII digits 0-9 starting
4784
+ # with a letter. The value will be unique given an entity type.
4776
4785
  # @param [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Feature] google_cloud_aiplatform_v1_feature_object
4777
4786
  # @param [String] update_mask
4778
4787
  # Field mask is used to specify the fields to be overwritten in the Features
@@ -4781,7 +4790,7 @@ module Google
4781
4790
  # the mask. If the user does not provide a mask then only the non-empty fields
4782
4791
  # present in the request will be overwritten. Set the update_mask to `*` to
4783
4792
  # override all fields. Updatable fields: * `description` * `labels` * `
4784
- # disable_monitoring`
4793
+ # disable_monitoring` (Not supported for FeatureRegistry Feature)
4785
4794
  # @param [String] fields
4786
4795
  # Selector specifying which fields to include in a partial response.
4787
4796
  # @param [String] quota_user
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-aiplatform_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.4.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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1/v0.2.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1/v0.4.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1
63
63
  post_install_message:
64
64
  rdoc_options: []