google-apis-gkehub_v1beta 0.77.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '089ae329391882a15aa4cc5d4db3f0bfb191556f4d9ffe6fdd8fd6c126fe91b7'
|
4
|
+
data.tar.gz: 4620800c35e9aa29cfb17dd9fb7e05db7c509cc96c9e110402cc0ea6e4d68493
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3fd3fbab52520772478f366a901942156f7430104bffe46f2d5637008ee2c85ea0bec89eb40301e17a2cc7ac4e84610fbf13cada711e773bef9528e0f0718b62
|
7
|
+
data.tar.gz: fc362761af5ae267e5fc63eeaed950174c1fee2d9ec5e9bbdfb9b3521e6c0c9dd0fb68b474eb62677ddd2a57e9843bbc2bd370c0bae7fd767f5d831cd6a9001e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
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
|
+
|
3
8
|
### v0.77.0 (2024-07-25)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240706
|
@@ -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
|
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
|
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
|
|
@@ -1098,6 +1168,16 @@ module Google
|
|
1098
1168
|
class ConfigManagementConfigSyncState
|
1099
1169
|
include Google::Apis::Core::Hashable
|
1100
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
|
+
|
1101
1181
|
# The state of ConfigSync's deployment on a cluster
|
1102
1182
|
# Corresponds to the JSON property `deploymentState`
|
1103
1183
|
# @return [Google::Apis::GkehubV1beta::ConfigManagementConfigSyncDeploymentState]
|
@@ -1139,6 +1219,8 @@ module Google
|
|
1139
1219
|
|
1140
1220
|
# Update properties of this object
|
1141
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)
|
1142
1224
|
@deployment_state = args[:deployment_state] if args.key?(:deployment_state)
|
1143
1225
|
@errors = args[:errors] if args.key?(:errors)
|
1144
1226
|
@reposync_crd = args[:reposync_crd] if args.key?(:reposync_crd)
|
@@ -2028,6 +2110,12 @@ module Google
|
|
2028
2110
|
# @return [Google::Apis::GkehubV1beta::BinaryAuthorizationConfig]
|
2029
2111
|
attr_accessor :binary_authorization_config
|
2030
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
|
+
|
2031
2119
|
# SecurityPostureConfig defines the flags needed to enable/disable features for
|
2032
2120
|
# the Security Posture API.
|
2033
2121
|
# Corresponds to the JSON property `securityPostureConfig`
|
@@ -2041,6 +2129,7 @@ module Google
|
|
2041
2129
|
# Update properties of this object
|
2042
2130
|
def update!(**args)
|
2043
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)
|
2044
2133
|
@security_posture_config = args[:security_posture_config] if args.key?(:security_posture_config)
|
2045
2134
|
end
|
2046
2135
|
end
|
@@ -2136,7 +2225,7 @@ module Google
|
|
2136
2225
|
end
|
2137
2226
|
end
|
2138
2227
|
|
2139
|
-
# Feature represents the settings and status of any
|
2228
|
+
# Feature represents the settings and status of any Fleet Feature.
|
2140
2229
|
class Feature
|
2141
2230
|
include Google::Apis::Core::Hashable
|
2142
2231
|
|
@@ -2193,8 +2282,8 @@ module Google
|
|
2193
2282
|
attr_accessor :name
|
2194
2283
|
|
2195
2284
|
# FeatureResourceState describes the state of a Feature *resource* in the GkeHub
|
2196
|
-
# API. See `FeatureState` for the "running state" of the Feature in the
|
2197
|
-
# across Memberships.
|
2285
|
+
# API. See `FeatureState` for the "running state" of the Feature in the Fleet
|
2286
|
+
# and across Memberships.
|
2198
2287
|
# Corresponds to the JSON property `resourceState`
|
2199
2288
|
# @return [Google::Apis::GkehubV1beta::FeatureResourceState]
|
2200
2289
|
attr_accessor :resource_state
|
@@ -2222,16 +2311,22 @@ module Google
|
|
2222
2311
|
# @return [Hash<String,Google::Apis::GkehubV1beta::ScopeFeatureState>]
|
2223
2312
|
attr_accessor :scope_states
|
2224
2313
|
|
2225
|
-
# CommonFeatureSpec contains
|
2314
|
+
# CommonFeatureSpec contains Fleet-wide configuration information
|
2226
2315
|
# Corresponds to the JSON property `spec`
|
2227
2316
|
# @return [Google::Apis::GkehubV1beta::CommonFeatureSpec]
|
2228
2317
|
attr_accessor :spec
|
2229
2318
|
|
2230
|
-
# CommonFeatureState contains
|
2319
|
+
# CommonFeatureState contains Fleet-wide Feature status information.
|
2231
2320
|
# Corresponds to the JSON property `state`
|
2232
2321
|
# @return [Google::Apis::GkehubV1beta::CommonFeatureState]
|
2233
2322
|
attr_accessor :state
|
2234
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
|
+
|
2235
2330
|
# Output only. When the Feature resource was last updated.
|
2236
2331
|
# Corresponds to the JSON property `updateTime`
|
2237
2332
|
# @return [String]
|
@@ -2255,13 +2350,14 @@ module Google
|
|
2255
2350
|
@scope_states = args[:scope_states] if args.key?(:scope_states)
|
2256
2351
|
@spec = args[:spec] if args.key?(:spec)
|
2257
2352
|
@state = args[:state] if args.key?(:state)
|
2353
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2258
2354
|
@update_time = args[:update_time] if args.key?(:update_time)
|
2259
2355
|
end
|
2260
2356
|
end
|
2261
2357
|
|
2262
2358
|
# FeatureResourceState describes the state of a Feature *resource* in the GkeHub
|
2263
|
-
# API. See `FeatureState` for the "running state" of the Feature in the
|
2264
|
-
# across Memberships.
|
2359
|
+
# API. See `FeatureState` for the "running state" of the Feature in the Fleet
|
2360
|
+
# and across Memberships.
|
2265
2361
|
class FeatureResourceState
|
2266
2362
|
include Google::Apis::Core::Hashable
|
2267
2363
|
|
@@ -2841,6 +2937,33 @@ module Google
|
|
2841
2937
|
end
|
2842
2938
|
end
|
2843
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
|
+
|
2844
2967
|
# Configuration for the Google Plugin Auth flow.
|
2845
2968
|
class IdentityServiceGoogleConfig
|
2846
2969
|
include Google::Apis::Core::Hashable
|
@@ -2903,8 +3026,12 @@ module Google
|
|
2903
3026
|
class IdentityServiceIdentityServiceOptions
|
2904
3027
|
include Google::Apis::Core::Hashable
|
2905
3028
|
|
2906
|
-
#
|
2907
|
-
#
|
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.
|
2908
3035
|
# Corresponds to the JSON property `sessionDuration`
|
2909
3036
|
# @return [String]
|
2910
3037
|
attr_accessor :session_duration
|
@@ -2915,6 +3042,7 @@ module Google
|
|
2915
3042
|
|
2916
3043
|
# Update properties of this object
|
2917
3044
|
def update!(**args)
|
3045
|
+
@diagnostic_interface = args[:diagnostic_interface] if args.key?(:diagnostic_interface)
|
2918
3046
|
@session_duration = args[:session_duration] if args.key?(:session_duration)
|
2919
3047
|
end
|
2920
3048
|
end
|
@@ -3846,6 +3974,11 @@ module Google
|
|
3846
3974
|
# @return [Google::Apis::GkehubV1beta::Authority]
|
3847
3975
|
attr_accessor :authority
|
3848
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
|
+
|
3849
3982
|
# Output only. When the Membership was created.
|
3850
3983
|
# Corresponds to the JSON property `createTime`
|
3851
3984
|
# @return [String]
|
@@ -3932,6 +4065,7 @@ module Google
|
|
3932
4065
|
# Update properties of this object
|
3933
4066
|
def update!(**args)
|
3934
4067
|
@authority = args[:authority] if args.key?(:authority)
|
4068
|
+
@cluster_tier = args[:cluster_tier] if args.key?(:cluster_tier)
|
3935
4069
|
@create_time = args[:create_time] if args.key?(:create_time)
|
3936
4070
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
3937
4071
|
@description = args[:description] if args.key?(:description)
|
@@ -4099,7 +4233,7 @@ module Google
|
|
4099
4233
|
end
|
4100
4234
|
|
4101
4235
|
# MembershipFeatureSpec contains configuration information for a single
|
4102
|
-
# Membership.
|
4236
|
+
# Membership.
|
4103
4237
|
class MembershipFeatureSpec
|
4104
4238
|
include Google::Apis::Core::Hashable
|
4105
4239
|
|
@@ -5337,15 +5471,15 @@ module Google
|
|
5337
5471
|
class ResourceManifest
|
5338
5472
|
include Google::Apis::Core::Hashable
|
5339
5473
|
|
5340
|
-
# Whether the resource provided in the manifest is `cluster_scoped`.
|
5341
|
-
# the manifest is assumed to be namespace scoped. This field is used
|
5342
|
-
# 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.
|
5343
5477
|
# Corresponds to the JSON property `clusterScoped`
|
5344
5478
|
# @return [Boolean]
|
5345
5479
|
attr_accessor :cluster_scoped
|
5346
5480
|
alias_method :cluster_scoped?, :cluster_scoped
|
5347
5481
|
|
5348
|
-
# YAML manifest of the resource.
|
5482
|
+
# Output only. YAML manifest of the resource.
|
5349
5483
|
# Corresponds to the JSON property `manifest`
|
5350
5484
|
# @return [String]
|
5351
5485
|
attr_accessor :manifest
|
@@ -5663,6 +5797,12 @@ module Google
|
|
5663
5797
|
class ServiceMeshMembershipSpec
|
5664
5798
|
include Google::Apis::Core::Hashable
|
5665
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
|
+
|
5666
5806
|
# Deprecated: use `management` instead Enables automatic control plane
|
5667
5807
|
# management.
|
5668
5808
|
# Corresponds to the JSON property `controlPlane`
|
@@ -5680,6 +5820,7 @@ module Google
|
|
5680
5820
|
|
5681
5821
|
# Update properties of this object
|
5682
5822
|
def update!(**args)
|
5823
|
+
@config_api = args[:config_api] if args.key?(:config_api)
|
5683
5824
|
@control_plane = args[:control_plane] if args.key?(:control_plane)
|
5684
5825
|
@management = args[:management] if args.key?(:management)
|
5685
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.
|
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.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
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
|
|
@@ -1308,6 +1345,8 @@ module Google
|
|
1308
1345
|
class ConfigManagementConfigSyncState
|
1309
1346
|
# @private
|
1310
1347
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1348
|
+
property :cluster_level_stop_syncing_state, as: 'clusterLevelStopSyncingState'
|
1349
|
+
property :cr_count, as: 'crCount'
|
1311
1350
|
property :deployment_state, as: 'deploymentState', class: Google::Apis::GkehubV1beta::ConfigManagementConfigSyncDeploymentState, decorator: Google::Apis::GkehubV1beta::ConfigManagementConfigSyncDeploymentState::Representation
|
1312
1351
|
|
1313
1352
|
collection :errors, as: 'errors', class: Google::Apis::GkehubV1beta::ConfigManagementConfigSyncError, decorator: Google::Apis::GkehubV1beta::ConfigManagementConfigSyncError::Representation
|
@@ -1574,6 +1613,8 @@ module Google
|
|
1574
1613
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1575
1614
|
property :binary_authorization_config, as: 'binaryAuthorizationConfig', class: Google::Apis::GkehubV1beta::BinaryAuthorizationConfig, decorator: Google::Apis::GkehubV1beta::BinaryAuthorizationConfig::Representation
|
1576
1615
|
|
1616
|
+
property :compliance_posture_config, as: 'compliancePostureConfig', class: Google::Apis::GkehubV1beta::CompliancePostureConfig, decorator: Google::Apis::GkehubV1beta::CompliancePostureConfig::Representation
|
1617
|
+
|
1577
1618
|
property :security_posture_config, as: 'securityPostureConfig', class: Google::Apis::GkehubV1beta::SecurityPostureConfig, decorator: Google::Apis::GkehubV1beta::SecurityPostureConfig::Representation
|
1578
1619
|
|
1579
1620
|
end
|
@@ -1625,6 +1666,7 @@ module Google
|
|
1625
1666
|
|
1626
1667
|
property :state, as: 'state', class: Google::Apis::GkehubV1beta::CommonFeatureState, decorator: Google::Apis::GkehubV1beta::CommonFeatureState::Representation
|
1627
1668
|
|
1669
|
+
collection :unreachable, as: 'unreachable'
|
1628
1670
|
property :update_time, as: 'updateTime'
|
1629
1671
|
end
|
1630
1672
|
end
|
@@ -1814,6 +1856,14 @@ module Google
|
|
1814
1856
|
end
|
1815
1857
|
end
|
1816
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
|
+
|
1817
1867
|
class IdentityServiceGoogleConfig
|
1818
1868
|
# @private
|
1819
1869
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1833,6 +1883,8 @@ module Google
|
|
1833
1883
|
class IdentityServiceIdentityServiceOptions
|
1834
1884
|
# @private
|
1835
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
|
+
|
1836
1888
|
property :session_duration, as: 'sessionDuration'
|
1837
1889
|
end
|
1838
1890
|
end
|
@@ -2095,6 +2147,7 @@ module Google
|
|
2095
2147
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2096
2148
|
property :authority, as: 'authority', class: Google::Apis::GkehubV1beta::Authority, decorator: Google::Apis::GkehubV1beta::Authority::Representation
|
2097
2149
|
|
2150
|
+
property :cluster_tier, as: 'clusterTier'
|
2098
2151
|
property :create_time, as: 'createTime'
|
2099
2152
|
property :delete_time, as: 'deleteTime'
|
2100
2153
|
property :description, as: 'description'
|
@@ -2592,6 +2645,7 @@ module Google
|
|
2592
2645
|
class ServiceMeshMembershipSpec
|
2593
2646
|
# @private
|
2594
2647
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2648
|
+
property :config_api, as: 'configApi'
|
2595
2649
|
property :control_plane, as: 'controlPlane'
|
2596
2650
|
property :management, as: 'management'
|
2597
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.
|
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-
|
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.
|
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.
|
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
|