google-apis-gkehub_v1beta 0.76.0 → 0.78.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: e2034937028f9eb76a9c339bd60900d7f8ee69ed761ab89dbf206efbc37dcfb4
4
- data.tar.gz: 99a786074b1fdc8f3be40580e92764a51df88455c82b947f301e42c2fb5a937e
3
+ metadata.gz: '089ae329391882a15aa4cc5d4db3f0bfb191556f4d9ffe6fdd8fd6c126fe91b7'
4
+ data.tar.gz: 4620800c35e9aa29cfb17dd9fb7e05db7c509cc96c9e110402cc0ea6e4d68493
5
5
  SHA512:
6
- metadata.gz: c19cbc56232c0fe79e7b061bdc9fbf4ec91c33b27b61db5b0bfa4ecaff59d5bc4ef7f8baab6ba14e838cd6ebbd5746df3dc72cd7e3d7924035375458310ece33
7
- data.tar.gz: a4c7848ba7034fc10bd4f0baf6042868c44ed2883afce8381dd73db22911047929c06667f72c435adf81be804a450428802181df10cff8c1838098441ed76079
6
+ metadata.gz: 3fd3fbab52520772478f366a901942156f7430104bffe46f2d5637008ee2c85ea0bec89eb40301e17a2cc7ac4e84610fbf13cada711e773bef9528e0f0718b62
7
+ data.tar.gz: fc362761af5ae267e5fc63eeaed950174c1fee2d9ec5e9bbdfb9b3521e6c0c9dd0fb68b474eb62677ddd2a57e9843bbc2bd370c0bae7fd767f5d831cd6a9001e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-gkehub_v1beta
2
2
 
3
+ ### v0.78.0 (2024-12-02)
4
+
5
+ * Regenerated from discovery document revision 20241108
6
+ * Regenerated using generator version 0.15.1
7
+
8
+ ### v0.77.0 (2024-07-25)
9
+
10
+ * Regenerated from discovery document revision 20240706
11
+
3
12
  ### v0.76.0 (2024-05-19)
4
13
 
5
14
  * Regenerated from discovery document revision 20240511
@@ -232,6 +232,18 @@ module Google
232
232
  # @return [String]
233
233
  attr_accessor :oidc_jwks
234
234
 
235
+ # Optional. Output only. The identity provider for the scope-tenancy workload
236
+ # identity pool.
237
+ # Corresponds to the JSON property `scopeTenancyIdentityProvider`
238
+ # @return [String]
239
+ attr_accessor :scope_tenancy_identity_provider
240
+
241
+ # Optional. Output only. The name of the scope-tenancy workload identity pool.
242
+ # This pool is set in the fleet-level feature.
243
+ # Corresponds to the JSON property `scopeTenancyWorkloadIdentityPool`
244
+ # @return [String]
245
+ attr_accessor :scope_tenancy_workload_identity_pool
246
+
235
247
  # Output only. The name of the workload identity pool in which `issuer` will be
236
248
  # recognized. There is a single Workload Identity Pool per Hub that is shared
237
249
  # between all Memberships that belong to that Hub. For a Hub hosted in `
@@ -250,6 +262,8 @@ module Google
250
262
  @identity_provider = args[:identity_provider] if args.key?(:identity_provider)
251
263
  @issuer = args[:issuer] if args.key?(:issuer)
252
264
  @oidc_jwks = args[:oidc_jwks] if args.key?(:oidc_jwks)
265
+ @scope_tenancy_identity_provider = args[:scope_tenancy_identity_provider] if args.key?(:scope_tenancy_identity_provider)
266
+ @scope_tenancy_workload_identity_pool = args[:scope_tenancy_workload_identity_pool] if args.key?(:scope_tenancy_workload_identity_pool)
253
267
  @workload_identity_pool = args[:workload_identity_pool] if args.key?(:workload_identity_pool)
254
268
  end
255
269
  end
@@ -744,7 +758,7 @@ module Google
744
758
  end
745
759
  end
746
760
 
747
- # CommonFeatureSpec contains Hub-wide configuration information
761
+ # CommonFeatureSpec contains Fleet-wide configuration information
748
762
  class CommonFeatureSpec
749
763
  include Google::Apis::Core::Hashable
750
764
 
@@ -795,7 +809,7 @@ module Google
795
809
  end
796
810
  end
797
811
 
798
- # CommonFeatureState contains Hub-wide Feature status information.
812
+ # CommonFeatureState contains Fleet-wide Feature status information.
799
813
  class CommonFeatureState
800
814
  include Google::Apis::Core::Hashable
801
815
 
@@ -874,6 +888,51 @@ module Google
874
888
  end
