google-apis-gkehub_v1 0.105.0 → 0.106.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: 98ae754dd0ba822d5423790996eb8c2378680bbdb55b820c817aed0e7d7e24bc
4
- data.tar.gz: c099d91cca511bc0cbe0460221f846fc0767f2eb55a95730f52d83e15fa297fe
3
+ metadata.gz: db45978231f593b25b3870f46868b7cd937af3330c418d1c462d291422e77d83
4
+ data.tar.gz: d0dd439e3500ac2eb9b0dc065d541cbf9550a90ecff672595a5b3109ef763ce6
5
5
  SHA512:
6
- metadata.gz: dee4b293e199e39d34ff86b4684eaf573f741d84b148c5de8a90356e8182a1c28f01fa77d972f0870d98d04b201e8cb5e1b238351b20f884744b70d6132e83c3
7
- data.tar.gz: c2b75ecc62251014034784cf2f6d80d2f7f0fe2c97be36968f9236beb368a09d484d99e343544ef269dc3ac2001449b5b2e4bf7a028316b5800ffc43515643b1
6
+ metadata.gz: 887da28e3dde3664f09e2cb44e4e9a5358c47206a8361862889b9364fba0d64fdd591bc06470ce4ad97a88107ba3bd9718a1f8bd35c107589aa43f5cee435116
7
+ data.tar.gz: 7b77b7e30d20aea9811f88ff7b8cea7696c67c64922fd7965993e107b298fde9c173248393849b77abd15b53cef100006f2c9306057f895f7d1db1fe26c7e54b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-gkehub_v1
2
2
 
3
+ ### v0.106.0 (2026-08-16)
4
+
5
+ * Regenerated from discovery document revision 20260808
6
+
3
7
  ### v0.105.0 (2026-08-09)
4
8
 
5
9
  * Regenerated from discovery document revision 20260731
@@ -853,6 +853,12 @@ module Google
853
853
  # @return [Google::Apis::GkehubV1::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::GkehubV1::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
@@ -6411,6 +6418,44 @@ module Google
6411
6418
  end
6412
6419
  end
6413
6420
 
6421
+ # Condition being reported.
6422
+ class ServiceMeshFeatureCondition
6423
+ include Google::Apis::Core::Hashable
6424
+
6425
+ # Unique identifier of the condition which describes the condition recognizable
6426
+ # to the user.
6427
+ # Corresponds to the JSON property `code`
6428
+ # @return [String]
6429
+ attr_accessor :code
6430
+
6431
+ # A short summary about the issue.
6432
+ # Corresponds to the JSON property `details`
6433
+ # @return [String]
6434
+ attr_accessor :details
6435
+
6436
+ # Links contains actionable information.
6437
+ # Corresponds to the JSON property `documentationLink`
6438
+ # @return [String]
6439
+ attr_accessor :documentation_link
6440
+
6441
+ # Severity level of the condition.
6442
+ # Corresponds to the JSON property `severity`
6443
+ # @return [String]
6444
+ attr_accessor :severity
6445
+
6446
+ def initialize(**args)
6447
+ update!(**args)
6448
+ end
6449
+
6450
+ # Update properties of this object
6451
+ def update!(**args)
6452
+ @code = args[:code] if args.key?(:code)
6453
+ @details = args[:details] if args.key?(:details)
6454
+ @documentation_link = args[:documentation_link] if args.key?(:documentation_link)
6455
+ @severity = args[:severity] if args.key?(:severity)
6456
+ end
6457
+ end
6458
+
6414
6459
  # **Service Mesh**: Spec for the fleet for the servicemesh feature
6415
6460
  class ServiceMeshFeatureSpec
6416
6461
  include Google::Apis::Core::Hashable
@@ -6436,6 +6481,26 @@ module Google
6436
6481
  end
6437
6482
  end
6438
6483
 
