google-apis-gkehub_v1alpha 0.29.0 → 0.32.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: 232c9f76149741fb56a933c296b31f08365e8cba5cf099425c574565be0ef2c7
4
- data.tar.gz: f3f341277a7ab0a1acbb70d7e00bf4e1f7f3252a8947febb784e9cc8af1a682a
3
+ metadata.gz: 8d7bb06d5ddad3f02e37c70c90a28e5cac5e402827a15b4428517bdc479d3b4b
4
+ data.tar.gz: 4bc33dcf21b9972f89d2d2e2e2f8ede807ec660ad22ef828ad1b08431e796df5
5
5
  SHA512:
6
- metadata.gz: cb07ca2bc0d1ffa96cd91d4961ed570b6ca174f132bc1bf7aee5ccbfb4ab3263828d91e4fd74ef181eb0c2dc4b4e11db5d0e4067015db53381ff5402543ecd59
7
- data.tar.gz: de346d24ea5f6f10296f19bda564b95709df153576925583a0ae67983d070e718e4961591ff815689cfd22f531e6928e7b3b41d1e1674910a9be57c774f991b2
6
+ metadata.gz: 067e483a757f75deabdb34eea1415bdc30347a978945da0193a0ff03aba57e5490825e01555224f4e5e42fb070c618b6a52848f6bf763ed86da3f967b1ad88df
7
+ data.tar.gz: fcb9771d774df47b0783ab53f739a192a87bb0edaf04bcff57225032a7960540f0b912675437e6733373d04341bf04697ff8ca96797e8dbe63db28c217de71d0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Release history for google-apis-gkehub_v1alpha
2
2
 
3
+ ### v0.32.0 (2022-07-01)
4
+
5
+ * Regenerated using generator version 0.8.0
6
+ * Regenerated from discovery document revision 20220621
7
+
8
+ ### v0.31.0 (2022-06-19)
9
+
10
+ * Regenerated from discovery document revision 20220613
11
+ * Regenerated using generator version 0.7.0
12
+
13
+ ### v0.30.0 (2022-06-12)
14
+
15
+ * Regenerated from discovery document revision 20220603
16
+ * Regenerated using generator version 0.5.0
17
+
3
18
  ### v0.29.0 (2022-05-16)
4
19
 
5
20
  * Regenerated from discovery document revision 20220505
@@ -232,6 +232,27 @@ module Google
232
232
  end
233
233
  end
234
234
 
235
+ # ApplianceCluster contains information specific to GDC Edge Appliance Clusters.
236
+ class ApplianceCluster
237
+ include Google::Apis::Core::Hashable
238
+
239
+ # Immutable. Self-link of the GCP resource for the Appliance Cluster. For
240
+ # example: //transferappliance.googleapis.com/projects/my-project/locations/us-
241
+ # west1-a/appliances/my-appliance
242
+ # Corresponds to the JSON property `resourceLink`
243
+ # @return [String]
244
+ attr_accessor :resource_link
245
+
246
+ def initialize(**args)
247
+ update!(**args)
248
+ end
249
+
250
+ # Update properties of this object
251
+ def update!(**args)
252
+ @resource_link = args[:resource_link] if args.key?(:resource_link)
253
+ end
254
+ end
255
+
235
256
  # Specifies the audit configuration for a service. The configuration determines
236
257
  # which permission types are logged, and what identities, if any, are exempted
237
258
  # from logging. An AuditConfig must have one or more AuditLogConfigs. If there
@@ -651,6 +672,11 @@ module Google
651
672
  # @return [Google::Apis::GkehubV1alpha::ConfigManagementGitConfig]
652
673
  attr_accessor :git
653
674
 
675
+ # OCI repo configuration for a single cluster
676
+ # Corresponds to the JSON property `oci`
677
+ # @return [Google::Apis::GkehubV1alpha::ConfigManagementOciConfig]
678
+ attr_accessor :oci
679
+
654
680
  # Set to true to enable the Config Sync admission webhook to prevent drifts. If
