google-apis-gkehub_v1beta 0.18.0 → 0.21.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3d470c7ad0c8ee76e7b73346d0055ae1b3dd3f898c1c18595246e34d11f82db1
4
- data.tar.gz: 0e94452733cd4afe2356177055e4a908e3b2b4b77342b674ab541726ada58b0b
3
+ metadata.gz: b22fbfd54573e6cd076a618537659c3c1c6f4386b4c275de83ad03d9f9cccadc
4
+ data.tar.gz: e68e872d6141288916163b491b6605be87e0729f1f13d9ab9bb7c7d58e369118
5
5
  SHA512:
6
- metadata.gz: 6d7c5cf0a256cb928be4283950e78a7737343e637146409d059d160246df8e03ef41589c860fbc05df3c8d06fca28c6a214ef6bfb9be5782c12bfe96d3f5f046
7
- data.tar.gz: e2398469ff4910782fbe375635ae4e4a04077c19367bc170df0a1f0aa19ffe9f8d56200301b52d9f3013a57d993929e792cf88c083ded389efde366e3d7cff38
6
+ metadata.gz: 623d8e3e9ca9a72ebc3bc31ee06236b0549012d634e838a15676078f3b00cc7dc8268b70c0851bd67a954bbcd600452379abd7da2d5af0c6221e4700b19e4e1d
7
+ data.tar.gz: fa7f498cc172e8c25e39c2fb01f64ddd3911446bd7405b023ac4bb2db046ab89b1580565150ca16e1e55a1656ba8fae3ea0c74be3f9667c05bbc54f515036e01
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-gkehub_v1beta
2
2
 
3
+ ### v0.21.0 (2022-03-26)
4
+
5
+ * Regenerated from discovery document revision 20220318
6
+
7
+ ### v0.20.0 (2022-03-12)
8
+
9
+ * Regenerated from discovery document revision 20220303
10
+
11
+ ### v0.19.0 (2022-02-12)
12
+
13
+ * Regenerated from discovery document revision 20220204
14
+
3
15
  ### v0.18.0 (2022-02-05)
4
16
 
5
17
  * Regenerated from discovery document revision 20220128
@@ -22,6 +22,25 @@ module Google
22
22
  module Apis
23
23
  module GkehubV1beta
24
24
 
25
+ # **Anthos Observability**: Spec
26
+ class AnthosObservabilityFeatureSpec
27
+ include Google::Apis::Core::Hashable
28
+
29
+ # **Anthosobservability**: Per-Membership Feature spec.
30
+ # Corresponds to the JSON property `defaultMembershipSpec`
31
+ # @return [Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec]
32
+ attr_accessor :default_membership_spec
33
+
34
+ def initialize(**args)
35
+ update!(**args)
36
+ end
37
+
38
+ # Update properties of this object
39
+ def update!(**args)
40
+ @default_membership_spec = args[:default_membership_spec] if args.key?(:default_membership_spec)
41
+ end
42
+ end
43
+
25
44
  # **Anthosobservability**: Per-Membership Feature spec.
26
45
  class AnthosObservabilityMembershipSpec
27
46
  include Google::Apis::Core::Hashable
@@ -41,6 +60,11 @@ module Google
41
60
  attr_accessor :enable_stackdriver_on_applications
42
61
  alias_method :enable_stackdriver_on_applications?, :enable_stackdriver_on_applications
43
62
 
63
+ # the version of stackdriver operator used by this feature
64
+ # Corresponds to the JSON property `version`
65
+ # @return [String]
66
+ attr_accessor :version
67
+
44
68
  def initialize(**args)
45
69
  update!(**args)
46
70
  end
@@ -49,6 +73,7 @@ module Google
49
73
  def update!(**args)
50
74
  @do_not_optimize_metrics = args[:do_not_optimize_metrics] if args.key?(:do_not_optimize_metrics)
51
75
  @enable_stackdriver_on_applications = args[:enable_stackdriver_on_applications] if args.key?(:enable_stackdriver_on_applications)
