google-apis-gkehub_v1alpha 0.108.0 → 0.109.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: 4265793bad6b86f3083443d1ac6bbf976ccf93eba012a47b6fec1c0083143e7b
4
- data.tar.gz: 7bc5652ab355fec106d6be155706b8e21621c7868f88633c88fffe57599c2fed
3
+ metadata.gz: 7bc317d11c39288c98ec8f6be6a9036cba495e1ab6d854a6794cf30927056b22
4
+ data.tar.gz: 8891a99f27dcf6ff4df94ddd31ee38ddf1eac1c6b4dfe5283b95cb8bf57831db
5
5
  SHA512:
6
- metadata.gz: 57fe30d330477262ef02579ae1ae4a7d1719fe838e366fe7b410f666341375339d0f98134c0617dcf7aabb2219a8b68b2c40b2cfec64a8d5cf3513557894e828
7
- data.tar.gz: 0b27c6a38a483844e60b783e819e387df1e8c51aecb941ba7482a53a38da910400160e3ad17314ca2fcaf5c4482cd278a414428244630d7982cfec4d206c9791
6
+ metadata.gz: 96e6d9c46b109414bcda18c1c06e7de7d064e98933b7ffac5cf17dcc26c482d267ded9cace3a9c23f64de44676769534ad35792587f2f100bde13b017da7caac
7
+ data.tar.gz: c7b784d6dd376690f0550b27d368bdfdcfb4f03fb71e3d8a7922c180d678cd063d818b2b8d70be032e534e36b283c1b33f8c1f2eb5cfa4d815a962b9ac6d8aac
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-gkehub_v1alpha
2
2
 
3
+ ### v0.109.0 (2026-05-17)
4
+
5
+ * Regenerated from discovery document revision 20260511
6
+
3
7
  ### v0.108.0 (2026-05-03)
4
8
 
5
9
  * Regenerated from discovery document revision 20260426
@@ -5346,6 +5346,38 @@ module Google
5346
5346
  end
5347
5347
  end
5348
5348
 
5349
+ # Operational state of the Rollout Sequence.
5350
+ class OperationalState
5351
+ include Google::Apis::Core::Hashable
5352
+
5353
+ # Output only. Reasons for the Rollout Sequence state.
5354
+ # Corresponds to the JSON property `reasons`
5355
+ # @return [Array<String>]
5356
+ attr_accessor :reasons
5357
+
5358
+ # Output only. State of the Rollout Sequence.
5359
+ # Corresponds to the JSON property `state`
5360
+ # @return [String]
5361
+ attr_accessor :state
5362
+
5363
+ # Output only. The timestamp at which the operational state was last changed.
5364
+ # Used to track how long it has been in the current state.
5365
+ # Corresponds to the JSON property `stateChangeTime`
5366
+ # @return [String]
5367
+ attr_accessor :state_change_time
5368
+
5369
+ def initialize(**args)
5370
+ update!(**args)
5371
+ end
5372
+
5373
+ # Update properties of this object
5374
+ def update!(**args)
5375
+ @reasons = args[:reasons] if args.key?(:reasons)
5376
+ @state = args[:state] if args.key?(:state)
5377
+ @state_change_time = args[:state_change_time] if args.key?(:state_change_time)
5378
+ end
5379
+ end
5380
+
5349
5381
  # Origin defines where this MembershipFeatureSpec originated from.
5350
5382
  class Origin
5351
5383
  include Google::Apis::Core::Hashable
@@ -6308,7 +6340,7 @@ module Google
6308
6340
  end
6309
6341
  end
6310
6342
 
6311
- # RolloutSequence defines the desired order of upgrades.
6343
+ # RolloutSequence defines the desired order of upgrades. Next ID: 20
6312
6344
  class RolloutSequence
6313
6345
  include Google::Apis::Core::Hashable
6314
6346
 
@@ -6358,16 +6390,16 @@ module Google
6358
6390
  # @return [String]
6359
6391
  attr_accessor :name
6360
6392
 
6393
+ # Operational state of the Rollout Sequence.
6394
+ # Corresponds to the JSON property `operationalState`
6395
+ # @return [Google::Apis::GkehubV1alpha::OperationalState]
6396
+ attr_accessor :operational_state
6397
+
6361
6398
  # Required. Ordered list of stages that constitutes this Rollout.
6362
6399
  # Corresponds to the JSON property `stages`
6363
6400
  # @return [Array<Google::Apis::GkehubV1alpha::Stage>]
6364
6401
  attr_accessor :stages
6365
6402
 
6366
- # State and reasons of the Rollout Sequence.
6367
- # Corresponds to the JSON property `state`
6368
- # @return [Google::Apis::GkehubV1alpha::RolloutSequenceState]
6369
- attr_accessor :state
6370
-
6371
6403
  # Output only. Google-generated UUID for this resource. This is unique across
6372
6404
  # all Rollout Sequence resources. If a Rollout Sequence resource is deleted and
6373
6405
  # another resource with the same name is created, it gets a different uid.
@@ -6395,45 +6427,13 @@ module Google
6395
6427
  @ignored_clusters_selector = args[:ignored_clusters_selector] if args.key?(:ignored_clusters_selector)
6396
6428
  @labels = args[:labels] if args.key?(:labels)
6397
6429
  @name = args[:name] if args.key?(:name)
