google-apis-gkehub_v1 0.84.0 → 0.85.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: e4164fadec45d8878a6c82b8ae4a0fd6c218a5a49f73b9b059a3c914deebec7b
|
4
|
+
data.tar.gz: 1fcf377f4044c5e350a34cb724d0fec67cb65505c77ff249da30efef295194c4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2bf91bf2f28b089746310f6b54be7bb44d566c12e58386dfb60caacd1af165a4268b9e66557f98ec3c9c8066278a4e2f0628bc36a240b6977639a710c1e4faa3
|
7
|
+
data.tar.gz: 68c9f4fc7cbca64847c44949fff05a59d95c6366e5fd11bd1615c08ad924473ed3bc37f9beac1b923c569d22068b5af1621cad5adb265ee47c2040a2b3289685
|
data/CHANGELOG.md
CHANGED
@@ -735,6 +735,12 @@ module Google
|
|
735
735
|
# @return [Google::Apis::GkehubV1::MultiClusterIngressFeatureSpec]
|
736
736
|
attr_accessor :multiclusteringress
|
737
737
|
|
738
|
+
# **RBAC RoleBinding Actuation**: The Hub-wide input for the
|
739
|
+
# RBACRoleBindingActuation feature.
|
740
|
+
# Corresponds to the JSON property `rbacrolebindingactuation`
|
741
|
+
# @return [Google::Apis::GkehubV1::RbacRoleBindingActuationFeatureSpec]
|
742
|
+
attr_accessor :rbacrolebindingactuation
|
743
|
+
|
738
744
|
def initialize(**args)
|
739
745
|
update!(**args)
|
740
746
|
end
|
@@ -746,6 +752,7 @@ module Google
|
|
746
752
|
@dataplanev2 = args[:dataplanev2] if args.key?(:dataplanev2)
|
747
753
|
@fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
|
748
754
|
@multiclusteringress = args[:multiclusteringress] if args.key?(:multiclusteringress)
|
755
|
+
@rbacrolebindingactuation = args[:rbacrolebindingactuation] if args.key?(:rbacrolebindingactuation)
|
749
756
|
end
|
750
757
|
end
|
751
758
|
|
@@ -768,6 +775,12 @@ module Google
|
|
768
775
|
# @return [Google::Apis::GkehubV1::FleetObservabilityFeatureState]
|
769
776
|
attr_accessor :fleetobservability
|
770
777
|
|
778
|
+
# **RBAC RoleBinding Actuation**: An empty state left as an example Hub-wide
|
779
|
+
# Feature state.
|
780
|
+
# Corresponds to the JSON property `rbacrolebindingactuation`
|
781
|
+
# @return [Google::Apis::GkehubV1::RbacRoleBindingActuationFeatureState]
|
782
|
+
attr_accessor :rbacrolebindingactuation
|
783
|
+
|
771
784
|
# FeatureState describes the high-level state of a Feature. It may be used to
|
772
785
|
# describe a Feature's state at the environ-level, or per-membershop, depending
|
773
786
|
# on the context.
|
@@ -784,6 +797,7 @@ module Google
|
|
784
797
|
@appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
|
785
798
|
@clusterupgrade = args[:clusterupgrade] if args.key?(:clusterupgrade)
|
786
799
|
@fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
|
800
|
+
@rbacrolebindingactuation = args[:rbacrolebindingactuation] if args.key?(:rbacrolebindingactuation)
|
787
801
|
@state = args[:state] if args.key?(:state)
|
788
802
|
end
|
789
803
|
end
|
@@ -3952,7 +3966,9 @@ module Google
|
|
3952
3966
|
# @return [String]
|
3953
3967
|
attr_accessor :external_id
|
3954
3968
|
|
3955
|
-
# Optional. Labels for this membership.
|
3969
|
+
# Optional. Labels for this membership. These labels are not leveraged by multi-
|
3970
|
+
# cluster features, instead, we prefer cluster labels, which can be set on GKE
|
3971
|
+
# cluster or other cluster types.
|
3956
3972
|
# Corresponds to the JSON property `labels`
|
3957
3973
|
# @return [Hash<String,String>]
|
3958
3974
|
attr_accessor :labels
|
@@ -5312,6 +5328,42 @@ module Google
|
|
5312
5328
|
end
|
5313
5329
|
end
|
5314
5330
|
|
5331
|
+
# **RBAC RoleBinding Actuation**: The Hub-wide input for the
|
5332
|
+
# RBACRoleBindingActuation feature.
|
5333
|
+
class RbacRoleBindingActuationFeatureSpec
|
5334
|
+
include Google::Apis::Core::Hashable
|
5335
|
+
|
5336
|
+
# The list of allowed custom roles (ClusterRoles). If a ClusterRole is not part
|
5337
|
+
# of this list, it cannot be used in a Scope RBACRoleBinding. If a ClusterRole
|
5338
|
+
# in this list is in use, it cannot be removed from the list.
|
5339
|
+
# Corresponds to the JSON property `allowedCustomRoles`
|
5340
|
+
# @return [Array<String>]
|
5341
|
+
attr_accessor :allowed_custom_roles
|
5342
|
+
|
5343
|
+
def initialize(**args)
|
5344
|
+
update!(**args)
|
5345
|
+
end
|
5346
|
+
|
5347
|
+
# Update properties of this object
|
5348
|
+
def update!(**args)
|
5349
|
+
@allowed_custom_roles = args[:allowed_custom_roles] if args.key?(:allowed_custom_roles)
|
5350
|
+
end
|
5351
|
+
end
|
5352
|
+
|
5353
|
+
# **RBAC RoleBinding Actuation**: An empty state left as an example Hub-wide
|
5354
|
+
# Feature state.
|
5355
|
+
class RbacRoleBindingActuationFeatureState
|
5356
|
+
include Google::Apis::Core::Hashable
|
5357
|
+
|
5358
|
+
def initialize(**args)
|
5359
|
+
update!(**args)
|
5360
|
+
end
|
5361
|
+
|
5362
|
+
# Update properties of this object
|
5363
|
+
def update!(**args)
|
5364
|
+
end
|
5365
|
+
end
|
5366
|
+
|
5315
5367
|
# RBACRoleBindingLifecycleState describes the state of a RbacRoleBinding
|
5316
5368
|
# resource.
|
5317
5369
|
class RbacRoleBindingLifecycleState
|
@@ -5403,6 +5455,11 @@ module Google
|
|
5403
5455
|
class Role
|
5404
5456
|
include Google::Apis::Core::Hashable
|
5405
5457
|
|
5458
|
+
# Optional. custom_role is the name of a custom KubernetesClusterRole to use.
|
5459
|
+
# Corresponds to the JSON property `customRole`
|
5460
|
+
# @return [String]
|
5461
|
+
attr_accessor :custom_role
|
5462
|
+
|
5406
5463
|
# predefined_role is the Kubernetes default role to use
|
5407
5464
|
# Corresponds to the JSON property `predefinedRole`
|
5408
5465
|
# @return [String]
|
@@ -5414,6 +5471,7 @@ module Google
|
|
5414
5471
|
|
5415
5472
|
# Update properties of this object
|
5416
5473
|
def update!(**args)
|
5474
|
+
@custom_role = args[:custom_role] if args.key?(:custom_role)
|
5417
5475
|
@predefined_role = args[:predefined_role] if args.key?(:predefined_role)
|
5418
5476
|
end
|
5419
5477
|
end
|
@@ -5565,8 +5623,7 @@ module Google
|
|
5565
5623
|
end
|
5566
5624
|
end
|
5567
5625
|
|
5568
|
-
# Condition being reported.
|
5569
|
-
# membership-level conditions field uses the common Condition message.
|
5626
|
+
# Condition being reported.
|
5570
5627
|
class ServiceMeshCondition
|
5571
5628
|
include Google::Apis::Core::Hashable
|
5572
5629
|
|
@@ -5698,8 +5755,7 @@ module Google
|
|
5698
5755
|
class ServiceMeshMembershipState
|
5699
5756
|
include Google::Apis::Core::Hashable
|
5700
5757
|
|
5701
|
-
# Output only. List of conditions reported for this membership.
|
5702
|
-
# Use the common Condition message.
|
5758
|
+
# Output only. List of conditions reported for this membership.
|
5703
5759
|
# Corresponds to the JSON property `conditions`
|
5704
5760
|
# @return [Array<Google::Apis::GkehubV1::ServiceMeshCondition>]
|
5705
5761
|
attr_accessor :conditions
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module GkehubV1
|
18
18
|
# Version of the google-apis-gkehub_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.85.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250423"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -862,6 +862,18 @@ module Google
|
|
862
862
|
include Google::Apis::Core::JsonObjectSupport
|
863
863
|
end
|
864
864
|
|
865
|
+
class RbacRoleBindingActuationFeatureSpec
|
866
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
867
|
+
|
868
|
+
include Google::Apis::Core::JsonObjectSupport
|
869
|
+
end
|
870
|
+
|
871
|
+
class RbacRoleBindingActuationFeatureState
|
872
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
873
|
+
|
874
|
+
include Google::Apis::Core::JsonObjectSupport
|
875
|
+
end
|
876
|
+
|
865
877
|
class RbacRoleBindingLifecycleState
|
866
878
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
867
879
|
|
@@ -1185,6 +1197,8 @@ module Google
|
|
1185
1197
|
|
1186
1198
|
property :multiclusteringress, as: 'multiclusteringress', class: Google::Apis::GkehubV1::MultiClusterIngressFeatureSpec, decorator: Google::Apis::GkehubV1::MultiClusterIngressFeatureSpec::Representation
|
1187
1199
|
|
1200
|
+
property :rbacrolebindingactuation, as: 'rbacrolebindingactuation', class: Google::Apis::GkehubV1::RbacRoleBindingActuationFeatureSpec, decorator: Google::Apis::GkehubV1::RbacRoleBindingActuationFeatureSpec::Representation
|
1201
|
+
|
1188
1202
|
end
|
1189
1203
|
end
|
1190
1204
|
|
@@ -1197,6 +1211,8 @@ module Google
|
|
1197
1211
|
|
1198
1212
|
property :fleetobservability, as: 'fleetobservability', class: Google::Apis::GkehubV1::FleetObservabilityFeatureState, decorator: Google::Apis::GkehubV1::FleetObservabilityFeatureState::Representation
|
1199
1213
|
|
1214
|
+
property :rbacrolebindingactuation, as: 'rbacrolebindingactuation', class: Google::Apis::GkehubV1::RbacRoleBindingActuationFeatureState, decorator: Google::Apis::GkehubV1::RbacRoleBindingActuationFeatureState::Representation
|
1215
|
+
|
1200
1216
|
property :state, as: 'state', class: Google::Apis::GkehubV1::FeatureState, decorator: Google::Apis::GkehubV1::FeatureState::Representation
|
1201
1217
|
|
1202
1218
|
end
|
@@ -2461,6 +2477,19 @@ module Google
|
|
2461
2477
|
end
|
2462
2478
|
end
|
2463
2479
|
|
2480
|
+
class RbacRoleBindingActuationFeatureSpec
|
2481
|
+
# @private
|
2482
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2483
|
+
collection :allowed_custom_roles, as: 'allowedCustomRoles'
|
2484
|
+
end
|
2485
|
+
end
|
2486
|
+
|
2487
|
+
class RbacRoleBindingActuationFeatureState
|
2488
|
+
# @private
|
2489
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2490
|
+
end
|
2491
|
+
end
|
2492
|
+
|
2464
2493
|
class RbacRoleBindingLifecycleState
|
2465
2494
|
# @private
|
2466
2495
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2488,6 +2517,7 @@ module Google
|
|
2488
2517
|
class Role
|
2489
2518
|
# @private
|
2490
2519
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2520
|
+
property :custom_role, as: 'customRole'
|
2491
2521
|
property :predefined_role, as: 'predefinedRole'
|
2492
2522
|
end
|
2493
2523
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-gkehub_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.85.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-04-27 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.85.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|