875
889
  end
876
890
 
891
+ # CompliancePostureConfig defines the settings needed to enable/disable features
892
+ # for the Compliance Posture.
893
+ class CompliancePostureConfig
894
+ include Google::Apis::Core::Hashable
895
+
896
+ # List of enabled compliance standards.
897
+ # Corresponds to the JSON property `complianceStandards`
898
+ # @return [Array<Google::Apis::GkehubV1beta::ComplianceStandard>]
899
+ attr_accessor :compliance_standards
900
+
901
+ # Defines the enablement mode for Compliance Posture.
902
+ # Corresponds to the JSON property `mode`
903
+ # @return [String]
904
+ attr_accessor :mode
905
+
906
+ def initialize(**args)
907
+ update!(**args)
908
+ end
909
+
910
+ # Update properties of this object
911
+ def update!(**args)
912
+ @compliance_standards = args[:compliance_standards] if args.key?(:compliance_standards)
913
+ @mode = args[:mode] if args.key?(:mode)
914
+ end
915
+ end
916
+
917
+ #
918
+ class ComplianceStandard
919
+ include Google::Apis::Core::Hashable
920
+
921
+ # Name of the compliance standard.
922
+ # Corresponds to the JSON property `standard`
923
+ # @return [String]
924
+ attr_accessor :standard
925
+
926
+ def initialize(**args)
927
+ update!(**args)
928
+ end
929
+
930
+ # Update properties of this object
931
+ def update!(**args)
932
+ @standard = args[:standard] if args.key?(:standard)
933
+ end
934
+ end
935
+
877
936
  # Configuration for Binauthz
878
937
  class ConfigManagementBinauthzConfig
879
938
  include Google::Apis::Core::Hashable
@@ -969,6 +1028,10 @@ module Google
969
1028
  # enabled. The GSA should have the Monitoring Metric Writer (roles/monitoring.
970
1029
  # metricWriter) IAM role. The Kubernetes ServiceAccount `default` in the
971
1030
  # namespace `config-management-monitoring` should be bound to the GSA.
1031
+ # Deprecated: If Workload Identity Federation for GKE is enabled, Google Cloud
1032
+ # Service Account is no longer needed for exporting Config Sync metrics: https://
1033
+ # cloud.google.com/kubernetes-engine/enterprise/config-sync/docs/how-to/monitor-
1034
+ # config-sync-cloud-monitoring#custom-monitoring.
972
1035
  # Corresponds to the JSON property `metricsGcpServiceAccountEmail`
973
1036
  # @return [String]
974
1037
  attr_accessor :metrics_gcp_service_account_email
@@ -992,6 +1055,12 @@ module Google
992
1055
  # @return [String]
993
1056
  attr_accessor :source_format
994
1057
 
1058
+ # Set to true to stop syncing configs for a single cluster. Default to false.
1059
+ # Corresponds to the JSON property `stopSyncing`
1060
+ # @return [Boolean]
1061
+ attr_accessor :stop_syncing
1062
+ alias_method :stop_syncing?, :stop_syncing
1063
+
995
1064
  def initialize(**args)
996
1065
  update!(**args)
997
1066
  end
@@ -1005,6 +1074,7 @@ module Google
1005
1074
  @oci = args[:oci] if args.key?(:oci)
1006
1075
  @prevent_drift = args[:prevent_drift] if args.key?(:prevent_drift)
1007
1076
  @source_format = args[:source_format] if args.key?(:source_format)
1077
+ @stop_syncing = args[:stop_syncing] if args.key?(:stop_syncing)
1008
1078
  end
1009
1079
  end
1010
1080
 
@@ -1032,11 +1102,21 @@ module Google
1032
1102
  # @return [String]
1033
1103
  attr_accessor :monitor
1034
1104
 
1105
+ # Deployment state of otel-collector
1106
+ # Corresponds to the JSON property `otelCollector`
1107
+ # @return [String]
1108
+ attr_accessor :otel_collector
1109
+
1035
1110
  # Deployment state of reconciler-manager pod
1036
1111
  # Corresponds to the JSON property `reconcilerManager`
1037
1112
  # @return [String]
1038
1113
  attr_accessor :reconciler_manager
1039
1114
 
1115
+ # Deployment state of resource-group-controller-manager
1116
+ # Corresponds to the JSON property `resourceGroupControllerManager`
1117
+ # @return [String]
1118
+ attr_accessor :resource_group_controller_manager
1119
+
1040
1120
  # Deployment state of root-reconciler
1041
1121
  # Corresponds to the JSON property `rootReconciler`
1042
1122
  # @return [String]
