google-apis-gkehub_v1beta 0.62.0 → 0.63.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: 5daa7b11e82dd8f62da74fcda8aec2435830e322ccd52686a39709a151098043
|
4
|
+
data.tar.gz: e0973b53c127856283c0149e0950a2f951a222d47cfceefd33fb26a86be57774
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8767e876bfe2ac5ce8ba47c9ac59f06e4eb4f06cc80b82be0228ca06ac6d54abdd494bba3285cb46845b8d0ab8a8814c68ff27c194dbd7f73fd6f0d5fe3e9a23
|
7
|
+
data.tar.gz: 109c26c739c9c21ec5226b0fc82387922cfb552a1ca8463b269c5fb3cc5f0cb3fb78213f64c230ffca70458696bdd281767f7d5dbe826f6b70baafa27c26e97f
|
data/CHANGELOG.md
CHANGED
@@ -1545,6 +1545,27 @@ module Google
|
|
1545
1545
|
end
|
1546
1546
|
end
|
1547
1547
|
|
1548
|
+
# DefaultClusterConfig describes the default cluster configurations to be
|
1549
|
+
# applied to all clusters born-in-fleet.
|
1550
|
+
class DefaultClusterConfig
|
1551
|
+
include Google::Apis::Core::Hashable
|
1552
|
+
|
1553
|
+
# SecurityPostureConfig defines the flags needed to enable/disable features for
|
1554
|
+
# the Security Posture API.
|
1555
|
+
# Corresponds to the JSON property `securityPostureConfig`
|
1556
|
+
# @return [Google::Apis::GkehubV1beta::SecurityPostureConfig]
|
1557
|
+
attr_accessor :security_posture_config
|
1558
|
+
|
1559
|
+
def initialize(**args)
|
1560
|
+
update!(**args)
|
1561
|
+
end
|
1562
|
+
|
1563
|
+
# Update properties of this object
|
1564
|
+
def update!(**args)
|
1565
|
+
@security_posture_config = args[:security_posture_config] if args.key?(:security_posture_config)
|
1566
|
+
end
|
1567
|
+
end
|
1568
|
+
|
1548
1569
|
# EdgeCluster contains information specific to Google Edge Clusters.
|
1549
1570
|
class EdgeCluster
|
1550
1571
|
include Google::Apis::Core::Hashable
|
@@ -1822,6 +1843,12 @@ module Google
|
|
1822
1843
|
# @return [String]
|
1823
1844
|
attr_accessor :create_time
|
1824
1845
|
|
1846
|
+
# DefaultClusterConfig describes the default cluster configurations to be
|
1847
|
+
# applied to all clusters born-in-fleet.
|
1848
|
+
# Corresponds to the JSON property `defaultClusterConfig`
|
1849
|
+
# @return [Google::Apis::GkehubV1beta::DefaultClusterConfig]
|
1850
|
+
attr_accessor :default_cluster_config
|
1851
|
+
|
1825
1852
|
# Output only. When the Fleet was deleted.
|
1826
1853
|
# Corresponds to the JSON property `deleteTime`
|
1827
1854
|
# @return [String]
|
@@ -1871,6 +1898,7 @@ module Google
|
|
1871
1898
|
# Update properties of this object
|
1872
1899
|
def update!(**args)
|
1873
1900
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1901
|
+
@default_cluster_config = args[:default_cluster_config] if args.key?(:default_cluster_config)
|
1874
1902
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
1875
1903
|
@display_name = args[:display_name] if args.key?(:display_name)
|
1876
1904
|
@labels = args[:labels] if args.key?(:labels)
|
@@ -4647,6 +4675,32 @@ module Google
|
|
4647
4675
|
end
|
4648
4676
|
end
|
4649
4677
|
|
4678
|
+
# SecurityPostureConfig defines the flags needed to enable/disable features for
|
4679
|
+
# the Security Posture API.
|
4680
|
+
class SecurityPostureConfig
|
4681
|
+
include Google::Apis::Core::Hashable
|
4682
|
+
|
4683
|
+
# Sets which mode to use for Security Posture features.
|
4684
|
+
# Corresponds to the JSON property `mode`
|
4685
|
+
# @return [String]
|
4686
|
+
attr_accessor :mode
|
4687
|
+
|
4688
|
+
# Sets which mode to use for vulnerability scanning.
|
4689
|
+
# Corresponds to the JSON property `vulnerabilityMode`
|
4690
|
+
# @return [String]
|
4691
|
+
attr_accessor :vulnerability_mode
|
4692
|
+
|
4693
|
+
def initialize(**args)
|
4694
|
+
update!(**args)
|
4695
|
+
end
|
4696
|
+
|
4697
|
+
# Update properties of this object
|
4698
|
+
def update!(**args)
|
4699
|
+
@mode = args[:mode] if args.key?(:mode)
|
4700
|
+
@vulnerability_mode = args[:vulnerability_mode] if args.key?(:vulnerability_mode)
|
4701
|
+
end
|
4702
|
+
end
|
4703
|
+
|
4650
4704
|
# Status of control plane management.
|
4651
4705
|
class ServiceMeshControlPlaneManagement
|
4652
4706
|
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.63.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
|
@@ -274,6 +274,12 @@ module Google
|
|
274
274
|
include Google::Apis::Core::JsonObjectSupport
|
275
275
|
end
|
276
276
|
|
277
|
+
class DefaultClusterConfig
|
278
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
|
+
|
280
|
+
include Google::Apis::Core::JsonObjectSupport
|
281
|
+
end
|
282
|
+
|
277
283
|
class EdgeCluster
|
278
284
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
285
|
|
@@ -778,6 +784,12 @@ module Google
|
|
778
784
|
include Google::Apis::Core::JsonObjectSupport
|
779
785
|
end
|
780
786
|
|
787
|
+
class SecurityPostureConfig
|
788
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
789
|
+
|
790
|
+
include Google::Apis::Core::JsonObjectSupport
|
791
|
+
end
|
792
|
+
|
781
793
|
class ServiceMeshControlPlaneManagement
|
782
794
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
783
795
|
|
@@ -1270,6 +1282,14 @@ module Google
|
|
1270
1282
|
end
|
1271
1283
|
end
|
1272
1284
|
|
1285
|
+
class DefaultClusterConfig
|
1286
|
+
# @private
|
1287
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1288
|
+
property :security_posture_config, as: 'securityPostureConfig', class: Google::Apis::GkehubV1beta::SecurityPostureConfig, decorator: Google::Apis::GkehubV1beta::SecurityPostureConfig::Representation
|
1289
|
+
|
1290
|
+
end
|
1291
|
+
end
|
1292
|
+
|
1273
1293
|
class EdgeCluster
|
1274
1294
|
# @private
|
1275
1295
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1340,6 +1360,8 @@ module Google
|
|
1340
1360
|
# @private
|
1341
1361
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1342
1362
|
property :create_time, as: 'createTime'
|
1363
|
+
property :default_cluster_config, as: 'defaultClusterConfig', class: Google::Apis::GkehubV1beta::DefaultClusterConfig, decorator: Google::Apis::GkehubV1beta::DefaultClusterConfig::Representation
|
1364
|
+
|
1343
1365
|
property :delete_time, as: 'deleteTime'
|
1344
1366
|
property :display_name, as: 'displayName'
|
1345
1367
|
hash :labels, as: 'labels'
|
@@ -2141,6 +2163,14 @@ module Google
|
|
2141
2163
|
end
|
2142
2164
|
end
|
2143
2165
|
|
2166
|
+
class SecurityPostureConfig
|
2167
|
+
# @private
|
2168
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2169
|
+
property :mode, as: 'mode'
|
2170
|
+
property :vulnerability_mode, as: 'vulnerabilityMode'
|
2171
|
+
end
|
2172
|
+
end
|
2173
|
+
|
2144
2174
|
class ServiceMeshControlPlaneManagement
|
2145
2175
|
# @private
|
2146
2176
|
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.63.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_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.63.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: []
|