Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -280509,6 +280509,7 @@
"/gkehub:v1alpha/Rollout/stages/stage": stage
"/gkehub:v1alpha/Rollout/state": state
"/gkehub:v1alpha/Rollout/stateReason": state_reason
"/gkehub:v1alpha/Rollout/stateReasonType": state_reason_type
"/gkehub:v1alpha/Rollout/uid": uid
"/gkehub:v1alpha/Rollout/updateTime": update_time
"/gkehub:v1alpha/Rollout/versionUpgrade": version_upgrade
Expand All @@ -280531,6 +280532,7 @@
"/gkehub:v1alpha/RolloutSequence/uid": uid
"/gkehub:v1alpha/RolloutSequence/updateTime": update_time
"/gkehub:v1alpha/RolloutSequenceState": rollout_sequence_state
"/gkehub:v1alpha/RolloutSequenceState/lastStateChangeTime": last_state_change_time
"/gkehub:v1alpha/RolloutSequenceState/lifecycleState": lifecycle_state
"/gkehub:v1alpha/RolloutSequenceState/stateReasons": state_reasons
"/gkehub:v1alpha/RolloutSequenceState/stateReasons/state_reason": state_reason
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-gkehub_v1alpha/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-gkehub_v1alpha

### v0.106.0 (2026-03-22)

* Regenerated from discovery document revision 20260313

### v0.105.0 (2026-03-15)

* Regenerated from discovery document revision 20260226
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6100,7 +6100,7 @@ def update!(**args)
end
end

# Rollout contains the Rollout metadata and configuration.
# Rollout contains the Rollout metadata and configuration. Next ID: 28
class Rollout
include Google::Apis::Core::Hashable

Expand Down Expand Up @@ -6170,6 +6170,11 @@ class Rollout
# @return [String]
attr_accessor :state_reason

# Output only. StateReasonType specifies the reason type of the Rollout state.
# Corresponds to the JSON property `stateReasonType`
# @return [String]
attr_accessor :state_reason_type

# Output only. Google-generated UUID for this resource. This is unique across
# all Rollout resources. If a Rollout resource is deleted and another resource
# with the same name is created, it gets a different uid.
Expand Down Expand Up @@ -6205,6 +6210,7 @@ def update!(**args)
@stages = args[:stages] if args.key?(:stages)
@state = args[:state] if args.key?(:state)
@state_reason = args[:state_reason] if args.key?(:state_reason)
@state_reason_type = args[:state_reason_type] if args.key?(:state_reason_type)
@uid = args[:uid] if args.key?(:uid)
@update_time = args[:update_time] if args.key?(:update_time)
@version_upgrade = args[:version_upgrade] if args.key?(:version_upgrade)
Expand Down Expand Up @@ -6325,6 +6331,12 @@ def update!(**args)
class RolloutSequenceState
include Google::Apis::Core::Hashable

# Output only. The timestamp at which the LifecycleState was last changed. Used
# to track how long it has been in the current state.
# Corresponds to the JSON property `lastStateChangeTime`
# @return [String]
attr_accessor :last_state_change_time

# Output only. Lifecycle state of the Rollout Sequence.
# Corresponds to the JSON property `lifecycleState`
# @return [String]
Expand All @@ -6341,6 +6353,7 @@ def initialize(**args)

# Update properties of this object
def update!(**args)
@last_state_change_time = args[:last_state_change_time] if args.key?(:last_state_change_time)
@lifecycle_state = args[:lifecycle_state] if args.key?(:lifecycle_state)
@state_reasons = args[:state_reasons] if args.key?(:state_reasons)
end
Expand All @@ -6350,27 +6363,27 @@ def update!(**args)
class RolloutStage
include Google::Apis::Core::Hashable

# Optional. Output only. The time at which the wave ended.
# Optional. Output only. The time at which the stage ended.
# Corresponds to the JSON property `endTime`
# @return [String]
attr_accessor :end_time

# Optional. Duration to soak after this wave before starting the next wave.
# Optional. Duration to soak after this stage before starting the next stage.
# Corresponds to the JSON property `soakDuration`
# @return [String]
attr_accessor :soak_duration

# Output only. The wave number to which this status applies.
# Output only. The stage number to which this status applies.
# Corresponds to the JSON property `stageNumber`
# @return [Fixnum]
attr_accessor :stage_number

# Optional. Output only. The time at which the wave started.
# Optional. Output only. The time at which the stage started.
# Corresponds to the JSON property `startTime`
# @return [String]
attr_accessor :start_time

# Output only. The state of the wave.
# Output only. The state of the stage.
# Corresponds to the JSON property `state`
# @return [String]
attr_accessor :state
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module GkehubV1alpha
# Version of the google-apis-gkehub_v1alpha gem
GEM_VERSION = "0.105.0"
GEM_VERSION = "0.106.0"

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

# Revision of the discovery document this client was generated from
REVISION = "20260226"
REVISION = "20260313"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -2980,6 +2980,7 @@ class Representation < Google::Apis::Core::JsonRepresentation

property :state, as: 'state'
property :state_reason, as: 'stateReason'
property :state_reason_type, as: 'stateReasonType'
property :uid, as: 'uid'
property :update_time, as: 'updateTime'
property :version_upgrade, as: 'versionUpgrade', class: Google::Apis::GkehubV1alpha::VersionUpgrade, decorator: Google::Apis::GkehubV1alpha::VersionUpgrade::Representation
Expand Down Expand Up @@ -3018,6 +3019,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
class RolloutSequenceState
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :last_state_change_time, as: 'lastStateChangeTime'
property :lifecycle_state, as: 'lifecycleState'
collection :state_reasons, as: 'stateReasons'
end
Expand Down
Loading