Skip to content

Commit b42f6d2

Browse files
feat: Automated regeneration of gkehub v1alpha client (#26049)
Auto-created at 2026-03-22 11:02:20 +0000 using the toys pull request generator.
1 parent da61e2c commit b42f6d2

File tree

5 files changed

+29
-8
lines changed

5 files changed

+29
-8
lines changed

api_names_out.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280980,6 +280980,7 @@
280980280980
"/gkehub:v1alpha/Rollout/stages/stage": stage
280981280981
"/gkehub:v1alpha/Rollout/state": state
280982280982
"/gkehub:v1alpha/Rollout/stateReason": state_reason
280983+
"/gkehub:v1alpha/Rollout/stateReasonType": state_reason_type
280983280984
"/gkehub:v1alpha/Rollout/uid": uid
280984280985
"/gkehub:v1alpha/Rollout/updateTime": update_time
280985280986
"/gkehub:v1alpha/Rollout/versionUpgrade": version_upgrade
@@ -281002,6 +281003,7 @@
281002281003
"/gkehub:v1alpha/RolloutSequence/uid": uid
281003281004
"/gkehub:v1alpha/RolloutSequence/updateTime": update_time
281004281005
"/gkehub:v1alpha/RolloutSequenceState": rollout_sequence_state
281006+
"/gkehub:v1alpha/RolloutSequenceState/lastStateChangeTime": last_state_change_time
281005281007
"/gkehub:v1alpha/RolloutSequenceState/lifecycleState": lifecycle_state
281006281008
"/gkehub:v1alpha/RolloutSequenceState/stateReasons": state_reasons
281007281009
"/gkehub:v1alpha/RolloutSequenceState/stateReasons/state_reason": state_reason

generated/google-apis-gkehub_v1alpha/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-gkehub_v1alpha
22

3+
### v0.106.0 (2026-03-22)
4+
5+
* Regenerated from discovery document revision 20260313
6+
37
### v0.105.0 (2026-03-15)
48

59
* Regenerated from discovery document revision 20260226

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

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6100,7 +6100,7 @@ def update!(**args)
61006100
end
61016101
end
61026102

6103-
# Rollout contains the Rollout metadata and configuration.
6103+
# Rollout contains the Rollout metadata and configuration. Next ID: 28
61046104
class Rollout
61056105
include Google::Apis::Core::Hashable
61066106

@@ -6170,6 +6170,11 @@ class Rollout
61706170
# @return [String]
61716171
attr_accessor :state_reason
61726172

6173+
# Output only. StateReasonType specifies the reason type of the Rollout state.
6174+
# Corresponds to the JSON property `stateReasonType`
6175+
# @return [String]
6176+
attr_accessor :state_reason_type
6177+
61736178
# Output only. Google-generated UUID for this resource. This is unique across
61746179
# all Rollout resources. If a Rollout resource is deleted and another resource
61756180
# with the same name is created, it gets a different uid.
@@ -6205,6 +6210,7 @@ def update!(**args)
62056210
@stages = args[:stages] if args.key?(:stages)
62066211
@state = args[:state] if args.key?(:state)
62076212
@state_reason = args[:state_reason] if args.key?(:state_reason)
6213+
@state_reason_type = args[:state_reason_type] if args.key?(:state_reason_type)
62086214
@uid = args[:uid] if args.key?(:uid)
62096215
@update_time = args[:update_time] if args.key?(:update_time)
62106216
@version_upgrade = args[:version_upgrade] if args.key?(:version_upgrade)
@@ -6325,6 +6331,12 @@ def update!(**args)
63256331
class RolloutSequenceState
63266332
include Google::Apis::Core::Hashable
63276333

6334+
# Output only. The timestamp at which the LifecycleState was last changed. Used
6335+
# to track how long it has been in the current state.
6336+
# Corresponds to the JSON property `lastStateChangeTime`
6337+
# @return [String]
6338+
attr_accessor :last_state_change_time
6339+
63286340
# Output only. Lifecycle state of the Rollout Sequence.
63296341
# Corresponds to the JSON property `lifecycleState`
63306342
# @return [String]
@@ -6341,6 +6353,7 @@ def initialize(**args)
63416353

63426354
# Update properties of this object
63436355
def update!(**args)
6356+
@last_state_change_time = args[:last_state_change_time] if args.key?(:last_state_change_time)
63446357
@lifecycle_state = args[:lifecycle_state] if args.key?(:lifecycle_state)
63456358
@state_reasons = args[:state_reasons] if args.key?(:state_reasons)
63466359
end
@@ -6350,27 +6363,27 @@ def update!(**args)
63506363
class RolloutStage
63516364
include Google::Apis::Core::Hashable
63526365

6353-
# Optional. Output only. The time at which the wave ended.
6366+
# Optional. Output only. The time at which the stage ended.
63546367
# Corresponds to the JSON property `endTime`
63556368
# @return [String]
63566369
attr_accessor :end_time
63576370

6358-
# Optional. Duration to soak after this wave before starting the next wave.
6371+
# Optional. Duration to soak after this stage before starting the next stage.
63596372
# Corresponds to the JSON property `soakDuration`
63606373
# @return [String]
63616374
attr_accessor :soak_duration
63626375

6363-
# Output only. The wave number to which this status applies.
6376+
# Output only. The stage number to which this status applies.
63646377
# Corresponds to the JSON property `stageNumber`
63656378
# @return [Fixnum]
63666379
attr_accessor :stage_number
63676380

6368-
# Optional. Output only. The time at which the wave started.
6381+
# Optional. Output only. The time at which the stage started.
63696382
# Corresponds to the JSON property `startTime`
63706383
# @return [String]
63716384
attr_accessor :start_time
63726385

6373-
# Output only. The state of the wave.
6386+
# Output only. The state of the stage.
63746387
# Corresponds to the JSON property `state`
63756388
# @return [String]
63766389
attr_accessor :state

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module GkehubV1alpha
1818
# Version of the google-apis-gkehub_v1alpha gem
19-
GEM_VERSION = "0.105.0"
19+
GEM_VERSION = "0.106.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.18.0"
2323

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

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2980,6 +2980,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
29802980

29812981
property :state, as: 'state'
29822982
property :state_reason, as: 'stateReason'
2983+
property :state_reason_type, as: 'stateReasonType'
29832984
property :uid, as: 'uid'
29842985
property :update_time, as: 'updateTime'
29852986
property :version_upgrade, as: 'versionUpgrade', class: Google::Apis::GkehubV1alpha::VersionUpgrade, decorator: Google::Apis::GkehubV1alpha::VersionUpgrade::Representation
@@ -3018,6 +3019,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
30183019
class RolloutSequenceState
30193020
# @private
30203021
class Representation < Google::Apis::Core::JsonRepresentation
3022+
property :last_state_change_time, as: 'lastStateChangeTime'
30213023
property :lifecycle_state, as: 'lifecycleState'
30223024
collection :state_reasons, as: 'stateReasons'
30233025
end

0 commit comments

Comments
 (0)