pulumi-gcp 7.22.0a1715306721__py3-none-any.whl → 7.22.0a1715611725__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 +11 -0
- pulumi_gcp/alloydb/_inputs.py +139 -0
- pulumi_gcp/alloydb/cluster.py +54 -0
- pulumi_gcp/alloydb/outputs.py +145 -0
- pulumi_gcp/applicationintegration/auth_config.py +2 -6
- pulumi_gcp/applicationintegration/client.py +133 -18
- pulumi_gcp/bigquery/dataset.py +2 -2
- pulumi_gcp/bigquery/job.py +16 -20
- pulumi_gcp/cloudrunv2/job.py +2 -4
- pulumi_gcp/cloudrunv2/service.py +2 -4
- pulumi_gcp/compute/_inputs.py +4 -0
- pulumi_gcp/compute/outputs.py +4 -0
- pulumi_gcp/compute/router_peer.py +54 -14
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +169 -0
- pulumi_gcp/container/outputs.py +272 -0
- pulumi_gcp/dataflow/flex_template_job.py +21 -21
- pulumi_gcp/dataflow/job.py +21 -7
- pulumi_gcp/essentialcontacts/document_ai_warehouse_document_schema.py +0 -528
- pulumi_gcp/firebaserules/release.py +2 -2
- pulumi_gcp/privilegedaccessmanager/__init__.py +10 -0
- pulumi_gcp/privilegedaccessmanager/_inputs.py +420 -0
- pulumi_gcp/privilegedaccessmanager/entitlement.py +852 -0
- pulumi_gcp/privilegedaccessmanager/outputs.py +491 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/redis/cluster.py +69 -2
- pulumi_gcp/storage/__init__.py +1 -0
- pulumi_gcp/storage/get_buckets.py +138 -0
- pulumi_gcp/storage/outputs.py +63 -0
- {pulumi_gcp-7.22.0a1715306721.dist-info → pulumi_gcp-7.22.0a1715611725.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.22.0a1715306721.dist-info → pulumi_gcp-7.22.0a1715611725.dist-info}/RECORD +34 -29
- {pulumi_gcp-7.22.0a1715306721.dist-info → pulumi_gcp-7.22.0a1715611725.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.22.0a1715306721.dist-info → pulumi_gcp-7.22.0a1715611725.dist-info}/top_level.txt +0 -0
@@ -18,6 +18,7 @@ class ClientArgs:
|
|
18
18
|
def __init__(__self__, *,
|
19
19
|
location: pulumi.Input[str],
|
20
20
|
cloud_kms_config: Optional[pulumi.Input['ClientCloudKmsConfigArgs']] = None,
|
21
|
+
create_sample_integrations: Optional[pulumi.Input[bool]] = None,
|
21
22
|
create_sample_workflows: Optional[pulumi.Input[bool]] = None,
|
22
23
|
project: Optional[pulumi.Input[str]] = None,
|
23
24
|
provision_gmek: Optional[pulumi.Input[bool]] = None,
|
@@ -30,19 +31,34 @@ class ClientArgs:
|
|
30
31
|
- - -
|
31
32
|
:param pulumi.Input['ClientCloudKmsConfigArgs'] cloud_kms_config: Cloud KMS config for AuthModule to encrypt/decrypt credentials.
|
32
33
|
Structure is documented below.
|
33
|
-
:param pulumi.Input[bool]
|
34
|
+
:param pulumi.Input[bool] create_sample_integrations: Indicates if sample integrations should be created along with provisioning.
|
35
|
+
:param pulumi.Input[bool] create_sample_workflows: (Optional, Deprecated)
|
36
|
+
Indicates if sample workflow should be created along with provisioning.
|
37
|
+
|
38
|
+
> **Warning:** `create_sample_workflows` is deprecated and will be removed in a future major release. Use `create_sample_integrations` instead.
|
34
39
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
35
40
|
If it is not provided, the provider project is used.
|
36
|
-
:param pulumi.Input[bool] provision_gmek:
|
41
|
+
:param pulumi.Input[bool] provision_gmek: (Optional, Deprecated)
|
42
|
+
Indicates provision with GMEK or CMEK.
|
43
|
+
|
44
|
+
> **Warning:** `provision_gmek` is deprecated and will be removed in a future major release. Client would be provisioned as gmek if `cloud_kms_config` is not given.
|
37
45
|
:param pulumi.Input[str] run_as_service_account: User input run-as service account, if empty, will bring up a new default service account.
|
38
46
|
"""
|
39
47
|
pulumi.set(__self__, "location", location)
|
40
48
|
if cloud_kms_config is not None:
|
41
49
|
pulumi.set(__self__, "cloud_kms_config", cloud_kms_config)
|
50
|
+
if create_sample_integrations is not None:
|
51
|
+
pulumi.set(__self__, "create_sample_integrations", create_sample_integrations)
|
52
|
+
if create_sample_workflows is not None:
|
53
|
+
warnings.warn("""`create_sample_workflows` is deprecated and will be removed in a future major release. Use `create_sample_integrations` instead.""", DeprecationWarning)
|
54
|
+
pulumi.log.warn("""create_sample_workflows is deprecated: `create_sample_workflows` is deprecated and will be removed in a future major release. Use `create_sample_integrations` instead.""")
|
42
55
|
if create_sample_workflows is not None:
|
43
56
|
pulumi.set(__self__, "create_sample_workflows", create_sample_workflows)
|
44
57
|
if project is not None:
|
45
58
|
pulumi.set(__self__, "project", project)
|
59
|
+
if provision_gmek is not None:
|
60
|
+
warnings.warn("""`provision_gmek` is deprecated and will be removed in a future major release. Client would be provisioned as gmek if `cloud_kms_config` is not given.""", DeprecationWarning)
|
61
|
+
pulumi.log.warn("""provision_gmek is deprecated: `provision_gmek` is deprecated and will be removed in a future major release. Client would be provisioned as gmek if `cloud_kms_config` is not given.""")
|
46
62
|
if provision_gmek is not None:
|
47
63
|
pulumi.set(__self__, "provision_gmek", provision_gmek)
|
48
64
|
if run_as_service_account is not None:
|
@@ -76,12 +92,30 @@ class ClientArgs:
|
|
76
92
|
def cloud_kms_config(self, value: Optional[pulumi.Input['ClientCloudKmsConfigArgs']]):
|
77
93
|
pulumi.set(self, "cloud_kms_config", value)
|
78
94
|
|
95
|
+
@property
|
96
|
+
@pulumi.getter(name="createSampleIntegrations")
|
97
|
+
def create_sample_integrations(self) -> Optional[pulumi.Input[bool]]:
|
98
|
+
"""
|
99
|
+
Indicates if sample integrations should be created along with provisioning.
|
100
|
+
"""
|
101
|
+
return pulumi.get(self, "create_sample_integrations")
|
102
|
+
|
103
|
+
@create_sample_integrations.setter
|
104
|
+
def create_sample_integrations(self, value: Optional[pulumi.Input[bool]]):
|
105
|
+
pulumi.set(self, "create_sample_integrations", value)
|
106
|
+
|
79
107
|
@property
|
80
108
|
@pulumi.getter(name="createSampleWorkflows")
|
81
109
|
def create_sample_workflows(self) -> Optional[pulumi.Input[bool]]:
|
82
110
|
"""
|
111
|
+
(Optional, Deprecated)
|
83
112
|
Indicates if sample workflow should be created along with provisioning.
|
113
|
+
|
114
|
+
> **Warning:** `create_sample_workflows` is deprecated and will be removed in a future major release. Use `create_sample_integrations` instead.
|
84
115
|
"""
|
116
|
+
warnings.warn("""`create_sample_workflows` is deprecated and will be removed in a future major release. Use `create_sample_integrations` instead.""", DeprecationWarning)
|
117
|
+
pulumi.log.warn("""create_sample_workflows is deprecated: `create_sample_workflows` is deprecated and will be removed in a future major release. Use `create_sample_integrations` instead.""")
|
118
|
+
|
85
119
|
return pulumi.get(self, "create_sample_workflows")
|
86
120
|
|
87
121
|
@create_sample_workflows.setter
|
@@ -105,8 +139,14 @@ class ClientArgs:
|
|
105
139
|
@pulumi.getter(name="provisionGmek")
|
106
140
|
def provision_gmek(self) -> Optional[pulumi.Input[bool]]:
|
107
141
|
"""
|
142
|
+
(Optional, Deprecated)
|
108
143
|
Indicates provision with GMEK or CMEK.
|
144
|
+
|
145
|
+
> **Warning:** `provision_gmek` is deprecated and will be removed in a future major release. Client would be provisioned as gmek if `cloud_kms_config` is not given.
|
109
146
|
"""
|
147
|
+
warnings.warn("""`provision_gmek` is deprecated and will be removed in a future major release. Client would be provisioned as gmek if `cloud_kms_config` is not given.""", DeprecationWarning)
|
148
|
+
pulumi.log.warn("""provision_gmek is deprecated: `provision_gmek` is deprecated and will be removed in a future major release. Client would be provisioned as gmek if `cloud_kms_config` is not given.""")
|
149
|
+
|
110
150
|
return pulumi.get(self, "provision_gmek")
|
111
151
|
|
112
152
|
@provision_gmek.setter
|
@@ -130,6 +170,7 @@ class ClientArgs:
|
|
130
170
|
class _ClientState:
|
131
171
|
def __init__(__self__, *,
|
132
172
|
cloud_kms_config: Optional[pulumi.Input['ClientCloudKmsConfigArgs']] = None,
|
173
|
+
create_sample_integrations: Optional[pulumi.Input[bool]] = None,
|
133
174
|
create_sample_workflows: Optional[pulumi.Input[bool]] = None,
|
134
175
|
location: Optional[pulumi.Input[str]] = None,
|
135
176
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -139,24 +180,39 @@ class _ClientState:
|
|
139
180
|
Input properties used for looking up and filtering Client resources.
|
140
181
|
:param pulumi.Input['ClientCloudKmsConfigArgs'] cloud_kms_config: Cloud KMS config for AuthModule to encrypt/decrypt credentials.
|
141
182
|
Structure is documented below.
|
142
|
-
:param pulumi.Input[bool]
|
183
|
+
:param pulumi.Input[bool] create_sample_integrations: Indicates if sample integrations should be created along with provisioning.
|
184
|
+
:param pulumi.Input[bool] create_sample_workflows: (Optional, Deprecated)
|
185
|
+
Indicates if sample workflow should be created along with provisioning.
|
186
|
+
|
187
|
+
> **Warning:** `create_sample_workflows` is deprecated and will be removed in a future major release. Use `create_sample_integrations` instead.
|
143
188
|
:param pulumi.Input[str] location: Location in which client needs to be provisioned.
|
144
189
|
|
145
190
|
|
146
191
|
- - -
|
147
192
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
148
193
|
If it is not provided, the provider project is used.
|
149
|
-
:param pulumi.Input[bool] provision_gmek:
|
194
|
+
:param pulumi.Input[bool] provision_gmek: (Optional, Deprecated)
|
195
|
+
Indicates provision with GMEK or CMEK.
|
196
|
+
|
197
|
+
> **Warning:** `provision_gmek` is deprecated and will be removed in a future major release. Client would be provisioned as gmek if `cloud_kms_config` is not given.
|
150
198
|
:param pulumi.Input[str] run_as_service_account: User input run-as service account, if empty, will bring up a new default service account.
|
151
199
|
"""
|
152
200
|
if cloud_kms_config is not None:
|
153
201
|
pulumi.set(__self__, "cloud_kms_config", cloud_kms_config)
|
202
|
+
if create_sample_integrations is not None:
|
203
|
+
pulumi.set(__self__, "create_sample_integrations", create_sample_integrations)
|
204
|
+
if create_sample_workflows is not None:
|
205
|
+
warnings.warn("""`create_sample_workflows` is deprecated and will be removed in a future major release. Use `create_sample_integrations` instead.""", DeprecationWarning)
|
206
|
+
pulumi.log.warn("""create_sample_workflows is deprecated: `create_sample_workflows` is deprecated and will be removed in a future major release. Use `create_sample_integrations` instead.""")
|
154
207
|
if create_sample_workflows is not None:
|
155
208
|
pulumi.set(__self__, "create_sample_workflows", create_sample_workflows)
|
156
209
|
if location is not None:
|
157
210
|
pulumi.set(__self__, "location", location)
|
158
211
|
if project is not None:
|
159
212
|
pulumi.set(__self__, "project", project)
|
213
|
+
if provision_gmek is not None:
|
214
|
+
warnings.warn("""`provision_gmek` is deprecated and will be removed in a future major release. Client would be provisioned as gmek if `cloud_kms_config` is not given.""", DeprecationWarning)
|
215
|
+
pulumi.log.warn("""provision_gmek is deprecated: `provision_gmek` is deprecated and will be removed in a future major release. Client would be provisioned as gmek if `cloud_kms_config` is not given.""")
|
160
216
|
if provision_gmek is not None:
|
161
217
|
pulumi.set(__self__, "provision_gmek", provision_gmek)
|
162
218
|
if run_as_service_account is not None:
|
@@ -175,12 +231,30 @@ class _ClientState:
|
|
175
231
|
def cloud_kms_config(self, value: Optional[pulumi.Input['ClientCloudKmsConfigArgs']]):
|
176
232
|
pulumi.set(self, "cloud_kms_config", value)
|
177
233
|
|
234
|
+
@property
|
235
|
+
@pulumi.getter(name="createSampleIntegrations")
|
236
|
+
def create_sample_integrations(self) -> Optional[pulumi.Input[bool]]:
|
237
|
+
"""
|
238
|
+
Indicates if sample integrations should be created along with provisioning.
|
239
|
+
"""
|
240
|
+
return pulumi.get(self, "create_sample_integrations")
|
241
|
+
|
242
|
+
@create_sample_integrations.setter
|
243
|
+
def create_sample_integrations(self, value: Optional[pulumi.Input[bool]]):
|
244
|
+
pulumi.set(self, "create_sample_integrations", value)
|
245
|
+
|
178
246
|
@property
|
179
247
|
@pulumi.getter(name="createSampleWorkflows")
|
180
248
|
def create_sample_workflows(self) -> Optional[pulumi.Input[bool]]:
|
181
249
|
"""
|
250
|
+
(Optional, Deprecated)
|
182
251
|
Indicates if sample workflow should be created along with provisioning.
|
252
|
+
|
253
|
+
> **Warning:** `create_sample_workflows` is deprecated and will be removed in a future major release. Use `create_sample_integrations` instead.
|
183
254
|
"""
|
255
|
+
warnings.warn("""`create_sample_workflows` is deprecated and will be removed in a future major release. Use `create_sample_integrations` instead.""", DeprecationWarning)
|
256
|
+
pulumi.log.warn("""create_sample_workflows is deprecated: `create_sample_workflows` is deprecated and will be removed in a future major release. Use `create_sample_integrations` instead.""")
|
257
|
+
|
184
258
|
return pulumi.get(self, "create_sample_workflows")
|
185
259
|
|
186
260
|
@create_sample_workflows.setter
|
@@ -219,8 +293,14 @@ class _ClientState:
|
|
219
293
|
@pulumi.getter(name="provisionGmek")
|
220
294
|
def provision_gmek(self) -> Optional[pulumi.Input[bool]]:
|
221
295
|
"""
|
296
|
+
(Optional, Deprecated)
|
222
297
|
Indicates provision with GMEK or CMEK.
|
298
|
+
|
299
|
+
> **Warning:** `provision_gmek` is deprecated and will be removed in a future major release. Client would be provisioned as gmek if `cloud_kms_config` is not given.
|
223
300
|
"""
|
301
|
+
warnings.warn("""`provision_gmek` is deprecated and will be removed in a future major release. Client would be provisioned as gmek if `cloud_kms_config` is not given.""", DeprecationWarning)
|
302
|
+
pulumi.log.warn("""provision_gmek is deprecated: `provision_gmek` is deprecated and will be removed in a future major release. Client would be provisioned as gmek if `cloud_kms_config` is not given.""")
|
303
|
+
|
224
304
|
return pulumi.get(self, "provision_gmek")
|
225
305
|
|
226
306
|
@provision_gmek.setter
|
@@ -246,6 +326,7 @@ class Client(pulumi.CustomResource):
|
|
246
326
|
resource_name: str,
|
247
327
|
opts: Optional[pulumi.ResourceOptions] = None,
|
248
328
|
cloud_kms_config: Optional[pulumi.Input[pulumi.InputType['ClientCloudKmsConfigArgs']]] = None,
|
329
|
+
create_sample_integrations: Optional[pulumi.Input[bool]] = None,
|
249
330
|
create_sample_workflows: Optional[pulumi.Input[bool]] = None,
|
250
331
|
location: Optional[pulumi.Input[str]] = None,
|
251
332
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -270,11 +351,9 @@ class Client(pulumi.CustomResource):
|
|
270
351
|
import pulumi
|
271
352
|
import pulumi_gcp as gcp
|
272
353
|
|
273
|
-
example = gcp.applicationintegration.Client("example",
|
274
|
-
location="us-central1",
|
275
|
-
provision_gmek=True)
|
354
|
+
example = gcp.applicationintegration.Client("example", location="us-central1")
|
276
355
|
```
|
277
|
-
### Integrations Client
|
356
|
+
### Integrations Client Full
|
278
357
|
|
279
358
|
```python
|
280
359
|
import pulumi
|
@@ -294,7 +373,7 @@ class Client(pulumi.CustomResource):
|
|
294
373
|
display_name="Service Account")
|
295
374
|
example = gcp.applicationintegration.Client("example",
|
296
375
|
location="us-east1",
|
297
|
-
|
376
|
+
create_sample_integrations=True,
|
298
377
|
run_as_service_account=service_account.email,
|
299
378
|
cloud_kms_config=gcp.applicationintegration.ClientCloudKmsConfigArgs(
|
300
379
|
kms_location="us-east1",
|
@@ -333,14 +412,21 @@ class Client(pulumi.CustomResource):
|
|
333
412
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
334
413
|
:param pulumi.Input[pulumi.InputType['ClientCloudKmsConfigArgs']] cloud_kms_config: Cloud KMS config for AuthModule to encrypt/decrypt credentials.
|
335
414
|
Structure is documented below.
|
336
|
-
:param pulumi.Input[bool]
|
415
|
+
:param pulumi.Input[bool] create_sample_integrations: Indicates if sample integrations should be created along with provisioning.
|
416
|
+
:param pulumi.Input[bool] create_sample_workflows: (Optional, Deprecated)
|
417
|
+
Indicates if sample workflow should be created along with provisioning.
|
418
|
+
|
419
|
+
> **Warning:** `create_sample_workflows` is deprecated and will be removed in a future major release. Use `create_sample_integrations` instead.
|
337
420
|
:param pulumi.Input[str] location: Location in which client needs to be provisioned.
|
338
421
|
|
339
422
|
|
340
423
|
- - -
|
341
424
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
342
425
|
If it is not provided, the provider project is used.
|
343
|
-
:param pulumi.Input[bool] provision_gmek:
|
426
|
+
:param pulumi.Input[bool] provision_gmek: (Optional, Deprecated)
|
427
|
+
Indicates provision with GMEK or CMEK.
|
428
|
+
|
429
|
+
> **Warning:** `provision_gmek` is deprecated and will be removed in a future major release. Client would be provisioned as gmek if `cloud_kms_config` is not given.
|
344
430
|
:param pulumi.Input[str] run_as_service_account: User input run-as service account, if empty, will bring up a new default service account.
|
345
431
|
"""
|
346
432
|
...
|
@@ -367,11 +453,9 @@ class Client(pulumi.CustomResource):
|
|
367
453
|
import pulumi
|
368
454
|
import pulumi_gcp as gcp
|
369
455
|
|
370
|
-
example = gcp.applicationintegration.Client("example",
|
371
|
-
location="us-central1",
|
372
|
-
provision_gmek=True)
|
456
|
+
example = gcp.applicationintegration.Client("example", location="us-central1")
|
373
457
|
```
|
374
|
-
### Integrations Client
|
458
|
+
### Integrations Client Full
|
375
459
|
|
376
460
|
```python
|
377
461
|
import pulumi
|
@@ -391,7 +475,7 @@ class Client(pulumi.CustomResource):
|
|
391
475
|
display_name="Service Account")
|
392
476
|
example = gcp.applicationintegration.Client("example",
|
393
477
|
location="us-east1",
|
394
|
-
|
478
|
+
create_sample_integrations=True,
|
395
479
|
run_as_service_account=service_account.email,
|
396
480
|
cloud_kms_config=gcp.applicationintegration.ClientCloudKmsConfigArgs(
|
397
481
|
kms_location="us-east1",
|
@@ -442,6 +526,7 @@ class Client(pulumi.CustomResource):
|
|
442
526
|
resource_name: str,
|
443
527
|
opts: Optional[pulumi.ResourceOptions] = None,
|
444
528
|
cloud_kms_config: Optional[pulumi.Input[pulumi.InputType['ClientCloudKmsConfigArgs']]] = None,
|
529
|
+
create_sample_integrations: Optional[pulumi.Input[bool]] = None,
|
445
530
|
create_sample_workflows: Optional[pulumi.Input[bool]] = None,
|
446
531
|
location: Optional[pulumi.Input[str]] = None,
|
447
532
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -457,6 +542,7 @@ class Client(pulumi.CustomResource):
|
|
457
542
|
__props__ = ClientArgs.__new__(ClientArgs)
|
458
543
|
|
459
544
|
__props__.__dict__["cloud_kms_config"] = cloud_kms_config
|
545
|
+
__props__.__dict__["create_sample_integrations"] = create_sample_integrations
|
460
546
|
__props__.__dict__["create_sample_workflows"] = create_sample_workflows
|
461
547
|
if location is None and not opts.urn:
|
462
548
|
raise TypeError("Missing required property 'location'")
|
@@ -475,6 +561,7 @@ class Client(pulumi.CustomResource):
|
|
475
561
|
id: pulumi.Input[str],
|
476
562
|
opts: Optional[pulumi.ResourceOptions] = None,
|
477
563
|
cloud_kms_config: Optional[pulumi.Input[pulumi.InputType['ClientCloudKmsConfigArgs']]] = None,
|
564
|
+
create_sample_integrations: Optional[pulumi.Input[bool]] = None,
|
478
565
|
create_sample_workflows: Optional[pulumi.Input[bool]] = None,
|
479
566
|
location: Optional[pulumi.Input[str]] = None,
|
480
567
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -489,14 +576,21 @@ class Client(pulumi.CustomResource):
|
|
489
576
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
490
577
|
:param pulumi.Input[pulumi.InputType['ClientCloudKmsConfigArgs']] cloud_kms_config: Cloud KMS config for AuthModule to encrypt/decrypt credentials.
|
491
578
|
Structure is documented below.
|
492
|
-
:param pulumi.Input[bool]
|
579
|
+
:param pulumi.Input[bool] create_sample_integrations: Indicates if sample integrations should be created along with provisioning.
|
580
|
+
:param pulumi.Input[bool] create_sample_workflows: (Optional, Deprecated)
|
581
|
+
Indicates if sample workflow should be created along with provisioning.
|
582
|
+
|
583
|
+
> **Warning:** `create_sample_workflows` is deprecated and will be removed in a future major release. Use `create_sample_integrations` instead.
|
493
584
|
:param pulumi.Input[str] location: Location in which client needs to be provisioned.
|
494
585
|
|
495
586
|
|
496
587
|
- - -
|
497
588
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
498
589
|
If it is not provided, the provider project is used.
|
499
|
-
:param pulumi.Input[bool] provision_gmek:
|
590
|
+
:param pulumi.Input[bool] provision_gmek: (Optional, Deprecated)
|
591
|
+
Indicates provision with GMEK or CMEK.
|
592
|
+
|
593
|
+
> **Warning:** `provision_gmek` is deprecated and will be removed in a future major release. Client would be provisioned as gmek if `cloud_kms_config` is not given.
|
500
594
|
:param pulumi.Input[str] run_as_service_account: User input run-as service account, if empty, will bring up a new default service account.
|
501
595
|
"""
|
502
596
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -504,6 +598,7 @@ class Client(pulumi.CustomResource):
|
|
504
598
|
__props__ = _ClientState.__new__(_ClientState)
|
505
599
|
|
506
600
|
__props__.__dict__["cloud_kms_config"] = cloud_kms_config
|
601
|
+
__props__.__dict__["create_sample_integrations"] = create_sample_integrations
|
507
602
|
__props__.__dict__["create_sample_workflows"] = create_sample_workflows
|
508
603
|
__props__.__dict__["location"] = location
|
509
604
|
__props__.__dict__["project"] = project
|
@@ -520,12 +615,26 @@ class Client(pulumi.CustomResource):
|
|
520
615
|
"""
|
521
616
|
return pulumi.get(self, "cloud_kms_config")
|
522
617
|
|
618
|
+
@property
|
619
|
+
@pulumi.getter(name="createSampleIntegrations")
|
620
|
+
def create_sample_integrations(self) -> pulumi.Output[Optional[bool]]:
|
621
|
+
"""
|
622
|
+
Indicates if sample integrations should be created along with provisioning.
|
623
|
+
"""
|
624
|
+
return pulumi.get(self, "create_sample_integrations")
|
625
|
+
|
523
626
|
@property
|
524
627
|
@pulumi.getter(name="createSampleWorkflows")
|
525
628
|
def create_sample_workflows(self) -> pulumi.Output[Optional[bool]]:
|
526
629
|
"""
|
630
|
+
(Optional, Deprecated)
|
527
631
|
Indicates if sample workflow should be created along with provisioning.
|
632
|
+
|
633
|
+
> **Warning:** `create_sample_workflows` is deprecated and will be removed in a future major release. Use `create_sample_integrations` instead.
|
528
634
|
"""
|
635
|
+
warnings.warn("""`create_sample_workflows` is deprecated and will be removed in a future major release. Use `create_sample_integrations` instead.""", DeprecationWarning)
|
636
|
+
pulumi.log.warn("""create_sample_workflows is deprecated: `create_sample_workflows` is deprecated and will be removed in a future major release. Use `create_sample_integrations` instead.""")
|
637
|
+
|
529
638
|
return pulumi.get(self, "create_sample_workflows")
|
530
639
|
|
531
640
|
@property
|
@@ -552,8 +661,14 @@ class Client(pulumi.CustomResource):
|
|
552
661
|
@pulumi.getter(name="provisionGmek")
|
553
662
|
def provision_gmek(self) -> pulumi.Output[Optional[bool]]:
|
554
663
|
"""
|
664
|
+
(Optional, Deprecated)
|
555
665
|
Indicates provision with GMEK or CMEK.
|
666
|
+
|
667
|
+
> **Warning:** `provision_gmek` is deprecated and will be removed in a future major release. Client would be provisioned as gmek if `cloud_kms_config` is not given.
|
556
668
|
"""
|
669
|
+
warnings.warn("""`provision_gmek` is deprecated and will be removed in a future major release. Client would be provisioned as gmek if `cloud_kms_config` is not given.""", DeprecationWarning)
|
670
|
+
pulumi.log.warn("""provision_gmek is deprecated: `provision_gmek` is deprecated and will be removed in a future major release. Client would be provisioned as gmek if `cloud_kms_config` is not given.""")
|
671
|
+
|
557
672
|
return pulumi.get(self, "provision_gmek")
|
558
673
|
|
559
674
|
@property
|
pulumi_gcp/bigquery/dataset.py
CHANGED
@@ -1071,7 +1071,7 @@ class Dataset(pulumi.CustomResource):
|
|
1071
1071
|
),
|
1072
1072
|
])
|
1073
1073
|
```
|
1074
|
-
### Bigquery Dataset External Reference Aws
|
1074
|
+
### Bigquery Dataset External Reference Aws
|
1075
1075
|
|
1076
1076
|
```python
|
1077
1077
|
import pulumi
|
@@ -1355,7 +1355,7 @@ class Dataset(pulumi.CustomResource):
|
|
1355
1355
|
),
|
1356
1356
|
])
|
1357
1357
|
```
|
1358
|
-
### Bigquery Dataset External Reference Aws
|
1358
|
+
### Bigquery Dataset External Reference Aws
|
1359
1359
|
|
1360
1360
|
```python
|
1361
1361
|
import pulumi
|
pulumi_gcp/bigquery/job.py
CHANGED
@@ -636,21 +636,21 @@ class Job(pulumi.CustomResource):
|
|
636
636
|
import pulumi
|
637
637
|
import pulumi_gcp as gcp
|
638
638
|
|
639
|
+
count = 2
|
639
640
|
source_dataset = []
|
640
|
-
for range in [{"value": i} for i in range(0,
|
641
|
+
for range in [{"value": i} for i in range(0, count)]:
|
641
642
|
source_dataset.append(gcp.bigquery.Dataset(f"source-{range['value']}",
|
642
643
|
dataset_id=f"job_copy_{range['value']}_dataset",
|
643
644
|
friendly_name="test",
|
644
645
|
description="This is a test description",
|
645
646
|
location="US"))
|
646
647
|
source = []
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
schema=\"\"\"[
|
648
|
+
for range in [{"value": i} for i in range(0, count)]:
|
649
|
+
source.append(gcp.bigquery.Table(f"source-{range['value']}",
|
650
|
+
deletion_protection=False,
|
651
|
+
dataset_id=source_dataset[range["value"]].dataset_id,
|
652
|
+
table_id=f"job_copy_{range['value']}_table",
|
653
|
+
schema=\"\"\"[
|
654
654
|
{
|
655
655
|
"name": "name",
|
656
656
|
"type": "STRING",
|
@@ -668,8 +668,6 @@ class Job(pulumi.CustomResource):
|
|
668
668
|
}
|
669
669
|
]
|
670
670
|
\"\"\"))
|
671
|
-
|
672
|
-
(len(source_dataset)).apply(create_source)
|
673
671
|
dest_dataset = gcp.bigquery.Dataset("dest",
|
674
672
|
dataset_id="job_copy_dest_dataset",
|
675
673
|
friendly_name="test",
|
@@ -1063,21 +1061,21 @@ class Job(pulumi.CustomResource):
|
|
1063
1061
|
import pulumi
|
1064
1062
|
import pulumi_gcp as gcp
|
1065
1063
|
|
1064
|
+
count = 2
|
1066
1065
|
source_dataset = []
|
1067
|
-
for range in [{"value": i} for i in range(0,
|
1066
|
+
for range in [{"value": i} for i in range(0, count)]:
|
1068
1067
|
source_dataset.append(gcp.bigquery.Dataset(f"source-{range['value']}",
|
1069
1068
|
dataset_id=f"job_copy_{range['value']}_dataset",
|
1070
1069
|
friendly_name="test",
|
1071
1070
|
description="This is a test description",
|
1072
1071
|
location="US"))
|
1073
1072
|
source = []
|
1074
|
-
|
1075
|
-
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1080
|
-
schema=\"\"\"[
|
1073
|
+
for range in [{"value": i} for i in range(0, count)]:
|
1074
|
+
source.append(gcp.bigquery.Table(f"source-{range['value']}",
|
1075
|
+
deletion_protection=False,
|
1076
|
+
dataset_id=source_dataset[range["value"]].dataset_id,
|
1077
|
+
table_id=f"job_copy_{range['value']}_table",
|
1078
|
+
schema=\"\"\"[
|
1081
1079
|
{
|
1082
1080
|
"name": "name",
|
1083
1081
|
"type": "STRING",
|
@@ -1095,8 +1093,6 @@ class Job(pulumi.CustomResource):
|
|
1095
1093
|
}
|
1096
1094
|
]
|
1097
1095
|
\"\"\"))
|
1098
|
-
|
1099
|
-
(len(source_dataset)).apply(create_source)
|
1100
1096
|
dest_dataset = gcp.bigquery.Dataset("dest",
|
1101
1097
|
dataset_id="job_copy_dest_dataset",
|
1102
1098
|
friendly_name="test",
|
pulumi_gcp/cloudrunv2/job.py
CHANGED
@@ -894,7 +894,7 @@ class Job(pulumi.CustomResource):
|
|
894
894
|
default = gcp.cloudrunv2.Job("default",
|
895
895
|
name="cloudrun-job",
|
896
896
|
location="us-central1",
|
897
|
-
launch_stage="
|
897
|
+
launch_stage="GA",
|
898
898
|
template=gcp.cloudrunv2.JobTemplateArgs(
|
899
899
|
template=gcp.cloudrunv2.JobTemplateTemplateArgs(
|
900
900
|
containers=[gcp.cloudrunv2.JobTemplateTemplateContainerArgs(
|
@@ -910,7 +910,6 @@ class Job(pulumi.CustomResource):
|
|
910
910
|
"tag3",
|
911
911
|
],
|
912
912
|
)],
|
913
|
-
egress="ALL_TRAFFIC",
|
914
913
|
),
|
915
914
|
),
|
916
915
|
))
|
@@ -1213,7 +1212,7 @@ class Job(pulumi.CustomResource):
|
|
1213
1212
|
default = gcp.cloudrunv2.Job("default",
|
1214
1213
|
name="cloudrun-job",
|
1215
1214
|
location="us-central1",
|
1216
|
-
launch_stage="
|
1215
|
+
launch_stage="GA",
|
1217
1216
|
template=gcp.cloudrunv2.JobTemplateArgs(
|
1218
1217
|
template=gcp.cloudrunv2.JobTemplateTemplateArgs(
|
1219
1218
|
containers=[gcp.cloudrunv2.JobTemplateTemplateContainerArgs(
|
@@ -1229,7 +1228,6 @@ class Job(pulumi.CustomResource):
|
|
1229
1228
|
"tag3",
|
1230
1229
|
],
|
1231
1230
|
)],
|
1232
|
-
egress="ALL_TRAFFIC",
|
1233
1231
|
),
|
1234
1232
|
),
|
1235
1233
|
))
|
pulumi_gcp/cloudrunv2/service.py
CHANGED
@@ -1111,7 +1111,7 @@ class Service(pulumi.CustomResource):
|
|
1111
1111
|
default = gcp.cloudrunv2.Service("default",
|
1112
1112
|
name="cloudrun-service",
|
1113
1113
|
location="us-central1",
|
1114
|
-
launch_stage="
|
1114
|
+
launch_stage="GA",
|
1115
1115
|
template=gcp.cloudrunv2.ServiceTemplateArgs(
|
1116
1116
|
containers=[gcp.cloudrunv2.ServiceTemplateContainerArgs(
|
1117
1117
|
image="us-docker.pkg.dev/cloudrun/container/hello",
|
@@ -1126,7 +1126,6 @@ class Service(pulumi.CustomResource):
|
|
1126
1126
|
"tag3",
|
1127
1127
|
],
|
1128
1128
|
)],
|
1129
|
-
egress="ALL_TRAFFIC",
|
1130
1129
|
),
|
1131
1130
|
))
|
1132
1131
|
```
|
@@ -1565,7 +1564,7 @@ class Service(pulumi.CustomResource):
|
|
1565
1564
|
default = gcp.cloudrunv2.Service("default",
|
1566
1565
|
name="cloudrun-service",
|
1567
1566
|
location="us-central1",
|
1568
|
-
launch_stage="
|
1567
|
+
launch_stage="GA",
|
1569
1568
|
template=gcp.cloudrunv2.ServiceTemplateArgs(
|
1570
1569
|
containers=[gcp.cloudrunv2.ServiceTemplateContainerArgs(
|
1571
1570
|
image="us-docker.pkg.dev/cloudrun/container/hello",
|
@@ -1580,7 +1579,6 @@ class Service(pulumi.CustomResource):
|
|
1580
1579
|
"tag3",
|
1581
1580
|
],
|
1582
1581
|
)],
|
1583
|
-
egress="ALL_TRAFFIC",
|
1584
1582
|
),
|
1585
1583
|
))
|
1586
1584
|
```
|
pulumi_gcp/compute/_inputs.py
CHANGED
@@ -28606,6 +28606,8 @@ class RouterPeerBfdArgs:
|
|
28606
28606
|
:param pulumi.Input[int] multiplier: The number of consecutive BFD packets that must be missed before
|
28607
28607
|
BFD declares that a peer is unavailable. If set, the value must
|
28608
28608
|
be a value between 5 and 16.
|
28609
|
+
|
28610
|
+
<a name="nested_md5_authentication_key"></a>The `md5_authentication_key` block supports:
|
28609
28611
|
"""
|
28610
28612
|
pulumi.set(__self__, "session_initialization_mode", session_initialization_mode)
|
28611
28613
|
if min_receive_interval is not None:
|
@@ -28671,6 +28673,8 @@ class RouterPeerBfdArgs:
|
|
28671
28673
|
The number of consecutive BFD packets that must be missed before
|
28672
28674
|
BFD declares that a peer is unavailable. If set, the value must
|
28673
28675
|
be a value between 5 and 16.
|
28676
|
+
|
28677
|
+
<a name="nested_md5_authentication_key"></a>The `md5_authentication_key` block supports:
|
28674
28678
|
"""
|
28675
28679
|
return pulumi.get(self, "multiplier")
|
28676
28680
|
|
pulumi_gcp/compute/outputs.py
CHANGED
@@ -29022,6 +29022,8 @@ class RouterPeerBfd(dict):
|
|
29022
29022
|
:param int multiplier: The number of consecutive BFD packets that must be missed before
|
29023
29023
|
BFD declares that a peer is unavailable. If set, the value must
|
29024
29024
|
be a value between 5 and 16.
|
29025
|
+
|
29026
|
+
<a name="nested_md5_authentication_key"></a>The `md5_authentication_key` block supports:
|
29025
29027
|
"""
|
29026
29028
|
pulumi.set(__self__, "session_initialization_mode", session_initialization_mode)
|
29027
29029
|
if min_receive_interval is not None:
|
@@ -29075,6 +29077,8 @@ class RouterPeerBfd(dict):
|
|
29075
29077
|
The number of consecutive BFD packets that must be missed before
|
29076
29078
|
BFD declares that a peer is unavailable. If set, the value must
|
29077
29079
|
be a value between 5 and 16.
|
29080
|
+
|
29081
|
+
<a name="nested_md5_authentication_key"></a>The `md5_authentication_key` block supports:
|
29078
29082
|
"""
|
29079
29083
|
return pulumi.get(self, "multiplier")
|
29080
29084
|
|