@@ -1057,7 +1137,9 @@ module Google
1057
1137
  @git_sync = args[:git_sync] if args.key?(:git_sync)
1058
1138
  @importer = args[:importer] if args.key?(:importer)
1059
1139
  @monitor = args[:monitor] if args.key?(:monitor)
1140
+ @otel_collector = args[:otel_collector] if args.key?(:otel_collector)
1060
1141
  @reconciler_manager = args[:reconciler_manager] if args.key?(:reconciler_manager)
1142
+ @resource_group_controller_manager = args[:resource_group_controller_manager] if args.key?(:resource_group_controller_manager)
1061
1143
  @root_reconciler = args[:root_reconciler] if args.key?(:root_reconciler)
1062
1144
  @syncer = args[:syncer] if args.key?(:syncer)
1063
1145
  end
@@ -1086,6 +1168,16 @@ module Google
1086
1168
  class ConfigManagementConfigSyncState
1087
1169
  include Google::Apis::Core::Hashable
1088
1170
 
1171
+ # Whether syncing resources to the cluster is stopped at the cluster level.
1172
+ # Corresponds to the JSON property `clusterLevelStopSyncingState`
1173
+ # @return [String]
1174
+ attr_accessor :cluster_level_stop_syncing_state
1175
+
1176
+ # Output only. The number of RootSync and RepoSync CRs in the cluster.
1177
+ # Corresponds to the JSON property `crCount`
1178
+ # @return [Fixnum]
1179
+ attr_accessor :cr_count
1180
+
1089
1181
  # The state of ConfigSync's deployment on a cluster
1090
1182
  # Corresponds to the JSON property `deploymentState`
1091
1183
  # @return [Google::Apis::GkehubV1beta::ConfigManagementConfigSyncDeploymentState]
@@ -1127,6 +1219,8 @@ module Google
1127
1219
 
1128
1220
  # Update properties of this object
1129
1221
  def update!(**args)
1222
+ @cluster_level_stop_syncing_state = args[:cluster_level_stop_syncing_state] if args.key?(:cluster_level_stop_syncing_state)
1223
+ @cr_count = args[:cr_count] if args.key?(:cr_count)
1130
1224
  @deployment_state = args[:deployment_state] if args.key?(:deployment_state)
1131
1225
  @errors = args[:errors] if args.key?(:errors)
1132
1226
  @reposync_crd = args[:reposync_crd] if args.key?(:reposync_crd)
@@ -1141,7 +1235,7 @@ module Google
1141
1235
  class ConfigManagementConfigSyncVersion
1142
1236
  include Google::Apis::Core::Hashable
1143
1237
 
1144
- # Version of the deployed admission_webhook pod
1238
+ # Version of the deployed admission-webhook pod
1145
1239
  # Corresponds to the JSON property `admissionWebhook`
1146
1240
  # @return [String]
1147
1241
  attr_accessor :admission_webhook
@@ -1161,11 +1255,21 @@ module Google
1161
1255
  # @return [String]
1162
1256
  attr_accessor :monitor
1163
1257
 
1258
+ # Version of the deployed otel-collector pod
1259
+ # Corresponds to the JSON property `otelCollector`
1260
+ # @return [String]
1261
+ attr_accessor :otel_collector
1262
+
1164
1263
  # Version of the deployed reconciler-manager pod
1165
1264
  # Corresponds to the JSON property `reconcilerManager`
1166
1265
  # @return [String]
1167
1266
  attr_accessor :reconciler_manager
1168
1267
 
1268
+ # Version of the deployed resource-group-controller-manager pod
1269
+ # Corresponds to the JSON property `resourceGroupControllerManager`
1270
+ # @return [String]
1271
+ attr_accessor :resource_group_controller_manager
1272
+
1169
1273
  # Version of the deployed reconciler container in root-reconciler pod
1170
1274
  # Corresponds to the JSON property `rootReconciler`
1171
1275
  # @return [String]
@@ -1186,7 +1290,9 @@ module Google
1186
1290
  @git_sync = args[:git_sync] if args.key?(:git_sync)
1187
1291
  @importer = args[:importer] if args.key?(:importer)
1188
1292
  @monitor = args[:monitor] if args.key?(:monitor)
1293
+ @otel_collector = args[:otel_collector] if args.key?(:otel_collector)
1189
1294
  @reconciler_manager = args[:reconciler_manager] if args.key?(:reconciler_manager)
1295
+ @resource_group_controller_manager = args[:resource_group_controller_manager] if args.key?(:resource_group_controller_manager)
1190
1296
  @root_reconciler = args[:root_reconciler] if args.key?(:root_reconciler)