76
+ @version = args[:version] if args.key?(:version)
52
77
  end
53
78
  end
54
79
 
@@ -243,6 +268,11 @@ module Google
243
268
  class CommonFeatureSpec
244
269
  include Google::Apis::Core::Hashable
245
270
 
271
+ # **Anthos Observability**: Spec
272
+ # Corresponds to the JSON property `anthosobservability`
273
+ # @return [Google::Apis::GkehubV1beta::AnthosObservabilityFeatureSpec]
274
+ attr_accessor :anthosobservability
275
+
246
276
  # Spec for App Dev Experience Feature.
247
277
  # Corresponds to the JSON property `appdevexperience`
248
278
  # @return [Google::Apis::GkehubV1beta::AppDevExperienceFeatureSpec]
@@ -260,6 +290,7 @@ module Google
260
290
 
261
291
  # Update properties of this object
262
292
  def update!(**args)
293
+ @anthosobservability = args[:anthosobservability] if args.key?(:anthosobservability)
263
294
  @appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
264
295
  @multiclusteringress = args[:multiclusteringress] if args.key?(:multiclusteringress)
265
296
  end
@@ -1158,8 +1189,7 @@ module Google
1158
1189
  # A generic empty message that you can re-use to avoid defining duplicated empty
1159
1190
  # messages in your APIs. A typical example is to use it as the request or the
1160
1191
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
1161
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
1162
- # `Empty` is empty JSON object ````.
1192
+ # protobuf.Empty) returns (google.protobuf.Empty); `
1163
1193
  class Empty
1164
1194
  include Google::Apis::Core::Hashable
1165
1195
 
@@ -1513,6 +1543,11 @@ module Google
1513
1543
  # @return [String]
1514
1544
  attr_accessor :client_id
1515
1545
 
1546
+ # Unencrypted OIDC client secret will be passed to the GKE Hub CLH.
1547
+ # Corresponds to the JSON property `clientSecret`
1548
+ # @return [String]
1549
+ attr_accessor :client_secret
1550
+
1516
1551
  # Flag to denote if reverse proxy is used to connect to auth provider. This flag
1517
1552
  # should be set to true when provider is not reachable by Google Cloud Console.
1518
1553
  # Corresponds to the JSON property `deployCloudConsoleProxy`
@@ -1520,6 +1555,12 @@ module Google
1520
1555
  attr_accessor :deploy_cloud_console_proxy
1521
1556
  alias_method :deploy_cloud_console_proxy?, :deploy_cloud_console_proxy
1522
1557
 
1558
+ # Output only. Encrypted OIDC Client secret
1559
+ # Corresponds to the JSON property `encryptedClientSecret`
1560
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
1561
+ # @return [String]
1562
+ attr_accessor :encrypted_client_secret
1563
+
1523
1564
  # Comma-separated list of key-value pairs.
1524
1565
  # Corresponds to the JSON property `extraParams`
1525
1566
  # @return [String]
@@ -1570,7 +1611,9 @@ module Google
1570
1611
  def update!(**args)
1571
1612
  @certificate_authority_data = args[:certificate_authority_data] if args.key?(:certificate_authority_data)
1572
1613
  @client_id = args[:client_id] if args.key?(:client_id)
1614
+ @client_secret = args[:client_secret] if args.key?(:client_secret)
1573
1615
  @deploy_cloud_console_proxy = args[:deploy_cloud_console_proxy] if args.key?(:deploy_cloud_console_proxy)
1616
+ @encrypted_client_secret = args[:encrypted_client_secret] if args.key?(:encrypted_client_secret)
1574
1617
  @extra_params = args[:extra_params] if args.key?(:extra_params)
1575
1618
  @group_prefix = args[:group_prefix] if args.key?(:group_prefix)
1576
1619
  @groups_claim = args[:groups_claim] if args.key?(:groups_claim)
@@ -1731,6 +1774,12 @@ module Google
1731
1774
  # @return [Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec]
1732
1775
  attr_accessor :identityservice
