google-apis-aiplatform_v1beta1 0.5.0 → 0.6.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: c920dbad5b429ffa91df130b6695eb05df6c7de33da77016abdf4b40d8f5cfcf
4
- data.tar.gz: 0566a47ec9037b93af82813edb8d5924125c3862ec2357efc0558078cb446638
3
+ metadata.gz: 9244d37a4c280bcc02b81bcbbee3acfff727c164fba2f3196a6baca94ff0da95
4
+ data.tar.gz: 7c9ab9ffb2dbe33c9c4183040354e47d453262f7e65c02a791169cc63bbabd26
5
5
  SHA512:
6
- metadata.gz: 5baab15b348bc81be10b00d75d26a46f6950424c4072151e5637330bf347feedc8f69dfce44471da431c090ffe1a7284e3a3426eb5a2aa99b49598a4be943433
7
- data.tar.gz: 13812060cf43255643715ad42aa9824b9d7f4bcdbd5d7bc556806d307391bfee36d327177caa51d56218a2905011426071411b1c1e7f82e67a9b98c8c2a98d98
6
+ metadata.gz: 1bae36f8b4083ca8c2342b344a2fbebe978e29e9e0473637071aad800a73df15e6b3b1a55719178782e22f119c5125b986fd9467b2e1aa9d81091b1984a4b26d
7
+ data.tar.gz: 28aeef523cc68c97fcc8f943060739f2f47f1c55e0b27b13c346c84bbda3308084fe0de8b47d781c7ea5ac89b92f7f9b644f7a300499daa1cc48607707592b03
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-aiplatform_v1beta1
2
2
 
3
+ ### v0.6.0 (2023-10-15)
4
+
5
+ * Regenerated from discovery document revision 20231002
6
+
3
7
  ### v0.5.0 (2023-10-08)
4
8
 
5
9
  * Regenerated from discovery document revision 20230929
@@ -5785,15 +5785,6 @@ module Google
5785
5785
  # @return [String]
5786
5786
  attr_accessor :annotations_filter
5787
5787
 
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
5788
  # Assigns the input data to training, validation, and test sets as per the given
5798
5789
  # fractions. Any of `training_fraction`, `validation_fraction` and `
5799
5790
  # test_fraction` may optionally be provided, they must sum to up to 1. If the
@@ -5816,7 +5807,6 @@ module Google
5816
5807
  # Update properties of this object
5817
5808
  def update!(**args)
5818
5809
  @annotations_filter = args[:annotations_filter] if args.key?(:annotations_filter)
5819
- @filter_split = args[:filter_split] if args.key?(:filter_split)
5820
5810
  @fraction_split = args[:fraction_split] if args.key?(:fraction_split)
5821
5811
  @gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination)
5822
5812
  end
@@ -6079,53 +6069,6 @@ module Google
6079
6069
  end
6080
6070
  end
6081
6071
 
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
6072
  # Assigns the input data to training, validation, and test sets as per the given
6130
6073
  # fractions. Any of `training_fraction`, `validation_fraction` and `
6131
6074
  # test_fraction` may optionally be provided, they must sum to up to 1. If the
@@ -7141,7 +7084,7 @@ module Google
7141
7084
  # @return [Array<String>]
7142
7085
  attr_accessor :entity_id_columns
7143
7086
 
7144
- # Required. The Bigquery View URI that will be materialized on each sync trigger
7087
+ # Required. The BigQuery view URI that will be materialized on each sync trigger
7145
7088
  # based on FeatureView.SyncConfig.
7146
7089
  # Corresponds to the JSON property `uri`
7147
7090
  # @return [String]
@@ -10602,6 +10545,12 @@ module Google
10602
10545
  # @return [String]
10603
10546
  attr_accessor :machine_type
10604
10547
 
10548
+ # Immutable. The topology of the TPUs. Corresponds to the TPU topologies
10549
+ # available from GKE. (Example: tpu_topology: "2x2x1").
10550
+ # Corresponds to the JSON property `tpuTopology`
10551
+ # @return [String]
10552
+ attr_accessor :tpu_topology
10553
+
10605
10554
  def initialize(**args)
10606
10555
  update!(**args)
10607
10556
  end
@@ -10611,6 +10560,7 @@ module Google
10611
10560
  @accelerator_count = args[:accelerator_count] if args.key?(:accelerator_count)
10612
10561
  @accelerator_type = args[:accelerator_type] if args.key?(:accelerator_type)
10613
10562
  @machine_type = args[:machine_type] if args.key?(:machine_type)
10563
+ @tpu_topology = args[:tpu_topology] if args.key?(:tpu_topology)
10614
10564
  end
10615
10565
  end
10616
10566
 
@@ -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.6.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
@@ -1048,12 +1048,6 @@ module Google
1048
1048
  include Google::Apis::Core::JsonObjectSupport
1049
1049
  end
1050
1050
 
1051
- class GoogleCloudAiplatformV1beta1ExportFilterSplit
1052
- class Representation < Google::Apis::Core::JsonRepresentation; end
1053
-
1054
- include Google::Apis::Core::JsonObjectSupport
1055
- end
1056
-
1057
1051
  class GoogleCloudAiplatformV1beta1ExportFractionSplit
1058
1052
  class Representation < Google::Apis::Core::JsonRepresentation; end
1059
1053
 
@@ -6109,8 +6103,6 @@ module Google
6109
6103
  # @private
6110
6104
  class Representation < Google::Apis::Core::JsonRepresentation
6111
6105
  property :annotations_filter, as: 'annotationsFilter'
6112
- property :filter_split, as: 'filterSplit', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExportFilterSplit, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExportFilterSplit::Representation
6113
-
6114
6106
  property :fraction_split, as: 'fractionSplit', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExportFractionSplit, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExportFractionSplit::Representation
6115
6107
 
6116
6108
  property :gcs_destination, as: 'gcsDestination', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GcsDestination, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GcsDestination::Representation
@@ -6212,15 +6204,6 @@ module Google
6212
6204
  end
6213
6205
  end
6214
6206
 
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
6207
  class GoogleCloudAiplatformV1beta1ExportFractionSplit
6225
6208
  # @private
6226
6209
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7517,6 +7500,7 @@ module Google
7517
7500
  property :accelerator_count, as: 'acceleratorCount'
7518
7501
  property :accelerator_type, as: 'acceleratorType'
7519
7502
  property :machine_type, as: 'machineType'
7503
+ property :tpu_topology, as: 'tpuTopology'
7520
7504
  end
7521
7505
  end
7522
7506
 
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.6.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_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.6.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: []