google-apis-gkehub_v1alpha 0.67.0 → 0.68.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: 0a33f9b624e8e31532a66a5ae5e3b11fe86e05953be3e6efcfb2de435ff2a775
4
- data.tar.gz: 9685bc2ab5b8034629aeea4ef00f955f1170cfdad647a4e56be80a040627c7b9
3
+ metadata.gz: 9e759a7a6d87e3dd276400fa06a50c52a215840319625aa9da8787d71187c727
4
+ data.tar.gz: 27af629981122caef8206479c41ba079e75640d70665524bfa38ac43c3dc0ef1
5
5
  SHA512:
6
- metadata.gz: 8f936623091ce7209466244b471598122f5d1a08b7817d906574af19f189491c4a11cc8b3969d65b6ecc13016ab915dbaaabb6897573c24150c738647953ac72
7
- data.tar.gz: 37168f207b442237a7264ca1508af7442c5c4591e9a34a4daae2dcee9627c8cc0bef532cc1636b5545bf0cdeb82e496a6af6e006e60c3c6e90bdcdf016a96151
6
+ metadata.gz: d081c15a441f383691228fdb4c28b6908a2000f5589a7f77c400df3b475e66576befe3de9602fb72b8ef8f0d1c97876fecb955ab80ffa33417e8f4ede47c29d5
7
+ data.tar.gz: ab1fcdaac75a19c70b54101d8fb6008850278a2d9d942c63ff81ee1bc191036455f0cad0dcdef3e24c6bf7e1f6b832cf6ac65bfc954c1664c7b3e3b9ea322970
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-gkehub_v1alpha
2
2
 
3
+ ### v0.68.0 (2023-11-12)
4
+
5
+ * Regenerated from discovery document revision 20231103
6
+
3
7
  ### v0.67.0 (2023-11-05)
4
8
 
5
9
  * Regenerated from discovery document revision 20231030
@@ -866,6 +866,12 @@ module Google
866
866
  # @return [Google::Apis::GkehubV1alpha::MultiClusterIngressFeatureSpec]
867
867
  attr_accessor :multiclusteringress
868
868
 
869
+ # An empty spec for actuation feature. This is required since Feature proto
870
+ # requires a spec.
871
+ # Corresponds to the JSON property `namespaceactuation`
872
+ # @return [Google::Apis::GkehubV1alpha::NamespaceActuationFeatureSpec]
873
+ attr_accessor :namespaceactuation
874
+
869
875
  # **Workload Certificate**: The Hub-wide input for the WorkloadCertificate
870
876
  # feature.
871
877
  # Corresponds to the JSON property `workloadcertificate`
@@ -884,6 +890,7 @@ module Google
884
890
  @clusterupgrade = args[:clusterupgrade] if args.key?(:clusterupgrade)
885
891
  @fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
886
892
  @multiclusteringress = args[:multiclusteringress] if args.key?(:multiclusteringress)
893
+ @namespaceactuation = args[:namespaceactuation] if args.key?(:namespaceactuation)
887
894
  @workloadcertificate = args[:workloadcertificate] if args.key?(:workloadcertificate)
888
895
  end
889
896
  end
@@ -907,6 +914,11 @@ module Google
907
914
  # @return [Google::Apis::GkehubV1alpha::FleetObservabilityFeatureState]
908
915
  attr_accessor :fleetobservability
909
916
 
917
+ # NamespaceActuation Feature State.
918
+ # Corresponds to the JSON property `namespaceactuation`
919
+ # @return [Google::Apis::GkehubV1alpha::NamespaceActuationFeatureState]
920
+ attr_accessor :namespaceactuation
921
+
910
922
  # **Service Mesh**: State for the whole Hub, as analyzed by the Service Mesh Hub
911
923
  # Controller.
912
924
  # Corresponds to the JSON property `servicemesh`
@@ -929,6 +941,7 @@ module Google
929
941
  @appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
930
942
  @clusterupgrade = args[:clusterupgrade] if args.key?(:clusterupgrade)
931
943
  @fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
944
+ @namespaceactuation = args[:namespaceactuation] if args.key?(:namespaceactuation)
932
945
  @servicemesh = args[:servicemesh] if args.key?(:servicemesh)
933
946
  @state = args[:state] if args.key?(:state)
934
947
  end
@@ -2065,6 +2078,27 @@ module Google
2065
2078
  end
2066
2079
  end
2067
2080
 