1733
1776
 
1777
+ # **Policy Controller**: Configuration for a single cluster. Intended to
1778
+ # parallel the PolicyController CR.
1779
+ # Corresponds to the JSON property `policycontroller`
1780
+ # @return [Google::Apis::GkehubV1beta::PolicyControllerMembershipSpec]
1781
+ attr_accessor :policycontroller
1782
+
1734
1783
  def initialize(**args)
1735
1784
  update!(**args)
1736
1785
  end
@@ -1741,6 +1790,7 @@ module Google
1741
1790
  @cloudbuild = args[:cloudbuild] if args.key?(:cloudbuild)
1742
1791
  @configmanagement = args[:configmanagement] if args.key?(:configmanagement)
1743
1792
  @identityservice = args[:identityservice] if args.key?(:identityservice)
1793
+ @policycontroller = args[:policycontroller] if args.key?(:policycontroller)
1744
1794
  end
1745
1795
  end
1746
1796
 
@@ -2092,75 +2142,8 @@ module Google
2092
2142
  end
2093
2143
  end
2094
2144
 
2095
- # **Policy Controller**: Configuration for a single cluster. Intended to
2096
- # parallel the PolicyController CR.
2097
- class PolicyControllerMembershipSpec
2098
- include Google::Apis::Core::Hashable
2099
-
2100
- # Configuration for Policy Controller
2101
- # Corresponds to the JSON property `policyControllerHubConfig`
2102
- # @return [Google::Apis::GkehubV1beta::PolicyControllerPolicyControllerHubConfig]
2103
- attr_accessor :policy_controller_hub_config
2104
-
2105
- # Version of Policy Controller installed.
2106
- # Corresponds to the JSON property `version`
2107
- # @return [String]
2108
- attr_accessor :version
2109
-
2110
- def initialize(**args)
2111
- update!(**args)
2112
- end
2113
-
2114
- # Update properties of this object
2115
- def update!(**args)
2116
- @policy_controller_hub_config = args[:policy_controller_hub_config] if args.key?(:policy_controller_hub_config)
2117
- @version = args[:version] if args.key?(:version)
2118
- end
2119
- end
2120
-
2121
- # **Policy Controller**: State for a single cluster.
2122
- class PolicyControllerMembershipState
2123
- include Google::Apis::Core::Hashable
2124
-
2125
- # The user-defined name for the cluster used by ClusterSelectors to group
2126
- # clusters together. This should match Membership's membership_name, unless the
2127
- # user installed PC on the cluster manually prior to enabling the PC hub feature.
2128
- # Unique within a Policy Controller installation.
2129
- # Corresponds to the JSON property `clusterName`
2130
- # @return [String]
2131
- attr_accessor :cluster_name
2132
-
2133
- # **Policy Controller**: Configuration for a single cluster. Intended to
2134
- # parallel the PolicyController CR.
2135
- # Corresponds to the JSON property `membershipSpec`
2136
- # @return [Google::Apis::GkehubV1beta::PolicyControllerMembershipSpec]
2137
- attr_accessor :membership_spec
2138
-
2139
- # State of the Policy Controller.
2140
- # Corresponds to the JSON property `policyControllerHubState`
2141
- # @return [Google::Apis::GkehubV1beta::PolicyControllerPolicyControllerHubState]
2142
- attr_accessor :policy_controller_hub_state
2143
-
2144
- # The lifecycle state Policy Controller is in.
2145
- # Corresponds to the JSON property `state`
2146
- # @return [String]
2147
- attr_accessor :state
2148
-
2149
- def initialize(**args)
2150
- update!(**args)
2151
- end
2152
-
2153
- # Update properties of this object
2154
- def update!(**args)
2155
- @cluster_name = args[:cluster_name] if args.key?(:cluster_name)
2156
- @membership_spec = args[:membership_spec] if args.key?(:membership_spec)
2157
- @policy_controller_hub_state = args[:policy_controller_hub_state] if args.key?(:policy_controller_hub_state)
2158
- @state = args[:state] if args.key?(:state)
2159
- end
2160
- end
2161
-
2162
2145
  # Configuration for Policy Controller