655
681
  # set to `false`, disables the Config Sync admission webhook and does not
656
682
  # prevent drifts.
@@ -673,6 +699,7 @@ module Google
673
699
  def update!(**args)
674
700
  @enabled = args[:enabled] if args.key?(:enabled)
675
701
  @git = args[:git] if args.key?(:git)
702
+ @oci = args[:oci] if args.key?(:oci)
676
703
  @prevent_drift = args[:prevent_drift] if args.key?(:prevent_drift)
677
704
  @source_format = args[:source_format] if args.key?(:source_format)
678
705
  end
@@ -1214,6 +1241,52 @@ module Google
1214
1241
  end
1215
1242
  end
1216
1243
 
1244
+ # OCI repo configuration for a single cluster
1245
+ class ConfigManagementOciConfig
1246
+ include Google::Apis::Core::Hashable
1247
+
1248
+ # The GCP Service Account Email used for auth when secret_type is
1249
+ # gcpServiceAccount.
1250
+ # Corresponds to the JSON property `gcpServiceAccountEmail`
1251
+ # @return [String]
1252
+ attr_accessor :gcp_service_account_email
1253
+
1254
+ # The absolute path of the directory that contains the local resources. Default:
1255
+ # the root directory of the image.
1256
+ # Corresponds to the JSON property `policyDir`
1257
+ # @return [String]
1258
+ attr_accessor :policy_dir
1259
+
1260
+ # Type of secret configured for access to the Git repo.
1261
+ # Corresponds to the JSON property `secretType`
1262
+ # @return [String]
1263
+ attr_accessor :secret_type
1264
+
1265
+ # The OCI image repository URL for the package to sync from. e.g. `LOCATION-
1266
+ # docker.pkg.dev/PROJECT_ID/REPOSITORY_NAME/PACKAGE_NAME`.
1267
+ # Corresponds to the JSON property `syncRepo`
1268
+ # @return [String]
1269
+ attr_accessor :sync_repo
1270
+
1271
+ # Period in seconds between consecutive syncs. Default: 15.
1272
+ # Corresponds to the JSON property `syncWaitSecs`
1273
+ # @return [Fixnum]
1274
+ attr_accessor :sync_wait_secs
1275
+
1276
+ def initialize(**args)
1277
+ update!(**args)
1278
+ end
1279
+
1280
+ # Update properties of this object
1281
+ def update!(**args)
1282
+ @gcp_service_account_email = args[:gcp_service_account_email] if args.key?(:gcp_service_account_email)
1283
+ @policy_dir = args[:policy_dir] if args.key?(:policy_dir)
1284
+ @secret_type = args[:secret_type] if args.key?(:secret_type)
1285
+ @sync_repo = args[:sync_repo] if args.key?(:sync_repo)
1286
+ @sync_wait_secs = args[:sync_wait_secs] if args.key?(:sync_wait_secs)
1287
+ end
1288
+ end
1289
+
1217
1290
  # State information for an ACM's Operator
1218
1291
  class ConfigManagementOperatorState
1219
1292
  include Google::Apis::Core::Hashable
@@ -1274,6 +1347,13 @@ module Google
1274
1347
  attr_accessor :log_denies_enabled
1275
1348
  alias_method :log_denies_enabled?, :log_denies_enabled
1276
1349
 
1350
+ # PolicyControllerMonitoring specifies the backends Policy Controller should
1351
+ # export metrics to. For example, to specify metrics should be exported to Cloud
1352
+ # Monitoring and Prometheus, specify backends: ["cloudmonitoring", "prometheus"]
1353
+ # Corresponds to the JSON property `monitoring`
1354
+ # @return [Google::Apis::GkehubV1alpha::ConfigManagementPolicyControllerMonitoring]
1355
+ attr_accessor :monitoring
1356
+
1277
1357
  # Enable users to try out mutation for PolicyController.
1278
1358
  # Corresponds to the JSON property `mutationEnabled`
1279
1359
  # @return [Boolean]
