google-apis-gkehub_v1alpha 0.13.0 → 0.14.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: 5c7ab5a704372ef40349e8080311c38427279c6a46042581a4ddc274c878695f
|
4
|
+
data.tar.gz: 908aaeb2caaac955de81f927f54822ed767d747eb3fdb73e2d170bfa0e81dc63
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d6ac8bc661031ef89e93bf984204ed8c30545fa2344b50996d4fd4adc98e0b69effd72549d1996471b22caa63dd31dcf529a9be23d5d033c7d72bc1c35a80de1
|
7
|
+
data.tar.gz: d3e5816d2f7f254854e2cceac547c016467d30cb70db22dd34eca96dd7d210cccc8501590f9492deaedf28b70a3ef10d529a034d6f92f564cb72430af3f128c7
|
data/CHANGELOG.md
CHANGED
@@ -22,6 +22,38 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module GkehubV1alpha
|
24
24
|
|
25
|
+
# Spec for App Dev Experience Feature.
|
26
|
+
class AppDevExperienceFeatureSpec
|
27
|
+
include Google::Apis::Core::Hashable
|
28
|
+
|
29
|
+
def initialize(**args)
|
30
|
+
update!(**args)
|
31
|
+
end
|
32
|
+
|
33
|
+
# Update properties of this object
|
34
|
+
def update!(**args)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
# State for App Dev Exp Feature.
|
39
|
+
class AppDevExperienceFeatureState
|
40
|
+
include Google::Apis::Core::Hashable
|
41
|
+
|
42
|
+
# Status specifies state for the subcomponent.
|
43
|
+
# Corresponds to the JSON property `networkingInstallSucceeded`
|
44
|
+
# @return [Google::Apis::GkehubV1alpha::Status]
|
45
|
+
attr_accessor :networking_install_succeeded
|
46
|
+
|
47
|
+
def initialize(**args)
|
48
|
+
update!(**args)
|
49
|
+
end
|
50
|
+
|
51
|
+
# Update properties of this object
|
52
|
+
def update!(**args)
|
53
|
+
@networking_install_succeeded = args[:networking_install_succeeded] if args.key?(:networking_install_succeeded)
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
25
57
|
# Specifies the audit configuration for a service. The configuration determines
|
26
58
|
# which permission types are logged, and what identities, if any, are exempted
|
27
59
|
# from logging. An AuditConfig must have one or more AuditLogConfigs. If there
|
@@ -258,6 +290,11 @@ module Google
|
|
258
290
|
class CommonFeatureSpec
|
259
291
|
include Google::Apis::Core::Hashable
|
260
292
|
|
293
|
+
# Spec for App Dev Experience Feature.
|
294
|
+
# Corresponds to the JSON property `appdevexperience`
|
295
|
+
# @return [Google::Apis::GkehubV1alpha::AppDevExperienceFeatureSpec]
|
296
|
+
attr_accessor :appdevexperience
|
297
|
+
|
261
298
|
# **Cloud Audit Logging**: Spec for Audit Logging Allowlisting.
|
262
299
|
# Corresponds to the JSON property `cloudauditlogging`
|
263
300
|
# @return [Google::Apis::GkehubV1alpha::CloudAuditLoggingFeatureSpec]
|
@@ -275,6 +312,7 @@ module Google
|
|
275
312
|
|
276
313
|
# Update properties of this object
|
277
314
|
def update!(**args)
|
315
|
+
@appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
|
278
316
|
@cloudauditlogging = args[:cloudauditlogging] if args.key?(:cloudauditlogging)
|
279
317
|
@multiclusteringress = args[:multiclusteringress] if args.key?(:multiclusteringress)
|
280
318
|
end
|
@@ -284,6 +322,11 @@ module Google
|
|
284
322
|
class CommonFeatureState
|
285
323
|
include Google::Apis::Core::Hashable
|
286
324
|
|
325
|
+
# State for App Dev Exp Feature.
|
326
|
+
# Corresponds to the JSON property `appdevexperience`
|
327
|
+
# @return [Google::Apis::GkehubV1alpha::AppDevExperienceFeatureState]
|
328
|
+
attr_accessor :appdevexperience
|
329
|
+
|
287
330
|
# **Service Mesh**: State for the whole Hub, as analyzed by the Service Mesh Hub
|
288
331
|
# Controller.
|
289
332
|
# Corresponds to the JSON property `servicemesh`
|
@@ -303,6 +346,7 @@ module Google
|
|
303
346
|
|
304
347
|
# Update properties of this object
|
305
348
|
def update!(**args)
|
349
|
+
@appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
|
306
350
|
@servicemesh = args[:servicemesh] if args.key?(:servicemesh)
|
307
351
|
@state = args[:state] if args.key?(:state)
|
308
352
|
end
|
@@ -2102,6 +2146,11 @@ module Google
|
|
2102
2146
|
class MembershipFeatureState
|
2103
2147
|
include Google::Apis::Core::Hashable
|
2104
2148
|
|
2149
|
+
# State for App Dev Exp Feature.
|
2150
|
+
# Corresponds to the JSON property `appdevexperience`
|
2151
|
+
# @return [Google::Apis::GkehubV1alpha::AppDevExperienceFeatureState]
|
2152
|
+
attr_accessor :appdevexperience
|
2153
|
+
|
2105
2154
|
# **Anthos Config Management**: State for a single cluster.
|
2106
2155
|
# Corresponds to the JSON property `configmanagement`
|
2107
2156
|
# @return [Google::Apis::GkehubV1alpha::ConfigManagementMembershipState]
|
@@ -2136,6 +2185,7 @@ module Google
|
|
2136
2185
|
|
2137
2186
|
# Update properties of this object
|
2138
2187
|
def update!(**args)
|
2188
|
+
@appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
|
2139
2189
|
@configmanagement = args[:configmanagement] if args.key?(:configmanagement)
|
2140
2190
|
@identityservice = args[:identityservice] if args.key?(:identityservice)
|
2141
2191
|
@metering = args[:metering] if args.key?(:metering)
|
@@ -2722,6 +2772,31 @@ module Google
|
|
2722
2772
|
end
|
2723
2773
|
end
|
2724
2774
|
|
2775
|
+
# Status specifies state for the subcomponent.
|
2776
|
+
class Status
|
2777
|
+
include Google::Apis::Core::Hashable
|
2778
|
+
|
2779
|
+
# Code specifies AppDevExperienceFeature's subcomponent ready state.
|
2780
|
+
# Corresponds to the JSON property `code`
|
2781
|
+
# @return [String]
|
2782
|
+
attr_accessor :code
|
2783
|
+
|
2784
|
+
# Description is populated if Code is Failed, explaining why it has failed.
|
2785
|
+
# Corresponds to the JSON property `description`
|
2786
|
+
# @return [String]
|
2787
|
+
attr_accessor :description
|
2788
|
+
|
2789
|
+
def initialize(**args)
|
2790
|
+
update!(**args)
|
2791
|
+
end
|
2792
|
+
|
2793
|
+
# Update properties of this object
|
2794
|
+
def update!(**args)
|
2795
|
+
@code = args[:code] if args.key?(:code)
|
2796
|
+
@description = args[:description] if args.key?(:description)
|
2797
|
+
end
|
2798
|
+
end
|
2799
|
+
|
2725
2800
|
# Request message for `TestIamPermissions` method.
|
2726
2801
|
class TestIamPermissionsRequest
|
2727
2802
|
include Google::Apis::Core::Hashable
|
@@ -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.14.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20211021"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -22,6 +22,18 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module GkehubV1alpha
|
24
24
|
|
25
|
+
class AppDevExperienceFeatureSpec
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
|
+
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
29
|
+
end
|
30
|
+
|
31
|
+
class AppDevExperienceFeatureState
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
25
37
|
class AuditConfig
|
26
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
39
|
|
@@ -448,6 +460,12 @@ module Google
|
|
448
460
|
include Google::Apis::Core::JsonObjectSupport
|
449
461
|
end
|
450
462
|
|
463
|
+
class Status
|
464
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
|
+
|
466
|
+
include Google::Apis::Core::JsonObjectSupport
|
467
|
+
end
|
468
|
+
|
451
469
|
class TestIamPermissionsRequest
|
452
470
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
453
471
|
|
@@ -466,6 +484,20 @@ module Google
|
|
466
484
|
include Google::Apis::Core::JsonObjectSupport
|
467
485
|
end
|
468
486
|
|
487
|
+
class AppDevExperienceFeatureSpec
|
488
|
+
# @private
|
489
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
490
|
+
end
|
491
|
+
end
|
492
|
+
|
493
|
+
class AppDevExperienceFeatureState
|
494
|
+
# @private
|
495
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
496
|
+
property :networking_install_succeeded, as: 'networkingInstallSucceeded', class: Google::Apis::GkehubV1alpha::Status, decorator: Google::Apis::GkehubV1alpha::Status::Representation
|
497
|
+
|
498
|
+
end
|
499
|
+
end
|
500
|
+
|
469
501
|
class AuditConfig
|
470
502
|
# @private
|
471
503
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -519,6 +551,8 @@ module Google
|
|
519
551
|
class CommonFeatureSpec
|
520
552
|
# @private
|
521
553
|
class Representation < Google::Apis::Core::JsonRepresentation
|
554
|
+
property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1alpha::AppDevExperienceFeatureSpec, decorator: Google::Apis::GkehubV1alpha::AppDevExperienceFeatureSpec::Representation
|
555
|
+
|
522
556
|
property :cloudauditlogging, as: 'cloudauditlogging', class: Google::Apis::GkehubV1alpha::CloudAuditLoggingFeatureSpec, decorator: Google::Apis::GkehubV1alpha::CloudAuditLoggingFeatureSpec::Representation
|
523
557
|
|
524
558
|
property :multiclusteringress, as: 'multiclusteringress', class: Google::Apis::GkehubV1alpha::MultiClusterIngressFeatureSpec, decorator: Google::Apis::GkehubV1alpha::MultiClusterIngressFeatureSpec::Representation
|
@@ -529,6 +563,8 @@ module Google
|
|
529
563
|
class CommonFeatureState
|
530
564
|
# @private
|
531
565
|
class Representation < Google::Apis::Core::JsonRepresentation
|
566
|
+
property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1alpha::AppDevExperienceFeatureState, decorator: Google::Apis::GkehubV1alpha::AppDevExperienceFeatureState::Representation
|
567
|
+
|
532
568
|
property :servicemesh, as: 'servicemesh', class: Google::Apis::GkehubV1alpha::ServiceMeshFeatureState, decorator: Google::Apis::GkehubV1alpha::ServiceMeshFeatureState::Representation
|
533
569
|
|
534
570
|
property :state, as: 'state', class: Google::Apis::GkehubV1alpha::FeatureState, decorator: Google::Apis::GkehubV1alpha::FeatureState::Representation
|
@@ -1043,6 +1079,8 @@ module Google
|
|
1043
1079
|
class MembershipFeatureState
|
1044
1080
|
# @private
|
1045
1081
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1082
|
+
property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1alpha::AppDevExperienceFeatureState, decorator: Google::Apis::GkehubV1alpha::AppDevExperienceFeatureState::Representation
|
1083
|
+
|
1046
1084
|
property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1alpha::ConfigManagementMembershipState, decorator: Google::Apis::GkehubV1alpha::ConfigManagementMembershipState::Representation
|
1047
1085
|
|
1048
1086
|
property :identityservice, as: 'identityservice', class: Google::Apis::GkehubV1alpha::IdentityServiceMembershipState, decorator: Google::Apis::GkehubV1alpha::IdentityServiceMembershipState::Representation
|
@@ -1193,6 +1231,14 @@ module Google
|
|
1193
1231
|
end
|
1194
1232
|
end
|
1195
1233
|
|
1234
|
+
class Status
|
1235
|
+
# @private
|
1236
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1237
|
+
property :code, as: 'code'
|
1238
|
+
property :description, as: 'description'
|
1239
|
+
end
|
1240
|
+
end
|
1241
|
+
|
1196
1242
|
class TestIamPermissionsRequest
|
1197
1243
|
# @private
|
1198
1244
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.14.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: 2021-
|
11
|
+
date: 2021-11-01 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_v1alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.14.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1alpha
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|