2163
- class PolicyControllerPolicyControllerHubConfig
2146
+ class PolicyControllerHubConfig
2164
2147
  include Google::Apis::Core::Hashable
2165
2148
 
2166
2149
  # Sets the interval for Policy Controller Audit Scans (in seconds). When set to
@@ -2217,7 +2200,7 @@ module Google
2217
2200
  end
2218
2201
 
2219
2202
  # State of the Policy Controller.
2220
- class PolicyControllerPolicyControllerHubState
2203
+ class PolicyControllerHubState
2221
2204
  include Google::Apis::Core::Hashable
2222
2205
 
2223
2206
  # Map from deployment name to deployment state. Example deployments are
@@ -2229,7 +2212,7 @@ module Google
2229
2212
 
2230
2213
  # The build version of Gatekeeper that Policy Controller is using.
2231
2214
  # Corresponds to the JSON property `version`
2232
- # @return [Google::Apis::GkehubV1beta::PolicyControllerPolicyControllerHubVersion]
2215
+ # @return [Google::Apis::GkehubV1beta::PolicyControllerHubVersion]
2233
2216
  attr_accessor :version
2234
2217
 
2235
2218
  def initialize(**args)
@@ -2244,7 +2227,7 @@ module Google
2244
2227
  end
2245
2228
 
2246
2229
  # The build version of Gatekeeper that Policy Controller is using.
2247
- class PolicyControllerPolicyControllerHubVersion
2230
+ class PolicyControllerHubVersion
2248
2231
  include Google::Apis::Core::Hashable
2249
2232
 
2250
2233
  # The gatekeeper image tag that is composed of ACM version, git tag, build
@@ -2263,6 +2246,73 @@ module Google
2263
2246
  end
2264
2247
  end
2265
2248
 
2249
+ # **Policy Controller**: Configuration for a single cluster. Intended to
2250
+ # parallel the PolicyController CR.
2251
+ class PolicyControllerMembershipSpec
2252
+ include Google::Apis::Core::Hashable
2253
+
2254
+ # Configuration for Policy Controller
2255
+ # Corresponds to the JSON property `policyControllerHubConfig`
2256
+ # @return [Google::Apis::GkehubV1beta::PolicyControllerHubConfig]
2257
+ attr_accessor :policy_controller_hub_config
2258
+
2259
+ # Version of Policy Controller installed.
2260
+ # Corresponds to the JSON property `version`
2261
+ # @return [String]
2262
+ attr_accessor :version
2263
+
2264
+ def initialize(**args)
2265
+ update!(**args)
2266
+ end
2267
+
2268
+ # Update properties of this object
2269
+ def update!(**args)
2270
+ @policy_controller_hub_config = args[:policy_controller_hub_config] if args.key?(:policy_controller_hub_config)
2271
+ @version = args[:version] if args.key?(:version)
2272
+ end
2273
+ end
2274
+
2275
+ # **Policy Controller**: State for a single cluster.
2276
+ class PolicyControllerMembershipState
2277
+ include Google::Apis::Core::Hashable
2278
+
2279
+ # The user-defined name for the cluster used by ClusterSelectors to group
2280
+ # clusters together. This should match Membership's membership_name, unless the
2281
+ # user installed PC on the cluster manually prior to enabling the PC hub feature.
2282
+ # Unique within a Policy Controller installation.
2283
+ # Corresponds to the JSON property `clusterName`
2284
+ # @return [String]
2285
+ attr_accessor :cluster_name
2286
+
2287
+ # **Policy Controller**: Configuration for a single cluster. Intended to
2288
+ # parallel the PolicyController CR.
2289
+ # Corresponds to the JSON property `membershipSpec`
2290
+ # @return [Google::Apis::GkehubV1beta::PolicyControllerMembershipSpec]
2291
+ attr_accessor :membership_spec
2292
+
2293
+ # State of the Policy Controller.
2294
+ # Corresponds to the JSON property `policyControllerHubState`
2295
+ # @return [Google::Apis::GkehubV1beta::PolicyControllerHubState]
2296
+ attr_accessor :policy_controller_hub_state
2297
+
2298
+ # The lifecycle state Policy Controller is in.
2299
+ # Corresponds to the JSON property `state`
2300
+ # @return [String]
2301
+ attr_accessor :state
2302
+
2303
+ def initialize(**args)
2304
+ update!(**args)
2305
+ end
2306
+
2307
+ # Update properties of this object
2308
+ def update!(**args)
2309
+ @cluster_name = args[:cluster_name] if args.key?(:cluster_name)
2310
+ @membership_spec = args[:membership_spec] if args.key?(:membership_spec)
2311
+ @policy_controller_hub_state = args[:policy_controller_hub_state] if args.key?(:policy_controller_hub_state)
2312
+ @state = args[:state] if args.key?(:state)
2313
+ end
2314
+ end
2315
+
2266
2316
  # The config specifying which default library templates to install.