@@ -1303,12 +1383,35 @@ module Google
1303
1383
  @enabled = args[:enabled] if args.key?(:enabled)
1304
1384
  @exemptable_namespaces = args[:exemptable_namespaces] if args.key?(:exemptable_namespaces)
1305
1385
  @log_denies_enabled = args[:log_denies_enabled] if args.key?(:log_denies_enabled)
1386
+ @monitoring = args[:monitoring] if args.key?(:monitoring)
1306
1387
  @mutation_enabled = args[:mutation_enabled] if args.key?(:mutation_enabled)
1307
1388
  @referential_rules_enabled = args[:referential_rules_enabled] if args.key?(:referential_rules_enabled)
1308
1389
  @template_library_installed = args[:template_library_installed] if args.key?(:template_library_installed)
1309
1390
  end
1310
1391
  end
1311
1392
 
1393
+ # PolicyControllerMonitoring specifies the backends Policy Controller should
1394
+ # export metrics to. For example, to specify metrics should be exported to Cloud
1395
+ # Monitoring and Prometheus, specify backends: ["cloudmonitoring", "prometheus"]
1396
+ class ConfigManagementPolicyControllerMonitoring
1397
+ include Google::Apis::Core::Hashable
1398
+
1399
+ # Specifies the list of backends Policy Controller will export to. An empty list
1400
+ # would effectively disable metrics export.
1401
+ # Corresponds to the JSON property `backends`
1402
+ # @return [Array<String>]
1403
+ attr_accessor :backends
1404
+
1405
+ def initialize(**args)
1406
+ update!(**args)
1407
+ end
1408
+
1409
+ # Update properties of this object
1410
+ def update!(**args)
1411
+ @backends = args[:backends] if args.key?(:backends)
1412
+ end
1413
+ end
1414
+
1312
1415
  # State for PolicyControllerState.
1313
1416
  class ConfigManagementPolicyControllerState
1314
1417
  include Google::Apis::Core::Hashable
@@ -2544,6 +2647,11 @@ module Google
2544
2647
  class MembershipEndpoint
2545
2648
  include Google::Apis::Core::Hashable
2546
2649
 
2650
+ # ApplianceCluster contains information specific to GDC Edge Appliance Clusters.
2651
+ # Corresponds to the JSON property `applianceCluster`
2652
+ # @return [Google::Apis::GkehubV1alpha::ApplianceCluster]
2653
+ attr_accessor :appliance_cluster
2654
+
2547
2655
  # EdgeCluster contains information specific to Google Edge Clusters.
2548
2656
  # Corresponds to the JSON property `edgeCluster`
2549
2657
  # @return [Google::Apis::GkehubV1alpha::EdgeCluster]
@@ -2583,6 +2691,7 @@ module Google
2583
2691
 
2584
2692
  # Update properties of this object
2585
2693
  def update!(**args)
2694
+ @appliance_cluster = args[:appliance_cluster] if args.key?(:appliance_cluster)
2586
2695
  @edge_cluster = args[:edge_cluster] if args.key?(:edge_cluster)
2587
2696
  @gke_cluster = args[:gke_cluster] if args.key?(:gke_cluster)
2588
2697
  @kubernetes_metadata = args[:kubernetes_metadata] if args.key?(:kubernetes_metadata)
@@ -2892,6 +3001,11 @@ module Google
2892
3001
  attr_accessor :cluster_missing
2893
3002
  alias_method :cluster_missing?, :cluster_missing
2894
3003
 
3004
+ # Immutable. The on prem cluster's type.
3005
+ # Corresponds to the JSON property `clusterType`
3006
+ # @return [String]
3007
+ attr_accessor :cluster_type
3008
+
2895
3009
  # Immutable. Self-link of the GCP resource for the GKE On-Prem cluster. For
2896
3010
  # example: //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/
2897
3011
  # vmwareClusters/my-cluster //gkeonprem.googleapis.com/projects/my-project/
@@ -2908,6 +3022,7 @@ module Google
2908
3022
  def update!(**args)
