google-apis-gkehub_v1alpha 0.20.0 → 0.21.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c335653e0fe91e6ecd687b3c0f807668a9eda95f5647ba40b919716a4a93e1b6
|
4
|
+
data.tar.gz: 18312abf9ec4b7cdb122e6b2b1b11e6d432735d67bd43e57bed0143291cb8779
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9905af78210a4ce9a86415a7e6aec569be16530eb14f6a2d8a225df13688e03d8637f1c7664e3363fbd55b7c480e2450aa7f5d2fc5f96f38a59e50d225a8026e
|
7
|
+
data.tar.gz: 5544536be8483c08fcc1e374b7fb3f483783bbdbb9200caff2da8c29607d11e8773d2c848de250af556cedcfc6b929d7005fee036c5133a0e0021a44fe5b3fa8
|
data/CHANGELOG.md
CHANGED
@@ -361,6 +361,12 @@ module Google
|
|
361
361
|
# @return [Google::Apis::GkehubV1alpha::MultiClusterIngressFeatureSpec]
|
362
362
|
attr_accessor :multiclusteringress
|
363
363
|
|
364
|
+
# **Workload Certificate**: The Hub-wide input for the WorkloadCertificate
|
365
|
+
# feature.
|
366
|
+
# Corresponds to the JSON property `workloadcertificate`
|
367
|
+
# @return [Google::Apis::GkehubV1alpha::FeatureSpec]
|
368
|
+
attr_accessor :workloadcertificate
|
369
|
+
|
364
370
|
def initialize(**args)
|
365
371
|
update!(**args)
|
366
372
|
end
|
@@ -370,6 +376,7 @@ module Google
|
|
370
376
|
@appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
|
371
377
|
@cloudauditlogging = args[:cloudauditlogging] if args.key?(:cloudauditlogging)
|
372
378
|
@multiclusteringress = args[:multiclusteringress] if args.key?(:multiclusteringress)
|
379
|
+
@workloadcertificate = args[:workloadcertificate] if args.key?(:workloadcertificate)
|
373
380
|
end
|
374
381
|
end
|
375
382
|
|
@@ -1514,6 +1521,33 @@ module Google
|
|
1514
1521
|
end
|
1515
1522
|
end
|
1516
1523
|
|
1524
|
+
# **Workload Certificate**: The Hub-wide input for the WorkloadCertificate
|
1525
|
+
# feature.
|
1526
|
+
class FeatureSpec
|
1527
|
+
include Google::Apis::Core::Hashable
|
1528
|
+
|
1529
|
+
# **Workload Certificate**: The membership-specific input for
|
1530
|
+
# WorkloadCertificate feature.
|
1531
|
+
# Corresponds to the JSON property `defaultConfig`
|
1532
|
+
# @return [Google::Apis::GkehubV1alpha::MembershipSpec]
|
1533
|
+
attr_accessor :default_config
|
1534
|
+
|
1535
|
+
# Immutable. Specifies CA configuration.
|
1536
|
+
# Corresponds to the JSON property `provisionGoogleCa`
|
1537
|
+
# @return [String]
|
1538
|
+
attr_accessor :provision_google_ca
|
1539
|
+
|
1540
|
+
def initialize(**args)
|
1541
|
+
update!(**args)
|
1542
|
+
end
|
1543
|
+
|
1544
|
+
# Update properties of this object
|
1545
|
+
def update!(**args)
|
1546
|
+
@default_config = args[:default_config] if args.key?(:default_config)
|
1547
|
+
@provision_google_ca = args[:provision_google_ca] if args.key?(:provision_google_ca)
|
1548
|
+
end
|
1549
|
+
end
|
1550
|
+
|
1517
1551
|
# FeatureState describes the high-level state of a Feature. It may be used to
|
1518
1552
|
# describe a Feature's state at the environ-level, or per-membershop, depending
|
1519
1553
|
# on the context.
|
@@ -2367,6 +2401,12 @@ module Google
|
|
2367
2401
|
# @return [Google::Apis::GkehubV1alpha::PolicycontrollerMembershipSpec]
|
2368
2402
|
attr_accessor :policycontroller
|
2369
2403
|
|
2404
|
+
# **Workload Certificate**: The membership-specific input for
|
2405
|
+
# WorkloadCertificate feature.
|
2406
|
+
# Corresponds to the JSON property `workloadcertificate`
|
2407
|
+
# @return [Google::Apis::GkehubV1alpha::MembershipSpec]
|
2408
|
+
attr_accessor :workloadcertificate
|
2409
|
+
|
2370
2410
|
def initialize(**args)
|
2371
2411
|
update!(**args)
|
2372
2412
|
end
|
@@ -2379,6 +2419,7 @@ module Google
|
|
2379
2419
|
@identityservice = args[:identityservice] if args.key?(:identityservice)
|
2380
2420
|
@mesh = args[:mesh] if args.key?(:mesh)
|
2381
2421
|
@policycontroller = args[:policycontroller] if args.key?(:policycontroller)
|
2422
|
+
@workloadcertificate = args[:workloadcertificate] if args.key?(:workloadcertificate)
|
2382
2423
|
end
|
2383
2424
|
end
|
2384
2425
|
|
@@ -2441,6 +2482,26 @@ module Google
|
|
2441
2482
|
end
|
2442
2483
|
end
|
2443
2484
|
|
2485
|
+
# **Workload Certificate**: The membership-specific input for
|
2486
|
+
# WorkloadCertificate feature.
|
2487
|
+
class MembershipSpec
|
2488
|
+
include Google::Apis::Core::Hashable
|
2489
|
+
|
2490
|
+
# Specifies workload certificate management.
|
2491
|
+
# Corresponds to the JSON property `certificateManagement`
|
2492
|
+
# @return [String]
|
2493
|
+
attr_accessor :certificate_management
|
2494
|
+
|
2495
|
+
def initialize(**args)
|
2496
|
+
update!(**args)
|
2497
|
+
end
|
2498
|
+
|
2499
|
+
# Update properties of this object
|
2500
|
+
def update!(**args)
|
2501
|
+
@certificate_management = args[:certificate_management] if args.key?(:certificate_management)
|
2502
|
+
end
|
2503
|
+
end
|
2504
|
+
|
2444
2505
|
# MembershipState describes the state of a Membership resource.
|
2445
2506
|
class MembershipState
|
2446
2507
|
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.21.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220128"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -274,6 +274,12 @@ module Google
|
|
274
274
|
include Google::Apis::Core::JsonObjectSupport
|
275
275
|
end
|
276
276
|
|
277
|
+
class FeatureSpec
|
278
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
|
+
|
280
|
+
include Google::Apis::Core::JsonObjectSupport
|
281
|
+
end
|
282
|
+
|
277
283
|
class FeatureState
|
278
284
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
285
|
|
@@ -400,6 +406,12 @@ module Google
|
|
400
406
|
include Google::Apis::Core::JsonObjectSupport
|
401
407
|
end
|
402
408
|
|
409
|
+
class MembershipSpec
|
410
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
411
|
+
|
412
|
+
include Google::Apis::Core::JsonObjectSupport
|
413
|
+
end
|
414
|
+
|
403
415
|
class MembershipState
|
404
416
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
405
417
|
|
@@ -663,6 +675,8 @@ module Google
|
|
663
675
|
|
664
676
|
property :multiclusteringress, as: 'multiclusteringress', class: Google::Apis::GkehubV1alpha::MultiClusterIngressFeatureSpec, decorator: Google::Apis::GkehubV1alpha::MultiClusterIngressFeatureSpec::Representation
|
665
677
|
|
678
|
+
property :workloadcertificate, as: 'workloadcertificate', class: Google::Apis::GkehubV1alpha::FeatureSpec, decorator: Google::Apis::GkehubV1alpha::FeatureSpec::Representation
|
679
|
+
|
666
680
|
end
|
667
681
|
end
|
668
682
|
|
@@ -993,6 +1007,15 @@ module Google
|
|
993
1007
|
end
|
994
1008
|
end
|
995
1009
|
|
1010
|
+
class FeatureSpec
|
1011
|
+
# @private
|
1012
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1013
|
+
property :default_config, as: 'defaultConfig', class: Google::Apis::GkehubV1alpha::MembershipSpec, decorator: Google::Apis::GkehubV1alpha::MembershipSpec::Representation
|
1014
|
+
|
1015
|
+
property :provision_google_ca, as: 'provisionGoogleCa'
|
1016
|
+
end
|
1017
|
+
end
|
1018
|
+
|
996
1019
|
class FeatureState
|
997
1020
|
# @private
|
998
1021
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1223,6 +1246,8 @@ module Google
|
|
1223
1246
|
|
1224
1247
|
property :policycontroller, as: 'policycontroller', class: Google::Apis::GkehubV1alpha::PolicycontrollerMembershipSpec, decorator: Google::Apis::GkehubV1alpha::PolicycontrollerMembershipSpec::Representation
|
1225
1248
|
|
1249
|
+
property :workloadcertificate, as: 'workloadcertificate', class: Google::Apis::GkehubV1alpha::MembershipSpec, decorator: Google::Apis::GkehubV1alpha::MembershipSpec::Representation
|
1250
|
+
|
1226
1251
|
end
|
1227
1252
|
end
|
1228
1253
|
|
@@ -1246,6 +1271,13 @@ module Google
|
|
1246
1271
|
end
|
1247
1272
|
end
|
1248
1273
|
|
1274
|
+
class MembershipSpec
|
1275
|
+
# @private
|
1276
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1277
|
+
property :certificate_management, as: 'certificateManagement'
|
1278
|
+
end
|
1279
|
+
end
|
1280
|
+
|
1249
1281
|
class MembershipState
|
1250
1282
|
# @private
|
1251
1283
|
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.21.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: 2022-
|
11
|
+
date: 2022-02-07 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.21.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: []
|