6484
+ # **Service Mesh**: State for the whole Hub, as analyzed by the Service Mesh Hub
6485
+ # Controller.
6486
+ class ServiceMeshFeatureState
6487
+ include Google::Apis::Core::Hashable
6488
+
6489
+ # Output only. List of conditions reported for this feature.
6490
+ # Corresponds to the JSON property `conditions`
6491
+ # @return [Array<Google::Apis::GkehubV1::ServiceMeshFeatureCondition>]
6492
+ attr_accessor :conditions
6493
+
6494
+ def initialize(**args)
6495
+ update!(**args)
6496
+ end
6497
+
6498
+ # Update properties of this object
6499
+ def update!(**args)
6500
+ @conditions = args[:conditions] if args.key?(:conditions)
6501
+ end
6502
+ end
6503
+
6439
6504
  # **Service Mesh**: Spec for a single Membership for the servicemesh feature
6440
6505
  class ServiceMeshMembershipSpec
6441
6506
  include Google::Apis::Core::Hashable
@@ -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.105.0"
19
+ GEM_VERSION = "0.106.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 = "20260731"
25
+ REVISION = "20260808"
26
26
  end
27
27
  end
28
28
  end
@@ -1036,12 +1036,24 @@ module Google
1036
1036
  include Google::Apis::Core::JsonObjectSupport
1037
1037
  end
1038
1038
 
1039
+ class ServiceMeshFeatureCondition
1040
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1041
+
1042
+ include Google::Apis::Core::JsonObjectSupport
1043
+ end
1044
+
1039
1045
  class ServiceMeshFeatureSpec
1040
1046
  class Representation < Google::Apis::Core::JsonRepresentation; end
1041
1047
 
1042
1048
  include Google::Apis::Core::JsonObjectSupport
1043
1049
  end
1044
1050
 
1051
+ class ServiceMeshFeatureState
1052
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1053
+
1054
+ include Google::Apis::Core::JsonObjectSupport
1055
+ end
1056
+
1045
1057
  class ServiceMeshMembershipSpec
1046
1058
  class Representation < Google::Apis::Core::JsonRepresentation; end
1047
1059
 
@@ -1389,6 +1401,8 @@ module Google
1389
1401
 
1390
1402
  property :rbacrolebindingactuation, as: 'rbacrolebindingactuation', class: Google::Apis::GkehubV1::RbacRoleBindingActuationFeatureState, decorator: Google::Apis::GkehubV1::RbacRoleBindingActuationFeatureState::Representation
1391
1403
 
1404
+ property :servicemesh, as: 'servicemesh', class: Google::Apis::GkehubV1::ServiceMeshFeatureState, decorator: Google::Apis::GkehubV1::ServiceMeshFeatureState::Representation
1405
+
1392
1406
  property :state, as: 'state', class: Google::Apis::GkehubV1::FeatureState, decorator: Google::Apis::GkehubV1::FeatureState::Representation
1393
1407
 
1394
1408
  property :workloadidentity, as: 'workloadidentity', class: Google::Apis::GkehubV1::WorkloadIdentityFeatureState, decorator: Google::Apis::GkehubV1::WorkloadIdentityFeatureState::Representation
@@ -2925,6 +2939,16 @@ module Google
2925
2939
  end
2926
2940
  end
2927
2941
 
2942
+ class ServiceMeshFeatureCondition
2943
+ # @private
2944
+ class Representation < Google::Apis::Core::JsonRepresentation
2945
+ property :code, as: 'code'
2946
+ property :details, as: 'details'
2947
+ property :documentation_link, as: 'documentationLink'
2948
+ property :severity, as: 'severity'
2949
+ end
2950
+ end
2951
+
2928
2952
  class ServiceMeshFeatureSpec
2929
2953
  # @private
2930
2954
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2933,6 +2957,14 @@ module Google
2933
2957
  end
2934
2958
  end
2935
2959
 
2960
+ class ServiceMeshFeatureState
2961
+ # @private
2962
+ class Representation < Google::Apis::Core::JsonRepresentation
2963
+ collection :conditions, as: 'conditions', class: Google::Apis::GkehubV1::ServiceMeshFeatureCondition, decorator: Google::Apis::GkehubV1::ServiceMeshFeatureCondition::Representation
2964
+
2965
+ end
2966
+ end
2967
+
2936
2968
  class ServiceMeshMembershipSpec
2937
2969
  # @private
2938
2970
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gkehub_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.105.0
4
+ version: 0.106.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_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.105.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.106.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: