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/outputs.py
CHANGED
@@ -41,8 +41,14 @@ __all__ = [
|
|
41
41
|
'FeatureMembershipMesh',
|
42
42
|
'FeatureMembershipPolicycontroller',
|
43
43
|
'FeatureMembershipPolicycontrollerPolicyControllerHubConfig',
|
44
|
+
'FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfig',
|
45
|
+
'FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResources',
|
46
|
+
'FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesLimits',
|
47
|
+
'FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesRequests',
|
48
|
+
'FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigPodToleration',
|
44
49
|
'FeatureMembershipPolicycontrollerPolicyControllerHubConfigMonitoring',
|
45
50
|
'FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContent',
|
51
|
+
'FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentBundle',
|
46
52
|
'FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentTemplateLibrary',
|
47
53
|
'FeatureResourceState',
|
48
54
|
'FeatureSpec',
|
@@ -1908,6 +1914,8 @@ class FeatureMembershipPolicycontrollerPolicyControllerHubConfig(dict):
|
|
1908
1914
|
suggest = "audit_interval_seconds"
|
1909
1915
|
elif key == "constraintViolationLimit":
|
1910
1916
|
suggest = "constraint_violation_limit"
|
1917
|
+
elif key == "deploymentConfigs":
|
1918
|
+
suggest = "deployment_configs"
|
1911
1919
|
elif key == "exemptableNamespaces":
|
1912
1920
|
suggest = "exemptable_namespaces"
|
1913
1921
|
elif key == "installSpec":
|
@@ -1935,6 +1943,7 @@ class FeatureMembershipPolicycontrollerPolicyControllerHubConfig(dict):
|
|
1935
1943
|
def __init__(__self__, *,
|
1936
1944
|
audit_interval_seconds: Optional[int] = None,
|
1937
1945
|
constraint_violation_limit: Optional[int] = None,
|
1946
|
+
deployment_configs: Optional[Sequence['outputs.FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfig']] = None,
|
1938
1947
|
exemptable_namespaces: Optional[Sequence[str]] = None,
|
1939
1948
|
install_spec: Optional[str] = None,
|
1940
1949
|
log_denies_enabled: Optional[bool] = None,
|
@@ -1945,6 +1954,7 @@ class FeatureMembershipPolicycontrollerPolicyControllerHubConfig(dict):
|
|
1945
1954
|
"""
|
1946
1955
|
:param int audit_interval_seconds: Sets the interval for Policy Controller Audit Scans (in seconds). When set to 0, this disables audit functionality altogether.
|
1947
1956
|
:param 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.
|
1957
|
+
:param Sequence['FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigArgs'] deployment_configs: Map of deployment configs to deployments ("admission", "audit", "mutation").
|
1948
1958
|
:param Sequence[str] exemptable_namespaces: The set of namespaces that are excluded from Policy Controller checks. Namespaces do not need to currently exist on the cluster.
|
1949
1959
|
:param 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`.
|
1950
1960
|
:param bool log_denies_enabled: Logs all denies and dry run failures.
|
@@ -1957,6 +1967,8 @@ class FeatureMembershipPolicycontrollerPolicyControllerHubConfig(dict):
|
|
1957
1967
|
pulumi.set(__self__, "audit_interval_seconds", audit_interval_seconds)
|
1958
1968
|
if constraint_violation_limit is not None:
|
1959
1969
|
pulumi.set(__self__, "constraint_violation_limit", constraint_violation_limit)
|
1970
|
+
if deployment_configs is not None:
|
1971
|
+
pulumi.set(__self__, "deployment_configs", deployment_configs)
|
1960
1972
|
if exemptable_namespaces is not None:
|
1961
1973
|
pulumi.set(__self__, "exemptable_namespaces", exemptable_namespaces)
|
1962
1974
|
if install_spec is not None:
|
@@ -1988,6 +2000,14 @@ class FeatureMembershipPolicycontrollerPolicyControllerHubConfig(dict):
|
|
1988
2000
|
"""
|
1989
2001
|
return pulumi.get(self, "constraint_violation_limit")
|
1990
2002
|
|
2003
|
+
@property
|
2004
|
+
@pulumi.getter(name="deploymentConfigs")
|
2005
|
+
def deployment_configs(self) -> Optional[Sequence['outputs.FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfig']]:
|
2006
|
+
"""
|
2007
|
+
Map of deployment configs to deployments ("admission", "audit", "mutation").
|
2008
|
+
"""
|
2009
|
+
return pulumi.get(self, "deployment_configs")
|
2010
|
+
|
1991
2011
|
@property
|
1992
2012
|
@pulumi.getter(name="exemptableNamespaces")
|
1993
2013
|
def exemptable_namespaces(self) -> Optional[Sequence[str]]:
|
@@ -2045,6 +2065,245 @@ class FeatureMembershipPolicycontrollerPolicyControllerHubConfig(dict):
|
|
2045
2065
|
return pulumi.get(self, "referential_rules_enabled")
|
2046
2066
|
|
2047
2067
|
|
2068
|
+
@pulumi.output_type
|
2069
|
+
class FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfig(dict):
|
2070
|
+
@staticmethod
|
2071
|
+
def __key_warning(key: str):
|
2072
|
+
suggest = None
|
2073
|
+
if key == "componentName":
|
2074
|
+
suggest = "component_name"
|
2075
|
+
elif key == "containerResources":
|
2076
|
+
suggest = "container_resources"
|
2077
|
+
elif key == "podAffinity":
|
2078
|
+
suggest = "pod_affinity"
|
2079
|
+
elif key == "podTolerations":
|
2080
|
+
suggest = "pod_tolerations"
|
2081
|
+
elif key == "replicaCount":
|
2082
|
+
suggest = "replica_count"
|
2083
|
+
|
2084
|
+
if suggest:
|
2085
|
+
pulumi.log.warn(f"Key '{key}' not found in FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfig. Access the value via the '{suggest}' property getter instead.")
|
2086
|
+
|
2087
|
+
def __getitem__(self, key: str) -> Any:
|
2088
|
+
FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfig.__key_warning(key)
|
2089
|
+
return super().__getitem__(key)
|
2090
|
+
|
2091
|
+
def get(self, key: str, default = None) -> Any:
|
2092
|
+
FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfig.__key_warning(key)
|
2093
|
+
return super().get(key, default)
|
2094
|
+
|
2095
|
+
def __init__(__self__, *,
|
2096
|
+
component_name: str,
|
2097
|
+
container_resources: Optional['outputs.FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResources'] = None,
|
2098
|
+
pod_affinity: Optional[str] = None,
|
2099
|
+
pod_tolerations: Optional[Sequence['outputs.FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigPodToleration']] = None,
|
2100
|
+
replica_count: Optional[int] = None):
|
2101
|
+
"""
|
2102
|
+
:param str component_name: The name of the component. One of `admission` `audit` or `mutation`
|
2103
|
+
:param 'FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesArgs' container_resources: Container resource requirements.
|
2104
|
+
:param str pod_affinity: Pod affinity configuration. Possible values: AFFINITY_UNSPECIFIED, NO_AFFINITY, ANTI_AFFINITY
|
2105
|
+
:param Sequence['FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigPodTolerationArgs'] pod_tolerations: Pod tolerations of node taints.
|
2106
|
+
:param int replica_count: Pod replica count.
|
2107
|
+
"""
|
2108
|
+
pulumi.set(__self__, "component_name", component_name)
|
2109
|
+
if container_resources is not None:
|
2110
|
+
pulumi.set(__self__, "container_resources", container_resources)
|
2111
|
+
if pod_affinity is not None:
|
2112
|
+
pulumi.set(__self__, "pod_affinity", pod_affinity)
|
2113
|
+
if pod_tolerations is not None:
|
2114
|
+
pulumi.set(__self__, "pod_tolerations", pod_tolerations)
|
2115
|
+
if replica_count is not None:
|
2116
|
+
pulumi.set(__self__, "replica_count", replica_count)
|
2117
|
+
|
2118
|
+
@property
|
2119
|
+
@pulumi.getter(name="componentName")
|
2120
|
+
def component_name(self) -> str:
|
2121
|
+
"""
|
2122
|
+
The name of the component. One of `admission` `audit` or `mutation`
|
2123
|
+
"""
|
2124
|
+
return pulumi.get(self, "component_name")
|
2125
|
+
|
2126
|
+
@property
|
2127
|
+
@pulumi.getter(name="containerResources")
|
2128
|
+
def container_resources(self) -> Optional['outputs.FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResources']:
|
2129
|
+
"""
|
2130
|
+
Container resource requirements.
|
2131
|
+
"""
|
2132
|
+
return pulumi.get(self, "container_resources")
|
2133
|
+
|
2134
|
+
@property
|
2135
|
+
@pulumi.getter(name="podAffinity")
|
2136
|
+
def pod_affinity(self) -> Optional[str]:
|
2137
|
+
"""
|
2138
|
+
Pod affinity configuration. Possible values: AFFINITY_UNSPECIFIED, NO_AFFINITY, ANTI_AFFINITY
|
2139
|
+
"""
|
2140
|
+
return pulumi.get(self, "pod_affinity")
|
2141
|
+
|
2142
|
+
@property
|
2143
|
+
@pulumi.getter(name="podTolerations")
|
2144
|
+
def pod_tolerations(self) -> Optional[Sequence['outputs.FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigPodToleration']]:
|
2145
|
+
"""
|
2146
|
+
Pod tolerations of node taints.
|
2147
|
+
"""
|
2148
|
+
return pulumi.get(self, "pod_tolerations")
|
2149
|
+
|
2150
|
+
@property
|
2151
|
+
@pulumi.getter(name="replicaCount")
|
2152
|
+
def replica_count(self) -> Optional[int]:
|
2153
|
+
"""
|
2154
|
+
Pod replica count.
|
2155
|
+
"""
|
2156
|
+
return pulumi.get(self, "replica_count")
|
2157
|
+
|
2158
|
+
|
2159
|
+
@pulumi.output_type
|
2160
|
+
class FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResources(dict):
|
2161
|
+
def __init__(__self__, *,
|
2162
|
+
limits: Optional['outputs.FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesLimits'] = None,
|
2163
|
+
requests: Optional['outputs.FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesRequests'] = None):
|
2164
|
+
"""
|
2165
|
+
:param 'FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesLimitsArgs' limits: Limits describes the maximum amount of compute resources allowed for use by the running container.
|
2166
|
+
:param 'FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesRequestsArgs' requests: Requests describes the amount of compute resources reserved for the container by the kube-scheduler.
|
2167
|
+
"""
|
2168
|
+
if limits is not None:
|
2169
|
+
pulumi.set(__self__, "limits", limits)
|
2170
|
+
if requests is not None:
|
2171
|
+
pulumi.set(__self__, "requests", requests)
|
2172
|
+
|
2173
|
+
@property
|
2174
|
+
@pulumi.getter
|
2175
|
+
def limits(self) -> Optional['outputs.FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesLimits']:
|
2176
|
+
"""
|
2177
|
+
Limits describes the maximum amount of compute resources allowed for use by the running container.
|
2178
|
+
"""
|
2179
|
+
return pulumi.get(self, "limits")
|
2180
|
+
|
2181
|
+
@property
|
2182
|
+
@pulumi.getter
|
2183
|
+
def requests(self) -> Optional['outputs.FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesRequests']:
|
2184
|
+
"""
|
2185
|
+
Requests describes the amount of compute resources reserved for the container by the kube-scheduler.
|
2186
|
+
"""
|
2187
|
+
return pulumi.get(self, "requests")
|
2188
|
+
|
2189
|
+
|
2190
|
+
@pulumi.output_type
|
2191
|
+
class FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesLimits(dict):
|
2192
|
+
def __init__(__self__, *,
|
2193
|
+
cpu: Optional[str] = None,
|
2194
|
+
memory: Optional[str] = None):
|
2195
|
+
"""
|
2196
|
+
:param str cpu: CPU requirement expressed in Kubernetes resource units.
|
2197
|
+
:param str memory: Memory requirement expressed in Kubernetes resource units.
|
2198
|
+
"""
|
2199
|
+
if cpu is not None:
|
2200
|
+
pulumi.set(__self__, "cpu", cpu)
|
2201
|
+
if memory is not None:
|
2202
|
+
pulumi.set(__self__, "memory", memory)
|
2203
|
+
|
2204
|
+
@property
|
2205
|
+
@pulumi.getter
|
2206
|
+
def cpu(self) -> Optional[str]:
|
2207
|
+
"""
|
2208
|
+
CPU requirement expressed in Kubernetes resource units.
|
2209
|
+
"""
|
2210
|
+
return pulumi.get(self, "cpu")
|
2211
|
+
|
2212
|
+
@property
|
2213
|
+
@pulumi.getter
|
2214
|
+
def memory(self) -> Optional[str]:
|
2215
|
+
"""
|
2216
|
+
Memory requirement expressed in Kubernetes resource units.
|
2217
|
+
"""
|
2218
|
+
return pulumi.get(self, "memory")
|
2219
|
+
|
2220
|
+
|
2221
|
+
@pulumi.output_type
|
2222
|
+
class FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesRequests(dict):
|
2223
|
+
def __init__(__self__, *,
|
2224
|
+
cpu: Optional[str] = None,
|
2225
|
+
memory: Optional[str] = None):
|
2226
|
+
"""
|
2227
|
+
:param str cpu: CPU requirement expressed in Kubernetes resource units.
|
2228
|
+
:param str memory: Memory requirement expressed in Kubernetes resource units.
|
2229
|
+
"""
|
2230
|
+
if cpu is not None:
|
2231
|
+
pulumi.set(__self__, "cpu", cpu)
|
2232
|
+
if memory is not None:
|
2233
|
+
pulumi.set(__self__, "memory", memory)
|
2234
|
+
|
2235
|
+
@property
|
2236
|
+
@pulumi.getter
|
2237
|
+
def cpu(self) -> Optional[str]:
|
2238
|
+
"""
|
2239
|
+
CPU requirement expressed in Kubernetes resource units.
|
2240
|
+
"""
|
2241
|
+
return pulumi.get(self, "cpu")
|
2242
|
+
|
2243
|
+
@property
|
2244
|
+
@pulumi.getter
|
2245
|
+
def memory(self) -> Optional[str]:
|
2246
|
+
"""
|
2247
|
+
Memory requirement expressed in Kubernetes resource units.
|
2248
|
+
"""
|
2249
|
+
return pulumi.get(self, "memory")
|
2250
|
+
|
2251
|
+
|
2252
|
+
@pulumi.output_type
|
2253
|
+
class FeatureMembershipPolicycontrollerPolicyControllerHubConfigDeploymentConfigPodToleration(dict):
|
2254
|
+
def __init__(__self__, *,
|
2255
|
+
effect: Optional[str] = None,
|
2256
|
+
key: Optional[str] = None,
|
2257
|
+
operator: Optional[str] = None,
|
2258
|
+
value: Optional[str] = None):
|
2259
|
+
"""
|
2260
|
+
:param str effect: Matches a taint effect.
|
2261
|
+
:param str key: Matches a taint key (not necessarily unique).
|
2262
|
+
:param str operator: Matches a taint operator.
|
2263
|
+
:param str value: Matches a taint value.
|
2264
|
+
"""
|
2265
|
+
if effect is not None:
|
2266
|
+
pulumi.set(__self__, "effect", effect)
|
2267
|
+
if key is not None:
|
2268
|
+
pulumi.set(__self__, "key", key)
|
2269
|
+
if operator is not None:
|
2270
|
+
pulumi.set(__self__, "operator", operator)
|
2271
|
+
if value is not None:
|
2272
|
+
pulumi.set(__self__, "value", value)
|
2273
|
+
|
2274
|
+
@property
|
2275
|
+
@pulumi.getter
|
2276
|
+
def effect(self) -> Optional[str]:
|
2277
|
+
"""
|
2278
|
+
Matches a taint effect.
|
2279
|
+
"""
|
2280
|
+
return pulumi.get(self, "effect")
|
2281
|
+
|
2282
|
+
@property
|
2283
|
+
@pulumi.getter
|
2284
|
+
def key(self) -> Optional[str]:
|
2285
|
+
"""
|
2286
|
+
Matches a taint key (not necessarily unique).
|
2287
|
+
"""
|
2288
|
+
return pulumi.get(self, "key")
|
2289
|
+
|
2290
|
+
@property
|
2291
|
+
@pulumi.getter
|
2292
|
+
def operator(self) -> Optional[str]:
|
2293
|
+
"""
|
2294
|
+
Matches a taint operator.
|
2295
|
+
"""
|
2296
|
+
return pulumi.get(self, "operator")
|
2297
|
+
|
2298
|
+
@property
|
2299
|
+
@pulumi.getter
|
2300
|
+
def value(self) -> Optional[str]:
|
2301
|
+
"""
|
2302
|
+
Matches a taint value.
|
2303
|
+
"""
|
2304
|
+
return pulumi.get(self, "value")
|
2305
|
+
|
2306
|
+
|
2048
2307
|
@pulumi.output_type
|
2049
2308
|
class FeatureMembershipPolicycontrollerPolicyControllerHubConfigMonitoring(dict):
|
2050
2309
|
def __init__(__self__, *,
|
@@ -2084,13 +2343,25 @@ class FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContent(di
|
|
2084
2343
|
return super().get(key, default)
|
2085
2344
|
|
2086
2345
|
def __init__(__self__, *,
|
2346
|
+
bundles: Optional[Sequence['outputs.FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentBundle']] = None,
|
2087
2347
|
template_library: Optional['outputs.FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentTemplateLibrary'] = None):
|
2088
2348
|
"""
|
2349
|
+
:param Sequence['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.
|
2089
2350
|
:param 'FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentTemplateLibraryArgs' template_library: Configures the installation of the Template Library. Structure is documented below.
|
2090
2351
|
"""
|
2352
|
+
if bundles is not None:
|
2353
|
+
pulumi.set(__self__, "bundles", bundles)
|
2091
2354
|
if template_library is not None:
|
2092
2355
|
pulumi.set(__self__, "template_library", template_library)
|
2093
2356
|
|
2357
|
+
@property
|
2358
|
+
@pulumi.getter
|
2359
|
+
def bundles(self) -> Optional[Sequence['outputs.FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentBundle']]:
|
2360
|
+
"""
|
2361
|
+
map of bundle name to BundleInstallSpec. The bundle name maps to the `bundleName` key in the `policycontroller.gke.io/constraintData` annotation on a constraint.
|
2362
|
+
"""
|
2363
|
+
return pulumi.get(self, "bundles")
|
2364
|
+
|
2094
2365
|
@property
|
2095
2366
|
@pulumi.getter(name="templateLibrary")
|
2096
2367
|
def template_library(self) -> Optional['outputs.FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentTemplateLibrary']:
|
@@ -2100,6 +2371,55 @@ class FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContent(di
|
|
2100
2371
|
return pulumi.get(self, "template_library")
|
2101
2372
|
|
2102
2373
|
|
2374
|
+
@pulumi.output_type
|
2375
|
+
class FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentBundle(dict):
|
2376
|
+
@staticmethod
|
2377
|
+
def __key_warning(key: str):
|
2378
|
+
suggest = None
|
2379
|
+
if key == "bundleName":
|
2380
|
+
suggest = "bundle_name"
|
2381
|
+
elif key == "exemptedNamespaces":
|
2382
|
+
suggest = "exempted_namespaces"
|
2383
|
+
|
2384
|
+
if suggest:
|
2385
|
+
pulumi.log.warn(f"Key '{key}' not found in FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentBundle. Access the value via the '{suggest}' property getter instead.")
|
2386
|
+
|
2387
|
+
def __getitem__(self, key: str) -> Any:
|
2388
|
+
FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentBundle.__key_warning(key)
|
2389
|
+
return super().__getitem__(key)
|
2390
|
+
|
2391
|
+
def get(self, key: str, default = None) -> Any:
|
2392
|
+
FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentBundle.__key_warning(key)
|
2393
|
+
return super().get(key, default)
|
2394
|
+
|
2395
|
+
def __init__(__self__, *,
|
2396
|
+
bundle_name: str,
|
2397
|
+
exempted_namespaces: Optional[Sequence[str]] = None):
|
2398
|
+
"""
|
2399
|
+
:param str bundle_name: The name of the bundle.
|
2400
|
+
:param Sequence[str] exempted_namespaces: The set of namespaces to be exempted from the bundle.
|
2401
|
+
"""
|
2402
|
+
pulumi.set(__self__, "bundle_name", bundle_name)
|
2403
|
+
if exempted_namespaces is not None:
|
2404
|
+
pulumi.set(__self__, "exempted_namespaces", exempted_namespaces)
|
2405
|
+
|
2406
|
+
@property
|
2407
|
+
@pulumi.getter(name="bundleName")
|
2408
|
+
def bundle_name(self) -> str:
|
2409
|
+
"""
|
2410
|
+
The name of the bundle.
|
2411
|
+
"""
|
2412
|
+
return pulumi.get(self, "bundle_name")
|
2413
|
+
|
2414
|
+
@property
|
2415
|
+
@pulumi.getter(name="exemptedNamespaces")
|
2416
|
+
def exempted_namespaces(self) -> Optional[Sequence[str]]:
|
2417
|
+
"""
|
2418
|
+
The set of namespaces to be exempted from the bundle.
|
2419
|
+
"""
|
2420
|
+
return pulumi.get(self, "exempted_namespaces")
|
2421
|
+
|
2422
|
+
|
2103
2423
|
@pulumi.output_type
|
2104
2424
|
class FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentTemplateLibrary(dict):
|
2105
2425
|
def __init__(__self__, *,
|
pulumi_gcp/kms/_inputs.py
CHANGED
@@ -268,13 +268,13 @@ class CryptoKeyVersionAttestationArgs:
|
|
268
268
|
@pulumi.input_type
|
269
269
|
class CryptoKeyVersionAttestationCertChainsArgs:
|
270
270
|
def __init__(__self__, *,
|
271
|
-
cavium_certs: Optional[pulumi.Input[str]] = None,
|
272
|
-
google_card_certs: Optional[pulumi.Input[str]] = None,
|
273
|
-
google_partition_certs: Optional[pulumi.Input[str]] = None):
|
271
|
+
cavium_certs: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
272
|
+
google_card_certs: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
273
|
+
google_partition_certs: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
274
274
|
"""
|
275
|
-
:param pulumi.Input[str] cavium_certs: Cavium certificate chain corresponding to the attestation.
|
276
|
-
:param pulumi.Input[str] google_card_certs: Google card certificate chain corresponding to the attestation.
|
277
|
-
:param pulumi.Input[str] google_partition_certs: Google partition certificate chain corresponding to the attestation.
|
275
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] cavium_certs: Cavium certificate chain corresponding to the attestation.
|
276
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] google_card_certs: Google card certificate chain corresponding to the attestation.
|
277
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] google_partition_certs: Google partition certificate chain corresponding to the attestation.
|
278
278
|
"""
|
279
279
|
if cavium_certs is not None:
|
280
280
|
pulumi.set(__self__, "cavium_certs", cavium_certs)
|
@@ -285,38 +285,38 @@ class CryptoKeyVersionAttestationCertChainsArgs:
|
|
285
285
|
|
286
286
|
@property
|
287
287
|
@pulumi.getter(name="caviumCerts")
|
288
|
-
def cavium_certs(self) -> Optional[pulumi.Input[str]]:
|
288
|
+
def cavium_certs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
289
289
|
"""
|
290
290
|
Cavium certificate chain corresponding to the attestation.
|
291
291
|
"""
|
292
292
|
return pulumi.get(self, "cavium_certs")
|
293
293
|
|
294
294
|
@cavium_certs.setter
|
295
|
-
def cavium_certs(self, value: Optional[pulumi.Input[str]]):
|
295
|
+
def cavium_certs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
296
296
|
pulumi.set(self, "cavium_certs", value)
|
297
297
|
|
298
298
|
@property
|
299
299
|
@pulumi.getter(name="googleCardCerts")
|
300
|
-
def google_card_certs(self) -> Optional[pulumi.Input[str]]:
|
300
|
+
def google_card_certs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
301
301
|
"""
|
302
302
|
Google card certificate chain corresponding to the attestation.
|
303
303
|
"""
|
304
304
|
return pulumi.get(self, "google_card_certs")
|
305
305
|
|
306
306
|
@google_card_certs.setter
|
307
|
-
def google_card_certs(self, value: Optional[pulumi.Input[str]]):
|
307
|
+
def google_card_certs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
308
308
|
pulumi.set(self, "google_card_certs", value)
|
309
309
|
|
310
310
|
@property
|
311
311
|
@pulumi.getter(name="googlePartitionCerts")
|
312
|
-
def google_partition_certs(self) -> Optional[pulumi.Input[str]]:
|
312
|
+
def google_partition_certs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
313
313
|
"""
|
314
314
|
Google partition certificate chain corresponding to the attestation.
|
315
315
|
"""
|
316
316
|
return pulumi.get(self, "google_partition_certs")
|
317
317
|
|
318
318
|
@google_partition_certs.setter
|
319
|
-
def google_partition_certs(self, value: Optional[pulumi.Input[str]]):
|
319
|
+
def google_partition_certs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
320
320
|
pulumi.set(self, "google_partition_certs", value)
|
321
321
|
|
322
322
|
|
pulumi_gcp/kms/outputs.py
CHANGED
@@ -264,13 +264,13 @@ class CryptoKeyVersionAttestationCertChains(dict):
|
|
264
264
|
return super().get(key, default)
|
265
265
|
|
266
266
|
def __init__(__self__, *,
|
267
|
-
cavium_certs: Optional[str] = None,
|
268
|
-
google_card_certs: Optional[str] = None,
|
269
|
-
google_partition_certs: Optional[str] = None):
|
267
|
+
cavium_certs: Optional[Sequence[str]] = None,
|
268
|
+
google_card_certs: Optional[Sequence[str]] = None,
|
269
|
+
google_partition_certs: Optional[Sequence[str]] = None):
|
270
270
|
"""
|
271
|
-
:param str cavium_certs: Cavium certificate chain corresponding to the attestation.
|
272
|
-
:param str google_card_certs: Google card certificate chain corresponding to the attestation.
|
273
|
-
:param str google_partition_certs: Google partition certificate chain corresponding to the attestation.
|
271
|
+
:param Sequence[str] cavium_certs: Cavium certificate chain corresponding to the attestation.
|
272
|
+
:param Sequence[str] google_card_certs: Google card certificate chain corresponding to the attestation.
|
273
|
+
:param Sequence[str] google_partition_certs: Google partition certificate chain corresponding to the attestation.
|
274
274
|
"""
|
275
275
|
if cavium_certs is not None:
|
276
276
|
pulumi.set(__self__, "cavium_certs", cavium_certs)
|
@@ -281,7 +281,7 @@ class CryptoKeyVersionAttestationCertChains(dict):
|
|
281
281
|
|
282
282
|
@property
|
283
283
|
@pulumi.getter(name="caviumCerts")
|
284
|
-
def cavium_certs(self) -> Optional[str]:
|
284
|
+
def cavium_certs(self) -> Optional[Sequence[str]]:
|
285
285
|
"""
|
286
286
|
Cavium certificate chain corresponding to the attestation.
|
287
287
|
"""
|
@@ -289,7 +289,7 @@ class CryptoKeyVersionAttestationCertChains(dict):
|
|
289
289
|
|
290
290
|
@property
|
291
291
|
@pulumi.getter(name="googleCardCerts")
|
292
|
-
def google_card_certs(self) -> Optional[str]:
|
292
|
+
def google_card_certs(self) -> Optional[Sequence[str]]:
|
293
293
|
"""
|
294
294
|
Google card certificate chain corresponding to the attestation.
|
295
295
|
"""
|
@@ -297,7 +297,7 @@ class CryptoKeyVersionAttestationCertChains(dict):
|
|
297
297
|
|
298
298
|
@property
|
299
299
|
@pulumi.getter(name="googlePartitionCerts")
|
300
|
-
def google_partition_certs(self) -> Optional[str]:
|
300
|
+
def google_partition_certs(self) -> Optional[Sequence[str]]:
|
301
301
|
"""
|
302
302
|
Google partition certificate chain corresponding to the attestation.
|
303
303
|
"""
|
@@ -1,4 +1,4 @@
|
|
1
|
-
pulumi_gcp/__init__.py,sha256=
|
1
|
+
pulumi_gcp/__init__.py,sha256=ilv-03wUqSMBlbrPUAuSVjAExsSVo3f6TARCoS2IVLQ,182151
|
2
2
|
pulumi_gcp/_inputs.py,sha256=RzPZvEhg_UTDKSms04fRHwrC6vIGFtFT7BXmdZIRsdE,1412
|
3
3
|
pulumi_gcp/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
|
4
4
|
pulumi_gcp/provider.py,sha256=nDvy_xyTaVDgTCpi05vqpuGGE9pLOhht0RSH9i7HDVQ,181078
|
@@ -235,14 +235,14 @@ pulumi_gcp/certificateauthority/get_ca_pool_iam_policy.py,sha256=4EnaXfGw6Nl9KRc
|
|
235
235
|
pulumi_gcp/certificateauthority/get_certificate_template_iam_policy.py,sha256=xdZ27I8NQX8oviBN4I03IxANg2mQkRwzeAyM_3D5zLs,6631
|
236
236
|
pulumi_gcp/certificateauthority/outputs.py,sha256=Epu4iOlSjJA4oLckE-Ng7RQaiy7rTEcMm7mnGWVKp4Y,340846
|
237
237
|
pulumi_gcp/certificatemanager/__init__.py,sha256=Fs1rcH_5nxNUNOJFmOxqnSzX1OX4ttwWs99KssYlOro,548
|
238
|
-
pulumi_gcp/certificatemanager/_inputs.py,sha256=
|
239
|
-
pulumi_gcp/certificatemanager/certificate.py,sha256=
|
238
|
+
pulumi_gcp/certificatemanager/_inputs.py,sha256=EGfEHcZ_Bcwy2H7xQTCQVm7FBulfFzEIwTLZpTcgRMw,33254
|
239
|
+
pulumi_gcp/certificatemanager/certificate.py,sha256=XizGYTGgjFJJXrbuI1mPaHrnl7AfzQGkdG3v6lk0788,59373
|
240
240
|
pulumi_gcp/certificatemanager/certificate_issuance_config.py,sha256=gNP3USJT7yo6tMi58q3YGkvHN4UvE7_l3SwrhgXPYmc,48498
|
241
241
|
pulumi_gcp/certificatemanager/certificate_map.py,sha256=qbmSbCJ0_rENlaue0oZYBOsvTBjDvYoFHtfT4S6GP-E,26514
|
242
242
|
pulumi_gcp/certificatemanager/certificate_map_entry.py,sha256=ekQ13tQspuY5u1y7DUEKutNWl-Sl7brQklygpVEv7qw,40410
|
243
|
-
pulumi_gcp/certificatemanager/dns_authorization.py,sha256=
|
243
|
+
pulumi_gcp/certificatemanager/dns_authorization.py,sha256=0Z9twz6rNzTAaRneZ-9lVc3aKxWPndYr3KVKdCudOTk,36068
|
244
244
|
pulumi_gcp/certificatemanager/get_certificate_map.py,sha256=rQxLE6tI4WJHgb5vDFYphtpz0-gU8H7H5DjtSKM7lPU,6818
|
245
|
-
pulumi_gcp/certificatemanager/outputs.py,sha256=
|
245
|
+
pulumi_gcp/certificatemanager/outputs.py,sha256=0OxCIY7oiBP_dMfuW9FXmHmzWFDdrIT5Z2OZ3nLXeQM,36494
|
246
246
|
pulumi_gcp/certificatemanager/trust_config.py,sha256=Ufn9hDRjgTuSGaDhM-cysAaGxe4MLrzRikAfURX_JLY,31886
|
247
247
|
pulumi_gcp/cloudasset/__init__.py,sha256=EEI15ihB7xWXknjaWl2Rc45saFLH1Kz6NXXPiRTEgrk,442
|
248
248
|
pulumi_gcp/cloudasset/_inputs.py,sha256=w36cbOcb2bPpqcXLvBgeuPRHYSLKkcYKg10OV2LXztQ,14491
|
@@ -267,17 +267,21 @@ pulumi_gcp/cloudbuildv2/connection_iam_policy.py,sha256=sX3uouWGoP9z-9Zv0Qjc7Z7R
|
|
267
267
|
pulumi_gcp/cloudbuildv2/get_connection_iam_policy.py,sha256=7eESvcgCkc8gaZZOuwwXg7YspZiRilOISui2BZJ9ftQ,6394
|
268
268
|
pulumi_gcp/cloudbuildv2/outputs.py,sha256=7qZifxtllaCUA7LOpb6w-nSGDjHiKQfdO6XFgkRwJOY,27019
|
269
269
|
pulumi_gcp/cloudbuildv2/repository.py,sha256=qTD_UDzgFEfBOJ0fmOYO-u31FxlKZyt0wPI9safeKew,35081
|
270
|
-
pulumi_gcp/clouddeploy/__init__.py,sha256=
|
271
|
-
pulumi_gcp/clouddeploy/_inputs.py,sha256
|
270
|
+
pulumi_gcp/clouddeploy/__init__.py,sha256=lk4ZmMl9QmtLHgsj9xZj5gp9wlFzRWY2Ud5xJKkHg9U,932
|
271
|
+
pulumi_gcp/clouddeploy/_inputs.py,sha256=-5y0Ws9OlM7bSA3PejMXmwwHSxriimKpCIgUsMYHCAA,93938
|
272
272
|
pulumi_gcp/clouddeploy/automation.py,sha256=-bx6niSMlP3fH4h27IgvAIofj3oHnYXpWkWSNQTQxKI,62105
|
273
273
|
pulumi_gcp/clouddeploy/custom_target_type.py,sha256=CqrfvztKMEDgjMSRLDWtX_dt6Z9YcQShvs4r2awCqu4,47583
|
274
|
+
pulumi_gcp/clouddeploy/custom_target_type_iam_binding.py,sha256=hC-rWEfNa6JCuvrlT3bPWlvKAJ6wN72imq-nr_Q8ckM,12690
|
275
|
+
pulumi_gcp/clouddeploy/custom_target_type_iam_member.py,sha256=1fSYPe7Ul7s1SVumpEQfJTw9nn8DBhaOvHzAuRbL6-g,12404
|
276
|
+
pulumi_gcp/clouddeploy/custom_target_type_iam_policy.py,sha256=uzBDgnGdudOhLX2jOEjRDPFU0_UNT-4rCd5lPPYOGD8,9691
|
274
277
|
pulumi_gcp/clouddeploy/delivery_pipeline.py,sha256=rhxu46wUujUTNkKjWk55MKFSCM-JL0P9AwE-SGaUza4,59620
|
275
278
|
pulumi_gcp/clouddeploy/delivery_pipeline_iam_binding.py,sha256=Ag9GdAfz8hePblxdk3NwyB2g2cDhgfXcGNIxp84uQQs,12690
|
276
279
|
pulumi_gcp/clouddeploy/delivery_pipeline_iam_member.py,sha256=lnE9I3707llXmtSUfVOH0bRL34LaATFvKj5q8-n3Vo0,12404
|
277
280
|
pulumi_gcp/clouddeploy/delivery_pipeline_iam_policy.py,sha256=0vlnTmTPTdTet59NIwCMSHib4XO6MG-L7_jqJrv5n58,9691
|
281
|
+
pulumi_gcp/clouddeploy/get_custom_target_type_iam_policy.py,sha256=jf1vGViLRCjMK0mwhf6JN4lvomCW0fZQ5R7_eHvLkp4,6616
|
278
282
|
pulumi_gcp/clouddeploy/get_delivery_pipeline_iam_policy.py,sha256=jeu5YPPxRW_-paNawxiwi58C5u544Zkt999rRn8bA0Y,6313
|
279
283
|
pulumi_gcp/clouddeploy/get_target_iam_policy.py,sha256=Epx6P0ubi33QnziDDGFSZuvjBSxxQqgUhj5M3MPe6wU,6010
|
280
|
-
pulumi_gcp/clouddeploy/outputs.py,sha256=
|
284
|
+
pulumi_gcp/clouddeploy/outputs.py,sha256=BM7DGZcLjMOI4GimJFsGvC3D3QH-XeAbR4F7Sk0vPOA,88153
|
281
285
|
pulumi_gcp/clouddeploy/target.py,sha256=lqbEMGebhPLLN2ktc0T9mvuHU0tjascCtD8PD9dzTOI,62254
|
282
286
|
pulumi_gcp/clouddeploy/target_iam_binding.py,sha256=nXU0KeCnToysl-n-89AdE4bNqjvsOR-ZmM3uSRXC5Jg,12370
|
283
287
|
pulumi_gcp/clouddeploy/target_iam_member.py,sha256=VFGg_rhnghS03hL_hXeY-sASQlukX0R1v6Qj2-je2UY,12084
|
@@ -288,7 +292,7 @@ pulumi_gcp/clouddomains/outputs.py,sha256=c00a0fxwozRooNdmMQKw3EJdDiv17Pg3bXa_ry
|
|
288
292
|
pulumi_gcp/clouddomains/registration.py,sha256=zDZ4ewXcPwgxeJcSMJh9RvwHrxP3SI01S99jCTUvz4I,53367
|
289
293
|
pulumi_gcp/cloudfunctions/__init__.py,sha256=symIZkgoDsvQOPeyY4xgpHzvWjnNx_0j3IJtsMmWPSU,511
|
290
294
|
pulumi_gcp/cloudfunctions/_inputs.py,sha256=WBYujHwUcALk2CiDqKRjrSOqQCqBVKS-u6Uy4P-dUy0,17556
|
291
|
-
pulumi_gcp/cloudfunctions/function.py,sha256=
|
295
|
+
pulumi_gcp/cloudfunctions/function.py,sha256=imKzz-a8FEH1otDr4BxzIygjhZsC7oYoQp5MWCTwbjM,107662
|
292
296
|
pulumi_gcp/cloudfunctions/function_iam_binding.py,sha256=8-W7hv32K0mzyOrMs0xOsgQX80ouvxqPjp9A4bEnqVc,39234
|
293
297
|
pulumi_gcp/cloudfunctions/function_iam_member.py,sha256=23cCNd_-N4lu14XrnZNFYsDlukXiBtyqFUfGAyrhcts,38938
|
294
298
|
pulumi_gcp/cloudfunctions/function_iam_policy.py,sha256=vIzoalIj8G_b01o8X717c7wxtzQdLqFOsS5LocF3RjU,35339
|
@@ -359,7 +363,7 @@ pulumi_gcp/composer/get_environment.py,sha256=BJs-TlJTTc3NNK_0LIJ4jWpzXniiXkkc2M
|
|
359
363
|
pulumi_gcp/composer/get_image_versions.py,sha256=W1YAhaxP8VzUErawRKBRaxyapDU9_leTzC_g8xrRpdk,5392
|
360
364
|
pulumi_gcp/composer/outputs.py,sha256=GKiCpHz5whv5Ia0Yh-zfLvk_P4F34n4e7FSHtuWFopk,176165
|
361
365
|
pulumi_gcp/compute/__init__.py,sha256=oHSVfNhs8UowhprprXLeo7znUy_MWGwW0jjECivgMDQ,7234
|
362
|
-
pulumi_gcp/compute/_inputs.py,sha256=
|
366
|
+
pulumi_gcp/compute/_inputs.py,sha256=9JG0puhXKJv75QntKt3YlkllRQZeVTA0g7K_jEyYmfw,1792843
|
363
367
|
pulumi_gcp/compute/address.py,sha256=DqEYS-PclIMEy6zsXC4GWOAY_BXGG-TZ1hiEBXtMnp4,70389
|
364
368
|
pulumi_gcp/compute/attached_disk.py,sha256=05Zo202gS4PPhZiPkNhQZtUpCP2WxYpxNqqifcDG-as,28247
|
365
369
|
pulumi_gcp/compute/autoscaler.py,sha256=rTvETXjaAA6F6FAhhGq1gtZ5mDbIhBSQ8Nf_LWOVeY4,34605
|
@@ -486,7 +490,7 @@ pulumi_gcp/compute/node_template.py,sha256=Lcbk4HRlhHDy4ZPhLHQHBpp7ySupPXII74GgN
|
|
486
490
|
pulumi_gcp/compute/organization_security_policy.py,sha256=MuDAg5_lQiP_T_Qf4qdd3YjF4rcr0VM3dW-eFQu8Lxk,19280
|
487
491
|
pulumi_gcp/compute/organization_security_policy_association.py,sha256=UURa7YwbhCUSiwtoc7mMH8qIdE9XZateJekInSnAEzQ,16731
|
488
492
|
pulumi_gcp/compute/organization_security_policy_rule.py,sha256=W7FH3w9ntFMx86OTOykABmcQ10OOwXsB-LYnIVXvYKk,35927
|
489
|
-
pulumi_gcp/compute/outputs.py,sha256=
|
493
|
+
pulumi_gcp/compute/outputs.py,sha256=FtmtTMW1zbHkl1vHvzlWBC0jNixyImgq6OQRGbYYKZE,2214839
|
490
494
|
pulumi_gcp/compute/packet_mirroring.py,sha256=_B5zpXg_cJ0eL2nPLfnSkhith6zvqh_-B81d-9mlhgU,36619
|
491
495
|
pulumi_gcp/compute/per_instance_config.py,sha256=YheH5ZjNNu_jQHBN20_kKXhqInwhwBBRYPKa5zIylig,38663
|
492
496
|
pulumi_gcp/compute/project_default_network_tier.py,sha256=5wYauqcTGrTsEwjdmWZu5Cx4XDRuTAHGsmtQW4xvtlQ,11257
|
@@ -532,7 +536,7 @@ pulumi_gcp/compute/router_peer.py,sha256=ImfBIjLrwDevwxKZYUFq7d-0L6sF2RkJNvG6wGe
|
|
532
536
|
pulumi_gcp/compute/router_status.py,sha256=RDatUYHTIe2cAeGvg1r1LejDuvx7U9Ffq7Dl38kkfTU,7625
|
533
537
|
pulumi_gcp/compute/security_policy.py,sha256=OhSHRQ6y6WY4HsYkWuqLcJ2eQMMinNOzd4jUmSs3CXo,44706
|
534
538
|
pulumi_gcp/compute/security_scan_config.py,sha256=j8yJzPyXN-9eYsgJD4uj9cMgV7__cF8cZXLpPBo_gY8,36734
|
535
|
-
pulumi_gcp/compute/service_attachment.py,sha256=
|
539
|
+
pulumi_gcp/compute/service_attachment.py,sha256=E5INLKtJ0CbrFuUjlgnwFNWgvDrxsjjiiS6C88m4llE,73670
|
536
540
|
pulumi_gcp/compute/shared_vpc_host_project.py,sha256=At9ls9VlLXWlBym_Q_WEWpWdgHXEFzvTAcBC3Jr3jIE,9014
|
537
541
|
pulumi_gcp/compute/shared_vpc_service_project.py,sha256=wBRfxX43uxggI3U-_u3uN23ea4w77GTDTsuJPI-rowQ,14703
|
538
542
|
pulumi_gcp/compute/snapshot.py,sha256=e3m1ZUtcbz5Nc6trEoB1pSh-pbMNPlWEFeU4flYUnl0,59556
|
@@ -620,7 +624,7 @@ pulumi_gcp/datacatalog/taxonomy_iam_member.py,sha256=jo12UDfXK0F1OgBIT9bdPfA4s6I
|
|
620
624
|
pulumi_gcp/datacatalog/taxonomy_iam_policy.py,sha256=owZ41cJolqmULpD_E4mUJJO1wTqe-vnpdB8zxG_egdI,31783
|
621
625
|
pulumi_gcp/dataflow/__init__.py,sha256=qS8pqb0y81sac2hdiA-ho_6vCzHWikL_04SBITos24I,390
|
622
626
|
pulumi_gcp/dataflow/_inputs.py,sha256=9iNp5uv7PEvSYaUjJ-N6fzn1HH-z16_hD2kzuy5r10Y,55942
|
623
|
-
pulumi_gcp/dataflow/flex_template_job.py,sha256
|
627
|
+
pulumi_gcp/dataflow/flex_template_job.py,sha256=-L7jfkwchxb29sq-cWRqimtWDUiepoIpwTH6V15dH4o,82900
|
624
628
|
pulumi_gcp/dataflow/job.py,sha256=KIZ5LQigcSLE9u5mEJu0M08cKBrt_hqfgToQyUFuYOI,74759
|
625
629
|
pulumi_gcp/dataflow/outputs.py,sha256=DVSc_fgMZ5AAIU4BrrksgcIcTFpV3o0dFeE22BaQo_I,52474
|
626
630
|
pulumi_gcp/dataflow/pipeline.py,sha256=MiVitO1EBYpyYtd49LwBHGvWMPPsv4YULBYNlMXqvSY,53692
|
@@ -866,7 +870,7 @@ pulumi_gcp/gkebackup/restore_plan_iam_binding.py,sha256=oREbs9sdnxpRxgU6leNkWCwb
|
|
866
870
|
pulumi_gcp/gkebackup/restore_plan_iam_member.py,sha256=unRMGm7fyirLnffLyDYvfoRA8eAxrywx94G8t3PaGfk,47982
|
867
871
|
pulumi_gcp/gkebackup/restore_plan_iam_policy.py,sha256=hejgnhqXa5epXk9gH_FbFnw4fsZALPeACo8GXZWlNwM,45319
|
868
872
|
pulumi_gcp/gkehub/__init__.py,sha256=iLb4Z8dfMN3lOqheVhtE2RRRRbx_I32y5BCU_AqNwyI,1008
|
869
|
-
pulumi_gcp/gkehub/_inputs.py,sha256=
|
873
|
+
pulumi_gcp/gkehub/_inputs.py,sha256=zOHsg55AcqfASVj4TqIfdv6zzoDbr0TLUx0Qhsa2stg,159265
|
870
874
|
pulumi_gcp/gkehub/feature.py,sha256=kqS_ZkommEabYnnN82tocWFTv8m28cud3Y3dOLuIoVs,61417
|
871
875
|
pulumi_gcp/gkehub/feature_iam_binding.py,sha256=33l8v6gwqD56hOVNUskhBPLvfQfGja4UPlGyfHXu5h4,36491
|
872
876
|
pulumi_gcp/gkehub/feature_iam_member.py,sha256=QVb2VEojFs3yFqQqpSsbvSK1EHDgcmIPktlGttBL4oM,36195
|
@@ -883,7 +887,7 @@ pulumi_gcp/gkehub/membership_iam_member.py,sha256=4C8utTViW0L95cX3llnqmlS2iRZTtY
|
|
883
887
|
pulumi_gcp/gkehub/membership_iam_policy.py,sha256=6QI7EhchyeuUeKbOnPO4Oyn49cd8J2cBumV4lAzHNgI,33244
|
884
888
|
pulumi_gcp/gkehub/membership_rbac_role_binding.py,sha256=vWhOEE9e8hVpwUwAJBiBEumr1Gtx2JS6s8oy2A0RLAg,30524
|
885
889
|
pulumi_gcp/gkehub/namespace.py,sha256=Lgma3lMQjtghwKKGdXf9bygEfMcnaPYDNyIjAN4snLw,34469
|
886
|
-
pulumi_gcp/gkehub/outputs.py,sha256=
|
890
|
+
pulumi_gcp/gkehub/outputs.py,sha256=LdeKG63TpGQrrF2RLIwG7YoeXbe91KkdTdSdsuZHnT0,149753
|
887
891
|
pulumi_gcp/gkehub/scope.py,sha256=1wJg4NJOuuaNU2fDDaDTG6CxRwLwQrMZmvEOtmNYRxE,29730
|
888
892
|
pulumi_gcp/gkehub/scope_iam_binding.py,sha256=seUhKJFMa8Uu-GPGr2eTo4oK1B0k4zxybB3pPu2WRoo,33365
|
889
893
|
pulumi_gcp/gkehub/scope_iam_member.py,sha256=hvCwZw9B143tOpQAwQ0Ab0s-63W3hjvblns6iCTtsaY,33069
|
@@ -998,7 +1002,7 @@ pulumi_gcp/integrationconnectors/connection.py,sha256=mnPVPdJO5id2B-mqN9QrTZBQoS
|
|
998
1002
|
pulumi_gcp/integrationconnectors/endpoint_attachment.py,sha256=BS0iqmdn_Q8lM6lePgwgSJ-Nq5Xclbj8EkrPH94LFzI,28607
|
999
1003
|
pulumi_gcp/integrationconnectors/outputs.py,sha256=MIddrgLnnsZEEcndtHanUCmjEK8z27ThjjWItzFow2I,104747
|
1000
1004
|
pulumi_gcp/kms/__init__.py,sha256=lzCLUsLSXTcqt-XDVF-YZ0AA93oZY9omYNUHhB5_KgU,984
|
1001
|
-
pulumi_gcp/kms/_inputs.py,sha256=
|
1005
|
+
pulumi_gcp/kms/_inputs.py,sha256=E5FB18wqPYCFCQRy2-RyyW-6YkWDNr2F1gAhOC2LYWg,25305
|
1002
1006
|
pulumi_gcp/kms/crypto_key.py,sha256=zAuAgUidKncI5H31MEVZaSjlVJGReGD7swAuEswMosw,42737
|
1003
1007
|
pulumi_gcp/kms/crypto_key_iam_binding.py,sha256=hEEnCKO_zNaADcfe63vLyIEDMJ9vMGRQ5Zrx5xM3SG0,33236
|
1004
1008
|
pulumi_gcp/kms/crypto_key_iam_member.py,sha256=zLWuee0PRF4fQmG0S2vcUWwWvK3AaLwZ7WW_-drnS-U,32944
|
@@ -1017,7 +1021,7 @@ pulumi_gcp/kms/key_ring_iam_binding.py,sha256=3zfn2kZFuHqbvQmIeqxfsjS2Tw1cewEj2Z
|
|
1017
1021
|
pulumi_gcp/kms/key_ring_iam_member.py,sha256=yrSFVL4neUmPA3Eq3w3sk9TT-PPCB1FduYUJEhS8Rdo,33150
|
1018
1022
|
pulumi_gcp/kms/key_ring_iam_policy.py,sha256=i06bcynMmglW9GH8polzadAqa9UNNnDAHOM0EK4ogvk,28259
|
1019
1023
|
pulumi_gcp/kms/key_ring_import_job.py,sha256=ziEIleZbg1AJJi4_kmT6h6VaHLqt1MPfA6Xhp7tvLqg,25981
|
1020
|
-
pulumi_gcp/kms/outputs.py,sha256=
|
1024
|
+
pulumi_gcp/kms/outputs.py,sha256=kx7841Y6u2mG_BwEhVp7qb4qzrC5wbRJ6pBog1iHG7s,26772
|
1021
1025
|
pulumi_gcp/kms/secret_ciphertext.py,sha256=7gXE9QUS0qHV7A4IOY3pa0lc53DpIucq_03JpRaPAhs,18743
|
1022
1026
|
pulumi_gcp/logging/__init__.py,sha256=PHX-RqZFu4YOg6m6uTxWPrM7fQ09NEcZFl5VGptSNyc,1063
|
1023
1027
|
pulumi_gcp/logging/_inputs.py,sha256=hjBQMGg9YFlWaUX57DvEN_HkC4wU39S0gd4yBKmulBM,69994
|
@@ -1496,7 +1500,7 @@ pulumi_gcp/workstations/workstation_config_iam_policy.py,sha256=TyWHa1bvUxE2G6qS
|
|
1496
1500
|
pulumi_gcp/workstations/workstation_iam_binding.py,sha256=ThXeqkGmcUcMVuZl7dEEtWNN9sJJoQqwupeiHK4ztTY,35859
|
1497
1501
|
pulumi_gcp/workstations/workstation_iam_member.py,sha256=LOBURSVWn3zQetagM4edFqG0EWE8D1XTHjHFcw7-Hhw,35563
|
1498
1502
|
pulumi_gcp/workstations/workstation_iam_policy.py,sha256=hzOeqd9JE1VzAA70Pj2bJH7hsCZWCpdEoJ8RY8Sj1xU,31927
|
1499
|
-
pulumi_gcp-7.14.
|
1500
|
-
pulumi_gcp-7.14.
|
1501
|
-
pulumi_gcp-7.14.
|
1502
|
-
pulumi_gcp-7.14.
|
1503
|
+
pulumi_gcp-7.14.1.dist-info/METADATA,sha256=W7vF3X6Hq0G8GiE8bL9Z0_gHOkQnGkTkBFWmahSPufI,2651
|
1504
|
+
pulumi_gcp-7.14.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
1505
|
+
pulumi_gcp-7.14.1.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
|
1506
|
+
pulumi_gcp-7.14.1.dist-info/RECORD,,
|