2909
3023
  @admin_cluster = args[:admin_cluster] if args.key?(:admin_cluster)
2910
3024
  @cluster_missing = args[:cluster_missing] if args.key?(:cluster_missing)
3025
+ @cluster_type = args[:cluster_type] if args.key?(:cluster_type)
2911
3026
  @resource_link = args[:resource_link] if args.key?(:resource_link)
2912
3027
  end
2913
3028
  end
@@ -3158,6 +3273,13 @@ module Google
3158
3273
  attr_accessor :log_denies_enabled
3159
3274
  alias_method :log_denies_enabled?, :log_denies_enabled
3160
3275
 
3276
+ # MonitoringConfig specifies the backends Policy Controller should export
3277
+ # metrics to. For example, to specify metrics should be exported to Cloud
3278
+ # Monitoring and Prometheus, specify backends: ["cloudmonitoring", "prometheus"]
3279
+ # Corresponds to the JSON property `monitoring`
3280
+ # @return [Google::Apis::GkehubV1alpha::PolicyControllerMonitoringConfig]
3281
+ attr_accessor :monitoring
3282
+
3161
3283
  # Enables the ability to mutate resources using Policy Controller.
3162
3284
  # Corresponds to the JSON property `mutationEnabled`
3163
3285
  # @return [Boolean]
@@ -3186,6 +3308,7 @@ module Google
3186
3308
  @exemptable_namespaces = args[:exemptable_namespaces] if args.key?(:exemptable_namespaces)
3187
3309
  @install_spec = args[:install_spec] if args.key?(:install_spec)
3188
3310
  @log_denies_enabled = args[:log_denies_enabled] if args.key?(:log_denies_enabled)
3311
+ @monitoring = args[:monitoring] if args.key?(:monitoring)
3189
3312
  @mutation_enabled = args[:mutation_enabled] if args.key?(:mutation_enabled)
3190
3313
  @referential_rules_enabled = args[:referential_rules_enabled] if args.key?(:referential_rules_enabled)
3191
3314
  @template_library_config = args[:template_library_config] if args.key?(:template_library_config)
@@ -3306,6 +3429,28 @@ module Google
3306
3429
  end
3307
3430
  end
3308
3431
 
3432
+ # MonitoringConfig specifies the backends Policy Controller should export
3433
+ # metrics to. For example, to specify metrics should be exported to Cloud
3434
+ # Monitoring and Prometheus, specify backends: ["cloudmonitoring", "prometheus"]
3435
+ class PolicyControllerMonitoringConfig
3436
+ include Google::Apis::Core::Hashable
3437
+
3438
+ # Specifies the list of backends Policy Controller will export to. An empty list
3439
+ # would effectively disable metrics export.
3440
+ # Corresponds to the JSON property `backends`
3441
+ # @return [Array<String>]
3442
+ attr_accessor :backends
3443
+
3444
+ def initialize(**args)
3445
+ update!(**args)
3446
+ end
3447
+
3448
+ # Update properties of this object
3449
+ def update!(**args)
3450
+ @backends = args[:backends] if args.key?(:backends)
3451
+ end
3452
+ end
3453
+
3309
3454
  # The config specifying which default library templates to install.
3310
3455
  class PolicyControllerTemplateLibraryConfig
3311
3456
  include Google::Apis::Core::Hashable
@@ -3500,6 +3645,31 @@ module Google
3500
3645
  end
3501
3646
  end
3502
3647
 