6430
+ @operational_state = args[:operational_state] if args.key?(:operational_state)
6398
6431
  @stages = args[:stages] if args.key?(:stages)
6399
- @state = args[:state] if args.key?(:state)
6400
6432
  @uid = args[:uid] if args.key?(:uid)
6401
6433
  @update_time = args[:update_time] if args.key?(:update_time)
6402
6434
  end
6403
6435
  end
6404
6436
 
6405
- # State and reasons of the Rollout Sequence.
6406
- class RolloutSequenceState
6407
- include Google::Apis::Core::Hashable
6408
-
6409
- # Output only. The timestamp at which the LifecycleState was last changed. Used
6410
- # to track how long it has been in the current state.
6411
- # Corresponds to the JSON property `lastStateChangeTime`
6412
- # @return [String]
6413
- attr_accessor :last_state_change_time
6414
-
6415
- # Output only. Lifecycle state of the Rollout Sequence.
6416
- # Corresponds to the JSON property `lifecycleState`
6417
- # @return [String]
6418
- attr_accessor :lifecycle_state
6419
-
6420
- # Output only. StateReason represents the reason for the Rollout Sequence state.
6421
- # Corresponds to the JSON property `stateReasons`
6422
- # @return [Array<String>]
6423
- attr_accessor :state_reasons
6424
-
6425
- def initialize(**args)
6426
- update!(**args)
6427
- end
6428
-
6429
- # Update properties of this object
6430
- def update!(**args)
6431
- @last_state_change_time = args[:last_state_change_time] if args.key?(:last_state_change_time)
6432
- @lifecycle_state = args[:lifecycle_state] if args.key?(:lifecycle_state)
6433
- @state_reasons = args[:state_reasons] if args.key?(:state_reasons)
6434
- end
6435
- end
6436
-
6437
6437
  # Stage represents a single stage in the Rollout.
6438
6438
  class RolloutStage
6439
6439
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GkehubV1alpha
18
18
  # Version of the google-apis-gkehub_v1alpha gem
19
- GEM_VERSION = "0.108.0"
19
+ GEM_VERSION = "0.109.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260426"
25
+ REVISION = "20260511"
26
26
  end
27
27
  end
28
28
  end
@@ -886,6 +886,12 @@ module Google
886
886
  include Google::Apis::Core::JsonObjectSupport
887
887
  end
888
888
 
889
+ class OperationalState
890
+ class Representation < Google::Apis::Core::JsonRepresentation; end
891
+
892
+ include Google::Apis::Core::JsonObjectSupport
893
+ end
894
+
889
895
  class Origin
890
896
  class Representation < Google::Apis::Core::JsonRepresentation; end
891
897
 
@@ -1048,12 +1054,6 @@ module Google
1048
1054
  include Google::Apis::Core::JsonObjectSupport
1049
1055
  end
1050
1056
 
1051
- class RolloutSequenceState
1052
- class Representation < Google::Apis::Core::JsonRepresentation; end
1053
-
1054
- include Google::Apis::Core::JsonObjectSupport
1055
- end
1056
-
1057
1057
  class RolloutStage
1058
1058
  class Representation < Google::Apis::Core::JsonRepresentation; end
1059
1059
 
@@ -2775,6 +2775,15 @@ module Google
2775
2775
  end
2776
2776
  end
2777
2777
 
2778
+ class OperationalState
2779
+ # @private
2780
+ class Representation < Google::Apis::Core::JsonRepresentation
2781
+ collection :reasons, as: 'reasons'
2782
+ property :state, as: 'state'
2783
+ property :state_change_time, as: 'stateChangeTime'
2784
+ end
2785
+ end
2786
+
2778
2787
  class Origin
2779
2788
  # @private
2780
2789
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3053,24 +3062,15 @@ module Google
3053
3062
 
3054
3063
  hash :labels, as: 'labels'
3055
3064
  property :name, as: 'name'
3056
- collection :stages, as: 'stages', class: Google::Apis::GkehubV1alpha::Stage, decorator: Google::Apis::GkehubV1alpha::Stage::Representation
3065
+ property :operational_state, as: 'operationalState', class: Google::Apis::GkehubV1alpha::OperationalState, decorator: Google::Apis::GkehubV1alpha::OperationalState::Representation
3057
3066
 
3058
- property :state, as: 'state', class: Google::Apis::GkehubV1alpha::RolloutSequenceState, decorator: Google::Apis::GkehubV1alpha::RolloutSequenceState::Representation
3067
+ collection :stages, as: 'stages', class: Google::Apis::GkehubV1alpha::Stage, decorator: Google::Apis::GkehubV1alpha::Stage::Representation
3059
3068
 
3060
3069
  property :uid, as: 'uid'
3061
3070
  property :update_time, as: 'updateTime'
3062
3071
  end
3063
3072
  end
3064
3073
 
3065
- class RolloutSequenceState
3066
- # @private
3067
- class Representation < Google::Apis::Core::JsonRepresentation
3068
- property :last_state_change_time, as: 'lastStateChangeTime'
3069
- property :lifecycle_state, as: 'lifecycleState'
3070
- collection :state_reasons, as: 'stateReasons'
3071
- end
3072
- end
3073
-
3074
3074
  class RolloutStage
3075
3075
  # @private
3076
3076
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gkehub_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.108.0
4
+ version: 0.109.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1alpha/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.108.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.109.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1alpha
62
62
  rdoc_options: []
63
63
  require_paths: