google-apis-gkehub_v1 0.60.0 → 0.62.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: b8c341163fa5fff048c825d3109aad2825398155ffe0e5edc55fb1019e15aa43
4
- data.tar.gz: 996f74a7e7a287efed1d65f512254d9e94cc71f462a83c87ed773e066dd3763c
3
+ metadata.gz: 8f7c2546f5f14a1196d67f960f932e0aece77ea07c07b62b076c8f44033ce4fa
4
+ data.tar.gz: 95665b93d4a9dd3bc4f749c0e5c138b1543cf74fcc9e16e148d768046d49d1e7
5
5
  SHA512:
6
- metadata.gz: f61772fbfe51736d6a29cfef0fb7bd1c296f969a7af0abae231fc8eb9b351918be7d3747ff5cd38da6ae7a365236638ab99b8c98545c441873df53e825cb98c1
7
- data.tar.gz: bc2c02125e7e5cf23f3eebdb4a628084f02c6dd734e0a1cf9a8be5b5cd4a753fa122ab508518c0cca18f45d45ed6769aacd7d7336c12ca810f8fab01899fd2d7
6
+ metadata.gz: 01c9fa5cbf6a0ac99d01779cfeaf12e426c3fcfb8468bda3d79e96201667aabc8315cdfc86a41e845d12c09f11ff7ee84df1e628a138c241a4876fe99e15df1a
7
+ data.tar.gz: 55a6e882ae7eb319e8576a0dcd15d0feaa83ff145983af597ae98883d91d4a75f8e72baa78ee5b97779dbc2e23f0f6d47214208f6d3b06a103fa3f68cdb9c234
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-gkehub_v1
2
2
 
3
+ ### v0.62.0 (2023-11-12)
4
+
5
+ * Regenerated from discovery document revision 20231103
6
+
7
+ ### v0.61.0 (2023-11-05)
8
+
9
+ * Regenerated from discovery document revision 20231030
10
+
3
11
  ### v0.60.0 (2023-10-22)
4
12
 
5
13
  * Regenerated from discovery document revision 20231013
@@ -365,6 +365,16 @@ module Google
365
365
  # @return [Google::Apis::GkehubV1::ConfigManagementMembershipSpec]
366
366
  attr_accessor :configmanagement
367
367
 
368
+ # **Anthos Identity Service**: Configuration for a single Membership.
369
+ # Corresponds to the JSON property `identityservice`
370
+ # @return [Google::Apis::GkehubV1::IdentityServiceMembershipSpec]
371
+ attr_accessor :identityservice
372
+
373
+ # **Service Mesh**: Spec for a single Membership for the servicemesh feature
374
+ # Corresponds to the JSON property `mesh`
375
+ # @return [Google::Apis::GkehubV1::ServiceMeshMembershipSpec]
376
+ attr_accessor :mesh
377
+
368
378
  # **Policy Controller**: Configuration for a single cluster. Intended to
369
379
  # parallel the PolicyController CR.
370
380
  # Corresponds to the JSON property `policycontroller`
@@ -378,6 +388,8 @@ module Google
378
388
  # Update properties of this object
379
389
  def update!(**args)
380
390
  @configmanagement = args[:configmanagement] if args.key?(:configmanagement)
391
+ @identityservice = args[:identityservice] if args.key?(:identityservice)
392
+ @mesh = args[:mesh] if args.key?(:mesh)
381
393
  @policycontroller = args[:policycontroller] if args.key?(:policycontroller)
382
394
  end
383
395
  end
@@ -1397,6 +1409,27 @@ module Google
1397
1409
  end
1398
1410
  end
1399
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
+
1400
1433
  # EdgeCluster contains information specific to Google Edge Clusters.
1401
1434
  class EdgeCluster
1402
1435
  include Google::Apis::Core::Hashable
@@ -1674,6 +1707,12 @@ module Google
1674
1707
  # @return [String]
1675
1708
  attr_accessor :create_time
1676
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
+
1677
1716
  # Output only. When the Fleet was deleted.
1678
1717
  # Corresponds to the JSON property `deleteTime`
1679
1718
  # @return [String]
@@ -1723,6 +1762,7 @@ module Google
1723
1762
  # Update properties of this object
1724
1763
  def update!(**args)
1725
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)
1726
1766
  @delete_time = args[:delete_time] if args.key?(:delete_time)
1727
1767
  @display_name = args[:display_name] if args.key?(:display_name)
1728
1768
  @labels = args[:labels] if args.key?(:labels)
@@ -4323,6 +4363,32 @@ module Google
4323
4363
  end
4324
4364
  end
4325
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
+
4326
4392
  # Status of control plane management.
4327
4393
  class ServiceMeshControlPlaneManagement
4328
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.60.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 = "20231013"
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
 
@@ -865,6 +877,10 @@ module Google
865
877
  class Representation < Google::Apis::Core::JsonRepresentation
866
878
  property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1::ConfigManagementMembershipSpec, decorator: Google::Apis::GkehubV1::ConfigManagementMembershipSpec::Representation
867
879
 
880
+ property :identityservice, as: 'identityservice', class: Google::Apis::GkehubV1::IdentityServiceMembershipSpec, decorator: Google::Apis::GkehubV1::IdentityServiceMembershipSpec::Representation
881
+
882
+ property :mesh, as: 'mesh', class: Google::Apis::GkehubV1::ServiceMeshMembershipSpec, decorator: Google::Apis::GkehubV1::ServiceMeshMembershipSpec::Representation
883
+
868
884
  property :policycontroller, as: 'policycontroller', class: Google::Apis::GkehubV1::PolicyControllerMembershipSpec, decorator: Google::Apis::GkehubV1::PolicyControllerMembershipSpec::Representation
869
885
 
870
886
  end
@@ -1154,6 +1170,14 @@ module Google
1154
1170
  end
1155
1171
  end
1156
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
+
1157
1181
  class EdgeCluster
1158
1182
  # @private
1159
1183
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1224,6 +1248,8 @@ module Google
1224
1248
  # @private
1225
1249
  class Representation < Google::Apis::Core::JsonRepresentation
1226
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
+
1227
1253
  property :delete_time, as: 'deleteTime'
1228
1254
  property :display_name, as: 'displayName'
1229
1255
  hash :labels, as: 'labels'
@@ -1968,6 +1994,14 @@ module Google
1968
1994
  end
1969
1995
  end
1970
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
+
1971
2005
  class ServiceMeshControlPlaneManagement
1972
2006
  # @private
1973
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.60.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-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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.60.0
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: []