Skip to content

Commit f23ae65

Browse files
feat: Automated regeneration of aiplatform v1beta1 client (googleapis#21460)
Auto-created at 2025-01-26 09:38:52 +0000 using the toys pull request generator.
1 parent c5f9294 commit f23ae65

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed

api_names_out.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18753,6 +18753,8 @@
1875318753
"/aiplatform:v1beta1/GoogleCloudAiplatformV1beta1SupervisedHyperParameters/epochCount": epoch_count
1875418754
"/aiplatform:v1beta1/GoogleCloudAiplatformV1beta1SupervisedHyperParameters/learningRateMultiplier": learning_rate_multiplier
1875518755
"/aiplatform:v1beta1/GoogleCloudAiplatformV1beta1SupervisedTuningDataStats": google_cloud_aiplatform_v1beta1_supervised_tuning_data_stats
18756+
"/aiplatform:v1beta1/GoogleCloudAiplatformV1beta1SupervisedTuningDataStats/droppedExampleReasons": dropped_example_reasons
18757+
"/aiplatform:v1beta1/GoogleCloudAiplatformV1beta1SupervisedTuningDataStats/droppedExampleReasons/dropped_example_reason": dropped_example_reason
1875618758
"/aiplatform:v1beta1/GoogleCloudAiplatformV1beta1SupervisedTuningDataStats/totalBillableCharacterCount": total_billable_character_count
1875718759
"/aiplatform:v1beta1/GoogleCloudAiplatformV1beta1SupervisedTuningDataStats/totalBillableTokenCount": total_billable_token_count
1875818760
"/aiplatform:v1beta1/GoogleCloudAiplatformV1beta1SupervisedTuningDataStats/totalTruncatedExampleCount": total_truncated_example_count

generated/google-apis-aiplatform_v1beta1/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Release history for google-apis-aiplatform_v1beta1
22

3-
### v0.37.0 (2025-01-19)
3+
### v0.37.0 (2025-01-26)
44

5-
* Regenerated from discovery document revision 20250107
5+
* Regenerated from discovery document revision 20250114
66
* Regenerated using generator version 0.16.0
77

88
### v0.36.0 (2024-12-22)

generated/google-apis-aiplatform_v1beta1/lib/google/apis/aiplatform_v1beta1/classes.rb

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38532,6 +38532,12 @@ def update!(**args)
3853238532
class GoogleCloudAiplatformV1beta1SupervisedTuningDataStats
3853338533
include Google::Apis::Core::Hashable
3853438534

38535+
# Output only. For each index in `truncated_example_indices`, the user-facing
38536+
# reason why the example was dropped. Must not include example itself.
38537+
# Corresponds to the JSON property `droppedExampleReasons`
38538+
# @return [Array<String>]
38539+
attr_accessor :dropped_example_reasons
38540+
3853538541
# Output only. Number of billable characters in the tuning dataset.
3853638542
# Corresponds to the JSON property `totalBillableCharacterCount`
3853738543
# @return [Fixnum]
@@ -38542,7 +38548,9 @@ class GoogleCloudAiplatformV1beta1SupervisedTuningDataStats
3854238548
# @return [Fixnum]
3854338549
attr_accessor :total_billable_token_count
3854438550

38545-
# The number of examples in the dataset that have been truncated by any amount.
38551+
# Output only. The number of examples in the dataset that have been dropped. An
38552+
# example can be dropped for reasons including: too many tokens, contains an
38553+
# invalid image, contains too many images, etc.
3854638554
# Corresponds to the JSON property `totalTruncatedExampleCount`
3854738555
# @return [Fixnum]
3854838556
attr_accessor :total_truncated_example_count
@@ -38552,7 +38560,8 @@ class GoogleCloudAiplatformV1beta1SupervisedTuningDataStats
3855238560
# @return [Fixnum]
3855338561
attr_accessor :total_tuning_character_count
3855438562

38555-
# A partial sample of the indices (starting from 1) of the truncated examples.
38563+
# Output only. A partial sample of the indices (starting from 1) of the dropped
38564+
# examples.
3855638565
# Corresponds to the JSON property `truncatedExampleIndices`
3855738566
# @return [Array<Fixnum>]
3855838567
attr_accessor :truncated_example_indices
@@ -38593,6 +38602,7 @@ def initialize(**args)
3859338602

3859438603
# Update properties of this object
3859538604
def update!(**args)
38605+
@dropped_example_reasons = args[:dropped_example_reasons] if args.key?(:dropped_example_reasons)
3859638606
@total_billable_character_count = args[:total_billable_character_count] if args.key?(:total_billable_character_count)
3859738607
@total_billable_token_count = args[:total_billable_token_count] if args.key?(:total_billable_token_count)
3859838608
@total_truncated_example_count = args[:total_truncated_example_count] if args.key?(:total_truncated_example_count)

generated/google-apis-aiplatform_v1beta1/lib/google/apis/aiplatform_v1beta1/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module AiplatformV1beta1
2222
GENERATOR_VERSION = "0.16.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250107"
25+
REVISION = "20250114"
2626
end
2727
end
2828
end

generated/google-apis-aiplatform_v1beta1/lib/google/apis/aiplatform_v1beta1/representations.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18271,6 +18271,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
1827118271
class GoogleCloudAiplatformV1beta1SupervisedTuningDataStats
1827218272
# @private
1827318273
class Representation < Google::Apis::Core::JsonRepresentation
18274+
collection :dropped_example_reasons, as: 'droppedExampleReasons'
1827418275
property :total_billable_character_count, :numeric_string => true, as: 'totalBillableCharacterCount'
1827518276
property :total_billable_token_count, :numeric_string => true, as: 'totalBillableTokenCount'
1827618277
property :total_truncated_example_count, :numeric_string => true, as: 'totalTruncatedExampleCount'

0 commit comments

Comments
 (0)