2267
2317
  class PolicyControllerTemplateLibraryConfig
2268
2318
  include Google::Apis::Core::Hashable
@@ -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.18.0"
19
+ GEM_VERSION = "0.21.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220128"
25
+ REVISION = "20220318"
26
26
  end
27
27
  end
28
28
  end
@@ -22,6 +22,12 @@ module Google
22
22
  module Apis
23
23
  module GkehubV1beta
24
24
 
25
+ class AnthosObservabilityFeatureSpec
26
+ class Representation < Google::Apis::Core::JsonRepresentation; end
27
+
28
+ include Google::Apis::Core::JsonObjectSupport
29
+ end
30
+
25
31
  class AnthosObservabilityMembershipSpec
26
32
  class Representation < Google::Apis::Core::JsonRepresentation; end
27
33
 
@@ -352,31 +358,31 @@ module Google
352
358
  include Google::Apis::Core::JsonObjectSupport
353
359
  end
354
360
 
355
- class PolicyControllerMembershipSpec
361
+ class PolicyControllerHubConfig
356
362
  class Representation < Google::Apis::Core::JsonRepresentation; end
357
363
 
358
364
  include Google::Apis::Core::JsonObjectSupport
359
365
  end
360
366
 
361
- class PolicyControllerMembershipState
367
+ class PolicyControllerHubState
362
368
  class Representation < Google::Apis::Core::JsonRepresentation; end
363
369
 
364
370
  include Google::Apis::Core::JsonObjectSupport
365
371
  end
366
372
 
367
- class PolicyControllerPolicyControllerHubConfig
373
+ class PolicyControllerHubVersion
368
374
  class Representation < Google::Apis::Core::JsonRepresentation; end
369
375
 
370
376
  include Google::Apis::Core::JsonObjectSupport
371
377
  end
372
378
 
373
- class PolicyControllerPolicyControllerHubState
379
+ class PolicyControllerMembershipSpec
374
380
  class Representation < Google::Apis::Core::JsonRepresentation; end
375
381
 
376
382
  include Google::Apis::Core::JsonObjectSupport
377
383
  end
378
384
 
379
- class PolicyControllerPolicyControllerHubVersion
385
+ class PolicyControllerMembershipState
380
386
  class Representation < Google::Apis::Core::JsonRepresentation; end
381
387
 
382
388
  include Google::Apis::Core::JsonObjectSupport
@@ -412,11 +418,20 @@ module Google
412
418
  include Google::Apis::Core::JsonObjectSupport
413
419
  end
414
420
 
421
+ class AnthosObservabilityFeatureSpec
422
+ # @private
423
+ class Representation < Google::Apis::Core::JsonRepresentation
424
+ property :default_membership_spec, as: 'defaultMembershipSpec', class: Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec, decorator: Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec::Representation
425
+
426
+ end
427
+ end
428
+
415
429
  class AnthosObservabilityMembershipSpec