1191
1297
  @syncer = args[:syncer] if args.key?(:syncer)
1192
1298
  end
@@ -2004,6 +2110,12 @@ module Google
2004
2110
  # @return [Google::Apis::GkehubV1beta::BinaryAuthorizationConfig]
2005
2111
  attr_accessor :binary_authorization_config
2006
2112
 
2113
+ # CompliancePostureConfig defines the settings needed to enable/disable features
2114
+ # for the Compliance Posture.
2115
+ # Corresponds to the JSON property `compliancePostureConfig`
2116
+ # @return [Google::Apis::GkehubV1beta::CompliancePostureConfig]
2117
+ attr_accessor :compliance_posture_config
2118
+
2007
2119
  # SecurityPostureConfig defines the flags needed to enable/disable features for
2008
2120
  # the Security Posture API.
2009
2121
  # Corresponds to the JSON property `securityPostureConfig`
@@ -2017,6 +2129,7 @@ module Google
2017
2129
  # Update properties of this object
2018
2130
  def update!(**args)
2019
2131
  @binary_authorization_config = args[:binary_authorization_config] if args.key?(:binary_authorization_config)
2132
+ @compliance_posture_config = args[:compliance_posture_config] if args.key?(:compliance_posture_config)
2020
2133
  @security_posture_config = args[:security_posture_config] if args.key?(:security_posture_config)
2021
2134
  end
2022
2135
  end
@@ -2112,7 +2225,7 @@ module Google
2112
2225
  end
2113
2226
  end
2114
2227
 
2115
- # Feature represents the settings and status of any Hub Feature.
2228
+ # Feature represents the settings and status of any Fleet Feature.
2116
2229
  class Feature
2117
2230
  include Google::Apis::Core::Hashable
2118
2231
 
@@ -2169,8 +2282,8 @@ module Google
2169
2282
  attr_accessor :name
2170
2283
 
2171
2284
  # FeatureResourceState describes the state of a Feature *resource* in the GkeHub
2172
- # API. See `FeatureState` for the "running state" of the Feature in the Hub and
2173
- # across Memberships.
2285
+ # API. See `FeatureState` for the "running state" of the Feature in the Fleet
2286
+ # and across Memberships.
2174
2287
  # Corresponds to the JSON property `resourceState`
2175
2288
  # @return [Google::Apis::GkehubV1beta::FeatureResourceState]
2176
2289
  attr_accessor :resource_state
@@ -2198,16 +2311,22 @@ module Google
2198
2311
  # @return [Hash<String,Google::Apis::GkehubV1beta::ScopeFeatureState>]
2199
2312
  attr_accessor :scope_states
2200
2313
 
2201
- # CommonFeatureSpec contains Hub-wide configuration information
2314
+ # CommonFeatureSpec contains Fleet-wide configuration information
2202
2315
  # Corresponds to the JSON property `spec`
2203
2316
  # @return [Google::Apis::GkehubV1beta::CommonFeatureSpec]
2204
2317
  attr_accessor :spec
2205
2318
 
2206
- # CommonFeatureState contains Hub-wide Feature status information.
2319
+ # CommonFeatureState contains Fleet-wide Feature status information.
2207
2320
  # Corresponds to the JSON property `state`
2208
2321
  # @return [Google::Apis::GkehubV1beta::CommonFeatureState]
2209
2322
  attr_accessor :state
2210
2323
 
2324
+ # Output only. List of locations that could not be reached while fetching this
2325
+ # feature.
2326
+ # Corresponds to the JSON property `unreachable`
2327
+ # @return [Array<String>]
2328
+ attr_accessor :unreachable
2329
+
2211
2330
  # Output only. When the Feature resource was last updated.
2212
2331
  # Corresponds to the JSON property `updateTime`
2213
2332
  # @return [String]
@@ -2231,13 +2350,14 @@ module Google
2231
2350
  @scope_states = args[:scope_states] if args.key?(:scope_states)
2232
2351
  @spec = args[:spec] if args.key?(:spec)
2233
2352
  @state = args[:state] if args.key?(:state)
2353
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
2234
2354
  @update_time = args[:update_time] if args.key?(:update_time)
2235
2355
  end
2236
2356
  end
2237
2357
 
2238
2358
  # FeatureResourceState describes the state of a Feature *resource* in the GkeHub
2239
- # API. See `FeatureState` for the "running state" of the Feature in the Hub and
2240
- # across Memberships.
2359
+ # API. See `FeatureState` for the "running state" of the Feature in the Fleet
2360
+ # and across Memberships.
2241
2361
  class FeatureResourceState
2242
2362
  include Google::Apis::Core::Hashable
