google-apis-gkehub_v1beta 0.61.0 → 0.63.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: 407f2d13dae75c820e8a602d9e0ef75c9412a53b01d06a8a1cb7326a4e9f9b0e
4
- data.tar.gz: 53afa0f0c00a0b45293ddf722f5f7ed8fd5f3de39a3ef7b9f4c8975c54073ae3
3
+ metadata.gz: 5daa7b11e82dd8f62da74fcda8aec2435830e322ccd52686a39709a151098043
4
+ data.tar.gz: e0973b53c127856283c0149e0950a2f951a222d47cfceefd33fb26a86be57774
5
5
  SHA512:
6
- metadata.gz: 3524580a23f50d793a9406cbc0f68bb04f36b3ad18b44aa6f699942bd2ee819f870733df5744f6f961c531ec16c2be2b0917b9f617b8e40825c3884a0a750cf4
7
- data.tar.gz: b61455df73907989099ab6fddcbaf3f7fd160657b01c2c6e3aeb1c286ba84dd0ec58fe6f65b894812b5e891c1c22da14c960525d3781e0466562c7a886a0066c
6
+ metadata.gz: 8767e876bfe2ac5ce8ba47c9ac59f06e4eb4f06cc80b82be0228ca06ac6d54abdd494bba3285cb46845b8d0ab8a8814c68ff27c194dbd7f73fd6f0d5fe3e9a23
7
+ data.tar.gz: 109c26c739c9c21ec5226b0fc82387922cfb552a1ca8463b269c5fb3cc5f0cb3fb78213f64c230ffca70458696bdd281767f7d5dbe826f6b70baafa27c26e97f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-gkehub_v1beta
2
2
 
3
+ ### v0.63.0 (2023-11-12)
4
+
5
+ * Regenerated from discovery document revision 20231103
6
+
7
+ ### v0.62.0 (2023-11-05)
8
+
9
+ * Regenerated from discovery document revision 20231030
10
+
3
11
  ### v0.61.0 (2023-10-22)
4
12
 
5
13
  * Regenerated from discovery document revision 20231013
@@ -430,6 +430,11 @@ module Google
430
430
  # @return [Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec]
431
431
  attr_accessor :identityservice
432
432
 
433
+ # **Service Mesh**: Spec for a single Membership for the servicemesh feature
434
+ # Corresponds to the JSON property `mesh`
435
+ # @return [Google::Apis::GkehubV1beta::ServiceMeshMembershipSpec]
436
+ attr_accessor :mesh
437
+
433
438
  # **Policy Controller**: Configuration for a single cluster. Intended to
434
439
  # parallel the PolicyController CR.
435
440
  # Corresponds to the JSON property `policycontroller`
@@ -444,6 +449,7 @@ module Google
444
449
  def update!(**args)
445
450
  @configmanagement = args[:configmanagement] if args.key?(:configmanagement)
446
451
  @identityservice = args[:identityservice] if args.key?(:identityservice)
452
+ @mesh = args[:mesh] if args.key?(:mesh)
447
453
  @policycontroller = args[:policycontroller] if args.key?(:policycontroller)
448
454
  end
449
455
  end
@@ -1539,6 +1545,27 @@ module Google
1539
1545
  end
1540
1546
  end
1541
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
+
1542
1569
  # EdgeCluster contains information specific to Google Edge Clusters.
1543
1570
  class EdgeCluster
1544
1571
  include Google::Apis::Core::Hashable
@@ -1816,6 +1843,12 @@ module Google
1816
1843
  # @return [String]
1817
1844
  attr_accessor :create_time
1818
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
+
1819
1852
  # Output only. When the Fleet was deleted.
1820
1853
  # Corresponds to the JSON property `deleteTime`
1821
1854
  # @return [String]
@@ -1865,6 +1898,7 @@ module Google
1865
1898
  # Update properties of this object
1866
1899
  def update!(**args)
1867
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)
1868
1902
  @delete_time = args[:delete_time] if args.key?(:delete_time)
1869
1903
  @display_name = args[:display_name] if args.key?(:display_name)
1870
1904
  @labels = args[:labels] if args.key?(:labels)
@@ -4641,6 +4675,32 @@ module Google
4641
4675
  end
4642
4676
  end
4643
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
+
4644
4704
  # Status of control plane management.
4645
4705
  class ServiceMeshControlPlaneManagement
4646
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.61.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 = "20231013"
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
 
@@ -952,6 +964,8 @@ module Google
952
964
 
953
965
  property :identityservice, as: 'identityservice', class: Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec, decorator: Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec::Representation
954
966
 
967
+ property :mesh, as: 'mesh', class: Google::Apis::GkehubV1beta::ServiceMeshMembershipSpec, decorator: Google::Apis::GkehubV1beta::ServiceMeshMembershipSpec::Representation
968
+
955
969
  property :policycontroller, as: 'policycontroller', class: Google::Apis::GkehubV1beta::PolicyControllerMembershipSpec, decorator: Google::Apis::GkehubV1beta::PolicyControllerMembershipSpec::Representation
956
970
 
957
971
  end
@@ -1268,6 +1282,14 @@ module Google
1268
1282
  end
1269
1283
  end
1270
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
+
1271
1293
  class EdgeCluster
1272
1294
  # @private
1273
1295
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1338,6 +1360,8 @@ module Google
1338
1360
  # @private
1339
1361
  class Representation < Google::Apis::Core::JsonRepresentation
1340
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
+
1341
1365
  property :delete_time, as: 'deleteTime'
1342
1366
  property :display_name, as: 'displayName'
1343
1367
  hash :labels, as: 'labels'
@@ -2139,6 +2163,14 @@ module Google
2139
2163
  end
2140
2164
  end
2141
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
+
2142
2174
  class ServiceMeshControlPlaneManagement
2143
2175
  # @private
2144
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.61.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-10-29 00:00:00.000000000 Z
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.0
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: []