3648
+ # Status of data plane management. Only reported per-member.
3649
+ class ServiceMeshDataPlaneManagement
3650
+ include Google::Apis::Core::Hashable
3651
+
3652
+ # Explanation of the status.
3653
+ # Corresponds to the JSON property `details`
3654
+ # @return [Array<Google::Apis::GkehubV1alpha::ServiceMeshStatusDetails>]
3655
+ attr_accessor :details
3656
+
3657
+ # Lifecycle status of data plane management.
3658
+ # Corresponds to the JSON property `state`
3659
+ # @return [String]
3660
+ attr_accessor :state
3661
+
3662
+ def initialize(**args)
3663
+ update!(**args)
3664
+ end
3665
+
3666
+ # Update properties of this object
3667
+ def update!(**args)
3668
+ @details = args[:details] if args.key?(:details)
3669
+ @state = args[:state] if args.key?(:state)
3670
+ end
3671
+ end
3672
+
3503
3673
  # **Service Mesh**: State for the whole Hub, as analyzed by the Service Mesh Hub
3504
3674
  # Controller.
3505
3675
  class ServiceMeshFeatureState
@@ -3567,6 +3737,11 @@ module Google
3567
3737
  # @return [Google::Apis::GkehubV1alpha::ServiceMeshControlPlaneManagement]
3568
3738
  attr_accessor :control_plane_management
3569
3739
 
3740
+ # Status of data plane management. Only reported per-member.
3741
+ # Corresponds to the JSON property `dataPlaneManagement`
3742
+ # @return [Google::Apis::GkehubV1alpha::ServiceMeshDataPlaneManagement]
3743
+ attr_accessor :data_plane_management
3744
+
3570
3745
  def initialize(**args)
3571
3746
  update!(**args)
3572
3747
  end
@@ -3576,6 +3751,7 @@ module Google
3576
3751
  @analysis_messages = args[:analysis_messages] if args.key?(:analysis_messages)
3577
3752
  @config_api_version = args[:config_api_version] if args.key?(:config_api_version)
3578
3753
  @control_plane_management = args[:control_plane_management] if args.key?(:control_plane_management)
3754
+ @data_plane_management = args[:data_plane_management] if args.key?(:data_plane_management)
3579
3755
  end
3580
3756
  end
3581
3757
 
@@ -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.29.0"
19
+ GEM_VERSION = "0.32.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.1"
22
+ GENERATOR_VERSION = "0.8.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220505"
25
+ REVISION = "20220621"
26
26
  end
27
27
  end
28
28
  end
@@ -70,6 +70,12 @@ module Google
70
70
  include Google::Apis::Core::JsonObjectSupport
71
71
  end
72
72
 
73
+ class ApplianceCluster
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
73
79
  class AuditConfig
74
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
75
81
 
@@ -232,6 +238,12 @@ module Google
232
238
  include Google::Apis::Core::JsonObjectSupport
233
239
  end
234
240
 
241
+ class ConfigManagementOciConfig
242
+ class Representation < Google::Apis::Core::JsonRepresentation; end
243
+
244
+ include Google::Apis::Core::JsonObjectSupport
245
+ end
246
+
235
247
  class ConfigManagementOperatorState
236
248
  class Representation < Google::Apis::Core::JsonRepresentation; end
237
249
 
@@ -244,6 +256,12 @@ module Google
244
256
  include Google::Apis::Core::JsonObjectSupport
245
257
  end
246
258
 
259
+ class ConfigManagementPolicyControllerMonitoring
260
+ class Representation < Google::Apis::Core::JsonRepresentation; end
261
+
262
+ include Google::Apis::Core::JsonObjectSupport
263
+ end
264
+
247
265
  class ConfigManagementPolicyControllerState
248
266
  class Representation < Google::Apis::Core::JsonRepresentation; end
249
267
 
@@ -544,6 +562,12 @@ module Google
544
562
  include Google::Apis::Core::JsonObjectSupport
545
563
  end
546
564
 
565
+ class PolicyControllerMonitoringConfig
566
+ class Representation < Google::Apis::Core::JsonRepresentation; end
567
+
568
+ include Google::Apis::Core::JsonObjectSupport
569
+ end
570
+
547
571
  class PolicyControllerTemplateLibraryConfig
548
572
  class Representation < Google::Apis::Core::JsonRepresentation; end
549
573
 
@@ -580,6 +604,12 @@ module Google
580
604
  include Google::Apis::Core::JsonObjectSupport
581
605
  end
