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