google-apis-aiplatform_v1 0.2.0 → 0.3.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: 26b0157797450eb16685d71024fcc67c2f8e40be8a2c556be3b98de713977f2a
4
- data.tar.gz: a5ec0f7cccdda31dd9dc4d8aa16de84c1a7583d1404735c0b5424a82c6c6086c
3
+ metadata.gz: abf9a624beaf54bc50fcd7a53feec08ee22acd671bc6c4ab01025a0ce8abbec4
4
+ data.tar.gz: a99847b154da73481fbf8eff52dcd3f713a4894b58b2fd55c273606411bcd52f
5
5
  SHA512:
6
- metadata.gz: 0d9ea45c28da9ed10b9daa41d5463e2d7a3be8ac8f11ce754a0c4feaf072c62cc926895cb8b7f4d356bc169aaea55af720ad3884eb2d57914386918b15d9fc27
7
- data.tar.gz: 68c7410a350d91b9a8fbf42c007c4b1b4e29b0ad6163b59da457f759cdf0e3b95fe168de79b2496944b171d740503e11bb97b3d56d902bfa43ae1c2ca7530520
6
+ metadata.gz: 684831517a5f7113430e1d83c906cf1c3a369dcd12d683d786d84a56e1ecd5acddfa13ac923f3bc83f063dd9745ee22d1561f62236691a6edad4df3b089b45db
7
+ data.tar.gz: '0179cf06e8a5cb3526b976db3c7b7b8a12eaf0eab8515210b1d6f035a3b1d80c9d626361dcdc2a6cda13b429711c4043696c53e3edf2b60c16397eb15e5c4b23'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-aiplatform_v1
2
2
 
3
+ ### v0.3.0 (2023-10-15)
4
+
5
+ * Regenerated from discovery document revision 20231002
6
+
3
7
  ### v0.2.0 (2023-10-08)
4
8
 
5
9
  * Regenerated from discovery document revision 20230929
@@ -5432,15 +5432,6 @@ module Google
5432
5432
  # @return [String]
5433
5433
  attr_accessor :annotations_filter
5434
5434
 
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
5435
  # Assigns the input data to training, validation, and test sets as per the given
5445
5436
  # fractions. Any of `training_fraction`, `validation_fraction` and `
5446
5437
  # test_fraction` may optionally be provided, they must sum to up to 1. If the
@@ -5463,7 +5454,6 @@ module Google
5463
5454
  # Update properties of this object
5464
5455
  def update!(**args)
5465
5456
  @annotations_filter = args[:annotations_filter] if args.key?(:annotations_filter)
5466
- @filter_split = args[:filter_split] if args.key?(:filter_split)
5467
5457
  @fraction_split = args[:fraction_split] if args.key?(:fraction_split)
5468
5458
  @gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination)
5469
5459
  end
@@ -5669,53 +5659,6 @@ module Google
5669
5659
  end
5670
5660
  end
5671
5661
 
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
5662
  # Assigns the input data to training, validation, and test sets as per the given
5720
5663
  # fractions. Any of `training_fraction`, `validation_fraction` and `
5721
5664
  # test_fraction` may optionally be provided, they must sum to up to 1. If the
@@ -9199,6 +9142,12 @@ module Google
9199
9142
  # @return [String]
9200
9143
  attr_accessor :machine_type
9201
9144
 
9145
+ # Immutable. The topology of the TPUs. Corresponds to the TPU topologies
9146
+ # available from GKE. (Example: tpu_topology: "2x2x1").
9147
+ # Corresponds to the JSON property `tpuTopology`
9148
+ # @return [String]
9149
+ attr_accessor :tpu_topology
9150
+
9202
9151
  def initialize(**args)
9203
9152
  update!(**args)
9204
9153
  end
@@ -9208,6 +9157,7 @@ module Google
9208
9157
  @accelerator_count = args[:accelerator_count] if args.key?(:accelerator_count)
9209
9158
  @accelerator_type = args[:accelerator_type] if args.key?(:accelerator_type)
9210
9159
  @machine_type = args[:machine_type] if args.key?(:machine_type)
9160
+ @tpu_topology = args[:tpu_topology] if args.key?(:tpu_topology)
9211
9161
  end
9212
9162
  end
9213
9163
 
@@ -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.3.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 = "20231002"
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
 
@@ -5480,8 +5474,6 @@ module Google
5480
5474
  # @private
5481
5475
  class Representation < Google::Apis::Core::JsonRepresentation
5482
5476
  property :annotations_filter, as: 'annotationsFilter'
5483
- property :filter_split, as: 'filterSplit', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ExportFilterSplit, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ExportFilterSplit::Representation
5484
-
5485
5477
  property :fraction_split, as: 'fractionSplit', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ExportFractionSplit, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ExportFractionSplit::Representation
5486
5478
 
5487
5479
  property :gcs_destination, as: 'gcsDestination', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GcsDestination, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GcsDestination::Representation
@@ -5559,15 +5551,6 @@ module Google
5559
5551
  end
5560
5552
  end
5561
5553
 
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
5554
  class GoogleCloudAiplatformV1ExportFractionSplit
5572
5555
  # @private
5573
5556
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6568,6 +6551,7 @@ module Google
6568
6551
  property :accelerator_count, as: 'acceleratorCount'
6569
6552
  property :accelerator_type, as: 'acceleratorType'
6570
6553
  property :machine_type, as: 'machineType'
6554
+ property :tpu_topology, as: 'tpuTopology'
6571
6555
  end
6572
6556
  end
6573
6557
 
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.3.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-15 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.3.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: []