pulumi-gcp 8.15.0a1737527599__py3-none-any.whl → 8.15.0a1737577694__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 +78 -0
- pulumi_gcp/accesscontextmanager/access_level_condition.py +28 -0
- pulumi_gcp/accesscontextmanager/egress_policy.py +28 -0
- pulumi_gcp/accesscontextmanager/ingress_policy.py +28 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +28 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +28 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_resource.py +28 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +28 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +28 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_resource.py +56 -0
- pulumi_gcp/apigee/__init__.py +1 -0
- pulumi_gcp/apigee/environment_addons_config.py +266 -0
- pulumi_gcp/artifactregistry/repository.py +32 -2
- pulumi_gcp/bigquery/connection.py +2 -2
- pulumi_gcp/bigquery/routine.py +2 -2
- pulumi_gcp/billing/project_info.py +4 -4
- pulumi_gcp/chronicle/__init__.py +3 -0
- pulumi_gcp/chronicle/_inputs.py +379 -0
- pulumi_gcp/chronicle/data_access_label.py +21 -21
- pulumi_gcp/chronicle/outputs.py +302 -0
- pulumi_gcp/chronicle/reference_list.py +788 -0
- pulumi_gcp/chronicle/rule.py +1308 -0
- pulumi_gcp/chronicle/rule_deployment.py +849 -0
- pulumi_gcp/colab/__init__.py +10 -0
- pulumi_gcp/colab/_inputs.py +359 -0
- pulumi_gcp/colab/outputs.py +344 -0
- pulumi_gcp/colab/runtime_template.py +1160 -0
- pulumi_gcp/compute/_inputs.py +9 -9
- pulumi_gcp/compute/interconnect_attachment.py +7 -7
- pulumi_gcp/compute/outputs.py +6 -6
- pulumi_gcp/compute/route.py +8 -16
- pulumi_gcp/compute/subnetwork.py +7 -7
- pulumi_gcp/compute/target_instance.py +4 -4
- pulumi_gcp/compute/url_map.py +4 -0
- pulumi_gcp/config/__init__.pyi +6 -0
- pulumi_gcp/config/vars.py +12 -0
- pulumi_gcp/databasemigrationservice/connection_profile.py +6 -6
- pulumi_gcp/dataplex/entry_type.py +2 -2
- pulumi_gcp/dataplex/task.py +16 -16
- pulumi_gcp/dataproc/batch.py +10 -10
- pulumi_gcp/discoveryengine/_inputs.py +54 -0
- pulumi_gcp/discoveryengine/data_store.py +94 -0
- pulumi_gcp/discoveryengine/outputs.py +51 -0
- pulumi_gcp/edgenetwork/__init__.py +1 -0
- pulumi_gcp/edgenetwork/interconnect_attachment.py +941 -0
- pulumi_gcp/firestore/field.py +4 -4
- pulumi_gcp/gemini/code_repository_index.py +47 -0
- pulumi_gcp/gkehub/membership_binding.py +6 -6
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +4 -4
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/networkconnectivity/spoke.py +14 -14
- pulumi_gcp/networksecurity/authz_policy.py +0 -202
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/parametermanager/__init__.py +13 -0
- pulumi_gcp/parametermanager/_inputs.py +174 -0
- pulumi_gcp/parametermanager/get_regional_parameter.py +230 -0
- pulumi_gcp/parametermanager/outputs.py +191 -0
- pulumi_gcp/parametermanager/parameter.py +706 -0
- pulumi_gcp/parametermanager/regional_parameter.py +762 -0
- pulumi_gcp/parametermanager/regional_parameter_version.py +558 -0
- pulumi_gcp/provider.py +60 -0
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/sql/_inputs.py +54 -0
- pulumi_gcp/sql/database_instance.py +78 -16
- pulumi_gcp/sql/get_database_instance.py +12 -1
- pulumi_gcp/sql/outputs.py +122 -0
- pulumi_gcp/sql/source_representation_instance.py +7 -14
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- {pulumi_gcp-8.15.0a1737527599.dist-info → pulumi_gcp-8.15.0a1737577694.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.15.0a1737527599.dist-info → pulumi_gcp-8.15.0a1737577694.dist-info}/RECORD +77 -61
- {pulumi_gcp-8.15.0a1737527599.dist-info → pulumi_gcp-8.15.0a1737577694.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.15.0a1737527599.dist-info → pulumi_gcp-8.15.0a1737577694.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,344 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
|
17
|
+
__all__ = [
|
18
|
+
'RuntimeTemplateDataPersistentDiskSpec',
|
19
|
+
'RuntimeTemplateEncryptionSpec',
|
20
|
+
'RuntimeTemplateEucConfig',
|
21
|
+
'RuntimeTemplateIdleShutdownConfig',
|
22
|
+
'RuntimeTemplateMachineSpec',
|
23
|
+
'RuntimeTemplateNetworkSpec',
|
24
|
+
'RuntimeTemplateShieldedVmConfig',
|
25
|
+
]
|
26
|
+
|
27
|
+
@pulumi.output_type
|
28
|
+
class RuntimeTemplateDataPersistentDiskSpec(dict):
|
29
|
+
@staticmethod
|
30
|
+
def __key_warning(key: str):
|
31
|
+
suggest = None
|
32
|
+
if key == "diskSizeGb":
|
33
|
+
suggest = "disk_size_gb"
|
34
|
+
elif key == "diskType":
|
35
|
+
suggest = "disk_type"
|
36
|
+
|
37
|
+
if suggest:
|
38
|
+
pulumi.log.warn(f"Key '{key}' not found in RuntimeTemplateDataPersistentDiskSpec. Access the value via the '{suggest}' property getter instead.")
|
39
|
+
|
40
|
+
def __getitem__(self, key: str) -> Any:
|
41
|
+
RuntimeTemplateDataPersistentDiskSpec.__key_warning(key)
|
42
|
+
return super().__getitem__(key)
|
43
|
+
|
44
|
+
def get(self, key: str, default = None) -> Any:
|
45
|
+
RuntimeTemplateDataPersistentDiskSpec.__key_warning(key)
|
46
|
+
return super().get(key, default)
|
47
|
+
|
48
|
+
def __init__(__self__, *,
|
49
|
+
disk_size_gb: Optional[str] = None,
|
50
|
+
disk_type: Optional[str] = None):
|
51
|
+
"""
|
52
|
+
:param str disk_size_gb: The disk size of the runtime in GB. If specified, the diskType must also be specified. The minimum size is 10GB and the maximum is 65536GB.
|
53
|
+
:param str disk_type: The type of the persistent disk.
|
54
|
+
"""
|
55
|
+
if disk_size_gb is not None:
|
56
|
+
pulumi.set(__self__, "disk_size_gb", disk_size_gb)
|
57
|
+
if disk_type is not None:
|
58
|
+
pulumi.set(__self__, "disk_type", disk_type)
|
59
|
+
|
60
|
+
@property
|
61
|
+
@pulumi.getter(name="diskSizeGb")
|
62
|
+
def disk_size_gb(self) -> Optional[str]:
|
63
|
+
"""
|
64
|
+
The disk size of the runtime in GB. If specified, the diskType must also be specified. The minimum size is 10GB and the maximum is 65536GB.
|
65
|
+
"""
|
66
|
+
return pulumi.get(self, "disk_size_gb")
|
67
|
+
|
68
|
+
@property
|
69
|
+
@pulumi.getter(name="diskType")
|
70
|
+
def disk_type(self) -> Optional[str]:
|
71
|
+
"""
|
72
|
+
The type of the persistent disk.
|
73
|
+
"""
|
74
|
+
return pulumi.get(self, "disk_type")
|
75
|
+
|
76
|
+
|
77
|
+
@pulumi.output_type
|
78
|
+
class RuntimeTemplateEncryptionSpec(dict):
|
79
|
+
@staticmethod
|
80
|
+
def __key_warning(key: str):
|
81
|
+
suggest = None
|
82
|
+
if key == "kmsKeyName":
|
83
|
+
suggest = "kms_key_name"
|
84
|
+
|
85
|
+
if suggest:
|
86
|
+
pulumi.log.warn(f"Key '{key}' not found in RuntimeTemplateEncryptionSpec. Access the value via the '{suggest}' property getter instead.")
|
87
|
+
|
88
|
+
def __getitem__(self, key: str) -> Any:
|
89
|
+
RuntimeTemplateEncryptionSpec.__key_warning(key)
|
90
|
+
return super().__getitem__(key)
|
91
|
+
|
92
|
+
def get(self, key: str, default = None) -> Any:
|
93
|
+
RuntimeTemplateEncryptionSpec.__key_warning(key)
|
94
|
+
return super().get(key, default)
|
95
|
+
|
96
|
+
def __init__(__self__, *,
|
97
|
+
kms_key_name: Optional[str] = None):
|
98
|
+
"""
|
99
|
+
:param str kms_key_name: The Cloud KMS encryption key (customer-managed encryption key) used to protect the runtime.
|
100
|
+
"""
|
101
|
+
if kms_key_name is not None:
|
102
|
+
pulumi.set(__self__, "kms_key_name", kms_key_name)
|
103
|
+
|
104
|
+
@property
|
105
|
+
@pulumi.getter(name="kmsKeyName")
|
106
|
+
def kms_key_name(self) -> Optional[str]:
|
107
|
+
"""
|
108
|
+
The Cloud KMS encryption key (customer-managed encryption key) used to protect the runtime.
|
109
|
+
"""
|
110
|
+
return pulumi.get(self, "kms_key_name")
|
111
|
+
|
112
|
+
|
113
|
+
@pulumi.output_type
|
114
|
+
class RuntimeTemplateEucConfig(dict):
|
115
|
+
@staticmethod
|
116
|
+
def __key_warning(key: str):
|
117
|
+
suggest = None
|
118
|
+
if key == "eucDisabled":
|
119
|
+
suggest = "euc_disabled"
|
120
|
+
|
121
|
+
if suggest:
|
122
|
+
pulumi.log.warn(f"Key '{key}' not found in RuntimeTemplateEucConfig. Access the value via the '{suggest}' property getter instead.")
|
123
|
+
|
124
|
+
def __getitem__(self, key: str) -> Any:
|
125
|
+
RuntimeTemplateEucConfig.__key_warning(key)
|
126
|
+
return super().__getitem__(key)
|
127
|
+
|
128
|
+
def get(self, key: str, default = None) -> Any:
|
129
|
+
RuntimeTemplateEucConfig.__key_warning(key)
|
130
|
+
return super().get(key, default)
|
131
|
+
|
132
|
+
def __init__(__self__, *,
|
133
|
+
euc_disabled: Optional[bool] = None):
|
134
|
+
"""
|
135
|
+
:param bool euc_disabled: Disable end user credential access for the runtime.
|
136
|
+
"""
|
137
|
+
if euc_disabled is not None:
|
138
|
+
pulumi.set(__self__, "euc_disabled", euc_disabled)
|
139
|
+
|
140
|
+
@property
|
141
|
+
@pulumi.getter(name="eucDisabled")
|
142
|
+
def euc_disabled(self) -> Optional[bool]:
|
143
|
+
"""
|
144
|
+
Disable end user credential access for the runtime.
|
145
|
+
"""
|
146
|
+
return pulumi.get(self, "euc_disabled")
|
147
|
+
|
148
|
+
|
149
|
+
@pulumi.output_type
|
150
|
+
class RuntimeTemplateIdleShutdownConfig(dict):
|
151
|
+
@staticmethod
|
152
|
+
def __key_warning(key: str):
|
153
|
+
suggest = None
|
154
|
+
if key == "idleTimeout":
|
155
|
+
suggest = "idle_timeout"
|
156
|
+
|
157
|
+
if suggest:
|
158
|
+
pulumi.log.warn(f"Key '{key}' not found in RuntimeTemplateIdleShutdownConfig. Access the value via the '{suggest}' property getter instead.")
|
159
|
+
|
160
|
+
def __getitem__(self, key: str) -> Any:
|
161
|
+
RuntimeTemplateIdleShutdownConfig.__key_warning(key)
|
162
|
+
return super().__getitem__(key)
|
163
|
+
|
164
|
+
def get(self, key: str, default = None) -> Any:
|
165
|
+
RuntimeTemplateIdleShutdownConfig.__key_warning(key)
|
166
|
+
return super().get(key, default)
|
167
|
+
|
168
|
+
def __init__(__self__, *,
|
169
|
+
idle_timeout: Optional[str] = None):
|
170
|
+
"""
|
171
|
+
:param str idle_timeout: The duration after which the runtime is automatically shut down. An input of 0s disables the idle shutdown feature, and a valid range is [10m, 24h].
|
172
|
+
"""
|
173
|
+
if idle_timeout is not None:
|
174
|
+
pulumi.set(__self__, "idle_timeout", idle_timeout)
|
175
|
+
|
176
|
+
@property
|
177
|
+
@pulumi.getter(name="idleTimeout")
|
178
|
+
def idle_timeout(self) -> Optional[str]:
|
179
|
+
"""
|
180
|
+
The duration after which the runtime is automatically shut down. An input of 0s disables the idle shutdown feature, and a valid range is [10m, 24h].
|
181
|
+
"""
|
182
|
+
return pulumi.get(self, "idle_timeout")
|
183
|
+
|
184
|
+
|
185
|
+
@pulumi.output_type
|
186
|
+
class RuntimeTemplateMachineSpec(dict):
|
187
|
+
@staticmethod
|
188
|
+
def __key_warning(key: str):
|
189
|
+
suggest = None
|
190
|
+
if key == "acceleratorCount":
|
191
|
+
suggest = "accelerator_count"
|
192
|
+
elif key == "acceleratorType":
|
193
|
+
suggest = "accelerator_type"
|
194
|
+
elif key == "machineType":
|
195
|
+
suggest = "machine_type"
|
196
|
+
|
197
|
+
if suggest:
|
198
|
+
pulumi.log.warn(f"Key '{key}' not found in RuntimeTemplateMachineSpec. Access the value via the '{suggest}' property getter instead.")
|
199
|
+
|
200
|
+
def __getitem__(self, key: str) -> Any:
|
201
|
+
RuntimeTemplateMachineSpec.__key_warning(key)
|
202
|
+
return super().__getitem__(key)
|
203
|
+
|
204
|
+
def get(self, key: str, default = None) -> Any:
|
205
|
+
RuntimeTemplateMachineSpec.__key_warning(key)
|
206
|
+
return super().get(key, default)
|
207
|
+
|
208
|
+
def __init__(__self__, *,
|
209
|
+
accelerator_count: Optional[int] = None,
|
210
|
+
accelerator_type: Optional[str] = None,
|
211
|
+
machine_type: Optional[str] = None):
|
212
|
+
"""
|
213
|
+
:param int accelerator_count: The number of accelerators used by the runtime.
|
214
|
+
:param str accelerator_type: The type of hardware accelerator used by the runtime. If specified, acceleratorCount must also be specified.
|
215
|
+
:param str machine_type: The Compute Engine machine type selected for the runtime.
|
216
|
+
"""
|
217
|
+
if accelerator_count is not None:
|
218
|
+
pulumi.set(__self__, "accelerator_count", accelerator_count)
|
219
|
+
if accelerator_type is not None:
|
220
|
+
pulumi.set(__self__, "accelerator_type", accelerator_type)
|
221
|
+
if machine_type is not None:
|
222
|
+
pulumi.set(__self__, "machine_type", machine_type)
|
223
|
+
|
224
|
+
@property
|
225
|
+
@pulumi.getter(name="acceleratorCount")
|
226
|
+
def accelerator_count(self) -> Optional[int]:
|
227
|
+
"""
|
228
|
+
The number of accelerators used by the runtime.
|
229
|
+
"""
|
230
|
+
return pulumi.get(self, "accelerator_count")
|
231
|
+
|
232
|
+
@property
|
233
|
+
@pulumi.getter(name="acceleratorType")
|
234
|
+
def accelerator_type(self) -> Optional[str]:
|
235
|
+
"""
|
236
|
+
The type of hardware accelerator used by the runtime. If specified, acceleratorCount must also be specified.
|
237
|
+
"""
|
238
|
+
return pulumi.get(self, "accelerator_type")
|
239
|
+
|
240
|
+
@property
|
241
|
+
@pulumi.getter(name="machineType")
|
242
|
+
def machine_type(self) -> Optional[str]:
|
243
|
+
"""
|
244
|
+
The Compute Engine machine type selected for the runtime.
|
245
|
+
"""
|
246
|
+
return pulumi.get(self, "machine_type")
|
247
|
+
|
248
|
+
|
249
|
+
@pulumi.output_type
|
250
|
+
class RuntimeTemplateNetworkSpec(dict):
|
251
|
+
@staticmethod
|
252
|
+
def __key_warning(key: str):
|
253
|
+
suggest = None
|
254
|
+
if key == "enableInternetAccess":
|
255
|
+
suggest = "enable_internet_access"
|
256
|
+
|
257
|
+
if suggest:
|
258
|
+
pulumi.log.warn(f"Key '{key}' not found in RuntimeTemplateNetworkSpec. Access the value via the '{suggest}' property getter instead.")
|
259
|
+
|
260
|
+
def __getitem__(self, key: str) -> Any:
|
261
|
+
RuntimeTemplateNetworkSpec.__key_warning(key)
|
262
|
+
return super().__getitem__(key)
|
263
|
+
|
264
|
+
def get(self, key: str, default = None) -> Any:
|
265
|
+
RuntimeTemplateNetworkSpec.__key_warning(key)
|
266
|
+
return super().get(key, default)
|
267
|
+
|
268
|
+
def __init__(__self__, *,
|
269
|
+
enable_internet_access: Optional[bool] = None,
|
270
|
+
network: Optional[str] = None,
|
271
|
+
subnetwork: Optional[str] = None):
|
272
|
+
"""
|
273
|
+
:param bool enable_internet_access: Enable public internet access for the runtime.
|
274
|
+
:param str network: The name of the VPC that this runtime is in.
|
275
|
+
:param str subnetwork: The name of the subnetwork that this runtime is in.
|
276
|
+
"""
|
277
|
+
if enable_internet_access is not None:
|
278
|
+
pulumi.set(__self__, "enable_internet_access", enable_internet_access)
|
279
|
+
if network is not None:
|
280
|
+
pulumi.set(__self__, "network", network)
|
281
|
+
if subnetwork is not None:
|
282
|
+
pulumi.set(__self__, "subnetwork", subnetwork)
|
283
|
+
|
284
|
+
@property
|
285
|
+
@pulumi.getter(name="enableInternetAccess")
|
286
|
+
def enable_internet_access(self) -> Optional[bool]:
|
287
|
+
"""
|
288
|
+
Enable public internet access for the runtime.
|
289
|
+
"""
|
290
|
+
return pulumi.get(self, "enable_internet_access")
|
291
|
+
|
292
|
+
@property
|
293
|
+
@pulumi.getter
|
294
|
+
def network(self) -> Optional[str]:
|
295
|
+
"""
|
296
|
+
The name of the VPC that this runtime is in.
|
297
|
+
"""
|
298
|
+
return pulumi.get(self, "network")
|
299
|
+
|
300
|
+
@property
|
301
|
+
@pulumi.getter
|
302
|
+
def subnetwork(self) -> Optional[str]:
|
303
|
+
"""
|
304
|
+
The name of the subnetwork that this runtime is in.
|
305
|
+
"""
|
306
|
+
return pulumi.get(self, "subnetwork")
|
307
|
+
|
308
|
+
|
309
|
+
@pulumi.output_type
|
310
|
+
class RuntimeTemplateShieldedVmConfig(dict):
|
311
|
+
@staticmethod
|
312
|
+
def __key_warning(key: str):
|
313
|
+
suggest = None
|
314
|
+
if key == "enableSecureBoot":
|
315
|
+
suggest = "enable_secure_boot"
|
316
|
+
|
317
|
+
if suggest:
|
318
|
+
pulumi.log.warn(f"Key '{key}' not found in RuntimeTemplateShieldedVmConfig. Access the value via the '{suggest}' property getter instead.")
|
319
|
+
|
320
|
+
def __getitem__(self, key: str) -> Any:
|
321
|
+
RuntimeTemplateShieldedVmConfig.__key_warning(key)
|
322
|
+
return super().__getitem__(key)
|
323
|
+
|
324
|
+
def get(self, key: str, default = None) -> Any:
|
325
|
+
RuntimeTemplateShieldedVmConfig.__key_warning(key)
|
326
|
+
return super().get(key, default)
|
327
|
+
|
328
|
+
def __init__(__self__, *,
|
329
|
+
enable_secure_boot: Optional[bool] = None):
|
330
|
+
"""
|
331
|
+
:param bool enable_secure_boot: Enables secure boot for the runtime.
|
332
|
+
"""
|
333
|
+
if enable_secure_boot is not None:
|
334
|
+
pulumi.set(__self__, "enable_secure_boot", enable_secure_boot)
|
335
|
+
|
336
|
+
@property
|
337
|
+
@pulumi.getter(name="enableSecureBoot")
|
338
|
+
def enable_secure_boot(self) -> Optional[bool]:
|
339
|
+
"""
|
340
|
+
Enables secure boot for the runtime.
|
341
|
+
"""
|
342
|
+
return pulumi.get(self, "enable_secure_boot")
|
343
|
+
|
344
|
+
|