google-apis-gkehub_v1 0.33.0 → 0.34.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: b201658f9232f76a492285880cdf4f94099cbee52e751b9afdf65b4469255552
|
4
|
+
data.tar.gz: f9ff7710cb8648212a3c0f1684ea812b03ef304f4a5c6ae78f12fe9827a2fa30
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f6ad56f1833a5f7e6121e1e12912cb0f3abc21e336ddbbcf0ab939b46e69d73dee42cfd49765ec5c3b61587c45be2594df22aea70cda2af05585b4a012fb5aa6
|
7
|
+
data.tar.gz: 7252363898d9cbccca189c5875e09c8463387f7e36e5272627233a1eff0032f9ce329e2978b6b3fed570fcb0133335e5955aea3d668db760855d49b066f59e5d
|
data/CHANGELOG.md
CHANGED
@@ -469,6 +469,13 @@ module Google
|
|
469
469
|
class ConfigManagementConfigSync
|
470
470
|
include Google::Apis::Core::Hashable
|
471
471
|
|
472
|
+
# Set to true to allow the vertical scaling. Defaults to false which disallows
|
473
|
+
# vertical scaling.
|
474
|
+
# Corresponds to the JSON property `allowVerticalScale`
|
475
|
+
# @return [Boolean]
|
476
|
+
attr_accessor :allow_vertical_scale
|
477
|
+
alias_method :allow_vertical_scale?, :allow_vertical_scale
|
478
|
+
|
472
479
|
# Enables the installation of ConfigSync. If set to true, ConfigSync resources
|
473
480
|
# will be created and the other ConfigSync fields will be applied if exist. If
|
474
481
|
# set to false, all other ConfigSync fields will be ignored, ConfigSync
|
@@ -509,6 +516,7 @@ module Google
|
|
509
516
|
|
510
517
|
# Update properties of this object
|
511
518
|
def update!(**args)
|
519
|
+
@allow_vertical_scale = args[:allow_vertical_scale] if args.key?(:allow_vertical_scale)
|
512
520
|
@enabled = args[:enabled] if args.key?(:enabled)
|
513
521
|
@git = args[:git] if args.key?(:git)
|
514
522
|
@oci = args[:oci] if args.key?(:oci)
|
@@ -2918,6 +2926,31 @@ module Google
|
|
2918
2926
|
end
|
2919
2927
|
end
|
2920
2928
|
|
2929
|
+
# Status of data plane management. Only reported per-member.
|
2930
|
+
class ServiceMeshDataPlaneManagement
|
2931
|
+
include Google::Apis::Core::Hashable
|
2932
|
+
|
2933
|
+
# Explanation of the status.
|
2934
|
+
# Corresponds to the JSON property `details`
|
2935
|
+
# @return [Array<Google::Apis::GkehubV1::ServiceMeshStatusDetails>]
|
2936
|
+
attr_accessor :details
|
2937
|
+
|
2938
|
+
# Lifecycle status of data plane management.
|
2939
|
+
# Corresponds to the JSON property `state`
|
2940
|
+
# @return [String]
|
2941
|
+
attr_accessor :state
|
2942
|
+
|
2943
|
+
def initialize(**args)
|
2944
|
+
update!(**args)
|
2945
|
+
end
|
2946
|
+
|
2947
|
+
# Update properties of this object
|
2948
|
+
def update!(**args)
|
2949
|
+
@details = args[:details] if args.key?(:details)
|
2950
|
+
@state = args[:state] if args.key?(:state)
|
2951
|
+
end
|
2952
|
+
end
|
2953
|
+
|
2921
2954
|
# **Service Mesh**: Spec for a single Membership for the servicemesh feature
|
2922
2955
|
class ServiceMeshMembershipSpec
|
2923
2956
|
include Google::Apis::Core::Hashable
|
@@ -2927,6 +2960,11 @@ module Google
|
|
2927
2960
|
# @return [String]
|
2928
2961
|
attr_accessor :control_plane
|
2929
2962
|
|
2963
|
+
# Enables automatic Service Mesh management.
|
2964
|
+
# Corresponds to the JSON property `management`
|
2965
|
+
# @return [String]
|
2966
|
+
attr_accessor :management
|
2967
|
+
|
2930
2968
|
def initialize(**args)
|
2931
2969
|
update!(**args)
|
2932
2970
|
end
|
@@ -2934,6 +2972,7 @@ module Google
|
|
2934
2972
|
# Update properties of this object
|
2935
2973
|
def update!(**args)
|
2936
2974
|
@control_plane = args[:control_plane] if args.key?(:control_plane)
|
2975
|
+
@management = args[:management] if args.key?(:management)
|
2937
2976
|
end
|
2938
2977
|
end
|
2939
2978
|
|
@@ -2947,6 +2986,11 @@ module Google
|
|
2947
2986
|
# @return [Google::Apis::GkehubV1::ServiceMeshControlPlaneManagement]
|
2948
2987
|
attr_accessor :control_plane_management
|
2949
2988
|
|
2989
|
+
# Status of data plane management. Only reported per-member.
|
2990
|
+
# Corresponds to the JSON property `dataPlaneManagement`
|
2991
|
+
# @return [Google::Apis::GkehubV1::ServiceMeshDataPlaneManagement]
|
2992
|
+
attr_accessor :data_plane_management
|
2993
|
+
|
2950
2994
|
def initialize(**args)
|
2951
2995
|
update!(**args)
|
2952
2996
|
end
|
@@ -2954,6 +2998,7 @@ module Google
|
|
2954
2998
|
# Update properties of this object
|
2955
2999
|
def update!(**args)
|
2956
3000
|
@control_plane_management = args[:control_plane_management] if args.key?(:control_plane_management)
|
3001
|
+
@data_plane_management = args[:data_plane_management] if args.key?(:data_plane_management)
|
2957
3002
|
end
|
2958
3003
|
end
|
2959
3004
|
|
@@ -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.34.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220912"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -478,6 +478,12 @@ module Google
|
|
478
478
|
include Google::Apis::Core::JsonObjectSupport
|
479
479
|
end
|
480
480
|
|
481
|
+
class ServiceMeshDataPlaneManagement
|
482
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
483
|
+
|
484
|
+
include Google::Apis::Core::JsonObjectSupport
|
485
|
+
end
|
486
|
+
|
481
487
|
class ServiceMeshMembershipSpec
|
482
488
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
483
489
|
|
@@ -666,6 +672,7 @@ module Google
|
|
666
672
|
class ConfigManagementConfigSync
|
667
673
|
# @private
|
668
674
|
class Representation < Google::Apis::Core::JsonRepresentation
|
675
|
+
property :allow_vertical_scale, as: 'allowVerticalScale'
|
669
676
|
property :enabled, as: 'enabled'
|
670
677
|
property :git, as: 'git', class: Google::Apis::GkehubV1::ConfigManagementGitConfig, decorator: Google::Apis::GkehubV1::ConfigManagementGitConfig::Representation
|
671
678
|
|
@@ -1326,10 +1333,20 @@ module Google
|
|
1326
1333
|
end
|
1327
1334
|
end
|
1328
1335
|
|
1336
|
+
class ServiceMeshDataPlaneManagement
|
1337
|
+
# @private
|
1338
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1339
|
+
collection :details, as: 'details', class: Google::Apis::GkehubV1::ServiceMeshStatusDetails, decorator: Google::Apis::GkehubV1::ServiceMeshStatusDetails::Representation
|
1340
|
+
|
1341
|
+
property :state, as: 'state'
|
1342
|
+
end
|
1343
|
+
end
|
1344
|
+
|
1329
1345
|
class ServiceMeshMembershipSpec
|
1330
1346
|
# @private
|
1331
1347
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1332
1348
|
property :control_plane, as: 'controlPlane'
|
1349
|
+
property :management, as: 'management'
|
1333
1350
|
end
|
1334
1351
|
end
|
1335
1352
|
|
@@ -1338,6 +1355,8 @@ module Google
|
|
1338
1355
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1339
1356
|
property :control_plane_management, as: 'controlPlaneManagement', class: Google::Apis::GkehubV1::ServiceMeshControlPlaneManagement, decorator: Google::Apis::GkehubV1::ServiceMeshControlPlaneManagement::Representation
|
1340
1357
|
|
1358
|
+
property :data_plane_management, as: 'dataPlaneManagement', class: Google::Apis::GkehubV1::ServiceMeshDataPlaneManagement, decorator: Google::Apis::GkehubV1::ServiceMeshDataPlaneManagement::Representation
|
1359
|
+
|
1341
1360
|
end
|
1342
1361
|
end
|
1343
1362
|
|
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.34.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-09-
|
11
|
+
date: 2022-09-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 0.7.2
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
29
|
+
version: 0.7.2
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.34.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: []
|