google-apis-gkehub_v1 0.71.0 → 0.72.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: a516fbab1a0595dd6a91bb25030ac869bad8d67ea3539abea87a42e711b93d90
|
4
|
+
data.tar.gz: 198bdf1455fec44d4afe96f35fc14df6b0cb6f13ee85aeb9c7ba03ad11de4cd3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2cbfdeba2eee3489ff6523d71f9764520fc3b0b23a5fe8926875b9a6b26cb0c8c7fc2323759bd90b7f995bd5cb9aa6e836b57382c8cf1f022e1f8e5dfa750419
|
7
|
+
data.tar.gz: a69fe222d860d0dc7afe52b1bbb7a4146bfc780a2b60f691acc889cbb58877e154959bfdfce459007739c2b69ae9df6776b0f57e9d8d35d2360a605d3bf890bd
|
data/CHANGELOG.md
CHANGED
@@ -5244,6 +5244,44 @@ module Google
|
|
5244
5244
|
end
|
5245
5245
|
end
|
5246
5246
|
|
5247
|
+
# Condition being reported.
|
5248
|
+
class ServiceMeshCondition
|
5249
|
+
include Google::Apis::Core::Hashable
|
5250
|
+
|
5251
|
+
# Unique identifier of the condition which describes the condition recognizable
|
5252
|
+
# to the user.
|
5253
|
+
# Corresponds to the JSON property `code`
|
5254
|
+
# @return [String]
|
5255
|
+
attr_accessor :code
|
5256
|
+
|
5257
|
+
# A short summary about the issue.
|
5258
|
+
# Corresponds to the JSON property `details`
|
5259
|
+
# @return [String]
|
5260
|
+
attr_accessor :details
|
5261
|
+
|
5262
|
+
# Links contains actionable information.
|
5263
|
+
# Corresponds to the JSON property `documentationLink`
|
5264
|
+
# @return [String]
|
5265
|
+
attr_accessor :documentation_link
|
5266
|
+
|
5267
|
+
# Severity level of the condition.
|
5268
|
+
# Corresponds to the JSON property `severity`
|
5269
|
+
# @return [String]
|
5270
|
+
attr_accessor :severity
|
5271
|
+
|
5272
|
+
def initialize(**args)
|
5273
|
+
update!(**args)
|
5274
|
+
end
|
5275
|
+
|
5276
|
+
# Update properties of this object
|
5277
|
+
def update!(**args)
|
5278
|
+
@code = args[:code] if args.key?(:code)
|
5279
|
+
@details = args[:details] if args.key?(:details)
|
5280
|
+
@documentation_link = args[:documentation_link] if args.key?(:documentation_link)
|
5281
|
+
@severity = args[:severity] if args.key?(:severity)
|
5282
|
+
end
|
5283
|
+
end
|
5284
|
+
|
5247
5285
|
# Status of control plane management.
|
5248
5286
|
class ServiceMeshControlPlaneManagement
|
5249
5287
|
include Google::Apis::Core::Hashable
|
@@ -5325,6 +5363,11 @@ module Google
|
|
5325
5363
|
class ServiceMeshMembershipState
|
5326
5364
|
include Google::Apis::Core::Hashable
|
5327
5365
|
|
5366
|
+
# Output only. List of condition reporting membership statues
|
5367
|
+
# Corresponds to the JSON property `conditions`
|
5368
|
+
# @return [Array<Google::Apis::GkehubV1::ServiceMeshCondition>]
|
5369
|
+
attr_accessor :conditions
|
5370
|
+
|
5328
5371
|
# Status of control plane management.
|
5329
5372
|
# Corresponds to the JSON property `controlPlaneManagement`
|
5330
5373
|
# @return [Google::Apis::GkehubV1::ServiceMeshControlPlaneManagement]
|
@@ -5341,6 +5384,7 @@ module Google
|
|
5341
5384
|
|
5342
5385
|
# Update properties of this object
|
5343
5386
|
def update!(**args)
|
5387
|
+
@conditions = args[:conditions] if args.key?(:conditions)
|
5344
5388
|
@control_plane_management = args[:control_plane_management] if args.key?(:control_plane_management)
|
5345
5389
|
@data_plane_management = args[:data_plane_management] if args.key?(:data_plane_management)
|
5346
5390
|
end
|
@@ -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.72.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240322"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -868,6 +868,12 @@ module Google
|
|
868
868
|
include Google::Apis::Core::JsonObjectSupport
|
869
869
|
end
|
870
870
|
|
871
|
+
class ServiceMeshCondition
|
872
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
873
|
+
|
874
|
+
include Google::Apis::Core::JsonObjectSupport
|
875
|
+
end
|
876
|
+
|
871
877
|
class ServiceMeshControlPlaneManagement
|
872
878
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
873
879
|
|
@@ -2394,6 +2400,16 @@ module Google
|
|
2394
2400
|
end
|
2395
2401
|
end
|
2396
2402
|
|
2403
|
+
class ServiceMeshCondition
|
2404
|
+
# @private
|
2405
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2406
|
+
property :code, as: 'code'
|
2407
|
+
property :details, as: 'details'
|
2408
|
+
property :documentation_link, as: 'documentationLink'
|
2409
|
+
property :severity, as: 'severity'
|
2410
|
+
end
|
2411
|
+
end
|
2412
|
+
|
2397
2413
|
class ServiceMeshControlPlaneManagement
|
2398
2414
|
# @private
|
2399
2415
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2423,6 +2439,8 @@ module Google
|
|
2423
2439
|
class ServiceMeshMembershipState
|
2424
2440
|
# @private
|
2425
2441
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2442
|
+
collection :conditions, as: 'conditions', class: Google::Apis::GkehubV1::ServiceMeshCondition, decorator: Google::Apis::GkehubV1::ServiceMeshCondition::Representation
|
2443
|
+
|
2426
2444
|
property :control_plane_management, as: 'controlPlaneManagement', class: Google::Apis::GkehubV1::ServiceMeshControlPlaneManagement, decorator: Google::Apis::GkehubV1::ServiceMeshControlPlaneManagement::Representation
|
2427
2445
|
|
2428
2446
|
property :data_plane_management, as: 'dataPlaneManagement', class: Google::Apis::GkehubV1::ServiceMeshDataPlaneManagement, decorator: Google::Apis::GkehubV1::ServiceMeshDataPlaneManagement::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.72.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-03-
|
11
|
+
date: 2024-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.72.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|