pulumi-gcp 7.22.0a1715345822__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.0a1715345822.dist-info → pulumi_gcp-7.22.0a1715611725.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.22.0a1715345822.dist-info → pulumi_gcp-7.22.0a1715611725.dist-info}/RECORD +34 -29
- {pulumi_gcp-7.22.0a1715345822.dist-info → pulumi_gcp-7.22.0a1715611725.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.22.0a1715345822.dist-info → pulumi_gcp-7.22.0a1715611725.dist-info}/top_level.txt +0 -0
pulumi_gcp/dataflow/job.py
CHANGED
@@ -52,7 +52,9 @@ class JobArgs:
|
|
52
52
|
:param pulumi.Input[str] name: A unique name for the resource, required by Dataflow.
|
53
53
|
:param pulumi.Input[str] network: The network to which VMs will be assigned. If it is not provided, "default" will be used.
|
54
54
|
:param pulumi.Input[str] on_delete: One of "drain" or "cancel". Specifies behavior of deletion during `pulumi destroy`. See above note.
|
55
|
-
:param pulumi.Input[Mapping[str, Any]] parameters: Key/Value pairs to be
|
55
|
+
:param pulumi.Input[Mapping[str, Any]] parameters: **Template specific** Key/Value pairs to be forwarded to the pipeline's options; keys are
|
56
|
+
case-sensitive based on the language on which the pipeline is coded, mostly Java.
|
57
|
+
**Note**: do not configure Dataflow options here in parameters.
|
56
58
|
:param pulumi.Input[str] project: The project in which the resource belongs. If it is not provided, the provider project is used.
|
57
59
|
:param pulumi.Input[str] region: The region in which the created job should run.
|
58
60
|
:param pulumi.Input[str] service_account_email: The Service Account email used to create the job.
|
@@ -252,7 +254,9 @@ class JobArgs:
|
|
252
254
|
@pulumi.getter
|
253
255
|
def parameters(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
254
256
|
"""
|
255
|
-
Key/Value pairs to be
|
257
|
+
**Template specific** Key/Value pairs to be forwarded to the pipeline's options; keys are
|
258
|
+
case-sensitive based on the language on which the pipeline is coded, mostly Java.
|
259
|
+
**Note**: do not configure Dataflow options here in parameters.
|
256
260
|
"""
|
257
261
|
return pulumi.get(self, "parameters")
|
258
262
|
|
@@ -389,7 +393,9 @@ class _JobState:
|
|
389
393
|
:param pulumi.Input[str] name: A unique name for the resource, required by Dataflow.
|
390
394
|
:param pulumi.Input[str] network: The network to which VMs will be assigned. If it is not provided, "default" will be used.
|
391
395
|
:param pulumi.Input[str] on_delete: One of "drain" or "cancel". Specifies behavior of deletion during `pulumi destroy`. See above note.
|
392
|
-
:param pulumi.Input[Mapping[str, Any]] parameters: Key/Value pairs to be
|
396
|
+
:param pulumi.Input[Mapping[str, Any]] parameters: **Template specific** Key/Value pairs to be forwarded to the pipeline's options; keys are
|
397
|
+
case-sensitive based on the language on which the pipeline is coded, mostly Java.
|
398
|
+
**Note**: do not configure Dataflow options here in parameters.
|
393
399
|
:param pulumi.Input[str] project: The project in which the resource belongs. If it is not provided, the provider project is used.
|
394
400
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource and default labels configured on the provider.
|
395
401
|
:param pulumi.Input[str] region: The region in which the created job should run.
|
@@ -606,7 +612,9 @@ class _JobState:
|
|
606
612
|
@pulumi.getter
|
607
613
|
def parameters(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
608
614
|
"""
|
609
|
-
Key/Value pairs to be
|
615
|
+
**Template specific** Key/Value pairs to be forwarded to the pipeline's options; keys are
|
616
|
+
case-sensitive based on the language on which the pipeline is coded, mostly Java.
|
617
|
+
**Note**: do not configure Dataflow options here in parameters.
|
610
618
|
"""
|
611
619
|
return pulumi.get(self, "parameters")
|
612
620
|
|
@@ -900,7 +908,9 @@ class Job(pulumi.CustomResource):
|
|
900
908
|
:param pulumi.Input[str] name: A unique name for the resource, required by Dataflow.
|
901
909
|
:param pulumi.Input[str] network: The network to which VMs will be assigned. If it is not provided, "default" will be used.
|
902
910
|
:param pulumi.Input[str] on_delete: One of "drain" or "cancel". Specifies behavior of deletion during `pulumi destroy`. See above note.
|
903
|
-
:param pulumi.Input[Mapping[str, Any]] parameters: Key/Value pairs to be
|
911
|
+
:param pulumi.Input[Mapping[str, Any]] parameters: **Template specific** Key/Value pairs to be forwarded to the pipeline's options; keys are
|
912
|
+
case-sensitive based on the language on which the pipeline is coded, mostly Java.
|
913
|
+
**Note**: do not configure Dataflow options here in parameters.
|
904
914
|
:param pulumi.Input[str] project: The project in which the resource belongs. If it is not provided, the provider project is used.
|
905
915
|
:param pulumi.Input[str] region: The region in which the created job should run.
|
906
916
|
:param pulumi.Input[str] service_account_email: The Service Account email used to create the job.
|
@@ -1149,7 +1159,9 @@ class Job(pulumi.CustomResource):
|
|
1149
1159
|
:param pulumi.Input[str] name: A unique name for the resource, required by Dataflow.
|
1150
1160
|
:param pulumi.Input[str] network: The network to which VMs will be assigned. If it is not provided, "default" will be used.
|
1151
1161
|
:param pulumi.Input[str] on_delete: One of "drain" or "cancel". Specifies behavior of deletion during `pulumi destroy`. See above note.
|
1152
|
-
:param pulumi.Input[Mapping[str, Any]] parameters: Key/Value pairs to be
|
1162
|
+
:param pulumi.Input[Mapping[str, Any]] parameters: **Template specific** Key/Value pairs to be forwarded to the pipeline's options; keys are
|
1163
|
+
case-sensitive based on the language on which the pipeline is coded, mostly Java.
|
1164
|
+
**Note**: do not configure Dataflow options here in parameters.
|
1153
1165
|
:param pulumi.Input[str] project: The project in which the resource belongs. If it is not provided, the provider project is used.
|
1154
1166
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource and default labels configured on the provider.
|
1155
1167
|
:param pulumi.Input[str] region: The region in which the created job should run.
|
@@ -1298,7 +1310,9 @@ class Job(pulumi.CustomResource):
|
|
1298
1310
|
@pulumi.getter
|
1299
1311
|
def parameters(self) -> pulumi.Output[Optional[Mapping[str, Any]]]:
|
1300
1312
|
"""
|
1301
|
-
Key/Value pairs to be
|
1313
|
+
**Template specific** Key/Value pairs to be forwarded to the pipeline's options; keys are
|
1314
|
+
case-sensitive based on the language on which the pipeline is coded, mostly Java.
|
1315
|
+
**Note**: do not configure Dataflow options here in parameters.
|
1302
1316
|
"""
|
1303
1317
|
return pulumi.get(self, "parameters")
|
1304
1318
|
|
@@ -255,270 +255,6 @@ class DocumentAiWarehouseDocumentSchema(pulumi.CustomResource):
|
|
255
255
|
text_type_options=gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionTextTypeOptionsArgs(),
|
256
256
|
)])
|
257
257
|
```
|
258
|
-
### Document Ai Warehouse Document Schema Integer
|
259
|
-
|
260
|
-
```python
|
261
|
-
import pulumi
|
262
|
-
import pulumi_gcp as gcp
|
263
|
-
|
264
|
-
project = gcp.organizations.get_project()
|
265
|
-
example_integer = gcp.essentialcontacts.DocumentAiWarehouseDocumentSchema("example_integer",
|
266
|
-
project_number=project.number,
|
267
|
-
display_name="test-property-integer",
|
268
|
-
location="us",
|
269
|
-
property_definitions=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionArgs(
|
270
|
-
name="prop1",
|
271
|
-
display_name="propdisp1",
|
272
|
-
is_repeatable=False,
|
273
|
-
is_filterable=True,
|
274
|
-
is_searchable=True,
|
275
|
-
is_metadata=False,
|
276
|
-
is_required=False,
|
277
|
-
retrieval_importance="HIGHEST",
|
278
|
-
schema_sources=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionSchemaSourceArgs(
|
279
|
-
name="dummy_source",
|
280
|
-
processor_type="dummy_processor",
|
281
|
-
)],
|
282
|
-
integer_type_options=gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionIntegerTypeOptionsArgs(),
|
283
|
-
)])
|
284
|
-
```
|
285
|
-
### Document Ai Warehouse Document Schema Float
|
286
|
-
|
287
|
-
```python
|
288
|
-
import pulumi
|
289
|
-
import pulumi_gcp as gcp
|
290
|
-
|
291
|
-
project = gcp.organizations.get_project()
|
292
|
-
example_float = gcp.essentialcontacts.DocumentAiWarehouseDocumentSchema("example_float",
|
293
|
-
project_number=project.number,
|
294
|
-
display_name="test-property-float",
|
295
|
-
location="us",
|
296
|
-
property_definitions=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionArgs(
|
297
|
-
name="prop2",
|
298
|
-
display_name="propdisp2",
|
299
|
-
is_repeatable=False,
|
300
|
-
is_filterable=True,
|
301
|
-
is_searchable=True,
|
302
|
-
is_metadata=False,
|
303
|
-
is_required=False,
|
304
|
-
retrieval_importance="HIGHEST",
|
305
|
-
schema_sources=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionSchemaSourceArgs(
|
306
|
-
name="dummy_source",
|
307
|
-
processor_type="dummy_processor",
|
308
|
-
)],
|
309
|
-
float_type_options=gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionFloatTypeOptionsArgs(),
|
310
|
-
)])
|
311
|
-
```
|
312
|
-
### Document Ai Warehouse Document Schema Property
|
313
|
-
|
314
|
-
```python
|
315
|
-
import pulumi
|
316
|
-
import pulumi_gcp as gcp
|
317
|
-
|
318
|
-
project = gcp.organizations.get_project()
|
319
|
-
example_property = gcp.essentialcontacts.DocumentAiWarehouseDocumentSchema("example_property",
|
320
|
-
project_number=project.number,
|
321
|
-
display_name="test-property-property",
|
322
|
-
location="us",
|
323
|
-
document_is_folder=False,
|
324
|
-
property_definitions=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionArgs(
|
325
|
-
name="prop8",
|
326
|
-
display_name="propdisp8",
|
327
|
-
is_repeatable=False,
|
328
|
-
is_filterable=True,
|
329
|
-
is_searchable=True,
|
330
|
-
is_metadata=False,
|
331
|
-
is_required=False,
|
332
|
-
retrieval_importance="HIGHEST",
|
333
|
-
schema_sources=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionSchemaSourceArgs(
|
334
|
-
name="dummy_source",
|
335
|
-
processor_type="dummy_processor",
|
336
|
-
)],
|
337
|
-
property_type_options=gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionPropertyTypeOptionsArgs(
|
338
|
-
property_definitions=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionPropertyTypeOptionsPropertyDefinitionArgs(
|
339
|
-
name="prop8_nested",
|
340
|
-
display_name="propdisp8_nested",
|
341
|
-
is_repeatable=False,
|
342
|
-
is_filterable=True,
|
343
|
-
is_searchable=True,
|
344
|
-
is_metadata=False,
|
345
|
-
is_required=False,
|
346
|
-
retrieval_importance="HIGHEST",
|
347
|
-
schema_sources=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionPropertyTypeOptionsPropertyDefinitionSchemaSourceArgs(
|
348
|
-
name="dummy_source_nested",
|
349
|
-
processor_type="dummy_processor_nested",
|
350
|
-
)],
|
351
|
-
text_type_options=gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionPropertyTypeOptionsPropertyDefinitionTextTypeOptionsArgs(),
|
352
|
-
)],
|
353
|
-
),
|
354
|
-
)])
|
355
|
-
```
|
356
|
-
### Document Ai Warehouse Document Schema Property Enum
|
357
|
-
|
358
|
-
```python
|
359
|
-
import pulumi
|
360
|
-
import pulumi_gcp as gcp
|
361
|
-
|
362
|
-
project = gcp.organizations.get_project()
|
363
|
-
example_property_enum = gcp.essentialcontacts.DocumentAiWarehouseDocumentSchema("example_property_enum",
|
364
|
-
project_number=project.number,
|
365
|
-
display_name="test-property-property",
|
366
|
-
location="us",
|
367
|
-
document_is_folder=False,
|
368
|
-
property_definitions=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionArgs(
|
369
|
-
name="prop8",
|
370
|
-
display_name="propdisp8",
|
371
|
-
is_repeatable=False,
|
372
|
-
is_filterable=True,
|
373
|
-
is_searchable=True,
|
374
|
-
is_metadata=False,
|
375
|
-
is_required=False,
|
376
|
-
retrieval_importance="HIGHEST",
|
377
|
-
schema_sources=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionSchemaSourceArgs(
|
378
|
-
name="dummy_source",
|
379
|
-
processor_type="dummy_processor",
|
380
|
-
)],
|
381
|
-
property_type_options=gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionPropertyTypeOptionsArgs(
|
382
|
-
property_definitions=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionPropertyTypeOptionsPropertyDefinitionArgs(
|
383
|
-
name="prop8_nested",
|
384
|
-
display_name="propdisp8_nested",
|
385
|
-
is_repeatable=False,
|
386
|
-
is_filterable=True,
|
387
|
-
is_searchable=True,
|
388
|
-
is_metadata=False,
|
389
|
-
is_required=False,
|
390
|
-
retrieval_importance="HIGHEST",
|
391
|
-
schema_sources=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionPropertyTypeOptionsPropertyDefinitionSchemaSourceArgs(
|
392
|
-
name="dummy_source_nested",
|
393
|
-
processor_type="dummy_processor_nested",
|
394
|
-
)],
|
395
|
-
enum_type_options=gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionPropertyTypeOptionsPropertyDefinitionEnumTypeOptionsArgs(
|
396
|
-
possible_values=[
|
397
|
-
"M",
|
398
|
-
"F",
|
399
|
-
"X",
|
400
|
-
],
|
401
|
-
validation_check_disabled=False,
|
402
|
-
),
|
403
|
-
)],
|
404
|
-
),
|
405
|
-
)])
|
406
|
-
```
|
407
|
-
### Document Ai Warehouse Document Schema Enum
|
408
|
-
|
409
|
-
```python
|
410
|
-
import pulumi
|
411
|
-
import pulumi_gcp as gcp
|
412
|
-
|
413
|
-
project = gcp.organizations.get_project()
|
414
|
-
example_enum = gcp.essentialcontacts.DocumentAiWarehouseDocumentSchema("example_enum",
|
415
|
-
project_number=project.number,
|
416
|
-
display_name="test-property-enum",
|
417
|
-
location="us",
|
418
|
-
property_definitions=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionArgs(
|
419
|
-
name="prop6",
|
420
|
-
display_name="propdisp6",
|
421
|
-
is_repeatable=False,
|
422
|
-
is_filterable=True,
|
423
|
-
is_searchable=True,
|
424
|
-
is_metadata=False,
|
425
|
-
is_required=False,
|
426
|
-
retrieval_importance="HIGHEST",
|
427
|
-
schema_sources=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionSchemaSourceArgs(
|
428
|
-
name="dummy_source",
|
429
|
-
processor_type="dummy_processor",
|
430
|
-
)],
|
431
|
-
enum_type_options=gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionEnumTypeOptionsArgs(
|
432
|
-
possible_values=[
|
433
|
-
"M",
|
434
|
-
"F",
|
435
|
-
"X",
|
436
|
-
],
|
437
|
-
validation_check_disabled=False,
|
438
|
-
),
|
439
|
-
)])
|
440
|
-
```
|
441
|
-
### Document Ai Warehouse Document Schema Map
|
442
|
-
|
443
|
-
```python
|
444
|
-
import pulumi
|
445
|
-
import pulumi_gcp as gcp
|
446
|
-
|
447
|
-
project = gcp.organizations.get_project()
|
448
|
-
example_map = gcp.essentialcontacts.DocumentAiWarehouseDocumentSchema("example_map",
|
449
|
-
project_number=project.number,
|
450
|
-
display_name="test-property-map",
|
451
|
-
location="us",
|
452
|
-
property_definitions=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionArgs(
|
453
|
-
name="prop4",
|
454
|
-
display_name="propdisp4",
|
455
|
-
is_repeatable=False,
|
456
|
-
is_filterable=True,
|
457
|
-
is_searchable=True,
|
458
|
-
is_metadata=False,
|
459
|
-
is_required=False,
|
460
|
-
retrieval_importance="HIGHEST",
|
461
|
-
schema_sources=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionSchemaSourceArgs(
|
462
|
-
name="dummy_source",
|
463
|
-
processor_type="dummy_processor",
|
464
|
-
)],
|
465
|
-
map_type_options=gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionMapTypeOptionsArgs(),
|
466
|
-
)])
|
467
|
-
```
|
468
|
-
### Document Ai Warehouse Document Schema Datetime
|
469
|
-
|
470
|
-
```python
|
471
|
-
import pulumi
|
472
|
-
import pulumi_gcp as gcp
|
473
|
-
|
474
|
-
project = gcp.organizations.get_project()
|
475
|
-
example_datetime = gcp.essentialcontacts.DocumentAiWarehouseDocumentSchema("example_datetime",
|
476
|
-
project_number=project.number,
|
477
|
-
display_name="test-property-date_time",
|
478
|
-
location="us",
|
479
|
-
property_definitions=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionArgs(
|
480
|
-
name="prop7",
|
481
|
-
display_name="propdisp7",
|
482
|
-
is_repeatable=False,
|
483
|
-
is_filterable=True,
|
484
|
-
is_searchable=True,
|
485
|
-
is_metadata=False,
|
486
|
-
is_required=False,
|
487
|
-
retrieval_importance="HIGHEST",
|
488
|
-
schema_sources=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionSchemaSourceArgs(
|
489
|
-
name="dummy_source",
|
490
|
-
processor_type="dummy_processor",
|
491
|
-
)],
|
492
|
-
date_time_type_options=gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionDateTimeTypeOptionsArgs(),
|
493
|
-
)])
|
494
|
-
```
|
495
|
-
### Document Ai Warehouse Document Schema Timestamp
|
496
|
-
|
497
|
-
```python
|
498
|
-
import pulumi
|
499
|
-
import pulumi_gcp as gcp
|
500
|
-
|
501
|
-
project = gcp.organizations.get_project()
|
502
|
-
example_timestamp = gcp.essentialcontacts.DocumentAiWarehouseDocumentSchema("example_timestamp",
|
503
|
-
project_number=project.number,
|
504
|
-
display_name="test-property-timestamp",
|
505
|
-
location="us",
|
506
|
-
property_definitions=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionArgs(
|
507
|
-
name="prop5",
|
508
|
-
display_name="propdisp5",
|
509
|
-
is_repeatable=False,
|
510
|
-
is_filterable=True,
|
511
|
-
is_searchable=True,
|
512
|
-
is_metadata=False,
|
513
|
-
is_required=False,
|
514
|
-
retrieval_importance="HIGHEST",
|
515
|
-
schema_sources=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionSchemaSourceArgs(
|
516
|
-
name="dummy_source",
|
517
|
-
processor_type="dummy_processor",
|
518
|
-
)],
|
519
|
-
timestamp_type_options=gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionTimestampTypeOptionsArgs(),
|
520
|
-
)])
|
521
|
-
```
|
522
258
|
|
523
259
|
## Import
|
524
260
|
|
@@ -592,270 +328,6 @@ class DocumentAiWarehouseDocumentSchema(pulumi.CustomResource):
|
|
592
328
|
text_type_options=gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionTextTypeOptionsArgs(),
|
593
329
|
)])
|
594
330
|
```
|
595
|
-
### Document Ai Warehouse Document Schema Integer
|
596
|
-
|
597
|
-
```python
|
598
|
-
import pulumi
|
599
|
-
import pulumi_gcp as gcp
|
600
|
-
|
601
|
-
project = gcp.organizations.get_project()
|
602
|
-
example_integer = gcp.essentialcontacts.DocumentAiWarehouseDocumentSchema("example_integer",
|
603
|
-
project_number=project.number,
|
604
|
-
display_name="test-property-integer",
|
605
|
-
location="us",
|
606
|
-
property_definitions=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionArgs(
|
607
|
-
name="prop1",
|
608
|
-
display_name="propdisp1",
|
609
|
-
is_repeatable=False,
|
610
|
-
is_filterable=True,
|
611
|
-
is_searchable=True,
|
612
|
-
is_metadata=False,
|
613
|
-
is_required=False,
|
614
|
-
retrieval_importance="HIGHEST",
|
615
|
-
schema_sources=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionSchemaSourceArgs(
|
616
|
-
name="dummy_source",
|
617
|
-
processor_type="dummy_processor",
|
618
|
-
)],
|
619
|
-
integer_type_options=gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionIntegerTypeOptionsArgs(),
|
620
|
-
)])
|
621
|
-
```
|
622
|
-
### Document Ai Warehouse Document Schema Float
|
623
|
-
|
624
|
-
```python
|
625
|
-
import pulumi
|
626
|
-
import pulumi_gcp as gcp
|
627
|
-
|
628
|
-
project = gcp.organizations.get_project()
|
629
|
-
example_float = gcp.essentialcontacts.DocumentAiWarehouseDocumentSchema("example_float",
|
630
|
-
project_number=project.number,
|
631
|
-
display_name="test-property-float",
|
632
|
-
location="us",
|
633
|
-
property_definitions=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionArgs(
|
634
|
-
name="prop2",
|
635
|
-
display_name="propdisp2",
|
636
|
-
is_repeatable=False,
|
637
|
-
is_filterable=True,
|
638
|
-
is_searchable=True,
|
639
|
-
is_metadata=False,
|
640
|
-
is_required=False,
|
641
|
-
retrieval_importance="HIGHEST",
|
642
|
-
schema_sources=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionSchemaSourceArgs(
|
643
|
-
name="dummy_source",
|
644
|
-
processor_type="dummy_processor",
|
645
|
-
)],
|
646
|
-
float_type_options=gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionFloatTypeOptionsArgs(),
|
647
|
-
)])
|
648
|
-
```
|
649
|
-
### Document Ai Warehouse Document Schema Property
|
650
|
-
|
651
|
-
```python
|
652
|
-
import pulumi
|
653
|
-
import pulumi_gcp as gcp
|
654
|
-
|
655
|
-
project = gcp.organizations.get_project()
|
656
|
-
example_property = gcp.essentialcontacts.DocumentAiWarehouseDocumentSchema("example_property",
|
657
|
-
project_number=project.number,
|
658
|
-
display_name="test-property-property",
|
659
|
-
location="us",
|
660
|
-
document_is_folder=False,
|
661
|
-
property_definitions=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionArgs(
|
662
|
-
name="prop8",
|
663
|
-
display_name="propdisp8",
|
664
|
-
is_repeatable=False,
|
665
|
-
is_filterable=True,
|
666
|
-
is_searchable=True,
|
667
|
-
is_metadata=False,
|
668
|
-
is_required=False,
|
669
|
-
retrieval_importance="HIGHEST",
|
670
|
-
schema_sources=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionSchemaSourceArgs(
|
671
|
-
name="dummy_source",
|
672
|
-
processor_type="dummy_processor",
|
673
|
-
)],
|
674
|
-
property_type_options=gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionPropertyTypeOptionsArgs(
|
675
|
-
property_definitions=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionPropertyTypeOptionsPropertyDefinitionArgs(
|
676
|
-
name="prop8_nested",
|
677
|
-
display_name="propdisp8_nested",
|
678
|
-
is_repeatable=False,
|
679
|
-
is_filterable=True,
|
680
|
-
is_searchable=True,
|
681
|
-
is_metadata=False,
|
682
|
-
is_required=False,
|
683
|
-
retrieval_importance="HIGHEST",
|
684
|
-
schema_sources=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionPropertyTypeOptionsPropertyDefinitionSchemaSourceArgs(
|
685
|
-
name="dummy_source_nested",
|
686
|
-
processor_type="dummy_processor_nested",
|
687
|
-
)],
|
688
|
-
text_type_options=gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionPropertyTypeOptionsPropertyDefinitionTextTypeOptionsArgs(),
|
689
|
-
)],
|
690
|
-
),
|
691
|
-
)])
|
692
|
-
```
|
693
|
-
### Document Ai Warehouse Document Schema Property Enum
|
694
|
-
|
695
|
-
```python
|
696
|
-
import pulumi
|
697
|
-
import pulumi_gcp as gcp
|
698
|
-
|
699
|
-
project = gcp.organizations.get_project()
|
700
|
-
example_property_enum = gcp.essentialcontacts.DocumentAiWarehouseDocumentSchema("example_property_enum",
|
701
|
-
project_number=project.number,
|
702
|
-
display_name="test-property-property",
|
703
|
-
location="us",
|
704
|
-
document_is_folder=False,
|
705
|
-
property_definitions=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionArgs(
|
706
|
-
name="prop8",
|
707
|
-
display_name="propdisp8",
|
708
|
-
is_repeatable=False,
|
709
|
-
is_filterable=True,
|
710
|
-
is_searchable=True,
|
711
|
-
is_metadata=False,
|
712
|
-
is_required=False,
|
713
|
-
retrieval_importance="HIGHEST",
|
714
|
-
schema_sources=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionSchemaSourceArgs(
|
715
|
-
name="dummy_source",
|
716
|
-
processor_type="dummy_processor",
|
717
|
-
)],
|
718
|
-
property_type_options=gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionPropertyTypeOptionsArgs(
|
719
|
-
property_definitions=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionPropertyTypeOptionsPropertyDefinitionArgs(
|
720
|
-
name="prop8_nested",
|
721
|
-
display_name="propdisp8_nested",
|
722
|
-
is_repeatable=False,
|
723
|
-
is_filterable=True,
|
724
|
-
is_searchable=True,
|
725
|
-
is_metadata=False,
|
726
|
-
is_required=False,
|
727
|
-
retrieval_importance="HIGHEST",
|
728
|
-
schema_sources=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionPropertyTypeOptionsPropertyDefinitionSchemaSourceArgs(
|
729
|
-
name="dummy_source_nested",
|
730
|
-
processor_type="dummy_processor_nested",
|
731
|
-
)],
|
732
|
-
enum_type_options=gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionPropertyTypeOptionsPropertyDefinitionEnumTypeOptionsArgs(
|
733
|
-
possible_values=[
|
734
|
-
"M",
|
735
|
-
"F",
|
736
|
-
"X",
|
737
|
-
],
|
738
|
-
validation_check_disabled=False,
|
739
|
-
),
|
740
|
-
)],
|
741
|
-
),
|
742
|
-
)])
|
743
|
-
```
|
744
|
-
### Document Ai Warehouse Document Schema Enum
|
745
|
-
|
746
|
-
```python
|
747
|
-
import pulumi
|
748
|
-
import pulumi_gcp as gcp
|
749
|
-
|
750
|
-
project = gcp.organizations.get_project()
|
751
|
-
example_enum = gcp.essentialcontacts.DocumentAiWarehouseDocumentSchema("example_enum",
|
752
|
-
project_number=project.number,
|
753
|
-
display_name="test-property-enum",
|
754
|
-
location="us",
|
755
|
-
property_definitions=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionArgs(
|
756
|
-
name="prop6",
|
757
|
-
display_name="propdisp6",
|
758
|
-
is_repeatable=False,
|
759
|
-
is_filterable=True,
|
760
|
-
is_searchable=True,
|
761
|
-
is_metadata=False,
|
762
|
-
is_required=False,
|
763
|
-
retrieval_importance="HIGHEST",
|
764
|
-
schema_sources=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionSchemaSourceArgs(
|
765
|
-
name="dummy_source",
|
766
|
-
processor_type="dummy_processor",
|
767
|
-
)],
|
768
|
-
enum_type_options=gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionEnumTypeOptionsArgs(
|
769
|
-
possible_values=[
|
770
|
-
"M",
|
771
|
-
"F",
|
772
|
-
"X",
|
773
|
-
],
|
774
|
-
validation_check_disabled=False,
|
775
|
-
),
|
776
|
-
)])
|
777
|
-
```
|
778
|
-
### Document Ai Warehouse Document Schema Map
|
779
|
-
|
780
|
-
```python
|
781
|
-
import pulumi
|
782
|
-
import pulumi_gcp as gcp
|
783
|
-
|
784
|
-
project = gcp.organizations.get_project()
|
785
|
-
example_map = gcp.essentialcontacts.DocumentAiWarehouseDocumentSchema("example_map",
|
786
|
-
project_number=project.number,
|
787
|
-
display_name="test-property-map",
|
788
|
-
location="us",
|
789
|
-
property_definitions=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionArgs(
|
790
|
-
name="prop4",
|
791
|
-
display_name="propdisp4",
|
792
|
-
is_repeatable=False,
|
793
|
-
is_filterable=True,
|
794
|
-
is_searchable=True,
|
795
|
-
is_metadata=False,
|
796
|
-
is_required=False,
|
797
|
-
retrieval_importance="HIGHEST",
|
798
|
-
schema_sources=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionSchemaSourceArgs(
|
799
|
-
name="dummy_source",
|
800
|
-
processor_type="dummy_processor",
|
801
|
-
)],
|
802
|
-
map_type_options=gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionMapTypeOptionsArgs(),
|
803
|
-
)])
|
804
|
-
```
|
805
|
-
### Document Ai Warehouse Document Schema Datetime
|
806
|
-
|
807
|
-
```python
|
808
|
-
import pulumi
|
809
|
-
import pulumi_gcp as gcp
|
810
|
-
|
811
|
-
project = gcp.organizations.get_project()
|
812
|
-
example_datetime = gcp.essentialcontacts.DocumentAiWarehouseDocumentSchema("example_datetime",
|
813
|
-
project_number=project.number,
|
814
|
-
display_name="test-property-date_time",
|
815
|
-
location="us",
|
816
|
-
property_definitions=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionArgs(
|
817
|
-
name="prop7",
|
818
|
-
display_name="propdisp7",
|
819
|
-
is_repeatable=False,
|
820
|
-
is_filterable=True,
|
821
|
-
is_searchable=True,
|
822
|
-
is_metadata=False,
|
823
|
-
is_required=False,
|
824
|
-
retrieval_importance="HIGHEST",
|
825
|
-
schema_sources=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionSchemaSourceArgs(
|
826
|
-
name="dummy_source",
|
827
|
-
processor_type="dummy_processor",
|
828
|
-
)],
|
829
|
-
date_time_type_options=gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionDateTimeTypeOptionsArgs(),
|
830
|
-
)])
|
831
|
-
```
|
832
|
-
### Document Ai Warehouse Document Schema Timestamp
|
833
|
-
|
834
|
-
```python
|
835
|
-
import pulumi
|
836
|
-
import pulumi_gcp as gcp
|
837
|
-
|
838
|
-
project = gcp.organizations.get_project()
|
839
|
-
example_timestamp = gcp.essentialcontacts.DocumentAiWarehouseDocumentSchema("example_timestamp",
|
840
|
-
project_number=project.number,
|
841
|
-
display_name="test-property-timestamp",
|
842
|
-
location="us",
|
843
|
-
property_definitions=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionArgs(
|
844
|
-
name="prop5",
|
845
|
-
display_name="propdisp5",
|
846
|
-
is_repeatable=False,
|
847
|
-
is_filterable=True,
|
848
|
-
is_searchable=True,
|
849
|
-
is_metadata=False,
|
850
|
-
is_required=False,
|
851
|
-
retrieval_importance="HIGHEST",
|
852
|
-
schema_sources=[gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionSchemaSourceArgs(
|
853
|
-
name="dummy_source",
|
854
|
-
processor_type="dummy_processor",
|
855
|
-
)],
|
856
|
-
timestamp_type_options=gcp.essentialcontacts.DocumentAiWarehouseDocumentSchemaPropertyDefinitionTimestampTypeOptionsArgs(),
|
857
|
-
)])
|
858
|
-
```
|
859
331
|
|
860
332
|
## Import
|
861
333
|
|
@@ -215,7 +215,7 @@ class Release(pulumi.CustomResource):
|
|
215
215
|
),
|
216
216
|
project="my-project-name")
|
217
217
|
primary = gcp.firebaserules.Release("primary",
|
218
|
-
name="cloud.firestore",
|
218
|
+
name="cloud.firestore/database",
|
219
219
|
ruleset_name=firestore.name.apply(lambda name: f"projects/my-project-name/rulesets/{name}"),
|
220
220
|
project="my-project-name")
|
221
221
|
```
|
@@ -296,7 +296,7 @@ class Release(pulumi.CustomResource):
|
|
296
296
|
),
|
297
297
|
project="my-project-name")
|
298
298
|
primary = gcp.firebaserules.Release("primary",
|
299
|
-
name="cloud.firestore",
|
299
|
+
name="cloud.firestore/database",
|
300
300
|
ruleset_name=firestore.name.apply(lambda name: f"projects/my-project-name/rulesets/{name}"),
|
301
301
|
project="my-project-name")
|
302
302
|
```
|
@@ -0,0 +1,10 @@
|
|
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
|
+
from .. import _utilities
|
6
|
+
import typing
|
7
|
+
# Export this package's modules as members:
|
8
|
+
from .entitlement import *
|
9
|
+
from ._inputs import *
|
10
|
+
from . import outputs
|