416
430
  # @private
417
431
  class Representation < Google::Apis::Core::JsonRepresentation
418
432
  property :do_not_optimize_metrics, as: 'doNotOptimizeMetrics'
419
433
  property :enable_stackdriver_on_applications, as: 'enableStackdriverOnApplications'
434
+ property :version, as: 'version'
420
435
  end
421
436
  end
422
437
 
@@ -470,6 +485,8 @@ module Google
470
485
  class CommonFeatureSpec
471
486
  # @private
472
487
  class Representation < Google::Apis::Core::JsonRepresentation
488
+ property :anthosobservability, as: 'anthosobservability', class: Google::Apis::GkehubV1beta::AnthosObservabilityFeatureSpec, decorator: Google::Apis::GkehubV1beta::AnthosObservabilityFeatureSpec::Representation
489
+
473
490
  property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1beta::AppDevExperienceFeatureSpec, decorator: Google::Apis::GkehubV1beta::AppDevExperienceFeatureSpec::Representation
474
491
 
475
492
  property :multiclusteringress, as: 'multiclusteringress', class: Google::Apis::GkehubV1beta::MultiClusterIngressFeatureSpec, decorator: Google::Apis::GkehubV1beta::MultiClusterIngressFeatureSpec::Representation
@@ -836,7 +853,9 @@ module Google
836
853
  class Representation < Google::Apis::Core::JsonRepresentation
837
854
  property :certificate_authority_data, as: 'certificateAuthorityData'
838
855
  property :client_id, as: 'clientId'
856
+ property :client_secret, as: 'clientSecret'
839
857
  property :deploy_cloud_console_proxy, as: 'deployCloudConsoleProxy'
858
+ property :encrypted_client_secret, :base64 => true, as: 'encryptedClientSecret'
840
859
  property :extra_params, as: 'extraParams'
841
860
  property :group_prefix, as: 'groupPrefix'
842
861
  property :groups_claim, as: 'groupsClaim'
@@ -897,6 +916,8 @@ module Google
897
916
 
898
917
  property :identityservice, as: 'identityservice', class: Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec, decorator: Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec::Representation
899
918
 
919
+ property :policycontroller, as: 'policycontroller', class: Google::Apis::GkehubV1beta::PolicyControllerMembershipSpec, decorator: Google::Apis::GkehubV1beta::PolicyControllerMembershipSpec::Representation
920
+
900
921
  end
901
922
  end
902
923
 
@@ -979,53 +1000,53 @@ module Google
979
1000
  end
980
1001
  end
981
1002
 
982
- class PolicyControllerMembershipSpec
1003
+ class PolicyControllerHubConfig
983
1004
  # @private
984
1005
  class Representation < Google::Apis::Core::JsonRepresentation
985
- property :policy_controller_hub_config, as: 'policyControllerHubConfig', class: Google::Apis::GkehubV1beta::PolicyControllerPolicyControllerHubConfig, decorator: Google::Apis::GkehubV1beta::PolicyControllerPolicyControllerHubConfig::Representation
1006
+ property :audit_interval_seconds, :numeric_string => true, as: 'auditIntervalSeconds'
1007
+ collection :exemptable_namespaces, as: 'exemptableNamespaces'
1008
+ property :install_spec, as: 'installSpec'
1009
+ property :log_denies_enabled, as: 'logDeniesEnabled'
1010
+ property :referential_rules_enabled, as: 'referentialRulesEnabled'
1011
+ property :template_library_config, as: 'templateLibraryConfig', class: Google::Apis::GkehubV1beta::PolicyControllerTemplateLibraryConfig, decorator: Google::Apis::GkehubV1beta::PolicyControllerTemplateLibraryConfig::Representation
986
1012
 
987
- property :version, as: 'version'
988
1013
  end
989
1014
  end
990
1015
 
991
- class PolicyControllerMembershipState
1016
+ class PolicyControllerHubState
992
1017
  # @private