2081
+ # DefaultClusterConfig describes the default cluster configurations to be
2082
+ # applied to all clusters born-in-fleet.
2083
+ class DefaultClusterConfig
2084
+ include Google::Apis::Core::Hashable
2085
+
2086
+ # SecurityPostureConfig defines the flags needed to enable/disable features for
2087
+ # the Security Posture API.
2088
+ # Corresponds to the JSON property `securityPostureConfig`
2089
+ # @return [Google::Apis::GkehubV1alpha::SecurityPostureConfig]
2090
+ attr_accessor :security_posture_config
2091
+
2092
+ def initialize(**args)
2093
+ update!(**args)
2094
+ end
2095
+
2096
+ # Update properties of this object
2097
+ def update!(**args)
2098
+ @security_posture_config = args[:security_posture_config] if args.key?(:security_posture_config)
2099
+ end
2100
+ end
2101
+
2068
2102
  # EdgeCluster contains information specific to Google Edge Clusters.
2069
2103
  class EdgeCluster
2070
2104
  include Google::Apis::Core::Hashable
@@ -2369,6 +2403,12 @@ module Google
2369
2403
  # @return [String]
2370
2404
  attr_accessor :create_time
2371
2405
 
2406
+ # DefaultClusterConfig describes the default cluster configurations to be
2407
+ # applied to all clusters born-in-fleet.
2408
+ # Corresponds to the JSON property `defaultClusterConfig`
2409
+ # @return [Google::Apis::GkehubV1alpha::DefaultClusterConfig]
2410
+ attr_accessor :default_cluster_config
2411
+
2372
2412
  # Output only. When the Fleet was deleted.
2373
2413
  # Corresponds to the JSON property `deleteTime`
2374
2414
  # @return [String]
@@ -2418,6 +2458,7 @@ module Google
2418
2458
  # Update properties of this object
2419
2459
  def update!(**args)
2420
2460
  @create_time = args[:create_time] if args.key?(:create_time)
2461
+ @default_cluster_config = args[:default_cluster_config] if args.key?(:default_cluster_config)
2421
2462
  @delete_time = args[:delete_time] if args.key?(:delete_time)
2422
2463
  @display_name = args[:display_name] if args.key?(:display_name)
2423
2464
  @labels = args[:labels] if args.key?(:labels)
@@ -3850,6 +3891,12 @@ module Google
3850
3891
  # @return [Google::Apis::GkehubV1alpha::ServiceMeshMembershipSpec]
3851
3892
  attr_accessor :mesh
3852
3893
 
3894
+ # **Namespace Actuation**: The membership-specific input for NamespaceActuation
3895
+ # feature.
3896
+ # Corresponds to the JSON property `namespaceactuation`
3897
+ # @return [Google::Apis::GkehubV1alpha::NamespaceActuationMembershipSpec]
3898
+ attr_accessor :namespaceactuation
3899
+
3853
3900
  # Origin defines where this MembershipFeatureSpec originated from.
3854
3901
  # Corresponds to the JSON property `origin`
3855
3902
  # @return [Google::Apis::GkehubV1alpha::Origin]
@@ -3879,6 +3926,7 @@ module Google
3879
3926
  @fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
3880
3927
  @identityservice = args[:identityservice] if args.key?(:identityservice)
3881
3928
  @mesh = args[:mesh] if args.key?(:mesh)
3929
+ @namespaceactuation = args[:namespaceactuation] if args.key?(:namespaceactuation)
3882
3930
  @origin = args[:origin] if args.key?(:origin)
3883
3931
  @policycontroller = args[:policycontroller] if args.key?(:policycontroller)
3884
3932
  @workloadcertificate = args[:workloadcertificate] if args.key?(:workloadcertificate)
@@ -3921,6 +3969,12 @@ module Google
3921
3969
  # @return [Google::Apis::GkehubV1alpha::MeteringMembershipState]
3922
3970
  attr_accessor :metering
3923
3971
 
3972
+ # **Namespace Actuation**: An empty state left as an example membership-specific
3973
+ # Feature state.
3974
+ # Corresponds to the JSON property `namespaceactuation`
3975
+ # @return [Google::Apis::GkehubV1alpha::NamespaceActuationMembershipState]
3976
+ attr_accessor :namespaceactuation
3977
+
3924
3978
  # **Policy Controller**: State for a single cluster.
3925
3979
  # Corresponds to the JSON property `policycontroller`
3926
3980
  # @return [Google::Apis::GkehubV1alpha::PolicyControllerMembershipState]
@@ -3951,6 +4005,7 @@ module Google
3951
4005
  @fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
3952
4006
  @identityservice = args[:identityservice] if args.key?(:identityservice)