2243
2363
 
@@ -2817,6 +2937,33 @@ module Google
2817
2937
  end
2818
2938
  end
2819
2939
 
2940
+ # Configuration options for the AIS diagnostic interface.
2941
+ class IdentityServiceDiagnosticInterface
2942
+ include Google::Apis::Core::Hashable
2943
+
2944
+ # Determines whether to enable the diagnostic interface.
2945
+ # Corresponds to the JSON property `enabled`
2946
+ # @return [Boolean]
2947
+ attr_accessor :enabled
2948
+ alias_method :enabled?, :enabled
2949
+
2950
+ # Determines the expiration time of the diagnostic interface enablement. When
2951
+ # reached, requests to the interface would be automatically rejected.
2952
+ # Corresponds to the JSON property `expirationTime`
2953
+ # @return [String]
2954
+ attr_accessor :expiration_time
2955
+
2956
+ def initialize(**args)
2957
+ update!(**args)
2958
+ end
2959
+
2960
+ # Update properties of this object
2961
+ def update!(**args)
2962
+ @enabled = args[:enabled] if args.key?(:enabled)
2963
+ @expiration_time = args[:expiration_time] if args.key?(:expiration_time)
2964
+ end
2965
+ end
2966
+
2820
2967
  # Configuration for the Google Plugin Auth flow.
2821
2968
  class IdentityServiceGoogleConfig
2822
2969
  include Google::Apis::Core::Hashable
@@ -2879,8 +3026,12 @@ module Google
2879
3026
  class IdentityServiceIdentityServiceOptions
2880
3027
  include Google::Apis::Core::Hashable
2881
3028
 
2882
- # Optional. Determines the lifespan of STS tokens issued by Anthos Identity
2883
- # Service.
3029
+ # Configuration options for the AIS diagnostic interface.
3030
+ # Corresponds to the JSON property `diagnosticInterface`
3031
+ # @return [Google::Apis::GkehubV1beta::IdentityServiceDiagnosticInterface]
3032
+ attr_accessor :diagnostic_interface
3033
+
3034
+ # Determines the lifespan of STS tokens issued by Anthos Identity Service.
2884
3035
  # Corresponds to the JSON property `sessionDuration`
2885
3036
  # @return [String]
2886
3037
  attr_accessor :session_duration
@@ -2891,6 +3042,7 @@ module Google
2891
3042
 
2892
3043
  # Update properties of this object
2893
3044
  def update!(**args)
3045
+ @diagnostic_interface = args[:diagnostic_interface] if args.key?(:diagnostic_interface)
2894
3046
  @session_duration = args[:session_duration] if args.key?(:session_duration)
2895
3047
  end
2896
3048
  end
@@ -3822,6 +3974,11 @@ module Google
3822
3974
  # @return [Google::Apis::GkehubV1beta::Authority]
3823
3975
  attr_accessor :authority
3824
3976
 
3977
+ # Output only. The tier of the cluster.
3978
+ # Corresponds to the JSON property `clusterTier`
3979
+ # @return [String]
3980
+ attr_accessor :cluster_tier
3981
+
3825
3982
  # Output only. When the Membership was created.
3826
3983
  # Corresponds to the JSON property `createTime`
3827
3984
  # @return [String]
@@ -3908,6 +4065,7 @@ module Google
3908
4065
  # Update properties of this object
3909
4066
  def update!(**args)
3910
4067
  @authority = args[:authority] if args.key?(:authority)
4068
+ @cluster_tier = args[:cluster_tier] if args.key?(:cluster_tier)
3911
4069
  @create_time = args[:create_time] if args.key?(:create_time)
3912
4070
  @delete_time = args[:delete_time] if args.key?(:delete_time)
3913
4071
  @description = args[:description] if args.key?(:description)
@@ -4075,7 +4233,7 @@ module Google
4075
4233
  end
4076
4234
 
4077
4235
  # MembershipFeatureSpec contains configuration information for a single
4078
- # Membership. NOTE: Please use snake case in your feature name.
4236
+ # Membership.
4079
4237
  class MembershipFeatureSpec
4080
4238
  include Google::Apis::Core::Hashable
4081
4239
 
@@ -5313,15 +5471,15 @@ module Google
5313
5471
  class ResourceManifest
5314
5472
  include Google::Apis::Core::Hashable
5315
5473
 
5316
- # Whether the resource provided in the manifest is `cluster_scoped`. If unset,
5317
- # the manifest is assumed to be namespace scoped. This field is used for REST
5318
- # mapping when applying the resource in a cluster.
5474
+ # Output only. Whether the resource provided in the manifest is `cluster_scoped`.
5475
+ # If unset, the manifest is assumed to be namespace scoped. This field is used
5476
+ # for REST mapping when applying the resource in a cluster.
5319
5477
  # Corresponds to the JSON property `clusterScoped`