582
606
 
607
+ class ServiceMeshDataPlaneManagement
608
+ class Representation < Google::Apis::Core::JsonRepresentation; end
609
+
610
+ include Google::Apis::Core::JsonObjectSupport
611
+ end
612
+
583
613
  class ServiceMeshFeatureState
584
614
  class Representation < Google::Apis::Core::JsonRepresentation; end
585
615
 
@@ -724,6 +754,13 @@ module Google
724
754
  end
725
755
  end
726
756
 
757
+ class ApplianceCluster
758
+ # @private
759
+ class Representation < Google::Apis::Core::JsonRepresentation
760
+ property :resource_link, as: 'resourceLink'
761
+ end
762
+ end
763
+
727
764
  class AuditConfig
728
765
  # @private
729
766
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -839,6 +876,8 @@ module Google
839
876
  property :enabled, as: 'enabled'
840
877
  property :git, as: 'git', class: Google::Apis::GkehubV1alpha::ConfigManagementGitConfig, decorator: Google::Apis::GkehubV1alpha::ConfigManagementGitConfig::Representation
841
878
 
879
+ property :oci, as: 'oci', class: Google::Apis::GkehubV1alpha::ConfigManagementOciConfig, decorator: Google::Apis::GkehubV1alpha::ConfigManagementOciConfig::Representation
880
+
842
881
  property :prevent_drift, as: 'preventDrift'
843
882
  property :source_format, as: 'sourceFormat'
844
883
  end
@@ -1001,6 +1040,17 @@ module Google
1001
1040
  end
1002
1041
  end
1003
1042
 
1043
+ class ConfigManagementOciConfig
1044
+ # @private
1045
+ class Representation < Google::Apis::Core::JsonRepresentation
1046
+ property :gcp_service_account_email, as: 'gcpServiceAccountEmail'
1047
+ property :policy_dir, as: 'policyDir'
1048
+ property :secret_type, as: 'secretType'
1049
+ property :sync_repo, as: 'syncRepo'
1050
+ property :sync_wait_secs, :numeric_string => true, as: 'syncWaitSecs'
1051
+ end
1052
+ end
1053
+
1004
1054
  class ConfigManagementOperatorState
1005
1055
  # @private
1006
1056
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1018,12 +1068,21 @@ module Google
1018
1068
  property :enabled, as: 'enabled'
1019
1069
  collection :exemptable_namespaces, as: 'exemptableNamespaces'
1020
1070
  property :log_denies_enabled, as: 'logDeniesEnabled'
1071
+ property :monitoring, as: 'monitoring', class: Google::Apis::GkehubV1alpha::ConfigManagementPolicyControllerMonitoring, decorator: Google::Apis::GkehubV1alpha::ConfigManagementPolicyControllerMonitoring::Representation
1072
+
1021
1073
  property :mutation_enabled, as: 'mutationEnabled'
1022
1074
  property :referential_rules_enabled, as: 'referentialRulesEnabled'
1023
1075
  property :template_library_installed, as: 'templateLibraryInstalled'
1024
1076
  end
1025
1077
  end
1026
1078
 
1079
+ class ConfigManagementPolicyControllerMonitoring
1080
+ # @private
1081
+ class Representation < Google::Apis::Core::JsonRepresentation
1082
+ collection :backends, as: 'backends'
1083
+ end
1084
+ end
1085
+
1027
1086
  class ConfigManagementPolicyControllerState
1028
1087
  # @private
1029
1088
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1354,6 +1413,8 @@ module Google
1354
1413
  class MembershipEndpoint
1355
1414
  # @private
1356
1415
  class Representation < Google::Apis::Core::JsonRepresentation
1416
+ property :appliance_cluster, as: 'applianceCluster', class: Google::Apis::GkehubV1alpha::ApplianceCluster, decorator: Google::Apis::GkehubV1alpha::ApplianceCluster::Representation
1417
+
1357
1418
  property :edge_cluster, as: 'edgeCluster', class: Google::Apis::GkehubV1alpha::EdgeCluster, decorator: Google::Apis::GkehubV1alpha::EdgeCluster::Representation
