google-apis-gkehub_v1 0.61.0 → 0.62.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: 8f7c2546f5f14a1196d67f960f932e0aece77ea07c07b62b076c8f44033ce4fa
|
4
|
+
data.tar.gz: 95665b93d4a9dd3bc4f749c0e5c138b1543cf74fcc9e16e148d768046d49d1e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 01c9fa5cbf6a0ac99d01779cfeaf12e426c3fcfb8468bda3d79e96201667aabc8315cdfc86a41e845d12c09f11ff7ee84df1e628a138c241a4876fe99e15df1a
|
7
|
+
data.tar.gz: 55a6e882ae7eb319e8576a0dcd15d0feaa83ff145983af597ae98883d91d4a75f8e72baa78ee5b97779dbc2e23f0f6d47214208f6d3b06a103fa3f68cdb9c234
|
data/CHANGELOG.md
CHANGED
@@ -1409,6 +1409,27 @@ module Google
|
|
1409
1409
|
end
|
1410
1410
|
end
|
1411
1411
|
|
1412
|
+
# DefaultClusterConfig describes the default cluster configurations to be
|
1413
|
+
# applied to all clusters born-in-fleet.
|
1414
|
+
class DefaultClusterConfig
|
1415
|
+
include Google::Apis::Core::Hashable
|
1416
|
+
|
1417
|
+
# SecurityPostureConfig defines the flags needed to enable/disable features for
|
1418
|
+
# the Security Posture API.
|
1419
|
+
# Corresponds to the JSON property `securityPostureConfig`
|
1420
|
+
# @return [Google::Apis::GkehubV1::SecurityPostureConfig]
|
1421
|
+
attr_accessor :security_posture_config
|
1422
|
+
|
1423
|
+
def initialize(**args)
|
1424
|
+
update!(**args)
|
1425
|
+
end
|
1426
|
+
|
1427
|
+
# Update properties of this object
|
1428
|
+
def update!(**args)
|
1429
|
+
@security_posture_config = args[:security_posture_config] if args.key?(:security_posture_config)
|
1430
|
+
end
|
1431
|
+
end
|
1432
|
+
|
1412
1433
|
# EdgeCluster contains information specific to Google Edge Clusters.
|
1413
1434
|
class EdgeCluster
|
1414
1435
|
include Google::Apis::Core::Hashable
|
@@ -1686,6 +1707,12 @@ module Google
|
|
1686
1707
|
# @return [String]
|
1687
1708
|
attr_accessor :create_time
|
1688
1709
|
|
1710
|
+
# DefaultClusterConfig describes the default cluster configurations to be
|
1711
|
+
# applied to all clusters born-in-fleet.
|
1712
|
+
# Corresponds to the JSON property `defaultClusterConfig`
|
1713
|
+
# @return [Google::Apis::GkehubV1::DefaultClusterConfig]
|
1714
|
+
attr_accessor :default_cluster_config
|
1715
|
+
|
1689
1716
|
# Output only. When the Fleet was deleted.
|
1690
1717
|
# Corresponds to the JSON property `deleteTime`
|
1691
1718
|
# @return [String]
|
@@ -1735,6 +1762,7 @@ module Google
|
|
1735
1762
|
# Update properties of this object
|
1736
1763
|
def update!(**args)
|
1737
1764
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1765
|
+
@default_cluster_config = args[:default_cluster_config] if args.key?(:default_cluster_config)
|
1738
1766
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
1739
1767
|
@display_name = args[:display_name] if args.key?(:display_name)
|
1740
1768
|
@labels = args[:labels] if args.key?(:labels)
|
@@ -4335,6 +4363,32 @@ module Google
|
|
4335
4363
|
end
|
4336
4364
|
end
|
4337
4365
|
|
4366
|
+
# SecurityPostureConfig defines the flags needed to enable/disable features for
|
4367
|
+
# the Security Posture API.
|
4368
|
+
class SecurityPostureConfig
|
4369
|
+
include Google::Apis::Core::Hashable
|
4370
|
+
|
4371
|
+
# Sets which mode to use for Security Posture features.
|
4372
|
+
# Corresponds to the JSON property `mode`
|
4373
|
+
# @return [String]
|
4374
|
+
attr_accessor :mode
|
4375
|
+
|
4376
|
+
# Sets which mode to use for vulnerability scanning.
|
4377
|
+
# Corresponds to the JSON property `vulnerabilityMode`
|
4378
|
+
# @return [String]
|
4379
|
+
attr_accessor :vulnerability_mode
|
4380
|
+
|
4381
|
+
def initialize(**args)
|
4382
|
+
update!(**args)
|
4383
|
+
end
|
4384
|
+
|
4385
|
+
# Update properties of this object
|
4386
|
+
def update!(**args)
|
4387
|
+
@mode = args[:mode] if args.key?(:mode)
|
4388
|
+
@vulnerability_mode = args[:vulnerability_mode] if args.key?(:vulnerability_mode)
|
4389
|
+
end
|
4390
|
+
end
|
4391
|
+
|
4338
4392
|
# Status of control plane management.
|
4339
4393
|
class ServiceMeshControlPlaneManagement
|
4340
4394
|
include Google::Apis::Core::Hashable
|
@@ -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.62.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231103"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -244,6 +244,12 @@ module Google
|
|
244
244
|
include Google::Apis::Core::JsonObjectSupport
|
245
245
|
end
|
246
246
|
|
247
|
+
class DefaultClusterConfig
|
248
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
|
+
|
250
|
+
include Google::Apis::Core::JsonObjectSupport
|
251
|
+
end
|
252
|
+
|
247
253
|
class EdgeCluster
|
248
254
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
255
|
|
@@ -712,6 +718,12 @@ module Google
|
|
712
718
|
include Google::Apis::Core::JsonObjectSupport
|
713
719
|
end
|
714
720
|
|
721
|
+
class SecurityPostureConfig
|
722
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
723
|
+
|
724
|
+
include Google::Apis::Core::JsonObjectSupport
|
725
|
+
end
|
726
|
+
|
715
727
|
class ServiceMeshControlPlaneManagement
|
716
728
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
717
729
|
|
@@ -1158,6 +1170,14 @@ module Google
|
|
1158
1170
|
end
|
1159
1171
|
end
|
1160
1172
|
|
1173
|
+
class DefaultClusterConfig
|
1174
|
+
# @private
|
1175
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1176
|
+
property :security_posture_config, as: 'securityPostureConfig', class: Google::Apis::GkehubV1::SecurityPostureConfig, decorator: Google::Apis::GkehubV1::SecurityPostureConfig::Representation
|
1177
|
+
|
1178
|
+
end
|
1179
|
+
end
|
1180
|
+
|
1161
1181
|
class EdgeCluster
|
1162
1182
|
# @private
|
1163
1183
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1228,6 +1248,8 @@ module Google
|
|
1228
1248
|
# @private
|
1229
1249
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1230
1250
|
property :create_time, as: 'createTime'
|
1251
|
+
property :default_cluster_config, as: 'defaultClusterConfig', class: Google::Apis::GkehubV1::DefaultClusterConfig, decorator: Google::Apis::GkehubV1::DefaultClusterConfig::Representation
|
1252
|
+
|
1231
1253
|
property :delete_time, as: 'deleteTime'
|
1232
1254
|
property :display_name, as: 'displayName'
|
1233
1255
|
hash :labels, as: 'labels'
|
@@ -1972,6 +1994,14 @@ module Google
|
|
1972
1994
|
end
|
1973
1995
|
end
|
1974
1996
|
|
1997
|
+
class SecurityPostureConfig
|
1998
|
+
# @private
|
1999
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2000
|
+
property :mode, as: 'mode'
|
2001
|
+
property :vulnerability_mode, as: 'vulnerabilityMode'
|
2002
|
+
end
|
2003
|
+
end
|
2004
|
+
|
1975
2005
|
class ServiceMeshControlPlaneManagement
|
1976
2006
|
# @private
|
1977
2007
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.62.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: 2023-11-
|
11
|
+
date: 2023-11-12 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.62.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: []
|