5320
5478
  # @return [Boolean]
5321
5479
  attr_accessor :cluster_scoped
5322
5480
  alias_method :cluster_scoped?, :cluster_scoped
5323
5481
 
5324
- # YAML manifest of the resource.
5482
+ # Output only. YAML manifest of the resource.
5325
5483
  # Corresponds to the JSON property `manifest`
5326
5484
  # @return [String]
5327
5485
  attr_accessor :manifest
@@ -5639,13 +5797,19 @@ module Google
5639
5797
  class ServiceMeshMembershipSpec
5640
5798
  include Google::Apis::Core::Hashable
5641
5799
 
5800
+ # Optional. Specifies the API that will be used for configuring the mesh
5801
+ # workloads.
5802
+ # Corresponds to the JSON property `configApi`
5803
+ # @return [String]
5804
+ attr_accessor :config_api
5805
+
5642
5806
  # Deprecated: use `management` instead Enables automatic control plane
5643
5807
  # management.
5644
5808
  # Corresponds to the JSON property `controlPlane`
5645
5809
  # @return [String]
5646
5810
  attr_accessor :control_plane
5647
5811
 
5648
- # Enables automatic Service Mesh management.
5812
+ # Optional. Enables automatic Service Mesh management.
5649
5813
  # Corresponds to the JSON property `management`
5650
5814
  # @return [String]
5651
5815
  attr_accessor :management
@@ -5656,6 +5820,7 @@ module Google
5656
5820
 
5657
5821
  # Update properties of this object
5658
5822
  def update!(**args)
5823
+ @config_api = args[:config_api] if args.key?(:config_api)
5659
5824
  @control_plane = args[:control_plane] if args.key?(:control_plane)
5660
5825
  @management = args[:management] if args.key?(:management)
5661
5826
  end
@@ -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.76.0"
19
+ GEM_VERSION = "0.78.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240511"
25
+ REVISION = "20241108"
26
26
  end
27
27
  end
28
28
  end
@@ -178,6 +178,18 @@ module Google
178
178
  include Google::Apis::Core::JsonObjectSupport
179
179
  end
180
180
 
181
+ class CompliancePostureConfig
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
187
+ class ComplianceStandard
188
+ class Representation < Google::Apis::Core::JsonRepresentation; end
189
+
190
+ include Google::Apis::Core::JsonObjectSupport
191
+ end
192
+
181
193
  class ConfigManagementBinauthzConfig
182
194
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
195
 
@@ -508,6 +520,12 @@ module Google
508
520
  include Google::Apis::Core::JsonObjectSupport
509
521
  end
510
522
 
523
+ class IdentityServiceDiagnosticInterface
524
+ class Representation < Google::Apis::Core::JsonRepresentation; end
525
+
526
+ include Google::Apis::Core::JsonObjectSupport
527
+ end
528
+
511
529
  class IdentityServiceGoogleConfig
512
530
  class Representation < Google::Apis::Core::JsonRepresentation; end
513
531
 
@@ -1055,6 +1073,8 @@ module Google
1055
1073
  property :identity_provider, as: 'identityProvider'
1056
1074
  property :issuer, as: 'issuer'
1057
1075
  property :oidc_jwks, :base64 => true, as: 'oidcJwks'
1076
+ property :scope_tenancy_identity_provider, as: 'scopeTenancyIdentityProvider'
1077
+ property :scope_tenancy_workload_identity_pool, as: 'scopeTenancyWorkloadIdentityPool'
1058
1078
  property :workload_identity_pool, as: 'workloadIdentityPool'
1059
1079
  end
1060
1080
  end
@@ -1245,6 +1265,22 @@ module Google
1245
1265
  end
1246
1266
  end
1247
1267
 
1268
+ class CompliancePostureConfig
1269
+ # @private
1270
+ class Representation < Google::Apis::Core::JsonRepresentation
1271
+ collection :compliance_standards, as: 'complianceStandards', class: Google::Apis::GkehubV1beta::ComplianceStandard, decorator: Google::Apis::GkehubV1beta::ComplianceStandard::Representation
1272
+
1273
+ property :mode, as: 'mode'
1274
+ end
1275
+ end
1276
+
1277
+ class ComplianceStandard
1278
+ # @private
1279
+ class Representation < Google::Apis::Core::JsonRepresentation
1280
+ property :standard, as: 'standard'
1281
+ end
1282
+ end
1283
+
1248
1284
  class ConfigManagementBinauthzConfig