3953
4007
  @metering = args[:metering] if args.key?(:metering)
4008
+ @namespaceactuation = args[:namespaceactuation] if args.key?(:namespaceactuation)
3954
4009
  @policycontroller = args[:policycontroller] if args.key?(:policycontroller)
3955
4010
  @servicemesh = args[:servicemesh] if args.key?(:servicemesh)
3956
4011
  @state = args[:state] if args.key?(:state)
@@ -4209,6 +4264,67 @@ module Google
4209
4264
  end
4210
4265
  end
4211
4266
 
4267
+ # An empty spec for actuation feature. This is required since Feature proto
4268
+ # requires a spec.
4269
+ class NamespaceActuationFeatureSpec
4270
+ include Google::Apis::Core::Hashable
4271
+
4272
+ # actuation_mode controls the behavior of the controller
4273
+ # Corresponds to the JSON property `actuationMode`
4274
+ # @return [String]
4275
+ attr_accessor :actuation_mode
4276
+
4277
+ def initialize(**args)
4278
+ update!(**args)
4279
+ end
4280
+
4281
+ # Update properties of this object
4282
+ def update!(**args)
4283
+ @actuation_mode = args[:actuation_mode] if args.key?(:actuation_mode)
4284
+ end
4285
+ end
4286
+
4287
+ # NamespaceActuation Feature State.
4288
+ class NamespaceActuationFeatureState
4289
+ include Google::Apis::Core::Hashable
4290
+
4291
+ def initialize(**args)
4292
+ update!(**args)
4293
+ end
4294
+
4295
+ # Update properties of this object
4296
+ def update!(**args)
4297
+ end
4298
+ end
4299
+
4300
+ # **Namespace Actuation**: The membership-specific input for NamespaceActuation
4301
+ # feature.
4302
+ class NamespaceActuationMembershipSpec
4303
+ include Google::Apis::Core::Hashable
4304
+
4305
+ def initialize(**args)
4306
+ update!(**args)
4307
+ end
4308
+
4309
+ # Update properties of this object
4310
+ def update!(**args)
4311
+ end
4312
+ end
4313
+
4314
+ # **Namespace Actuation**: An empty state left as an example membership-specific
4315
+ # Feature state.
4316
+ class NamespaceActuationMembershipState
4317
+ include Google::Apis::Core::Hashable
4318
+
4319
+ def initialize(**args)
4320
+ update!(**args)
4321
+ end
4322
+
4323
+ # Update properties of this object
4324
+ def update!(**args)
4325
+ end
4326
+ end
4327
+
4212
4328
  # NamespaceLifecycleState describes the state of a Namespace resource.
4213
4329
  class NamespaceLifecycleState
4214
4330
  include Google::Apis::Core::Hashable
@@ -5248,6 +5364,32 @@ module Google
5248
5364
  end
5249
5365
  end
5250
5366
 
5367
+ # SecurityPostureConfig defines the flags needed to enable/disable features for
5368
+ # the Security Posture API.
5369
+ class SecurityPostureConfig
5370
+ include Google::Apis::Core::Hashable
5371
+
5372
+ # Sets which mode to use for Security Posture features.
5373
+ # Corresponds to the JSON property `mode`
5374
+ # @return [String]
5375
+ attr_accessor :mode
5376
+
5377
+ # Sets which mode to use for vulnerability scanning.
5378
+ # Corresponds to the JSON property `vulnerabilityMode`
5379
+ # @return [String]
5380
+ attr_accessor :vulnerability_mode
5381
+
5382
+ def initialize(**args)
5383
+ update!(**args)
5384
+ end
5385
+
5386
+ # Update properties of this object
5387
+ def update!(**args)
5388
+ @mode = args[:mode] if args.key?(:mode)
5389
+ @vulnerability_mode = args[:vulnerability_mode] if args.key?(:vulnerability_mode)
5390
+ end
5391
+ end
5392
+
5251
5393
  # AnalysisMessage is a single message produced by an analyzer, and it used to
5252
5394
  # communicate to the end user about the state of their Service Mesh
5253
5395
  # configuration.
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GkehubV1alpha
18
18
  # Version of the google-apis-gkehub_v1alpha gem
19
- GEM_VERSION = "0.67.0"
19
+ GEM_VERSION = "0.68.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 = "20231030"
25
+ REVISION = "20231103"
26
26
  end
27
27
  end
28
28
  end
@@ -370,6 +370,12 @@ module Google
370
370
  include Google::Apis::Core::JsonObjectSupport
371
371
  end
372
372
 
