pulumi-gcp 7.14.0a1710186287__py3-none-any.whl → 7.14.1__py3-none-any.whl
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.
- pulumi_gcp/__init__.py +24 -0
- pulumi_gcp/certificatemanager/_inputs.py +14 -4
- pulumi_gcp/certificatemanager/certificate.py +44 -0
- pulumi_gcp/certificatemanager/dns_authorization.py +122 -3
- pulumi_gcp/certificatemanager/outputs.py +14 -4
- pulumi_gcp/clouddeploy/__init__.py +4 -0
- pulumi_gcp/clouddeploy/_inputs.py +80 -0
- pulumi_gcp/clouddeploy/custom_target_type_iam_binding.py +324 -0
- pulumi_gcp/clouddeploy/custom_target_type_iam_member.py +324 -0
- pulumi_gcp/clouddeploy/custom_target_type_iam_policy.py +253 -0
- pulumi_gcp/clouddeploy/get_custom_target_type_iam_policy.py +168 -0
- pulumi_gcp/clouddeploy/outputs.py +56 -0
- pulumi_gcp/cloudfunctions/function.py +14 -14
- pulumi_gcp/compute/_inputs.py +65 -12
- pulumi_gcp/compute/outputs.py +71 -13
- pulumi_gcp/compute/service_attachment.py +150 -0
- pulumi_gcp/dataflow/flex_template_job.py +14 -14
- pulumi_gcp/gkehub/_inputs.py +350 -0
- pulumi_gcp/gkehub/outputs.py +320 -0
- pulumi_gcp/kms/_inputs.py +12 -12
- pulumi_gcp/kms/outputs.py +9 -9
- {pulumi_gcp-7.14.0a1710186287.dist-info → pulumi_gcp-7.14.1.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.14.0a1710186287.dist-info → pulumi_gcp-7.14.1.dist-info}/RECORD +25 -21
- {pulumi_gcp-7.14.0a1710186287.dist-info → pulumi_gcp-7.14.1.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.14.0a1710186287.dist-info → pulumi_gcp-7.14.1.dist-info}/top_level.txt +0 -0
pulumi_gcp/gkehub/_inputs.py
CHANGED
@@ -40,8 +40,14 @@ __all__ = [
|
|
40
40
|
'FeatureMembershipMeshArgs',
|
41
41
|
'FeatureMembershipPolicycontrollerArgs',
|
42
42
|
'FeatureMembershipPolicycontrollerPolicyControllerHubConfigArgs',
|
43
|
+
'FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigArgs',
|
44
|
+
'FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesArgs',
|
45
|
+
'FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesLimitsArgs',
|
46
|
+
'FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesRequestsArgs',
|
47
|
+
'FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigPodTolerationArgs',
|
43
48
|
'FeatureMembershipPolicycontrollerPolicyControllerHubConfigMonitoringArgs',
|
44
49
|
'FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentArgs',
|
50
|
+
'FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentBundleArgs',
|
45
51
|
'FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentTemplateLibraryArgs',
|
46
52
|
'FeatureResourceStateArgs',
|
47
53
|
'FeatureSpecArgs',
|
@@ -1942,6 +1948,7 @@ class FeatureMembershipPolicycontrollerPolicyControllerHubConfigArgs:
|
|
1942
1948
|
def __init__(__self__, *,
|
1943
1949
|
audit_interval_seconds: Optional[pulumi.Input[int]] = None,
|
1944
1950
|
constraint_violation_limit: Optional[pulumi.Input[int]] = None,
|
1951
|
+
deployment_configs: Optional[pulumi.Input[Sequence[pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigArgs']]]] = None,
|
1945
1952
|
exemptable_namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1946
1953
|
install_spec: Optional[pulumi.Input[str]] = None,
|
1947
1954
|
log_denies_enabled: Optional[pulumi.Input[bool]] = None,
|
@@ -1952,6 +1959,7 @@ class FeatureMembershipPolicycontrollerPolicyControllerHubConfigArgs:
|
|
1952
1959
|
"""
|
1953
1960
|
:param pulumi.Input[int] audit_interval_seconds: Sets the interval for Policy Controller Audit Scans (in seconds). When set to 0, this disables audit functionality altogether.
|
1954
1961
|
:param pulumi.Input[int] constraint_violation_limit: The maximum number of audit violations to be stored in a constraint. If not set, the default of 20 will be used.
|
1962
|
+
:param pulumi.Input[Sequence[pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigArgs']]] deployment_configs: Map of deployment configs to deployments ("admission", "audit", "mutation").
|
1955
1963
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] exemptable_namespaces: The set of namespaces that are excluded from Policy Controller checks. Namespaces do not need to currently exist on the cluster.
|
1956
1964
|
:param pulumi.Input[str] install_spec: Configures the mode of the Policy Controller installation. Must be one of `INSTALL_SPEC_NOT_INSTALLED`, `INSTALL_SPEC_ENABLED`, `INSTALL_SPEC_SUSPENDED` or `INSTALL_SPEC_DETACHED`.
|
1957
1965
|
:param pulumi.Input[bool] log_denies_enabled: Logs all denies and dry run failures.
|
@@ -1964,6 +1972,8 @@ class FeatureMembershipPolicycontrollerPolicyControllerHubConfigArgs:
|
|
1964
1972
|
pulumi.set(__self__, "audit_interval_seconds", audit_interval_seconds)
|
1965
1973
|
if constraint_violation_limit is not None:
|
1966
1974
|
pulumi.set(__self__, "constraint_violation_limit", constraint_violation_limit)
|
1975
|
+
if deployment_configs is not None:
|
1976
|
+
pulumi.set(__self__, "deployment_configs", deployment_configs)
|
1967
1977
|
if exemptable_namespaces is not None:
|
1968
1978
|
pulumi.set(__self__, "exemptable_namespaces", exemptable_namespaces)
|
1969
1979
|
if install_spec is not None:
|
@@ -2003,6 +2013,18 @@ class FeatureMembershipPolicycontrollerPolicyControllerHubConfigArgs:
|
|
2003
2013
|
def constraint_violation_limit(self, value: Optional[pulumi.Input[int]]):
|
2004
2014
|
pulumi.set(self, "constraint_violation_limit", value)
|
2005
2015
|
|
2016
|
+
@property
|
2017
|
+
@pulumi.getter(name="deploymentConfigs")
|
2018
|
+
def deployment_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigArgs']]]]:
|
2019
|
+
"""
|
2020
|
+
Map of deployment configs to deployments ("admission", "audit", "mutation").
|
2021
|
+
"""
|
2022
|
+
return pulumi.get(self, "deployment_configs")
|
2023
|
+
|
2024
|
+
@deployment_configs.setter
|
2025
|
+
def deployment_configs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigArgs']]]]):
|
2026
|
+
pulumi.set(self, "deployment_configs", value)
|
2027
|
+
|
2006
2028
|
@property
|
2007
2029
|
@pulumi.getter(name="exemptableNamespaces")
|
2008
2030
|
def exemptable_namespaces(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
@@ -2088,6 +2110,280 @@ class FeatureMembershipPolicycontrollerPolicyControllerHubConfigArgs:
|
|
2088
2110
|
pulumi.set(self, "referential_rules_enabled", value)
|
2089
2111
|
|
2090
2112
|
|
2113
|
+
@pulumi.input_type
|
2114
|
+
class FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigArgs:
|
2115
|
+
def __init__(__self__, *,
|
2116
|
+
component_name: pulumi.Input[str],
|
2117
|
+
container_resources: Optional[pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesArgs']] = None,
|
2118
|
+
pod_affinity: Optional[pulumi.Input[str]] = None,
|
2119
|
+
pod_tolerations: Optional[pulumi.Input[Sequence[pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigPodTolerationArgs']]]] = None,
|
2120
|
+
replica_count: Optional[pulumi.Input[int]] = None):
|
2121
|
+
"""
|
2122
|
+
:param pulumi.Input[str] component_name: The name of the component. One of `admission` `audit` or `mutation`
|
2123
|
+
:param pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesArgs'] container_resources: Container resource requirements.
|
2124
|
+
:param pulumi.Input[str] pod_affinity: Pod affinity configuration. Possible values: AFFINITY_UNSPECIFIED, NO_AFFINITY, ANTI_AFFINITY
|
2125
|
+
:param pulumi.Input[Sequence[pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigPodTolerationArgs']]] pod_tolerations: Pod tolerations of node taints.
|
2126
|
+
:param pulumi.Input[int] replica_count: Pod replica count.
|
2127
|
+
"""
|
2128
|
+
pulumi.set(__self__, "component_name", component_name)
|
2129
|
+
if container_resources is not None:
|
2130
|
+
pulumi.set(__self__, "container_resources", container_resources)
|
2131
|
+
if pod_affinity is not None:
|
2132
|
+
pulumi.set(__self__, "pod_affinity", pod_affinity)
|
2133
|
+
if pod_tolerations is not None:
|
2134
|
+
pulumi.set(__self__, "pod_tolerations", pod_tolerations)
|
2135
|
+
if replica_count is not None:
|
2136
|
+
pulumi.set(__self__, "replica_count", replica_count)
|
2137
|
+
|
2138
|
+
@property
|
2139
|
+
@pulumi.getter(name="componentName")
|
2140
|
+
def component_name(self) -> pulumi.Input[str]:
|
2141
|
+
"""
|
2142
|
+
The name of the component. One of `admission` `audit` or `mutation`
|
2143
|
+
"""
|
2144
|
+
return pulumi.get(self, "component_name")
|
2145
|
+
|
2146
|
+
@component_name.setter
|
2147
|
+
def component_name(self, value: pulumi.Input[str]):
|
2148
|
+
pulumi.set(self, "component_name", value)
|
2149
|
+
|
2150
|
+
@property
|
2151
|
+
@pulumi.getter(name="containerResources")
|
2152
|
+
def container_resources(self) -> Optional[pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesArgs']]:
|
2153
|
+
"""
|
2154
|
+
Container resource requirements.
|
2155
|
+
"""
|
2156
|
+
return pulumi.get(self, "container_resources")
|
2157
|
+
|
2158
|
+
@container_resources.setter
|
2159
|
+
def container_resources(self, value: Optional[pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesArgs']]):
|
2160
|
+
pulumi.set(self, "container_resources", value)
|
2161
|
+
|
2162
|
+
@property
|
2163
|
+
@pulumi.getter(name="podAffinity")
|
2164
|
+
def pod_affinity(self) -> Optional[pulumi.Input[str]]:
|
2165
|
+
"""
|
2166
|
+
Pod affinity configuration. Possible values: AFFINITY_UNSPECIFIED, NO_AFFINITY, ANTI_AFFINITY
|
2167
|
+
"""
|
2168
|
+
return pulumi.get(self, "pod_affinity")
|
2169
|
+
|
2170
|
+
@pod_affinity.setter
|
2171
|
+
def pod_affinity(self, value: Optional[pulumi.Input[str]]):
|
2172
|
+
pulumi.set(self, "pod_affinity", value)
|
2173
|
+
|
2174
|
+
@property
|
2175
|
+
@pulumi.getter(name="podTolerations")
|
2176
|
+
def pod_tolerations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigPodTolerationArgs']]]]:
|
2177
|
+
"""
|
2178
|
+
Pod tolerations of node taints.
|
2179
|
+
"""
|
2180
|
+
return pulumi.get(self, "pod_tolerations")
|
2181
|
+
|
2182
|
+
@pod_tolerations.setter
|
2183
|
+
def pod_tolerations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigPodTolerationArgs']]]]):
|
2184
|
+
pulumi.set(self, "pod_tolerations", value)
|
2185
|
+
|
2186
|
+
@property
|
2187
|
+
@pulumi.getter(name="replicaCount")
|
2188
|
+
def replica_count(self) -> Optional[pulumi.Input[int]]:
|
2189
|
+
"""
|
2190
|
+
Pod replica count.
|
2191
|
+
"""
|
2192
|
+
return pulumi.get(self, "replica_count")
|
2193
|
+
|
2194
|
+
@replica_count.setter
|
2195
|
+
def replica_count(self, value: Optional[pulumi.Input[int]]):
|
2196
|
+
pulumi.set(self, "replica_count", value)
|
2197
|
+
|
2198
|
+
|
2199
|
+
@pulumi.input_type
|
2200
|
+
class FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesArgs:
|
2201
|
+
def __init__(__self__, *,
|
2202
|
+
limits: Optional[pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesLimitsArgs']] = None,
|
2203
|
+
requests: Optional[pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesRequestsArgs']] = None):
|
2204
|
+
"""
|
2205
|
+
:param pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesLimitsArgs'] limits: Limits describes the maximum amount of compute resources allowed for use by the running container.
|
2206
|
+
:param pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesRequestsArgs'] requests: Requests describes the amount of compute resources reserved for the container by the kube-scheduler.
|
2207
|
+
"""
|
2208
|
+
if limits is not None:
|
2209
|
+
pulumi.set(__self__, "limits", limits)
|
2210
|
+
if requests is not None:
|
2211
|
+
pulumi.set(__self__, "requests", requests)
|
2212
|
+
|
2213
|
+
@property
|
2214
|
+
@pulumi.getter
|
2215
|
+
def limits(self) -> Optional[pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesLimitsArgs']]:
|
2216
|
+
"""
|
2217
|
+
Limits describes the maximum amount of compute resources allowed for use by the running container.
|
2218
|
+
"""
|
2219
|
+
return pulumi.get(self, "limits")
|
2220
|
+
|
2221
|
+
@limits.setter
|
2222
|
+
def limits(self, value: Optional[pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesLimitsArgs']]):
|
2223
|
+
pulumi.set(self, "limits", value)
|
2224
|
+
|
2225
|
+
@property
|
2226
|
+
@pulumi.getter
|
2227
|
+
def requests(self) -> Optional[pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesRequestsArgs']]:
|
2228
|
+
"""
|
2229
|
+
Requests describes the amount of compute resources reserved for the container by the kube-scheduler.
|
2230
|
+
"""
|
2231
|
+
return pulumi.get(self, "requests")
|
2232
|
+
|
2233
|
+
@requests.setter
|
2234
|
+
def requests(self, value: Optional[pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesRequestsArgs']]):
|
2235
|
+
pulumi.set(self, "requests", value)
|
2236
|
+
|
2237
|
+
|
2238
|
+
@pulumi.input_type
|
2239
|
+
class FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesLimitsArgs:
|
2240
|
+
def __init__(__self__, *,
|
2241
|
+
cpu: Optional[pulumi.Input[str]] = None,
|
2242
|
+
memory: Optional[pulumi.Input[str]] = None):
|
2243
|
+
"""
|
2244
|
+
:param pulumi.Input[str] cpu: CPU requirement expressed in Kubernetes resource units.
|
2245
|
+
:param pulumi.Input[str] memory: Memory requirement expressed in Kubernetes resource units.
|
2246
|
+
"""
|
2247
|
+
if cpu is not None:
|
2248
|
+
pulumi.set(__self__, "cpu", cpu)
|
2249
|
+
if memory is not None:
|
2250
|
+
pulumi.set(__self__, "memory", memory)
|
2251
|
+
|
2252
|
+
@property
|
2253
|
+
@pulumi.getter
|
2254
|
+
def cpu(self) -> Optional[pulumi.Input[str]]:
|
2255
|
+
"""
|
2256
|
+
CPU requirement expressed in Kubernetes resource units.
|
2257
|
+
"""
|
2258
|
+
return pulumi.get(self, "cpu")
|
2259
|
+
|
2260
|
+
@cpu.setter
|
2261
|
+
def cpu(self, value: Optional[pulumi.Input[str]]):
|
2262
|
+
pulumi.set(self, "cpu", value)
|
2263
|
+
|
2264
|
+
@property
|
2265
|
+
@pulumi.getter
|
2266
|
+
def memory(self) -> Optional[pulumi.Input[str]]:
|
2267
|
+
"""
|
2268
|
+
Memory requirement expressed in Kubernetes resource units.
|
2269
|
+
"""
|
2270
|
+
return pulumi.get(self, "memory")
|
2271
|
+
|
2272
|
+
@memory.setter
|
2273
|
+
def memory(self, value: Optional[pulumi.Input[str]]):
|
2274
|
+
pulumi.set(self, "memory", value)
|
2275
|
+
|
2276
|
+
|
2277
|
+
@pulumi.input_type
|
2278
|
+
class FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesRequestsArgs:
|
2279
|
+
def __init__(__self__, *,
|
2280
|
+
cpu: Optional[pulumi.Input[str]] = None,
|
2281
|
+
memory: Optional[pulumi.Input[str]] = None):
|
2282
|
+
"""
|
2283
|
+
:param pulumi.Input[str] cpu: CPU requirement expressed in Kubernetes resource units.
|
2284
|
+
:param pulumi.Input[str] memory: Memory requirement expressed in Kubernetes resource units.
|
2285
|
+
"""
|
2286
|
+
if cpu is not None:
|
2287
|
+
pulumi.set(__self__, "cpu", cpu)
|
2288
|
+
if memory is not None:
|
2289
|
+
pulumi.set(__self__, "memory", memory)
|
2290
|
+
|
2291
|
+
@property
|
2292
|
+
@pulumi.getter
|
2293
|
+
def cpu(self) -> Optional[pulumi.Input[str]]:
|
2294
|
+
"""
|
2295
|
+
CPU requirement expressed in Kubernetes resource units.
|
2296
|
+
"""
|
2297
|
+
return pulumi.get(self, "cpu")
|
2298
|
+
|
2299
|
+
@cpu.setter
|
2300
|
+
def cpu(self, value: Optional[pulumi.Input[str]]):
|
2301
|
+
pulumi.set(self, "cpu", value)
|
2302
|
+
|
2303
|
+
@property
|
2304
|
+
@pulumi.getter
|
2305
|
+
def memory(self) -> Optional[pulumi.Input[str]]:
|
2306
|
+
"""
|
2307
|
+
Memory requirement expressed in Kubernetes resource units.
|
2308
|
+
"""
|
2309
|
+
return pulumi.get(self, "memory")
|
2310
|
+
|
2311
|
+
@memory.setter
|
2312
|
+
def memory(self, value: Optional[pulumi.Input[str]]):
|
2313
|
+
pulumi.set(self, "memory", value)
|
2314
|
+
|
2315
|
+
|
2316
|
+
@pulumi.input_type
|
2317
|
+
class FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigPodTolerationArgs:
|
2318
|
+
def __init__(__self__, *,
|
2319
|
+
effect: Optional[pulumi.Input[str]] = None,
|
2320
|
+
key: Optional[pulumi.Input[str]] = None,
|
2321
|
+
operator: Optional[pulumi.Input[str]] = None,
|
2322
|
+
value: Optional[pulumi.Input[str]] = None):
|
2323
|
+
"""
|
2324
|
+
:param pulumi.Input[str] effect: Matches a taint effect.
|
2325
|
+
:param pulumi.Input[str] key: Matches a taint key (not necessarily unique).
|
2326
|
+
:param pulumi.Input[str] operator: Matches a taint operator.
|
2327
|
+
:param pulumi.Input[str] value: Matches a taint value.
|
2328
|
+
"""
|
2329
|
+
if effect is not None:
|
2330
|
+
pulumi.set(__self__, "effect", effect)
|
2331
|
+
if key is not None:
|
2332
|
+
pulumi.set(__self__, "key", key)
|
2333
|
+
if operator is not None:
|
2334
|
+
pulumi.set(__self__, "operator", operator)
|
2335
|
+
if value is not None:
|
2336
|
+
pulumi.set(__self__, "value", value)
|
2337
|
+
|
2338
|
+
@property
|
2339
|
+
@pulumi.getter
|
2340
|
+
def effect(self) -> Optional[pulumi.Input[str]]:
|
2341
|
+
"""
|
2342
|
+
Matches a taint effect.
|
2343
|
+
"""
|
2344
|
+
return pulumi.get(self, "effect")
|
2345
|
+
|
2346
|
+
@effect.setter
|
2347
|
+
def effect(self, value: Optional[pulumi.Input[str]]):
|
2348
|
+
pulumi.set(self, "effect", value)
|
2349
|
+
|
2350
|
+
@property
|
2351
|
+
@pulumi.getter
|
2352
|
+
def key(self) -> Optional[pulumi.Input[str]]:
|
2353
|
+
"""
|
2354
|
+
Matches a taint key (not necessarily unique).
|
2355
|
+
"""
|
2356
|
+
return pulumi.get(self, "key")
|
2357
|
+
|
2358
|
+
@key.setter
|
2359
|
+
def key(self, value: Optional[pulumi.Input[str]]):
|
2360
|
+
pulumi.set(self, "key", value)
|
2361
|
+
|
2362
|
+
@property
|
2363
|
+
@pulumi.getter
|
2364
|
+
def operator(self) -> Optional[pulumi.Input[str]]:
|
2365
|
+
"""
|
2366
|
+
Matches a taint operator.
|
2367
|
+
"""
|
2368
|
+
return pulumi.get(self, "operator")
|
2369
|
+
|
2370
|
+
@operator.setter
|
2371
|
+
def operator(self, value: Optional[pulumi.Input[str]]):
|
2372
|
+
pulumi.set(self, "operator", value)
|
2373
|
+
|
2374
|
+
@property
|
2375
|
+
@pulumi.getter
|
2376
|
+
def value(self) -> Optional[pulumi.Input[str]]:
|
2377
|
+
"""
|
2378
|
+
Matches a taint value.
|
2379
|
+
"""
|
2380
|
+
return pulumi.get(self, "value")
|
2381
|
+
|
2382
|
+
@value.setter
|
2383
|
+
def value(self, value: Optional[pulumi.Input[str]]):
|
2384
|
+
pulumi.set(self, "value", value)
|
2385
|
+
|
2386
|
+
|
2091
2387
|
@pulumi.input_type
|
2092
2388
|
class FeatureMembershipPolicycontrollerPolicyControllerHubConfigMonitoringArgs:
|
2093
2389
|
def __init__(__self__, *,
|
@@ -2114,13 +2410,29 @@ class FeatureMembershipPolicycontrollerPolicyControllerHubConfigMonitoringArgs:
|
|
2114
2410
|
@pulumi.input_type
|
2115
2411
|
class FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentArgs:
|
2116
2412
|
def __init__(__self__, *,
|
2413
|
+
bundles: Optional[pulumi.Input[Sequence[pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentBundleArgs']]]] = None,
|
2117
2414
|
template_library: Optional[pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentTemplateLibraryArgs']] = None):
|
2118
2415
|
"""
|
2416
|
+
:param pulumi.Input[Sequence[pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentBundleArgs']]] bundles: map of bundle name to BundleInstallSpec. The bundle name maps to the `bundleName` key in the `policycontroller.gke.io/constraintData` annotation on a constraint.
|
2119
2417
|
:param pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentTemplateLibraryArgs'] template_library: Configures the installation of the Template Library. Structure is documented below.
|
2120
2418
|
"""
|
2419
|
+
if bundles is not None:
|
2420
|
+
pulumi.set(__self__, "bundles", bundles)
|
2121
2421
|
if template_library is not None:
|
2122
2422
|
pulumi.set(__self__, "template_library", template_library)
|
2123
2423
|
|
2424
|
+
@property
|
2425
|
+
@pulumi.getter
|
2426
|
+
def bundles(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentBundleArgs']]]]:
|
2427
|
+
"""
|
2428
|
+
map of bundle name to BundleInstallSpec. The bundle name maps to the `bundleName` key in the `policycontroller.gke.io/constraintData` annotation on a constraint.
|
2429
|
+
"""
|
2430
|
+
return pulumi.get(self, "bundles")
|
2431
|
+
|
2432
|
+
@bundles.setter
|
2433
|
+
def bundles(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentBundleArgs']]]]):
|
2434
|
+
pulumi.set(self, "bundles", value)
|
2435
|
+
|
2124
2436
|
@property
|
2125
2437
|
@pulumi.getter(name="templateLibrary")
|
2126
2438
|
def template_library(self) -> Optional[pulumi.Input['FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentTemplateLibraryArgs']]:
|
@@ -2134,6 +2446,44 @@ class FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentArg
|
|
2134
2446
|
pulumi.set(self, "template_library", value)
|
2135
2447
|
|
2136
2448
|
|
2449
|
+
@pulumi.input_type
|
2450
|
+
class FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentBundleArgs:
|
2451
|
+
def __init__(__self__, *,
|
2452
|
+
bundle_name: pulumi.Input[str],
|
2453
|
+
exempted_namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
2454
|
+
"""
|
2455
|
+
:param pulumi.Input[str] bundle_name: The name of the bundle.
|
2456
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] exempted_namespaces: The set of namespaces to be exempted from the bundle.
|
2457
|
+
"""
|
2458
|
+
pulumi.set(__self__, "bundle_name", bundle_name)
|
2459
|
+
if exempted_namespaces is not None:
|
2460
|
+
pulumi.set(__self__, "exempted_namespaces", exempted_namespaces)
|
2461
|
+
|
2462
|
+
@property
|
2463
|
+
@pulumi.getter(name="bundleName")
|
2464
|
+
def bundle_name(self) -> pulumi.Input[str]:
|
2465
|
+
"""
|
2466
|
+
The name of the bundle.
|
2467
|
+
"""
|
2468
|
+
return pulumi.get(self, "bundle_name")
|
2469
|
+
|
2470
|
+
@bundle_name.setter
|
2471
|
+
def bundle_name(self, value: pulumi.Input[str]):
|
2472
|
+
pulumi.set(self, "bundle_name", value)
|
2473
|
+
|
2474
|
+
@property
|
2475
|
+
@pulumi.getter(name="exemptedNamespaces")
|
2476
|
+
def exempted_namespaces(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
2477
|
+
"""
|
2478
|
+
The set of namespaces to be exempted from the bundle.
|
2479
|
+
"""
|
2480
|
+
return pulumi.get(self, "exempted_namespaces")
|
2481
|
+
|
2482
|
+
@exempted_namespaces.setter
|
2483
|
+
def exempted_namespaces(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
2484
|
+
pulumi.set(self, "exempted_namespaces", value)
|
2485
|
+
|
2486
|
+
|
2137
2487
|
@pulumi.input_type
|
2138
2488
|
class FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentTemplateLibraryArgs:
|
2139
2489
|
def __init__(__self__, *,
|