1249
1285
  # @private
1250
1286
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1280,6 +1316,7 @@ module Google
1280
1316
 
1281
1317
  property :prevent_drift, as: 'preventDrift'
1282
1318
  property :source_format, as: 'sourceFormat'
1319
+ property :stop_syncing, as: 'stopSyncing'
1283
1320
  end
1284
1321
  end
1285
1322
 
@@ -1290,7 +1327,9 @@ module Google
1290
1327
  property :git_sync, as: 'gitSync'
1291
1328
  property :importer, as: 'importer'
1292
1329
  property :monitor, as: 'monitor'
1330
+ property :otel_collector, as: 'otelCollector'
1293
1331
  property :reconciler_manager, as: 'reconcilerManager'
1332
+ property :resource_group_controller_manager, as: 'resourceGroupControllerManager'
1294
1333
  property :root_reconciler, as: 'rootReconciler'
1295
1334
  property :syncer, as: 'syncer'
1296
1335
  end
@@ -1306,6 +1345,8 @@ module Google
1306
1345
  class ConfigManagementConfigSyncState
1307
1346
  # @private
1308
1347
  class Representation < Google::Apis::Core::JsonRepresentation
1348
+ property :cluster_level_stop_syncing_state, as: 'clusterLevelStopSyncingState'
1349
+ property :cr_count, as: 'crCount'
1309
1350
  property :deployment_state, as: 'deploymentState', class: Google::Apis::GkehubV1beta::ConfigManagementConfigSyncDeploymentState, decorator: Google::Apis::GkehubV1beta::ConfigManagementConfigSyncDeploymentState::Representation
1310
1351
 
1311
1352
  collection :errors, as: 'errors', class: Google::Apis::GkehubV1beta::ConfigManagementConfigSyncError, decorator: Google::Apis::GkehubV1beta::ConfigManagementConfigSyncError::Representation
@@ -1327,7 +1368,9 @@ module Google
1327
1368
  property :git_sync, as: 'gitSync'
1328
1369
  property :importer, as: 'importer'
1329
1370
  property :monitor, as: 'monitor'
1371
+ property :otel_collector, as: 'otelCollector'
1330
1372
  property :reconciler_manager, as: 'reconcilerManager'
1373
+ property :resource_group_controller_manager, as: 'resourceGroupControllerManager'
1331
1374
  property :root_reconciler, as: 'rootReconciler'
1332
1375
  property :syncer, as: 'syncer'
1333
1376
  end
@@ -1570,6 +1613,8 @@ module Google
1570
1613
  class Representation < Google::Apis::Core::JsonRepresentation
1571
1614
  property :binary_authorization_config, as: 'binaryAuthorizationConfig', class: Google::Apis::GkehubV1beta::BinaryAuthorizationConfig, decorator: Google::Apis::GkehubV1beta::BinaryAuthorizationConfig::Representation
1572
1615
 
1616
+ property :compliance_posture_config, as: 'compliancePostureConfig', class: Google::Apis::GkehubV1beta::CompliancePostureConfig, decorator: Google::Apis::GkehubV1beta::CompliancePostureConfig::Representation
1617
+
1573
1618
  property :security_posture_config, as: 'securityPostureConfig', class: Google::Apis::GkehubV1beta::SecurityPostureConfig, decorator: Google::Apis::GkehubV1beta::SecurityPostureConfig::Representation
1574
1619
 
1575
1620
  end
@@ -1621,6 +1666,7 @@ module Google
1621
1666
 
1622
1667
  property :state, as: 'state', class: Google::Apis::GkehubV1beta::CommonFeatureState, decorator: Google::Apis::GkehubV1beta::CommonFeatureState::Representation
1623
1668
 
1669
+ collection :unreachable, as: 'unreachable'
1624
1670
  property :update_time, as: 'updateTime'
1625
1671
  end
1626
1672
  end
@@ -1810,6 +1856,14 @@ module Google
1810
1856
  end
1811
1857
  end
1812
1858
 
1859
+ class IdentityServiceDiagnosticInterface
1860
+ # @private
1861
+ class Representation < Google::Apis::Core::JsonRepresentation
1862
+ property :enabled, as: 'enabled'
1863
+ property :expiration_time, as: 'expirationTime'
1864
+ end
1865
+ end
1866
+
1813
1867
  class IdentityServiceGoogleConfig
1814
1868
  # @private
1815
1869
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1829,6 +1883,8 @@ module Google
1829
1883
  class IdentityServiceIdentityServiceOptions
1830
1884
  # @private
1831
1885
  class Representation < Google::Apis::Core::JsonRepresentation