373
+ class DefaultClusterConfig
374
+ class Representation < Google::Apis::Core::JsonRepresentation; end
375
+
376
+ include Google::Apis::Core::JsonObjectSupport
377
+ end
378
+
373
379
  class EdgeCluster
374
380
  class Representation < Google::Apis::Core::JsonRepresentation; end
375
381
 
@@ -718,6 +724,30 @@ module Google
718
724
  include Google::Apis::Core::JsonObjectSupport
719
725
  end
720
726
 
727
+ class NamespaceActuationFeatureSpec
728
+ class Representation < Google::Apis::Core::JsonRepresentation; end
729
+
730
+ include Google::Apis::Core::JsonObjectSupport
731
+ end
732
+
733
+ class NamespaceActuationFeatureState
734
+ class Representation < Google::Apis::Core::JsonRepresentation; end
735
+
736
+ include Google::Apis::Core::JsonObjectSupport
737
+ end
738
+
739
+ class NamespaceActuationMembershipSpec
740
+ class Representation < Google::Apis::Core::JsonRepresentation; end
741
+
742
+ include Google::Apis::Core::JsonObjectSupport
743
+ end
744
+
745
+ class NamespaceActuationMembershipState
746
+ class Representation < Google::Apis::Core::JsonRepresentation; end
747
+
748
+ include Google::Apis::Core::JsonObjectSupport
749
+ end
750
+
721
751
  class NamespaceLifecycleState
722
752
  class Representation < Google::Apis::Core::JsonRepresentation; end
723
753
 
@@ -886,6 +916,12 @@ module Google
886
916
  include Google::Apis::Core::JsonObjectSupport
887
917
  end
888
918
 
919
+ class SecurityPostureConfig
920
+ class Representation < Google::Apis::Core::JsonRepresentation; end
921
+
922
+ include Google::Apis::Core::JsonObjectSupport
923
+ end
924
+
889
925
  class ServiceMeshAnalysisMessage
890
926
  class Representation < Google::Apis::Core::JsonRepresentation; end
891
927
 
@@ -1238,6 +1274,8 @@ module Google
1238
1274
 
1239
1275
  property :multiclusteringress, as: 'multiclusteringress', class: Google::Apis::GkehubV1alpha::MultiClusterIngressFeatureSpec, decorator: Google::Apis::GkehubV1alpha::MultiClusterIngressFeatureSpec::Representation
1240
1276
 
1277
+ property :namespaceactuation, as: 'namespaceactuation', class: Google::Apis::GkehubV1alpha::NamespaceActuationFeatureSpec, decorator: Google::Apis::GkehubV1alpha::NamespaceActuationFeatureSpec::Representation
1278
+
1241
1279
  property :workloadcertificate, as: 'workloadcertificate', class: Google::Apis::GkehubV1alpha::FeatureSpec, decorator: Google::Apis::GkehubV1alpha::FeatureSpec::Representation
1242
1280
 
1243
1281
  end
@@ -1252,6 +1290,8 @@ module Google
1252
1290
 
1253
1291
  property :fleetobservability, as: 'fleetobservability', class: Google::Apis::GkehubV1alpha::FleetObservabilityFeatureState, decorator: Google::Apis::GkehubV1alpha::FleetObservabilityFeatureState::Representation
1254
1292
 
1293
+ property :namespaceactuation, as: 'namespaceactuation', class: Google::Apis::GkehubV1alpha::NamespaceActuationFeatureState, decorator: Google::Apis::GkehubV1alpha::NamespaceActuationFeatureState::Representation
1294
+
1255
1295
  property :servicemesh, as: 'servicemesh', class: Google::Apis::GkehubV1alpha::ServiceMeshFeatureState, decorator: Google::Apis::GkehubV1alpha::ServiceMeshFeatureState::Representation
1256
1296
 
1257
1297
  property :state, as: 'state', class: Google::Apis::GkehubV1alpha::FeatureState, decorator: Google::Apis::GkehubV1alpha::FeatureState::Representation
@@ -1584,6 +1624,14 @@ module Google
1584
1624
  end
1585
1625
  end
1586
1626
 
1627
+ class DefaultClusterConfig
1628
+ # @private
1629
+ class Representation < Google::Apis::Core::JsonRepresentation
1630
+ property :security_posture_config, as: 'securityPostureConfig', class: Google::Apis::GkehubV1alpha::SecurityPostureConfig, decorator: Google::Apis::GkehubV1alpha::SecurityPostureConfig::Representation
1631
+
1632
+ end
1633
+ end
1634
+
1587
1635
  class EdgeCluster
