google-apis-gkehub_v1beta 0.17.0 → 0.20.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 +4 -4
- data/CHANGELOG.md +12 -0
- data/lib/google/apis/gkehub_v1beta/classes.rb +158 -71
- data/lib/google/apis/gkehub_v1beta/gem_version.rb +2 -2
- data/lib/google/apis/gkehub_v1beta/representations.rb +64 -27
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cb9b5a0d8deecd2d6ce568e16a52dac9cb3adc59510ac272dc3117aae611c4a6
|
4
|
+
data.tar.gz: 1f33f0efaecd75d56ad864f9c845491783e503ad850a7e465513089221ec8c74
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3fc35b03471a1d4ba013cb9073a311159471276f9d9269b47492b5b5e01c2ffd1b072de47e447cd47c48949616ac48233cf2c4c1187759151f8cdc88f7736dfa
|
7
|
+
data.tar.gz: 80edb11e51e6a24d0616f3b5b0c9068d559392bd26c701a0679726dfce2552a0d8bd8a4287e16b96583d7db79ee4aaa815ede87f59b8682cccb9e04451c11682
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-gkehub_v1beta
|
2
2
|
|
3
|
+
### v0.20.0 (2022-03-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220303
|
6
|
+
|
7
|
+
### v0.19.0 (2022-02-12)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220204
|
10
|
+
|
11
|
+
### v0.18.0 (2022-02-05)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220128
|
14
|
+
|
3
15
|
### v0.17.0 (2022-01-30)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220122
|
@@ -22,6 +22,61 @@ 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
|
+
|
44
|
+
# **Anthosobservability**: Per-Membership Feature spec.
|
45
|
+
class AnthosObservabilityMembershipSpec
|
46
|
+
include Google::Apis::Core::Hashable
|
47
|
+
|
48
|
+
# use full of metrics rather than optimized metrics. See https://cloud.google.
|
49
|
+
# com/anthos/clusters/docs/on-prem/1.8/concepts/logging-and-monitoring#
|
50
|
+
# optimized_metrics_default_metrics
|
51
|
+
# Corresponds to the JSON property `doNotOptimizeMetrics`
|
52
|
+
# @return [Boolean]
|
53
|
+
attr_accessor :do_not_optimize_metrics
|
54
|
+
alias_method :do_not_optimize_metrics?, :do_not_optimize_metrics
|
55
|
+
|
56
|
+
# enable collecting and reporting metrics and logs from user apps See go/onyx-
|
57
|
+
# application-metrics-logs-user-guide
|
58
|
+
# Corresponds to the JSON property `enableStackdriverOnApplications`
|
59
|
+
# @return [Boolean]
|
60
|
+
attr_accessor :enable_stackdriver_on_applications
|
61
|
+
alias_method :enable_stackdriver_on_applications?, :enable_stackdriver_on_applications
|
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
|
+
|
68
|
+
def initialize(**args)
|
69
|
+
update!(**args)
|
70
|
+
end
|
71
|
+
|
72
|
+
# Update properties of this object
|
73
|
+
def update!(**args)
|
74
|
+
@do_not_optimize_metrics = args[:do_not_optimize_metrics] if args.key?(:do_not_optimize_metrics)
|
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)
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
25
80
|
# Spec for App Dev Experience Feature.
|
26
81
|
class AppDevExperienceFeatureSpec
|
27
82
|
include Google::Apis::Core::Hashable
|
@@ -213,6 +268,11 @@ module Google
|
|
213
268
|
class CommonFeatureSpec
|
214
269
|
include Google::Apis::Core::Hashable
|
215
270
|
|
271
|
+
# **Anthos Observability**: Spec
|
272
|
+
# Corresponds to the JSON property `anthosobservability`
|
273
|
+
# @return [Google::Apis::GkehubV1beta::AnthosObservabilityFeatureSpec]
|
274
|
+
attr_accessor :anthosobservability
|
275
|
+
|
216
276
|
# Spec for App Dev Experience Feature.
|
217
277
|
# Corresponds to the JSON property `appdevexperience`
|
218
278
|
# @return [Google::Apis::GkehubV1beta::AppDevExperienceFeatureSpec]
|
@@ -230,6 +290,7 @@ module Google
|
|
230
290
|
|
231
291
|
# Update properties of this object
|
232
292
|
def update!(**args)
|
293
|
+
@anthosobservability = args[:anthosobservability] if args.key?(:anthosobservability)
|
233
294
|
@appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
|
234
295
|
@multiclusteringress = args[:multiclusteringress] if args.key?(:multiclusteringress)
|
235
296
|
end
|
@@ -1483,6 +1544,11 @@ module Google
|
|
1483
1544
|
# @return [String]
|
1484
1545
|
attr_accessor :client_id
|
1485
1546
|
|
1547
|
+
# Unencrypted OIDC client secret will be passed to the GKE Hub CLH.
|
1548
|
+
# Corresponds to the JSON property `clientSecret`
|
1549
|
+
# @return [String]
|
1550
|
+
attr_accessor :client_secret
|
1551
|
+
|
1486
1552
|
# Flag to denote if reverse proxy is used to connect to auth provider. This flag
|
1487
1553
|
# should be set to true when provider is not reachable by Google Cloud Console.
|
1488
1554
|
# Corresponds to the JSON property `deployCloudConsoleProxy`
|
@@ -1490,6 +1556,12 @@ module Google
|
|
1490
1556
|
attr_accessor :deploy_cloud_console_proxy
|
1491
1557
|
alias_method :deploy_cloud_console_proxy?, :deploy_cloud_console_proxy
|
1492
1558
|
|
1559
|
+
# Output only. Encrypted OIDC Client secret
|
1560
|
+
# Corresponds to the JSON property `encryptedClientSecret`
|
1561
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
1562
|
+
# @return [String]
|
1563
|
+
attr_accessor :encrypted_client_secret
|
1564
|
+
|
1493
1565
|
# Comma-separated list of key-value pairs.
|
1494
1566
|
# Corresponds to the JSON property `extraParams`
|
1495
1567
|
# @return [String]
|
@@ -1540,7 +1612,9 @@ module Google
|
|
1540
1612
|
def update!(**args)
|
1541
1613
|
@certificate_authority_data = args[:certificate_authority_data] if args.key?(:certificate_authority_data)
|
1542
1614
|
@client_id = args[:client_id] if args.key?(:client_id)
|
1615
|
+
@client_secret = args[:client_secret] if args.key?(:client_secret)
|
1543
1616
|
@deploy_cloud_console_proxy = args[:deploy_cloud_console_proxy] if args.key?(:deploy_cloud_console_proxy)
|
1617
|
+
@encrypted_client_secret = args[:encrypted_client_secret] if args.key?(:encrypted_client_secret)
|
1544
1618
|
@extra_params = args[:extra_params] if args.key?(:extra_params)
|
1545
1619
|
@group_prefix = args[:group_prefix] if args.key?(:group_prefix)
|
1546
1620
|
@groups_claim = args[:groups_claim] if args.key?(:groups_claim)
|
@@ -1680,6 +1754,11 @@ module Google
|
|
1680
1754
|
class MembershipFeatureSpec
|
1681
1755
|
include Google::Apis::Core::Hashable
|
1682
1756
|
|
1757
|
+
# **Anthosobservability**: Per-Membership Feature spec.
|
1758
|
+
# Corresponds to the JSON property `anthosobservability`
|
1759
|
+
# @return [Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec]
|
1760
|
+
attr_accessor :anthosobservability
|
1761
|
+
|
1683
1762
|
# **Cloud Build**: Configurations for each Cloud Build enabled cluster.
|
1684
1763
|
# Corresponds to the JSON property `cloudbuild`
|
1685
1764
|
# @return [Google::Apis::GkehubV1beta::MembershipSpec]
|
@@ -1696,15 +1775,23 @@ module Google
|
|
1696
1775
|
# @return [Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec]
|
1697
1776
|
attr_accessor :identityservice
|
1698
1777
|
|
1778
|
+
# **Policy Controller**: Configuration for a single cluster. Intended to
|
1779
|
+
# parallel the PolicyController CR.
|
1780
|
+
# Corresponds to the JSON property `policycontroller`
|
1781
|
+
# @return [Google::Apis::GkehubV1beta::PolicyControllerMembershipSpec]
|
1782
|
+
attr_accessor :policycontroller
|
1783
|
+
|
1699
1784
|
def initialize(**args)
|
1700
1785
|
update!(**args)
|
1701
1786
|
end
|
1702
1787
|
|
1703
1788
|
# Update properties of this object
|
1704
1789
|
def update!(**args)
|
1790
|
+
@anthosobservability = args[:anthosobservability] if args.key?(:anthosobservability)
|
1705
1791
|
@cloudbuild = args[:cloudbuild] if args.key?(:cloudbuild)
|
1706
1792
|
@configmanagement = args[:configmanagement] if args.key?(:configmanagement)
|
1707
1793
|
@identityservice = args[:identityservice] if args.key?(:identityservice)
|
1794
|
+
@policycontroller = args[:policycontroller] if args.key?(:policycontroller)
|
1708
1795
|
end
|
1709
1796
|
end
|
1710
1797
|
|
@@ -2056,75 +2143,8 @@ module Google
|
|
2056
2143
|
end
|
2057
2144
|
end
|
2058
2145
|
|
2059
|
-
# **Policy Controller**: Configuration for a single cluster. Intended to
|
2060
|
-
# parallel the PolicyController CR.
|
2061
|
-
class PolicyControllerMembershipSpec
|
2062
|
-
include Google::Apis::Core::Hashable
|
2063
|
-
|
2064
|
-
# Configuration for Policy Controller
|
2065
|
-
# Corresponds to the JSON property `policyControllerHubConfig`
|
2066
|
-
# @return [Google::Apis::GkehubV1beta::PolicyControllerPolicyControllerHubConfig]
|
2067
|
-
attr_accessor :policy_controller_hub_config
|
2068
|
-
|
2069
|
-
# Version of Policy Controller installed.
|
2070
|
-
# Corresponds to the JSON property `version`
|
2071
|
-
# @return [String]
|
2072
|
-
attr_accessor :version
|
2073
|
-
|
2074
|
-
def initialize(**args)
|
2075
|
-
update!(**args)
|
2076
|
-
end
|
2077
|
-
|
2078
|
-
# Update properties of this object
|
2079
|
-
def update!(**args)
|
2080
|
-
@policy_controller_hub_config = args[:policy_controller_hub_config] if args.key?(:policy_controller_hub_config)
|
2081
|
-
@version = args[:version] if args.key?(:version)
|
2082
|
-
end
|
2083
|
-
end
|
2084
|
-
|
2085
|
-
# **Policy Controller**: State for a single cluster.
|
2086
|
-
class PolicyControllerMembershipState
|
2087
|
-
include Google::Apis::Core::Hashable
|
2088
|
-
|
2089
|
-
# The user-defined name for the cluster used by ClusterSelectors to group
|
2090
|
-
# clusters together. This should match Membership's membership_name, unless the
|
2091
|
-
# user installed PC on the cluster manually prior to enabling the PC hub feature.
|
2092
|
-
# Unique within a Policy Controller installation.
|
2093
|
-
# Corresponds to the JSON property `clusterName`
|
2094
|
-
# @return [String]
|
2095
|
-
attr_accessor :cluster_name
|
2096
|
-
|
2097
|
-
# **Policy Controller**: Configuration for a single cluster. Intended to
|
2098
|
-
# parallel the PolicyController CR.
|
2099
|
-
# Corresponds to the JSON property `membershipSpec`
|
2100
|
-
# @return [Google::Apis::GkehubV1beta::PolicyControllerMembershipSpec]
|
2101
|
-
attr_accessor :membership_spec
|
2102
|
-
|
2103
|
-
# State of the Policy Controller.
|
2104
|
-
# Corresponds to the JSON property `policyControllerHubState`
|
2105
|
-
# @return [Google::Apis::GkehubV1beta::PolicyControllerPolicyControllerHubState]
|
2106
|
-
attr_accessor :policy_controller_hub_state
|
2107
|
-
|
2108
|
-
# The lifecycle state Policy Controller is in.
|
2109
|
-
# Corresponds to the JSON property `state`
|
2110
|
-
# @return [String]
|
2111
|
-
attr_accessor :state
|
2112
|
-
|
2113
|
-
def initialize(**args)
|
2114
|
-
update!(**args)
|
2115
|
-
end
|
2116
|
-
|
2117
|
-
# Update properties of this object
|
2118
|
-
def update!(**args)
|
2119
|
-
@cluster_name = args[:cluster_name] if args.key?(:cluster_name)
|
2120
|
-
@membership_spec = args[:membership_spec] if args.key?(:membership_spec)
|
2121
|
-
@policy_controller_hub_state = args[:policy_controller_hub_state] if args.key?(:policy_controller_hub_state)
|
2122
|
-
@state = args[:state] if args.key?(:state)
|
2123
|
-
end
|
2124
|
-
end
|
2125
|
-
|
2126
2146
|
# Configuration for Policy Controller
|
2127
|
-
class
|
2147
|
+
class PolicyControllerHubConfig
|
2128
2148
|
include Google::Apis::Core::Hashable
|
2129
2149
|
|
2130
2150
|
# Sets the interval for Policy Controller Audit Scans (in seconds). When set to
|
@@ -2181,7 +2201,7 @@ module Google
|
|
2181
2201
|
end
|
2182
2202
|
|
2183
2203
|
# State of the Policy Controller.
|
2184
|
-
class
|
2204
|
+
class PolicyControllerHubState
|
2185
2205
|
include Google::Apis::Core::Hashable
|
2186
2206
|
|
2187
2207
|
# Map from deployment name to deployment state. Example deployments are
|
@@ -2193,7 +2213,7 @@ module Google
|
|
2193
2213
|
|
2194
2214
|
# The build version of Gatekeeper that Policy Controller is using.
|
2195
2215
|
# Corresponds to the JSON property `version`
|
2196
|
-
# @return [Google::Apis::GkehubV1beta::
|
2216
|
+
# @return [Google::Apis::GkehubV1beta::PolicyControllerHubVersion]
|
2197
2217
|
attr_accessor :version
|
2198
2218
|
|
2199
2219
|
def initialize(**args)
|
@@ -2208,7 +2228,7 @@ module Google
|
|
2208
2228
|
end
|
2209
2229
|
|
2210
2230
|
# The build version of Gatekeeper that Policy Controller is using.
|
2211
|
-
class
|
2231
|
+
class PolicyControllerHubVersion
|
2212
2232
|
include Google::Apis::Core::Hashable
|
2213
2233
|
|
2214
2234
|
# The gatekeeper image tag that is composed of ACM version, git tag, build
|
@@ -2227,6 +2247,73 @@ module Google
|
|
2227
2247
|
end
|
2228
2248
|
end
|
2229
2249
|
|
2250
|
+
# **Policy Controller**: Configuration for a single cluster. Intended to
|
2251
|
+
# parallel the PolicyController CR.
|
2252
|
+
class PolicyControllerMembershipSpec
|
2253
|
+
include Google::Apis::Core::Hashable
|
2254
|
+
|
2255
|
+
# Configuration for Policy Controller
|
2256
|
+
# Corresponds to the JSON property `policyControllerHubConfig`
|
2257
|
+
# @return [Google::Apis::GkehubV1beta::PolicyControllerHubConfig]
|
2258
|
+
attr_accessor :policy_controller_hub_config
|
2259
|
+
|
2260
|
+
# Version of Policy Controller installed.
|
2261
|
+
# Corresponds to the JSON property `version`
|
2262
|
+
# @return [String]
|
2263
|
+
attr_accessor :version
|
2264
|
+
|
2265
|
+
def initialize(**args)
|
2266
|
+
update!(**args)
|
2267
|
+
end
|
2268
|
+
|
2269
|
+
# Update properties of this object
|
2270
|
+
def update!(**args)
|
2271
|
+
@policy_controller_hub_config = args[:policy_controller_hub_config] if args.key?(:policy_controller_hub_config)
|
2272
|
+
@version = args[:version] if args.key?(:version)
|
2273
|
+
end
|
2274
|
+
end
|
2275
|
+
|
2276
|
+
# **Policy Controller**: State for a single cluster.
|
2277
|
+
class PolicyControllerMembershipState
|
2278
|
+
include Google::Apis::Core::Hashable
|
2279
|
+
|
2280
|
+
# The user-defined name for the cluster used by ClusterSelectors to group
|
2281
|
+
# clusters together. This should match Membership's membership_name, unless the
|
2282
|
+
# user installed PC on the cluster manually prior to enabling the PC hub feature.
|
2283
|
+
# Unique within a Policy Controller installation.
|
2284
|
+
# Corresponds to the JSON property `clusterName`
|
2285
|
+
# @return [String]
|
2286
|
+
attr_accessor :cluster_name
|
2287
|
+
|
2288
|
+
# **Policy Controller**: Configuration for a single cluster. Intended to
|
2289
|
+
# parallel the PolicyController CR.
|
2290
|
+
# Corresponds to the JSON property `membershipSpec`
|
2291
|
+
# @return [Google::Apis::GkehubV1beta::PolicyControllerMembershipSpec]
|
2292
|
+
attr_accessor :membership_spec
|
2293
|
+
|
2294
|
+
# State of the Policy Controller.
|
2295
|
+
# Corresponds to the JSON property `policyControllerHubState`
|
2296
|
+
# @return [Google::Apis::GkehubV1beta::PolicyControllerHubState]
|
2297
|
+
attr_accessor :policy_controller_hub_state
|
2298
|
+
|
2299
|
+
# The lifecycle state Policy Controller is in.
|
2300
|
+
# Corresponds to the JSON property `state`
|
2301
|
+
# @return [String]
|
2302
|
+
attr_accessor :state
|
2303
|
+
|
2304
|
+
def initialize(**args)
|
2305
|
+
update!(**args)
|
2306
|
+
end
|
2307
|
+
|
2308
|
+
# Update properties of this object
|
2309
|
+
def update!(**args)
|
2310
|
+
@cluster_name = args[:cluster_name] if args.key?(:cluster_name)
|
2311
|
+
@membership_spec = args[:membership_spec] if args.key?(:membership_spec)
|
2312
|
+
@policy_controller_hub_state = args[:policy_controller_hub_state] if args.key?(:policy_controller_hub_state)
|
2313
|
+
@state = args[:state] if args.key?(:state)
|
2314
|
+
end
|
2315
|
+
end
|
2316
|
+
|
2230
2317
|
# The config specifying which default library templates to install.
|
2231
2318
|
class PolicyControllerTemplateLibraryConfig
|
2232
2319
|
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.
|
19
|
+
GEM_VERSION = "0.20.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 = "
|
25
|
+
REVISION = "20220303"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -22,6 +22,18 @@ 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
|
+
|
31
|
+
class AnthosObservabilityMembershipSpec
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
25
37
|
class AppDevExperienceFeatureSpec
|
26
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
39
|
|
@@ -346,31 +358,31 @@ module Google
|
|
346
358
|
include Google::Apis::Core::JsonObjectSupport
|
347
359
|
end
|
348
360
|
|
349
|
-
class
|
361
|
+
class PolicyControllerHubConfig
|
350
362
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
363
|
|
352
364
|
include Google::Apis::Core::JsonObjectSupport
|
353
365
|
end
|
354
366
|
|
355
|
-
class
|
367
|
+
class PolicyControllerHubState
|
356
368
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
357
369
|
|
358
370
|
include Google::Apis::Core::JsonObjectSupport
|
359
371
|
end
|
360
372
|
|
361
|
-
class
|
373
|
+
class PolicyControllerHubVersion
|
362
374
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
363
375
|
|
364
376
|
include Google::Apis::Core::JsonObjectSupport
|
365
377
|
end
|
366
378
|
|
367
|
-
class
|
379
|
+
class PolicyControllerMembershipSpec
|
368
380
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
381
|
|
370
382
|
include Google::Apis::Core::JsonObjectSupport
|
371
383
|
end
|
372
384
|
|
373
|
-
class
|
385
|
+
class PolicyControllerMembershipState
|
374
386
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
375
387
|
|
376
388
|
include Google::Apis::Core::JsonObjectSupport
|
@@ -406,6 +418,23 @@ module Google
|
|
406
418
|
include Google::Apis::Core::JsonObjectSupport
|
407
419
|
end
|
408
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
|
+
|
429
|
+
class AnthosObservabilityMembershipSpec
|
430
|
+
# @private
|
431
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
432
|
+
property :do_not_optimize_metrics, as: 'doNotOptimizeMetrics'
|
433
|
+
property :enable_stackdriver_on_applications, as: 'enableStackdriverOnApplications'
|
434
|
+
property :version, as: 'version'
|
435
|
+
end
|
436
|
+
end
|
437
|
+
|
409
438
|
class AppDevExperienceFeatureSpec
|
410
439
|
# @private
|
411
440
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -456,6 +485,8 @@ module Google
|
|
456
485
|
class CommonFeatureSpec
|
457
486
|
# @private
|
458
487
|
class Representation < Google::Apis::Core::JsonRepresentation
|
488
|
+
property :anthosobservability, as: 'anthosobservability', class: Google::Apis::GkehubV1beta::AnthosObservabilityFeatureSpec, decorator: Google::Apis::GkehubV1beta::AnthosObservabilityFeatureSpec::Representation
|
489
|
+
|
459
490
|
property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1beta::AppDevExperienceFeatureSpec, decorator: Google::Apis::GkehubV1beta::AppDevExperienceFeatureSpec::Representation
|
460
491
|
|
461
492
|
property :multiclusteringress, as: 'multiclusteringress', class: Google::Apis::GkehubV1beta::MultiClusterIngressFeatureSpec, decorator: Google::Apis::GkehubV1beta::MultiClusterIngressFeatureSpec::Representation
|
@@ -822,7 +853,9 @@ module Google
|
|
822
853
|
class Representation < Google::Apis::Core::JsonRepresentation
|
823
854
|
property :certificate_authority_data, as: 'certificateAuthorityData'
|
824
855
|
property :client_id, as: 'clientId'
|
856
|
+
property :client_secret, as: 'clientSecret'
|
825
857
|
property :deploy_cloud_console_proxy, as: 'deployCloudConsoleProxy'
|
858
|
+
property :encrypted_client_secret, :base64 => true, as: 'encryptedClientSecret'
|
826
859
|
property :extra_params, as: 'extraParams'
|
827
860
|
property :group_prefix, as: 'groupPrefix'
|
828
861
|
property :groups_claim, as: 'groupsClaim'
|
@@ -875,12 +908,16 @@ module Google
|
|
875
908
|
class MembershipFeatureSpec
|
876
909
|
# @private
|
877
910
|
class Representation < Google::Apis::Core::JsonRepresentation
|
911
|
+
property :anthosobservability, as: 'anthosobservability', class: Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec, decorator: Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec::Representation
|
912
|
+
|
878
913
|
property :cloudbuild, as: 'cloudbuild', class: Google::Apis::GkehubV1beta::MembershipSpec, decorator: Google::Apis::GkehubV1beta::MembershipSpec::Representation
|
879
914
|
|
880
915
|
property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1beta::ConfigManagementMembershipSpec, decorator: Google::Apis::GkehubV1beta::ConfigManagementMembershipSpec::Representation
|
881
916
|
|
882
917
|
property :identityservice, as: 'identityservice', class: Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec, decorator: Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec::Representation
|
883
918
|
|
919
|
+
property :policycontroller, as: 'policycontroller', class: Google::Apis::GkehubV1beta::PolicyControllerMembershipSpec, decorator: Google::Apis::GkehubV1beta::PolicyControllerMembershipSpec::Representation
|
920
|
+
|
884
921
|
end
|
885
922
|
end
|
886
923
|
|
@@ -963,53 +1000,53 @@ module Google
|
|
963
1000
|
end
|
964
1001
|
end
|
965
1002
|
|
966
|
-
class
|
1003
|
+
class PolicyControllerHubConfig
|
967
1004
|
# @private
|
968
1005
|
class Representation < Google::Apis::Core::JsonRepresentation
|
969
|
-
property :
|
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
|
970
1012
|
|
971
|
-
property :version, as: 'version'
|
972
1013
|
end
|
973
1014
|
end
|
974
1015
|
|
975
|
-
class
|
1016
|
+
class PolicyControllerHubState
|
976
1017
|
# @private
|
977
1018
|
class Representation < Google::Apis::Core::JsonRepresentation
|
978
|
-
|
979
|
-
property :
|
980
|
-
|
981
|
-
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
|
982
1021
|
|
983
|
-
property :state, as: 'state'
|
984
1022
|
end
|
985
1023
|
end
|
986
1024
|
|
987
|
-
class
|
1025
|
+
class PolicyControllerHubVersion
|
988
1026
|
# @private
|
989
1027
|
class Representation < Google::Apis::Core::JsonRepresentation
|
990
|
-
property :
|
991
|
-
collection :exemptable_namespaces, as: 'exemptableNamespaces'
|
992
|
-
property :install_spec, as: 'installSpec'
|
993
|
-
property :log_denies_enabled, as: 'logDeniesEnabled'
|
994
|
-
property :referential_rules_enabled, as: 'referentialRulesEnabled'
|
995
|
-
property :template_library_config, as: 'templateLibraryConfig', class: Google::Apis::GkehubV1beta::PolicyControllerTemplateLibraryConfig, decorator: Google::Apis::GkehubV1beta::PolicyControllerTemplateLibraryConfig::Representation
|
996
|
-
|
1028
|
+
property :version, as: 'version'
|
997
1029
|
end
|
998
1030
|
end
|
999
1031
|
|
1000
|
-
class
|
1032
|
+
class PolicyControllerMembershipSpec
|
1001
1033
|
# @private
|
1002
1034
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1003
|
-
|
1004
|
-
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
|
1005
1036
|
|
1037
|
+
property :version, as: 'version'
|
1006
1038
|
end
|
1007
1039
|
end
|
1008
1040
|
|
1009
|
-
class
|
1041
|
+
class PolicyControllerMembershipState
|
1010
1042
|
# @private
|
1011
1043
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1012
|
-
property :
|
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'
|
1013
1050
|
end
|
1014
1051
|
end
|
1015
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.
|
4
|
+
version: 0.20.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-
|
11
|
+
date: 2022-03-14 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.20.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: []
|