google-apis-gkehub_v1alpha 0.113.0 → 0.114.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fbd08c7f7341e3f07f8ea3333f7994bde963de144c5e3cd21391d3597bbca610
|
|
4
|
+
data.tar.gz: ff136ce2b897edcd8090b5b9385046897d2592a29e860e050a15f5582be90a5a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e5554b802693063ca80681b500dc7caa16cec9637eab86f3ee95b11d969d8613c1c63fa43d3653a57fa91a3293eb30b86f2bc45de4659757ffb1e483ff8f2d44
|
|
7
|
+
data.tar.gz: 59843d30dc043f9c0df1dcc2938cb334a93feffaa7f2a68859e93e16e85eaa01d75b0ea1d65c807ddd49e99edd2aba44bc5c1f56ace9dcc65fca2c7a90716830
|
data/CHANGELOG.md
CHANGED
|
@@ -5440,6 +5440,28 @@ module Google
|
|
|
5440
5440
|
end
|
|
5441
5441
|
end
|
|
5442
5442
|
|
|
5443
|
+
# Configuration for per-stage soak duration overrides.
|
|
5444
|
+
class PerStageSoakDurationOverrides
|
|
5445
|
+
include Google::Apis::Core::Hashable
|
|
5446
|
+
|
|
5447
|
+
# Required. A mapping of stage numbers to their respective desired soak
|
|
5448
|
+
# durations. Key is the stage number, value is the desired soak duration. Stages
|
|
5449
|
+
# omitted from the map will receive the standard soak duration configured on the
|
|
5450
|
+
# sequence for that stage.
|
|
5451
|
+
# Corresponds to the JSON property `stageOverrides`
|
|
5452
|
+
# @return [Hash<String,String>]
|
|
5453
|
+
attr_accessor :stage_overrides
|
|
5454
|
+
|
|
5455
|
+
def initialize(**args)
|
|
5456
|
+
update!(**args)
|
|
5457
|
+
end
|
|
5458
|
+
|
|
5459
|
+
# Update properties of this object
|
|
5460
|
+
def update!(**args)
|
|
5461
|
+
@stage_overrides = args[:stage_overrides] if args.key?(:stage_overrides)
|
|
5462
|
+
end
|
|
5463
|
+
end
|
|
5464
|
+
|
|
5443
5465
|
# An Identity and Access Management (IAM) policy, which specifies access
|
|
5444
5466
|
# controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
|
|
5445
5467
|
# A `binding` binds one or more `members`, or principals, to a single `role`.
|
|
@@ -6268,6 +6290,20 @@ module Google
|
|
|
6268
6290
|
# @return [String]
|
|
6269
6291
|
attr_accessor :etag
|
|
6270
6292
|
|
|
6293
|
+
# Optional. If set to true, the rollout will ignore the disruption budgets of
|
|
6294
|
+
# the clusters.
|
|
6295
|
+
# Corresponds to the JSON property `ignoreClusterDisruptionBudgets`
|
|
6296
|
+
# @return [Boolean]
|
|
6297
|
+
attr_accessor :ignore_cluster_disruption_budgets
|
|
6298
|
+
alias_method :ignore_cluster_disruption_budgets?, :ignore_cluster_disruption_budgets
|
|
6299
|
+
|
|
6300
|
+
# Optional. If set to true, the rollout will ignore any maintenance policies (
|
|
6301
|
+
# Maintenance Windows and Maintenance Exclusions) set on the clusters.
|
|
6302
|
+
# Corresponds to the JSON property `ignoreMaintenancePolicies`
|
|
6303
|
+
# @return [Boolean]
|
|
6304
|
+
attr_accessor :ignore_maintenance_policies
|
|
6305
|
+
alias_method :ignore_maintenance_policies?, :ignore_maintenance_policies
|
|
6306
|
+
|
|
6271
6307
|
# Output only. The intent of the rollout.
|
|
6272
6308
|
# Corresponds to the JSON property `intent`
|
|
6273
6309
|
# @return [String]
|
|
@@ -6298,6 +6334,14 @@ module Google
|
|
|
6298
6334
|
# @return [String]
|
|
6299
6335
|
attr_accessor :rollout_sequence
|
|
6300
6336
|
|
|
6337
|
+
# Optional. Overrides the soak durations for specific stages of the rollout. Key
|
|
6338
|
+
# is the stage number, value is the desired soak duration. Stages omitted from
|
|
6339
|
+
# the map will receive the standard soak duration configured on the sequence for
|
|
6340
|
+
# that stage.
|
|
6341
|
+
# Corresponds to the JSON property `stageSoakDurationOverrides`
|
|
6342
|
+
# @return [Hash<String,String>]
|
|
6343
|
+
attr_accessor :stage_soak_duration_overrides
|
|
6344
|
+
|
|
6301
6345
|
# Output only. The stages of the Rollout.
|
|
6302
6346
|
# Corresponds to the JSON property `stages`
|
|
6303
6347
|
# @return [Array<Google::Apis::GkehubV1alpha::RolloutStage>]
|
|
@@ -6352,11 +6396,14 @@ module Google
|
|
|
6352
6396
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
|
6353
6397
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
6354
6398
|
@etag = args[:etag] if args.key?(:etag)
|
|
6399
|
+
@ignore_cluster_disruption_budgets = args[:ignore_cluster_disruption_budgets] if args.key?(:ignore_cluster_disruption_budgets)
|
|
6400
|
+
@ignore_maintenance_policies = args[:ignore_maintenance_policies] if args.key?(:ignore_maintenance_policies)
|
|
6355
6401
|
@intent = args[:intent] if args.key?(:intent)
|
|
6356
6402
|
@labels = args[:labels] if args.key?(:labels)
|
|
6357
6403
|
@membership_states = args[:membership_states] if args.key?(:membership_states)
|
|
6358
6404
|
@name = args[:name] if args.key?(:name)
|
|
6359
6405
|
@rollout_sequence = args[:rollout_sequence] if args.key?(:rollout_sequence)
|
|
6406
|
+
@stage_soak_duration_overrides = args[:stage_soak_duration_overrides] if args.key?(:stage_soak_duration_overrides)
|
|
6360
6407
|
@stages = args[:stages] if args.key?(:stages)
|
|
6361
6408
|
@state = args[:state] if args.key?(:state)
|
|
6362
6409
|
@state_reason = args[:state_reason] if args.key?(:state_reason)
|
|
@@ -7405,6 +7452,37 @@ module Google
|
|
|
7405
7452
|
attr_accessor :force
|
|
7406
7453
|
alias_method :force?, :force
|
|
7407
7454
|
|
|
7455
|
+
# Optional. If set to true, the rollout will ignore the disruption budgets of
|
|
7456
|
+
# the clusters.
|
|
7457
|
+
# Corresponds to the JSON property `ignoreClusterDisruptionBudgets`
|
|
7458
|
+
# @return [Boolean]
|
|
7459
|
+
attr_accessor :ignore_cluster_disruption_budgets
|
|
7460
|
+
alias_method :ignore_cluster_disruption_budgets?, :ignore_cluster_disruption_budgets
|
|
7461
|
+
|
|
7462
|
+
# Optional. If set to true, the rollout will ignore any maintenance policies (
|
|
7463
|
+
# Maintenance Windows and Maintenance Exclusions) set on the clusters.
|
|
7464
|
+
# Corresponds to the JSON property `ignoreMaintenancePolicies`
|
|
7465
|
+
# @return [Boolean]
|
|
7466
|
+
attr_accessor :ignore_maintenance_policies
|
|
7467
|
+
alias_method :ignore_maintenance_policies?, :ignore_maintenance_policies
|
|
7468
|
+
|
|
7469
|
+
# Optional. If set to true, the rollout will only upgrade clusters that match
|
|
7470
|
+
# the minor version of the `version` field, but are on an earlier patch version.
|
|
7471
|
+
# Corresponds to the JSON property `patchOnly`
|
|
7472
|
+
# @return [Boolean]
|
|
7473
|
+
attr_accessor :patch_only
|
|
7474
|
+
alias_method :patch_only?, :patch_only
|
|
7475
|
+
|
|
7476
|
+
# Optional. Overrides the soak duration for all stages of the rollout.
|
|
7477
|
+
# Corresponds to the JSON property `soakDurationOverrideAllStages`
|
|
7478
|
+
# @return [String]
|
|
7479
|
+
attr_accessor :soak_duration_override_all_stages
|
|
7480
|
+
|
|
7481
|
+
# Configuration for per-stage soak duration overrides.
|
|
7482
|
+
# Corresponds to the JSON property `soakDurationOverridePerStage`
|
|
7483
|
+
# @return [Google::Apis::GkehubV1alpha::PerStageSoakDurationOverrides]
|
|
7484
|
+
attr_accessor :soak_duration_override_per_stage
|
|
7485
|
+
|
|
7408
7486
|
# Required. The type of upgrade.
|
|
7409
7487
|
# Corresponds to the JSON property `upgradeType`
|
|
7410
7488
|
# @return [String]
|
|
@@ -7432,6 +7510,11 @@ module Google
|
|
|
7432
7510
|
# Update properties of this object
|
|
7433
7511
|
def update!(**args)
|
|
7434
7512
|
@force = args[:force] if args.key?(:force)
|
|
7513
|
+
@ignore_cluster_disruption_budgets = args[:ignore_cluster_disruption_budgets] if args.key?(:ignore_cluster_disruption_budgets)
|
|
7514
|
+
@ignore_maintenance_policies = args[:ignore_maintenance_policies] if args.key?(:ignore_maintenance_policies)
|
|
7515
|
+
@patch_only = args[:patch_only] if args.key?(:patch_only)
|
|
7516
|
+
@soak_duration_override_all_stages = args[:soak_duration_override_all_stages] if args.key?(:soak_duration_override_all_stages)
|
|
7517
|
+
@soak_duration_override_per_stage = args[:soak_duration_override_per_stage] if args.key?(:soak_duration_override_per_stage)
|
|
7435
7518
|
@upgrade_type = args[:upgrade_type] if args.key?(:upgrade_type)
|
|
7436
7519
|
@version = args[:version] if args.key?(:version)
|
|
7437
7520
|
end
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.114.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260817"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -910,6 +910,12 @@ module Google
|
|
|
910
910
|
include Google::Apis::Core::JsonObjectSupport
|
|
911
911
|
end
|
|
912
912
|
|
|
913
|
+
class PerStageSoakDurationOverrides
|
|
914
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
915
|
+
|
|
916
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
917
|
+
end
|
|
918
|
+
|
|
913
919
|
class Policy
|
|
914
920
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
915
921
|
|
|
@@ -2836,6 +2842,13 @@ module Google
|
|
|
2836
2842
|
end
|
|
2837
2843
|
end
|
|
2838
2844
|
|
|
2845
|
+
class PerStageSoakDurationOverrides
|
|
2846
|
+
# @private
|
|
2847
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2848
|
+
hash :stage_overrides, as: 'stageOverrides'
|
|
2849
|
+
end
|
|
2850
|
+
end
|
|
2851
|
+
|
|
2839
2852
|
class Policy
|
|
2840
2853
|
# @private
|
|
2841
2854
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3066,12 +3079,15 @@ module Google
|
|
|
3066
3079
|
property :delete_time, as: 'deleteTime'
|
|
3067
3080
|
property :display_name, as: 'displayName'
|
|
3068
3081
|
property :etag, as: 'etag'
|
|
3082
|
+
property :ignore_cluster_disruption_budgets, as: 'ignoreClusterDisruptionBudgets'
|
|
3083
|
+
property :ignore_maintenance_policies, as: 'ignoreMaintenancePolicies'
|
|
3069
3084
|
property :intent, as: 'intent'
|
|
3070
3085
|
hash :labels, as: 'labels'
|
|
3071
3086
|
hash :membership_states, as: 'membershipStates', class: Google::Apis::GkehubV1alpha::RolloutMembershipState, decorator: Google::Apis::GkehubV1alpha::RolloutMembershipState::Representation
|
|
3072
3087
|
|
|
3073
3088
|
property :name, as: 'name'
|
|
3074
3089
|
property :rollout_sequence, as: 'rolloutSequence'
|
|
3090
|
+
hash :stage_soak_duration_overrides, as: 'stageSoakDurationOverrides'
|
|
3075
3091
|
collection :stages, as: 'stages', class: Google::Apis::GkehubV1alpha::RolloutStage, decorator: Google::Apis::GkehubV1alpha::RolloutStage::Representation
|
|
3076
3092
|
|
|
3077
3093
|
property :state, as: 'state'
|
|
@@ -3376,6 +3392,12 @@ module Google
|
|
|
3376
3392
|
# @private
|
|
3377
3393
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3378
3394
|
property :force, as: 'force'
|
|
3395
|
+
property :ignore_cluster_disruption_budgets, as: 'ignoreClusterDisruptionBudgets'
|
|
3396
|
+
property :ignore_maintenance_policies, as: 'ignoreMaintenancePolicies'
|
|
3397
|
+
property :patch_only, as: 'patchOnly'
|
|
3398
|
+
property :soak_duration_override_all_stages, as: 'soakDurationOverrideAllStages'
|
|
3399
|
+
property :soak_duration_override_per_stage, as: 'soakDurationOverridePerStage', class: Google::Apis::GkehubV1alpha::PerStageSoakDurationOverrides, decorator: Google::Apis::GkehubV1alpha::PerStageSoakDurationOverrides::Representation
|
|
3400
|
+
|
|
3379
3401
|
property :upgrade_type, as: 'upgradeType'
|
|
3380
3402
|
property :version, as: 'version'
|
|
3381
3403
|
end
|
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.
|
|
4
|
+
version: 0.114.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.114.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:
|