1588
1636
  # @private
1589
1637
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1663,6 +1711,8 @@ module Google
1663
1711
  # @private
1664
1712
  class Representation < Google::Apis::Core::JsonRepresentation
1665
1713
  property :create_time, as: 'createTime'
1714
+ property :default_cluster_config, as: 'defaultClusterConfig', class: Google::Apis::GkehubV1alpha::DefaultClusterConfig, decorator: Google::Apis::GkehubV1alpha::DefaultClusterConfig::Representation
1715
+
1666
1716
  property :delete_time, as: 'deleteTime'
1667
1717
  property :display_name, as: 'displayName'
1668
1718
  hash :labels, as: 'labels'
@@ -2102,6 +2152,8 @@ module Google
2102
2152
 
2103
2153
  property :mesh, as: 'mesh', class: Google::Apis::GkehubV1alpha::ServiceMeshMembershipSpec, decorator: Google::Apis::GkehubV1alpha::ServiceMeshMembershipSpec::Representation
2104
2154
 
2155
+ property :namespaceactuation, as: 'namespaceactuation', class: Google::Apis::GkehubV1alpha::NamespaceActuationMembershipSpec, decorator: Google::Apis::GkehubV1alpha::NamespaceActuationMembershipSpec::Representation
2156
+
2105
2157
  property :origin, as: 'origin', class: Google::Apis::GkehubV1alpha::Origin, decorator: Google::Apis::GkehubV1alpha::Origin::Representation
2106
2158
 
2107
2159
  property :policycontroller, as: 'policycontroller', class: Google::Apis::GkehubV1alpha::PolicyControllerMembershipSpec, decorator: Google::Apis::GkehubV1alpha::PolicyControllerMembershipSpec::Representation
@@ -2126,6 +2178,8 @@ module Google
2126
2178
 
2127
2179
  property :metering, as: 'metering', class: Google::Apis::GkehubV1alpha::MeteringMembershipState, decorator: Google::Apis::GkehubV1alpha::MeteringMembershipState::Representation
2128
2180
 
2181
+ property :namespaceactuation, as: 'namespaceactuation', class: Google::Apis::GkehubV1alpha::NamespaceActuationMembershipState, decorator: Google::Apis::GkehubV1alpha::NamespaceActuationMembershipState::Representation
2182
+
2129
2183
  property :policycontroller, as: 'policycontroller', class: Google::Apis::GkehubV1alpha::PolicyControllerMembershipState, decorator: Google::Apis::GkehubV1alpha::PolicyControllerMembershipState::Representation
2130
2184
 
2131
2185
  property :servicemesh, as: 'servicemesh', class: Google::Apis::GkehubV1alpha::ServiceMeshMembershipState, decorator: Google::Apis::GkehubV1alpha::ServiceMeshMembershipState::Representation
@@ -2200,6 +2254,31 @@ module Google
2200
2254
  end
2201
2255
  end
2202
2256
 
2257
+ class NamespaceActuationFeatureSpec
2258
+ # @private
2259
+ class Representation < Google::Apis::Core::JsonRepresentation
2260
+ property :actuation_mode, as: 'actuationMode'
2261
+ end
2262
+ end
2263
+
2264
+ class NamespaceActuationFeatureState
2265
+ # @private
2266
+ class Representation < Google::Apis::Core::JsonRepresentation
2267
+ end
2268
+ end
2269
+
2270
+ class NamespaceActuationMembershipSpec
2271
+ # @private
2272
+ class Representation < Google::Apis::Core::JsonRepresentation
2273
+ end
2274
+ end
2275
+
2276
+ class NamespaceActuationMembershipState
2277
+ # @private
2278
+ class Representation < Google::Apis::Core::JsonRepresentation
2279
+ end
2280
+ end
2281
+
2203
2282
  class NamespaceLifecycleState
2204
2283
  # @private
2205
2284
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2481,6 +2560,14 @@ module Google
2481
2560
  end
2482
2561
  end
2483
2562
 
2563
+ class SecurityPostureConfig
2564
+ # @private
2565
+ class Representation < Google::Apis::Core::JsonRepresentation
2566
+ property :mode, as: 'mode'
2567
+ property :vulnerability_mode, as: 'vulnerabilityMode'
2568
+ end
2569
+ end
2570
+
2484
2571
  class ServiceMeshAnalysisMessage
2485
2572
  # @private
2486
2573
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gkehub_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.67.0
4
+ version: 0.68.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-05 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_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.67.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.68.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1alpha
63
63
  post_install_message:
64
64
  rdoc_options: []