1358
1419
 
1359
1420
  property :gke_cluster, as: 'gkeCluster', class: Google::Apis::GkehubV1alpha::GkeCluster, decorator: Google::Apis::GkehubV1alpha::GkeCluster::Representation
@@ -1468,6 +1529,7 @@ module Google
1468
1529
  class Representation < Google::Apis::Core::JsonRepresentation
1469
1530
  property :admin_cluster, as: 'adminCluster'
1470
1531
  property :cluster_missing, as: 'clusterMissing'
1532
+ property :cluster_type, as: 'clusterType'
1471
1533
  property :resource_link, as: 'resourceLink'
1472
1534
  end
1473
1535
  end
@@ -1516,6 +1578,8 @@ module Google
1516
1578
  collection :exemptable_namespaces, as: 'exemptableNamespaces'
1517
1579
  property :install_spec, as: 'installSpec'
1518
1580
  property :log_denies_enabled, as: 'logDeniesEnabled'
1581
+ property :monitoring, as: 'monitoring', class: Google::Apis::GkehubV1alpha::PolicyControllerMonitoringConfig, decorator: Google::Apis::GkehubV1alpha::PolicyControllerMonitoringConfig::Representation
1582
+
1519
1583
  property :mutation_enabled, as: 'mutationEnabled'
1520
1584
  property :referential_rules_enabled, as: 'referentialRulesEnabled'
1521
1585
  property :template_library_config, as: 'templateLibraryConfig', class: Google::Apis::GkehubV1alpha::PolicyControllerTemplateLibraryConfig, decorator: Google::Apis::GkehubV1alpha::PolicyControllerTemplateLibraryConfig::Representation
@@ -1560,6 +1624,13 @@ module Google
1560
1624
  end
1561
1625
  end
1562
1626
 
1627
+ class PolicyControllerMonitoringConfig
1628
+ # @private
1629
+ class Representation < Google::Apis::Core::JsonRepresentation
1630
+ collection :backends, as: 'backends'
1631
+ end
1632
+ end
1633
+
1563
1634
  class PolicyControllerTemplateLibraryConfig
1564
1635
  # @private
1565
1636
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1614,6 +1685,15 @@ module Google
1614
1685
  end
1615
1686
  end
1616
1687
 
1688
+ class ServiceMeshDataPlaneManagement
1689
+ # @private
1690
+ class Representation < Google::Apis::Core::JsonRepresentation
1691
+ collection :details, as: 'details', class: Google::Apis::GkehubV1alpha::ServiceMeshStatusDetails, decorator: Google::Apis::GkehubV1alpha::ServiceMeshStatusDetails::Representation
1692
+
1693
+ property :state, as: 'state'
1694
+ end
1695
+ end
1696
+
1617
1697
  class ServiceMeshFeatureState
1618
1698
  # @private
1619
1699
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1638,6 +1718,8 @@ module Google
1638
1718
  property :config_api_version, as: 'configApiVersion'
1639
1719
  property :control_plane_management, as: 'controlPlaneManagement', class: Google::Apis::GkehubV1alpha::ServiceMeshControlPlaneManagement, decorator: Google::Apis::GkehubV1alpha::ServiceMeshControlPlaneManagement::Representation
1640
1720
 
1721
+ property :data_plane_management, as: 'dataPlaneManagement', class: Google::Apis::GkehubV1alpha::ServiceMeshDataPlaneManagement, decorator: Google::Apis::GkehubV1alpha::ServiceMeshDataPlaneManagement::Representation
1722
+
1641
1723
  end
1642
1724
  end
1643
1725
 
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.29.0
4
+ version: 0.32.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: 2022-05-23 00:00:00.000000000 Z
11
+ date: 2022-07-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.4'
19
+ version: '0.7'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.4'
29
+ version: '0.7'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.29.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.32.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.5
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for GKE Hub API V1alpha