google-apis-gkehub_v1beta 0.12.0 → 0.13.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: 7b9e8f6282b48dbd916156895d482c0ceaf9e4aba6df6873e602bbb76adcda45
|
4
|
+
data.tar.gz: 011dcddc85e4f129a396011924b70844b9958630e6c65ac54887672805b628c3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dc79d025d663052723e8946761a447fe523d6057cea08a7ab9f949a2e4db4eae7f61943f3eb7d40c847519ec5889621b93448ea3febd3bcbd0c4311b648eb737
|
7
|
+
data.tar.gz: 51aea21a8e42b31a4e1981cca9e95870e2c89a07029a5c9236ed08e947892b39d650eaf5e76e8fe23b5edff45c05d73218ef5ae3fea7fe565ea45dc774392616
|
data/CHANGELOG.md
CHANGED
@@ -22,6 +22,38 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module GkehubV1beta
|
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::GkehubV1beta::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
|
@@ -181,6 +213,11 @@ module Google
|
|
181
213
|
class CommonFeatureSpec
|
182
214
|
include Google::Apis::Core::Hashable
|
183
215
|
|
216
|
+
# Spec for App Dev Experience Feature.
|
217
|
+
# Corresponds to the JSON property `appdevexperience`
|
218
|
+
# @return [Google::Apis::GkehubV1beta::AppDevExperienceFeatureSpec]
|
219
|
+
attr_accessor :appdevexperience
|
220
|
+
|
184
221
|
# **Multi-cluster Ingress**: The configuration for the MultiClusterIngress
|
185
222
|
# feature.
|
186
223
|
# Corresponds to the JSON property `multiclusteringress`
|
@@ -193,6 +230,7 @@ module Google
|
|
193
230
|
|
194
231
|
# Update properties of this object
|
195
232
|
def update!(**args)
|
233
|
+
@appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
|
196
234
|
@multiclusteringress = args[:multiclusteringress] if args.key?(:multiclusteringress)
|
197
235
|
end
|
198
236
|
end
|
@@ -201,6 +239,11 @@ module Google
|
|
201
239
|
class CommonFeatureState
|
202
240
|
include Google::Apis::Core::Hashable
|
203
241
|
|
242
|
+
# State for App Dev Exp Feature.
|
243
|
+
# Corresponds to the JSON property `appdevexperience`
|
244
|
+
# @return [Google::Apis::GkehubV1beta::AppDevExperienceFeatureState]
|
245
|
+
attr_accessor :appdevexperience
|
246
|
+
|
204
247
|
# FeatureState describes the high-level state of a Feature. It may be used to
|
205
248
|
# describe a Feature's state at the environ-level, or per-membershop, depending
|
206
249
|
# on the context.
|
@@ -214,6 +257,7 @@ module Google
|
|
214
257
|
|
215
258
|
# Update properties of this object
|
216
259
|
def update!(**args)
|
260
|
+
@appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
|
217
261
|
@state = args[:state] if args.key?(:state)
|
218
262
|
end
|
219
263
|
end
|
@@ -1652,6 +1696,11 @@ module Google
|
|
1652
1696
|
class MembershipFeatureState
|
1653
1697
|
include Google::Apis::Core::Hashable
|
1654
1698
|
|
1699
|
+
# State for App Dev Exp Feature.
|
1700
|
+
# Corresponds to the JSON property `appdevexperience`
|
1701
|
+
# @return [Google::Apis::GkehubV1beta::AppDevExperienceFeatureState]
|
1702
|
+
attr_accessor :appdevexperience
|
1703
|
+
|
1655
1704
|
# **Anthos Config Management**: State for a single cluster.
|
1656
1705
|
# Corresponds to the JSON property `configmanagement`
|
1657
1706
|
# @return [Google::Apis::GkehubV1beta::ConfigManagementMembershipState]
|
@@ -1680,6 +1729,7 @@ module Google
|
|
1680
1729
|
|
1681
1730
|
# Update properties of this object
|
1682
1731
|
def update!(**args)
|
1732
|
+
@appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
|
1683
1733
|
@configmanagement = args[:configmanagement] if args.key?(:configmanagement)
|
1684
1734
|
@identityservice = args[:identityservice] if args.key?(:identityservice)
|
1685
1735
|
@metering = args[:metering] if args.key?(:metering)
|
@@ -2011,6 +2061,31 @@ module Google
|
|
2011
2061
|
end
|
2012
2062
|
end
|
2013
2063
|
|
2064
|
+
# Status specifies state for the subcomponent.
|
2065
|
+
class Status
|
2066
|
+
include Google::Apis::Core::Hashable
|
2067
|
+
|
2068
|
+
# Code specifies AppDevExperienceFeature's subcomponent ready state.
|
2069
|
+
# Corresponds to the JSON property `code`
|
2070
|
+
# @return [String]
|
2071
|
+
attr_accessor :code
|
2072
|
+
|
2073
|
+
# Description is populated if Code is Failed, explaining why it has failed.
|
2074
|
+
# Corresponds to the JSON property `description`
|
2075
|
+
# @return [String]
|
2076
|
+
attr_accessor :description
|
2077
|
+
|
2078
|
+
def initialize(**args)
|
2079
|
+
update!(**args)
|
2080
|
+
end
|
2081
|
+
|
2082
|
+
# Update properties of this object
|
2083
|
+
def update!(**args)
|
2084
|
+
@code = args[:code] if args.key?(:code)
|
2085
|
+
@description = args[:description] if args.key?(:description)
|
2086
|
+
end
|
2087
|
+
end
|
2088
|
+
|
2014
2089
|
# Request message for `TestIamPermissions` method.
|
2015
2090
|
class TestIamPermissionsRequest
|
2016
2091
|
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.13.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 GkehubV1beta
|
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
|
|
@@ -334,6 +346,12 @@ module Google
|
|
334
346
|
include Google::Apis::Core::JsonObjectSupport
|
335
347
|
end
|
336
348
|
|
349
|
+
class Status
|
350
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
|
+
|
352
|
+
include Google::Apis::Core::JsonObjectSupport
|
353
|
+
end
|
354
|
+
|
337
355
|
class TestIamPermissionsRequest
|
338
356
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
357
|
|
@@ -346,6 +364,20 @@ module Google
|
|
346
364
|
include Google::Apis::Core::JsonObjectSupport
|
347
365
|
end
|
348
366
|
|
367
|
+
class AppDevExperienceFeatureSpec
|
368
|
+
# @private
|
369
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
370
|
+
end
|
371
|
+
end
|
372
|
+
|
373
|
+
class AppDevExperienceFeatureState
|
374
|
+
# @private
|
375
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
376
|
+
property :networking_install_succeeded, as: 'networkingInstallSucceeded', class: Google::Apis::GkehubV1beta::Status, decorator: Google::Apis::GkehubV1beta::Status::Representation
|
377
|
+
|
378
|
+
end
|
379
|
+
end
|
380
|
+
|
349
381
|
class AuditConfig
|
350
382
|
# @private
|
351
383
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -382,6 +414,8 @@ module Google
|
|
382
414
|
class CommonFeatureSpec
|
383
415
|
# @private
|
384
416
|
class Representation < Google::Apis::Core::JsonRepresentation
|
417
|
+
property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1beta::AppDevExperienceFeatureSpec, decorator: Google::Apis::GkehubV1beta::AppDevExperienceFeatureSpec::Representation
|
418
|
+
|
385
419
|
property :multiclusteringress, as: 'multiclusteringress', class: Google::Apis::GkehubV1beta::MultiClusterIngressFeatureSpec, decorator: Google::Apis::GkehubV1beta::MultiClusterIngressFeatureSpec::Representation
|
386
420
|
|
387
421
|
end
|
@@ -390,6 +424,8 @@ module Google
|
|
390
424
|
class CommonFeatureState
|
391
425
|
# @private
|
392
426
|
class Representation < Google::Apis::Core::JsonRepresentation
|
427
|
+
property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1beta::AppDevExperienceFeatureState, decorator: Google::Apis::GkehubV1beta::AppDevExperienceFeatureState::Representation
|
428
|
+
|
393
429
|
property :state, as: 'state', class: Google::Apis::GkehubV1beta::FeatureState, decorator: Google::Apis::GkehubV1beta::FeatureState::Representation
|
394
430
|
|
395
431
|
end
|
@@ -806,6 +842,8 @@ module Google
|
|
806
842
|
class MembershipFeatureState
|
807
843
|
# @private
|
808
844
|
class Representation < Google::Apis::Core::JsonRepresentation
|
845
|
+
property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1beta::AppDevExperienceFeatureState, decorator: Google::Apis::GkehubV1beta::AppDevExperienceFeatureState::Representation
|
846
|
+
|
809
847
|
property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1beta::ConfigManagementMembershipState, decorator: Google::Apis::GkehubV1beta::ConfigManagementMembershipState::Representation
|
810
848
|
|
811
849
|
property :identityservice, as: 'identityservice', class: Google::Apis::GkehubV1beta::IdentityServiceMembershipState, decorator: Google::Apis::GkehubV1beta::IdentityServiceMembershipState::Representation
|
@@ -879,6 +917,14 @@ module Google
|
|
879
917
|
end
|
880
918
|
end
|
881
919
|
|
920
|
+
class Status
|
921
|
+
# @private
|
922
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
923
|
+
property :code, as: 'code'
|
924
|
+
property :description, as: 'description'
|
925
|
+
end
|
926
|
+
end
|
927
|
+
|
882
928
|
class TestIamPermissionsRequest
|
883
929
|
# @private
|
884
930
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.13.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_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.13.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|