google-apis-gkehub_v1beta 0.96.0 → 0.97.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: 34585887fa8c60ade9ee3da8b0872e9718b8277a5898b578021aa0d3d4f5d26a
|
|
4
|
+
data.tar.gz: fde6d2d34a350e67d19cc3e6e1a89f980a6b77b6a2d44357df28f52af23c4861
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9bcd4aefe7516645a66949441d871d2772b6373845e33320a16a7f0d52e49ce69dce92a902d8cec8b582f32ba792e9b49c8df7270f4cf7e14e5f005688fe6ee9
|
|
7
|
+
data.tar.gz: 8833763ee9c6c6ee16bca5ea1b42123956c9a5ec34ae94e4d0348963e4bfa17b97e70714f92e63356ebc72ff723a4096ad04d32226ce78b0b85fb15addcd5dc7
|
data/CHANGELOG.md
CHANGED
|
@@ -853,6 +853,12 @@ module Google
|
|
|
853
853
|
# @return [Google::Apis::GkehubV1beta::RbacRoleBindingActuationFeatureState]
|
|
854
854
|
attr_accessor :rbacrolebindingactuation
|
|
855
855
|
|
|
856
|
+
# **Service Mesh**: State for the whole Hub, as analyzed by the Service Mesh Hub
|
|
857
|
+
# Controller.
|
|
858
|
+
# Corresponds to the JSON property `servicemesh`
|
|
859
|
+
# @return [Google::Apis::GkehubV1beta::ServiceMeshFeatureState]
|
|
860
|
+
attr_accessor :servicemesh
|
|
861
|
+
|
|
856
862
|
# FeatureState describes the high-level state of a Feature. It may be used to
|
|
857
863
|
# describe a Feature's state at the environ-level, or per-membershop, depending
|
|
858
864
|
# on the context.
|
|
@@ -875,6 +881,7 @@ module Google
|
|
|
875
881
|
@clusterupgrade = args[:clusterupgrade] if args.key?(:clusterupgrade)
|
|
876
882
|
@fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
|
|
877
883
|
@rbacrolebindingactuation = args[:rbacrolebindingactuation] if args.key?(:rbacrolebindingactuation)
|
|
884
|
+
@servicemesh = args[:servicemesh] if args.key?(:servicemesh)
|
|
878
885
|
@state = args[:state] if args.key?(:state)
|
|
879
886
|
@workloadidentity = args[:workloadidentity] if args.key?(:workloadidentity)
|
|
880
887
|
end
|
|
@@ -6558,6 +6565,44 @@ module Google
|
|
|
6558
6565
|
end
|
|
6559
6566
|
end
|
|
6560
6567
|
|
|
6568
|
+
# Condition being reported.
|
|
6569
|
+
class ServiceMeshFeatureCondition
|
|
6570
|
+
include Google::Apis::Core::Hashable
|
|
6571
|
+
|
|
6572
|
+
# Unique identifier of the condition which describes the condition recognizable
|
|
6573
|
+
# to the user.
|
|
6574
|
+
# Corresponds to the JSON property `code`
|
|
6575
|
+
# @return [String]
|
|
6576
|
+
attr_accessor :code
|
|
6577
|
+
|
|
6578
|
+
# A short summary about the issue.
|
|
6579
|
+
# Corresponds to the JSON property `details`
|
|
6580
|
+
# @return [String]
|
|
6581
|
+
attr_accessor :details
|
|
6582
|
+
|
|
6583
|
+
# Links contains actionable information.
|
|
6584
|
+
# Corresponds to the JSON property `documentationLink`
|
|
6585
|
+
# @return [String]
|
|
6586
|
+
attr_accessor :documentation_link
|
|
6587
|
+
|
|
6588
|
+
# Severity level of the condition.
|
|
6589
|
+
# Corresponds to the JSON property `severity`
|
|
6590
|
+
# @return [String]
|
|
6591
|
+
attr_accessor :severity
|
|
6592
|
+
|
|
6593
|
+
def initialize(**args)
|
|
6594
|
+
update!(**args)
|
|
6595
|
+
end
|
|
6596
|
+
|
|
6597
|
+
# Update properties of this object
|
|
6598
|
+
def update!(**args)
|
|
6599
|
+
@code = args[:code] if args.key?(:code)
|
|
6600
|
+
@details = args[:details] if args.key?(:details)
|
|
6601
|
+
@documentation_link = args[:documentation_link] if args.key?(:documentation_link)
|
|
6602
|
+
@severity = args[:severity] if args.key?(:severity)
|
|
6603
|
+
end
|
|
6604
|
+
end
|
|
6605
|
+
|
|
6561
6606
|
# **Service Mesh**: Spec for the fleet for the servicemesh feature
|
|
6562
6607
|
class ServiceMeshFeatureSpec
|
|
6563
6608
|
include Google::Apis::Core::Hashable
|
|
@@ -6583,6 +6628,26 @@ module Google
|
|
|
6583
6628
|
end
|
|
6584
6629
|
end
|
|
6585
6630
|
|
|
6631
|
+
# **Service Mesh**: State for the whole Hub, as analyzed by the Service Mesh Hub
|
|
6632
|
+
# Controller.
|
|
6633
|
+
class ServiceMeshFeatureState
|
|
6634
|
+
include Google::Apis::Core::Hashable
|
|
6635
|
+
|
|
6636
|
+
# Output only. List of conditions reported for this feature.
|
|
6637
|
+
# Corresponds to the JSON property `conditions`
|
|
6638
|
+
# @return [Array<Google::Apis::GkehubV1beta::ServiceMeshFeatureCondition>]
|
|
6639
|
+
attr_accessor :conditions
|
|
6640
|
+
|
|
6641
|
+
def initialize(**args)
|
|
6642
|
+
update!(**args)
|
|
6643
|
+
end
|
|
6644
|
+
|
|
6645
|
+
# Update properties of this object
|
|
6646
|
+
def update!(**args)
|
|
6647
|
+
@conditions = args[:conditions] if args.key?(:conditions)
|
|
6648
|
+
end
|
|
6649
|
+
end
|
|
6650
|
+
|
|
6586
6651
|
# **Service Mesh**: Spec for a single Membership for the servicemesh feature
|
|
6587
6652
|
class ServiceMeshMembershipSpec
|
|
6588
6653
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module GkehubV1beta
|
|
18
18
|
# Version of the google-apis-gkehub_v1beta gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.97.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 = "20260808"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1066,12 +1066,24 @@ module Google
|
|
|
1066
1066
|
include Google::Apis::Core::JsonObjectSupport
|
|
1067
1067
|
end
|
|
1068
1068
|
|
|
1069
|
+
class ServiceMeshFeatureCondition
|
|
1070
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1071
|
+
|
|
1072
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1073
|
+
end
|
|
1074
|
+
|
|
1069
1075
|
class ServiceMeshFeatureSpec
|
|
1070
1076
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1071
1077
|
|
|
1072
1078
|
include Google::Apis::Core::JsonObjectSupport
|
|
1073
1079
|
end
|
|
1074
1080
|
|
|
1081
|
+
class ServiceMeshFeatureState
|
|
1082
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1083
|
+
|
|
1084
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1085
|
+
end
|
|
1086
|
+
|
|
1075
1087
|
class ServiceMeshMembershipSpec
|
|
1076
1088
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1077
1089
|
|
|
@@ -1419,6 +1431,8 @@ module Google
|
|
|
1419
1431
|
|
|
1420
1432
|
property :rbacrolebindingactuation, as: 'rbacrolebindingactuation', class: Google::Apis::GkehubV1beta::RbacRoleBindingActuationFeatureState, decorator: Google::Apis::GkehubV1beta::RbacRoleBindingActuationFeatureState::Representation
|
|
1421
1433
|
|
|
1434
|
+
property :servicemesh, as: 'servicemesh', class: Google::Apis::GkehubV1beta::ServiceMeshFeatureState, decorator: Google::Apis::GkehubV1beta::ServiceMeshFeatureState::Representation
|
|
1435
|
+
|
|
1422
1436
|
property :state, as: 'state', class: Google::Apis::GkehubV1beta::FeatureState, decorator: Google::Apis::GkehubV1beta::FeatureState::Representation
|
|
1423
1437
|
|
|
1424
1438
|
property :workloadidentity, as: 'workloadidentity', class: Google::Apis::GkehubV1beta::WorkloadIdentityFeatureState, decorator: Google::Apis::GkehubV1beta::WorkloadIdentityFeatureState::Representation
|
|
@@ -3003,6 +3017,16 @@ module Google
|
|
|
3003
3017
|
end
|
|
3004
3018
|
end
|
|
3005
3019
|
|
|
3020
|
+
class ServiceMeshFeatureCondition
|
|
3021
|
+
# @private
|
|
3022
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3023
|
+
property :code, as: 'code'
|
|
3024
|
+
property :details, as: 'details'
|
|
3025
|
+
property :documentation_link, as: 'documentationLink'
|
|
3026
|
+
property :severity, as: 'severity'
|
|
3027
|
+
end
|
|
3028
|
+
end
|
|
3029
|
+
|
|
3006
3030
|
class ServiceMeshFeatureSpec
|
|
3007
3031
|
# @private
|
|
3008
3032
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3011,6 +3035,14 @@ module Google
|
|
|
3011
3035
|
end
|
|
3012
3036
|
end
|
|
3013
3037
|
|
|
3038
|
+
class ServiceMeshFeatureState
|
|
3039
|
+
# @private
|
|
3040
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3041
|
+
collection :conditions, as: 'conditions', class: Google::Apis::GkehubV1beta::ServiceMeshFeatureCondition, decorator: Google::Apis::GkehubV1beta::ServiceMeshFeatureCondition::Representation
|
|
3042
|
+
|
|
3043
|
+
end
|
|
3044
|
+
end
|
|
3045
|
+
|
|
3014
3046
|
class ServiceMeshMembershipSpec
|
|
3015
3047
|
# @private
|
|
3016
3048
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-gkehub_v1beta
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.97.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_v1beta/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.97.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1beta
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|