993
1018
  class Representation < Google::Apis::Core::JsonRepresentation
994
- property :cluster_name, as: 'clusterName'
995
- property :membership_spec, as: 'membershipSpec', class: Google::Apis::GkehubV1beta::PolicyControllerMembershipSpec, decorator: Google::Apis::GkehubV1beta::PolicyControllerMembershipSpec::Representation
996
-
997
- property :policy_controller_hub_state, as: 'policyControllerHubState', class: Google::Apis::GkehubV1beta::PolicyControllerPolicyControllerHubState, decorator: Google::Apis::GkehubV1beta::PolicyControllerPolicyControllerHubState::Representation
1019
+ hash :deployment_states, as: 'deploymentStates'
1020
+ property :version, as: 'version', class: Google::Apis::GkehubV1beta::PolicyControllerHubVersion, decorator: Google::Apis::GkehubV1beta::PolicyControllerHubVersion::Representation
998
1021
 
999
- property :state, as: 'state'
1000
1022
  end
1001
1023
  end
1002
1024
 
1003
- class PolicyControllerPolicyControllerHubConfig
1025
+ class PolicyControllerHubVersion
1004
1026
  # @private
1005
1027
  class Representation < Google::Apis::Core::JsonRepresentation
1006
- property :audit_interval_seconds, :numeric_string => true, as: 'auditIntervalSeconds'
1007
- collection :exemptable_namespaces, as: 'exemptableNamespaces'
1008
- property :install_spec, as: 'installSpec'
1009
- property :log_denies_enabled, as: 'logDeniesEnabled'
1010
- property :referential_rules_enabled, as: 'referentialRulesEnabled'
1011
- property :template_library_config, as: 'templateLibraryConfig', class: Google::Apis::GkehubV1beta::PolicyControllerTemplateLibraryConfig, decorator: Google::Apis::GkehubV1beta::PolicyControllerTemplateLibraryConfig::Representation
1012
-
1028
+ property :version, as: 'version'
1013
1029
  end
1014
1030
  end
1015
1031
 
1016
- class PolicyControllerPolicyControllerHubState
1032
+ class PolicyControllerMembershipSpec
1017
1033
  # @private
1018
1034
  class Representation < Google::Apis::Core::JsonRepresentation
1019
- hash :deployment_states, as: 'deploymentStates'
1020
- property :version, as: 'version', class: Google::Apis::GkehubV1beta::PolicyControllerPolicyControllerHubVersion, decorator: Google::Apis::GkehubV1beta::PolicyControllerPolicyControllerHubVersion::Representation
1035
+ property :policy_controller_hub_config, as: 'policyControllerHubConfig', class: Google::Apis::GkehubV1beta::PolicyControllerHubConfig, decorator: Google::Apis::GkehubV1beta::PolicyControllerHubConfig::Representation
1021
1036
 
1037
+ property :version, as: 'version'
1022
1038
  end
1023
1039
  end
1024
1040
 
1025
- class PolicyControllerPolicyControllerHubVersion
1041
+ class PolicyControllerMembershipState
1026
1042
  # @private
1027
1043
  class Representation < Google::Apis::Core::JsonRepresentation
1028
- property :version, as: 'version'
1044
+ property :cluster_name, as: 'clusterName'
1045
+ property :membership_spec, as: 'membershipSpec', class: Google::Apis::GkehubV1beta::PolicyControllerMembershipSpec, decorator: Google::Apis::GkehubV1beta::PolicyControllerMembershipSpec::Representation
1046
+
1047
+ property :policy_controller_hub_state, as: 'policyControllerHubState', class: Google::Apis::GkehubV1beta::PolicyControllerHubState, decorator: Google::Apis::GkehubV1beta::PolicyControllerHubState::Representation
1048
+
1049
+ property :state, as: 'state'
1029
1050
  end
1030
1051
  end
1031
1052
 
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.18.0
4
+ version: 0.21.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-02-07 00:00:00.000000000 Z
11
+ date: 2022-03-28 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.18.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.21.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: []