1886
+ property :diagnostic_interface, as: 'diagnosticInterface', class: Google::Apis::GkehubV1beta::IdentityServiceDiagnosticInterface, decorator: Google::Apis::GkehubV1beta::IdentityServiceDiagnosticInterface::Representation
1887
+
1832
1888
  property :session_duration, as: 'sessionDuration'
1833
1889
  end
1834
1890
  end
@@ -2091,6 +2147,7 @@ module Google
2091
2147
  class Representation < Google::Apis::Core::JsonRepresentation
2092
2148
  property :authority, as: 'authority', class: Google::Apis::GkehubV1beta::Authority, decorator: Google::Apis::GkehubV1beta::Authority::Representation
2093
2149
 
2150
+ property :cluster_tier, as: 'clusterTier'
2094
2151
  property :create_time, as: 'createTime'
2095
2152
  property :delete_time, as: 'deleteTime'
2096
2153
  property :description, as: 'description'
@@ -2588,6 +2645,7 @@ module Google
2588
2645
  class ServiceMeshMembershipSpec
2589
2646
  # @private
2590
2647
  class Representation < Google::Apis::Core::JsonRepresentation
2648
+ property :config_api, as: 'configApi'
2591
2649
  property :control_plane, as: 'controlPlane'
2592
2650
  property :management, as: 'management'
2593
2651
  end
@@ -267,6 +267,11 @@ module Google
267
267
  # @param [String] name
268
268
  # Required. The Feature resource name in the format `projects/*/locations/*/
269
269
  # features/*`
270
+ # @param [Boolean] return_partial_success
271
+ # Optional. If set to true, the response will return partial results when some
272
+ # regions are unreachable and the unreachable field in Feature proto will be
273
+ # populated. If set to false, the request will fail when some regions are
274
+ # unreachable.
270
275
  # @param [String] fields
271
276
  # Selector specifying which fields to include in a partial response.
272
277
  # @param [String] quota_user
@@ -284,11 +289,12 @@ module Google
284
289
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
285
290
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
286
291
  # @raise [Google::Apis::AuthorizationError] Authorization is required
287
- def get_project_location_feature(name, fields: nil, quota_user: nil, options: nil, &block)
292
+ def get_project_location_feature(name, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
288
293
  command = make_simple_command(:get, 'v1beta/{+name}', options)
289
294
  command.response_representation = Google::Apis::GkehubV1beta::Feature::Representation
290
295
  command.response_class = Google::Apis::GkehubV1beta::Feature
291
296
  command.params['name'] = name unless name.nil?
297
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
292
298
  command.query['fields'] = fields unless fields.nil?
293
299
  command.query['quotaUser'] = quota_user unless quota_user.nil?
294
300
  execute_or_queue_command(command, &block)
@@ -359,6 +365,11 @@ module Google
359
365
  # @param [String] page_token
360
366
  # Token returned by previous call to `ListFeatures` which specifies the position
361
367
  # in the list from where to continue listing the resources.
368
+ # @param [Boolean] return_partial_success
369
+ # Optional. If set to true, the response will return partial results when some
370
+ # regions are unreachable and the unreachable field in Feature proto will be
371
+ # populated. If set to false, the request will fail when some regions are
372
+ # unreachable.
362
373
  # @param [String] fields
363
374
  # Selector specifying which fields to include in a partial response.
364
375
  # @param [String] quota_user
@@ -376,7 +387,7 @@ module Google
376
387
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
377
388
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
378
389
  # @raise [Google::Apis::AuthorizationError] Authorization is required
379
- def list_project_location_features(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
390
+ def list_project_location_features(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
380
391
  command = make_simple_command(:get, 'v1beta/{+parent}/features', options)
381
392
  command.response_representation = Google::Apis::GkehubV1beta::ListFeaturesResponse::Representation
382
393
  command.response_class = Google::Apis::GkehubV1beta::ListFeaturesResponse
@@ -385,6 +396,7 @@ module Google
385
396
  command.query['orderBy'] = order_by unless order_by.nil?
386
397
  command.query['pageSize'] = page_size unless page_size.nil?
387
398
  command.query['pageToken'] = page_token unless page_token.nil?
399
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
388
400
  command.query['fields'] = fields unless fields.nil?
389
401
  command.query['quotaUser'] = quota_user unless quota_user.nil?
390
402
  execute_or_queue_command(command, &block)
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.76.0
4
+ version: 0.78.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: 2024-05-19 00:00:00.000000000 Z
11
+ date: 2024-12-04 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.76.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.78.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: []
@@ -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.5.6
78
+ rubygems_version: 3.5.22
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for GKE Hub API V1beta