pulumi-gcp 8.40.0a1754721948__py3-none-any.whl → 8.41.0a1754981061__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 +128 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +24 -4
- pulumi_gcp/accesscontextmanager/outputs.py +15 -3
- pulumi_gcp/apigee/__init__.py +2 -0
- pulumi_gcp/apigee/_inputs.py +1435 -0
- pulumi_gcp/apigee/api_product.py +1698 -0
- pulumi_gcp/apigee/outputs.py +1081 -0
- pulumi_gcp/apigee/security_action.py +1010 -0
- pulumi_gcp/artifactregistry/__init__.py +1 -0
- pulumi_gcp/artifactregistry/get_docker_images.py +164 -0
- pulumi_gcp/artifactregistry/outputs.py +109 -2
- pulumi_gcp/artifactregistry/repository.py +6 -6
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +56 -0
- pulumi_gcp/backupdisasterrecovery/get_backup_vault.py +12 -1
- pulumi_gcp/bigquery/_inputs.py +6 -0
- pulumi_gcp/bigquery/get_table.py +23 -1
- pulumi_gcp/bigquery/outputs.py +4 -0
- pulumi_gcp/bigquery/table.py +62 -0
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +180 -0
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +80 -0
- pulumi_gcp/bigqueryanalyticshub/listing.py +322 -2
- pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +32 -0
- pulumi_gcp/bigqueryanalyticshub/outputs.py +159 -0
- pulumi_gcp/bigtable/__init__.py +1 -0
- pulumi_gcp/bigtable/_inputs.py +33 -0
- pulumi_gcp/bigtable/outputs.py +36 -0
- pulumi_gcp/bigtable/schema_bundle.py +568 -0
- pulumi_gcp/cloudfunctions/_inputs.py +48 -0
- pulumi_gcp/cloudfunctions/function.py +94 -0
- pulumi_gcp/cloudfunctions/get_function.py +23 -1
- pulumi_gcp/cloudfunctions/outputs.py +70 -0
- pulumi_gcp/cloudrunv2/_inputs.py +20 -0
- pulumi_gcp/cloudrunv2/job.py +2 -0
- pulumi_gcp/cloudrunv2/outputs.py +25 -0
- pulumi_gcp/cloudrunv2/worker_pool.py +2 -0
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +713 -22
- pulumi_gcp/compute/firewall_policy_with_rules.py +66 -0
- pulumi_gcp/compute/forwarding_rule.py +0 -21
- pulumi_gcp/compute/get_router.py +12 -1
- pulumi_gcp/compute/outputs.py +562 -22
- pulumi_gcp/compute/preview_feature.py +396 -0
- pulumi_gcp/compute/region_url_map.py +392 -0
- pulumi_gcp/compute/reservation.py +4 -4
- pulumi_gcp/compute/router.py +54 -0
- pulumi_gcp/compute/storage_pool.py +154 -0
- pulumi_gcp/compute/subnetwork.py +54 -0
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +278 -8
- pulumi_gcp/container/cluster.py +61 -21
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/outputs.py +352 -8
- pulumi_gcp/dataproc/_inputs.py +249 -14
- pulumi_gcp/dataproc/batch.py +6 -0
- pulumi_gcp/dataproc/cluster.py +2 -0
- pulumi_gcp/dataproc/outputs.py +215 -12
- pulumi_gcp/dataproc/session_template.py +14 -2
- pulumi_gcp/developerconnect/__init__.py +1 -0
- pulumi_gcp/developerconnect/_inputs.py +583 -0
- pulumi_gcp/developerconnect/insights_config.py +895 -0
- pulumi_gcp/developerconnect/outputs.py +442 -0
- pulumi_gcp/diagflow/__init__.py +1 -0
- pulumi_gcp/diagflow/_inputs.py +1165 -58
- pulumi_gcp/diagflow/cx_generator.py +636 -0
- pulumi_gcp/diagflow/cx_tool.py +2 -2
- pulumi_gcp/diagflow/cx_webhook.py +380 -36
- pulumi_gcp/diagflow/outputs.py +848 -25
- pulumi_gcp/discoveryengine/__init__.py +2 -0
- pulumi_gcp/discoveryengine/_inputs.py +465 -0
- pulumi_gcp/discoveryengine/cmek_config.py +707 -0
- pulumi_gcp/discoveryengine/outputs.py +412 -0
- pulumi_gcp/discoveryengine/recommendation_engine.py +813 -0
- pulumi_gcp/firestore/field.py +6 -6
- pulumi_gcp/gemini/gemini_gcp_enablement_setting.py +107 -9
- pulumi_gcp/gemini/gemini_gcp_enablement_setting_binding.py +2 -2
- pulumi_gcp/gkehub/membership_binding.py +6 -6
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +4 -4
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +8 -8
- pulumi_gcp/iam/__init__.py +4 -0
- pulumi_gcp/iam/_inputs.py +98 -0
- pulumi_gcp/iam/get_workforce_pool_iam_policy.py +161 -0
- pulumi_gcp/iam/outputs.py +56 -0
- pulumi_gcp/iam/workforce_pool_iam_binding.py +761 -0
- pulumi_gcp/iam/workforce_pool_iam_member.py +761 -0
- pulumi_gcp/iam/workforce_pool_iam_policy.py +600 -0
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/looker/instance.py +28 -7
- pulumi_gcp/managedkafka/_inputs.py +127 -0
- pulumi_gcp/managedkafka/cluster.py +131 -1
- pulumi_gcp/managedkafka/connect_cluster.py +4 -4
- pulumi_gcp/managedkafka/connector.py +4 -4
- pulumi_gcp/managedkafka/outputs.py +128 -0
- pulumi_gcp/memorystore/instance.py +8 -12
- pulumi_gcp/modelarmor/__init__.py +1 -0
- pulumi_gcp/modelarmor/_inputs.py +683 -0
- pulumi_gcp/modelarmor/floorsetting.py +736 -0
- pulumi_gcp/modelarmor/outputs.py +618 -0
- pulumi_gcp/networkconnectivity/_inputs.py +60 -0
- pulumi_gcp/networkconnectivity/internal_range.py +136 -0
- pulumi_gcp/networkconnectivity/outputs.py +55 -0
- pulumi_gcp/networkconnectivity/spoke.py +14 -14
- pulumi_gcp/oracledatabase/__init__.py +2 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +262 -38
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +314 -50
- pulumi_gcp/oracledatabase/get_autonomous_database.py +23 -1
- pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +34 -1
- pulumi_gcp/oracledatabase/odb_network.py +721 -0
- pulumi_gcp/oracledatabase/odb_subnet.py +803 -0
- pulumi_gcp/oracledatabase/outputs.py +83 -0
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/parametermanager/parameter_version.py +62 -0
- pulumi_gcp/parametermanager/regional_parameter_version.py +64 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +46 -6
- pulumi_gcp/pubsub/topic.py +36 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/cluster.py +70 -0
- pulumi_gcp/redis/get_cluster.py +12 -1
- pulumi_gcp/redis/instance.py +8 -12
- pulumi_gcp/secretmanager/get_regional_secret.py +12 -1
- pulumi_gcp/secretmanager/get_secret.py +12 -1
- pulumi_gcp/secretmanager/outputs.py +30 -0
- pulumi_gcp/secretmanager/regional_secret.py +61 -0
- pulumi_gcp/secretmanager/secret.py +61 -0
- pulumi_gcp/securesourcemanager/branch_rule.py +16 -8
- pulumi_gcp/securesourcemanager/instance.py +112 -4
- pulumi_gcp/securesourcemanager/repository.py +112 -8
- pulumi_gcp/serviceaccount/get_account_key.py +1 -0
- pulumi_gcp/sql/_inputs.py +6 -6
- pulumi_gcp/sql/database.py +0 -12
- pulumi_gcp/sql/outputs.py +4 -4
- pulumi_gcp/storage/__init__.py +2 -0
- pulumi_gcp/storage/_inputs.py +451 -0
- pulumi_gcp/storage/bucket.py +7 -7
- pulumi_gcp/storage/bucket_object.py +34 -0
- pulumi_gcp/storage/get_bucket_object.py +12 -1
- pulumi_gcp/storage/get_bucket_object_content.py +12 -1
- pulumi_gcp/storage/get_insights_dataset_config.py +363 -0
- pulumi_gcp/storage/insights_dataset_config.py +1280 -0
- pulumi_gcp/storage/outputs.py +619 -0
- pulumi_gcp/vertex/__init__.py +1 -0
- pulumi_gcp/vertex/_inputs.py +3646 -3
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_endpoint_with_model_garden_deployment.py +940 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vertex/outputs.py +2609 -2
- pulumi_gcp/vmwareengine/network_peering.py +7 -7
- pulumi_gcp/workbench/_inputs.py +118 -0
- pulumi_gcp/workbench/instance.py +171 -2
- pulumi_gcp/workbench/outputs.py +91 -0
- {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.41.0a1754981061.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.41.0a1754981061.dist-info}/RECORD +157 -138
- {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.41.0a1754981061.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.41.0a1754981061.dist-info}/top_level.txt +0 -0
@@ -25,6 +25,7 @@ class DataExchangeArgs:
|
|
25
25
|
display_name: pulumi.Input[_builtins.str],
|
26
26
|
location: pulumi.Input[_builtins.str],
|
27
27
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
28
|
+
discovery_type: Optional[pulumi.Input[_builtins.str]] = None,
|
28
29
|
documentation: Optional[pulumi.Input[_builtins.str]] = None,
|
29
30
|
icon: Optional[pulumi.Input[_builtins.str]] = None,
|
30
31
|
log_linked_dataset_query_user_email: Optional[pulumi.Input[_builtins.bool]] = None,
|
@@ -37,6 +38,8 @@ class DataExchangeArgs:
|
|
37
38
|
:param pulumi.Input[_builtins.str] display_name: Human-readable display name of the data exchange. The display name must contain only Unicode letters, numbers (0-9), underscores (_), dashes (-), spaces ( ), and must not start or end with spaces.
|
38
39
|
:param pulumi.Input[_builtins.str] location: The name of the location this data exchange.
|
39
40
|
:param pulumi.Input[_builtins.str] description: Description of the data exchange.
|
41
|
+
:param pulumi.Input[_builtins.str] discovery_type: Type of discovery on the discovery page for all the listings under this exchange. Cannot be set for a Data Clean Room. Updating this field also updates (overwrites) the discoveryType field for all the listings under this exchange.
|
42
|
+
Possible values are: `DISCOVERY_TYPE_PRIVATE`, `DISCOVERY_TYPE_PUBLIC`.
|
40
43
|
:param pulumi.Input[_builtins.str] documentation: Documentation describing the data exchange.
|
41
44
|
:param pulumi.Input[_builtins.str] icon: Base64 encoded image representing the data exchange.
|
42
45
|
:param pulumi.Input[_builtins.bool] log_linked_dataset_query_user_email: If true, subscriber email logging is enabled and all queries on the linked dataset will log the email address of the querying user. Once enabled, this setting cannot be turned off.
|
@@ -52,6 +55,8 @@ class DataExchangeArgs:
|
|
52
55
|
pulumi.set(__self__, "location", location)
|
53
56
|
if description is not None:
|
54
57
|
pulumi.set(__self__, "description", description)
|
58
|
+
if discovery_type is not None:
|
59
|
+
pulumi.set(__self__, "discovery_type", discovery_type)
|
55
60
|
if documentation is not None:
|
56
61
|
pulumi.set(__self__, "documentation", documentation)
|
57
62
|
if icon is not None:
|
@@ -113,6 +118,19 @@ class DataExchangeArgs:
|
|
113
118
|
def description(self, value: Optional[pulumi.Input[_builtins.str]]):
|
114
119
|
pulumi.set(self, "description", value)
|
115
120
|
|
121
|
+
@_builtins.property
|
122
|
+
@pulumi.getter(name="discoveryType")
|
123
|
+
def discovery_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
124
|
+
"""
|
125
|
+
Type of discovery on the discovery page for all the listings under this exchange. Cannot be set for a Data Clean Room. Updating this field also updates (overwrites) the discoveryType field for all the listings under this exchange.
|
126
|
+
Possible values are: `DISCOVERY_TYPE_PRIVATE`, `DISCOVERY_TYPE_PUBLIC`.
|
127
|
+
"""
|
128
|
+
return pulumi.get(self, "discovery_type")
|
129
|
+
|
130
|
+
@discovery_type.setter
|
131
|
+
def discovery_type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
132
|
+
pulumi.set(self, "discovery_type", value)
|
133
|
+
|
116
134
|
@_builtins.property
|
117
135
|
@pulumi.getter
|
118
136
|
def documentation(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -194,6 +212,7 @@ class _DataExchangeState:
|
|
194
212
|
def __init__(__self__, *,
|
195
213
|
data_exchange_id: Optional[pulumi.Input[_builtins.str]] = None,
|
196
214
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
215
|
+
discovery_type: Optional[pulumi.Input[_builtins.str]] = None,
|
197
216
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
198
217
|
documentation: Optional[pulumi.Input[_builtins.str]] = None,
|
199
218
|
icon: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -208,6 +227,8 @@ class _DataExchangeState:
|
|
208
227
|
Input properties used for looking up and filtering DataExchange resources.
|
209
228
|
:param pulumi.Input[_builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces.
|
210
229
|
:param pulumi.Input[_builtins.str] description: Description of the data exchange.
|
230
|
+
:param pulumi.Input[_builtins.str] discovery_type: Type of discovery on the discovery page for all the listings under this exchange. Cannot be set for a Data Clean Room. Updating this field also updates (overwrites) the discoveryType field for all the listings under this exchange.
|
231
|
+
Possible values are: `DISCOVERY_TYPE_PRIVATE`, `DISCOVERY_TYPE_PUBLIC`.
|
211
232
|
:param pulumi.Input[_builtins.str] display_name: Human-readable display name of the data exchange. The display name must contain only Unicode letters, numbers (0-9), underscores (_), dashes (-), spaces ( ), and must not start or end with spaces.
|
212
233
|
:param pulumi.Input[_builtins.str] documentation: Documentation describing the data exchange.
|
213
234
|
:param pulumi.Input[_builtins.str] icon: Base64 encoded image representing the data exchange.
|
@@ -227,6 +248,8 @@ class _DataExchangeState:
|
|
227
248
|
pulumi.set(__self__, "data_exchange_id", data_exchange_id)
|
228
249
|
if description is not None:
|
229
250
|
pulumi.set(__self__, "description", description)
|
251
|
+
if discovery_type is not None:
|
252
|
+
pulumi.set(__self__, "discovery_type", discovery_type)
|
230
253
|
if display_name is not None:
|
231
254
|
pulumi.set(__self__, "display_name", display_name)
|
232
255
|
if documentation is not None:
|
@@ -272,6 +295,19 @@ class _DataExchangeState:
|
|
272
295
|
def description(self, value: Optional[pulumi.Input[_builtins.str]]):
|
273
296
|
pulumi.set(self, "description", value)
|
274
297
|
|
298
|
+
@_builtins.property
|
299
|
+
@pulumi.getter(name="discoveryType")
|
300
|
+
def discovery_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
301
|
+
"""
|
302
|
+
Type of discovery on the discovery page for all the listings under this exchange. Cannot be set for a Data Clean Room. Updating this field also updates (overwrites) the discoveryType field for all the listings under this exchange.
|
303
|
+
Possible values are: `DISCOVERY_TYPE_PRIVATE`, `DISCOVERY_TYPE_PUBLIC`.
|
304
|
+
"""
|
305
|
+
return pulumi.get(self, "discovery_type")
|
306
|
+
|
307
|
+
@discovery_type.setter
|
308
|
+
def discovery_type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
309
|
+
pulumi.set(self, "discovery_type", value)
|
310
|
+
|
275
311
|
@_builtins.property
|
276
312
|
@pulumi.getter(name="displayName")
|
277
313
|
def display_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -405,6 +441,7 @@ class DataExchange(pulumi.CustomResource):
|
|
405
441
|
opts: Optional[pulumi.ResourceOptions] = None,
|
406
442
|
data_exchange_id: Optional[pulumi.Input[_builtins.str]] = None,
|
407
443
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
444
|
+
discovery_type: Optional[pulumi.Input[_builtins.str]] = None,
|
408
445
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
409
446
|
documentation: Optional[pulumi.Input[_builtins.str]] = None,
|
410
447
|
icon: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -465,6 +502,19 @@ class DataExchange(pulumi.CustomResource):
|
|
465
502
|
description="Example for log email test for data exchange",
|
466
503
|
log_linked_dataset_query_user_email=True)
|
467
504
|
```
|
505
|
+
### Bigquery Analyticshub Public Data Exchange
|
506
|
+
|
507
|
+
```python
|
508
|
+
import pulumi
|
509
|
+
import pulumi_gcp as gcp
|
510
|
+
|
511
|
+
data_exchange = gcp.bigqueryanalyticshub.DataExchange("data_exchange",
|
512
|
+
location="US",
|
513
|
+
data_exchange_id="public_data_exchange",
|
514
|
+
display_name="public_data_exchange",
|
515
|
+
description="Example for public data exchange",
|
516
|
+
discovery_type="DISCOVERY_TYPE_PUBLIC")
|
517
|
+
```
|
468
518
|
|
469
519
|
## Import
|
470
520
|
|
@@ -500,6 +550,8 @@ class DataExchange(pulumi.CustomResource):
|
|
500
550
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
501
551
|
:param pulumi.Input[_builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces.
|
502
552
|
:param pulumi.Input[_builtins.str] description: Description of the data exchange.
|
553
|
+
:param pulumi.Input[_builtins.str] discovery_type: Type of discovery on the discovery page for all the listings under this exchange. Cannot be set for a Data Clean Room. Updating this field also updates (overwrites) the discoveryType field for all the listings under this exchange.
|
554
|
+
Possible values are: `DISCOVERY_TYPE_PRIVATE`, `DISCOVERY_TYPE_PUBLIC`.
|
503
555
|
:param pulumi.Input[_builtins.str] display_name: Human-readable display name of the data exchange. The display name must contain only Unicode letters, numbers (0-9), underscores (_), dashes (-), spaces ( ), and must not start or end with spaces.
|
504
556
|
:param pulumi.Input[_builtins.str] documentation: Documentation describing the data exchange.
|
505
557
|
:param pulumi.Input[_builtins.str] icon: Base64 encoded image representing the data exchange.
|
@@ -569,6 +621,19 @@ class DataExchange(pulumi.CustomResource):
|
|
569
621
|
description="Example for log email test for data exchange",
|
570
622
|
log_linked_dataset_query_user_email=True)
|
571
623
|
```
|
624
|
+
### Bigquery Analyticshub Public Data Exchange
|
625
|
+
|
626
|
+
```python
|
627
|
+
import pulumi
|
628
|
+
import pulumi_gcp as gcp
|
629
|
+
|
630
|
+
data_exchange = gcp.bigqueryanalyticshub.DataExchange("data_exchange",
|
631
|
+
location="US",
|
632
|
+
data_exchange_id="public_data_exchange",
|
633
|
+
display_name="public_data_exchange",
|
634
|
+
description="Example for public data exchange",
|
635
|
+
discovery_type="DISCOVERY_TYPE_PUBLIC")
|
636
|
+
```
|
572
637
|
|
573
638
|
## Import
|
574
639
|
|
@@ -617,6 +682,7 @@ class DataExchange(pulumi.CustomResource):
|
|
617
682
|
opts: Optional[pulumi.ResourceOptions] = None,
|
618
683
|
data_exchange_id: Optional[pulumi.Input[_builtins.str]] = None,
|
619
684
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
685
|
+
discovery_type: Optional[pulumi.Input[_builtins.str]] = None,
|
620
686
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
621
687
|
documentation: Optional[pulumi.Input[_builtins.str]] = None,
|
622
688
|
icon: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -638,6 +704,7 @@ class DataExchange(pulumi.CustomResource):
|
|
638
704
|
raise TypeError("Missing required property 'data_exchange_id'")
|
639
705
|
__props__.__dict__["data_exchange_id"] = data_exchange_id
|
640
706
|
__props__.__dict__["description"] = description
|
707
|
+
__props__.__dict__["discovery_type"] = discovery_type
|
641
708
|
if display_name is None and not opts.urn:
|
642
709
|
raise TypeError("Missing required property 'display_name'")
|
643
710
|
__props__.__dict__["display_name"] = display_name
|
@@ -664,6 +731,7 @@ class DataExchange(pulumi.CustomResource):
|
|
664
731
|
opts: Optional[pulumi.ResourceOptions] = None,
|
665
732
|
data_exchange_id: Optional[pulumi.Input[_builtins.str]] = None,
|
666
733
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
734
|
+
discovery_type: Optional[pulumi.Input[_builtins.str]] = None,
|
667
735
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
668
736
|
documentation: Optional[pulumi.Input[_builtins.str]] = None,
|
669
737
|
icon: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -683,6 +751,8 @@ class DataExchange(pulumi.CustomResource):
|
|
683
751
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
684
752
|
:param pulumi.Input[_builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces.
|
685
753
|
:param pulumi.Input[_builtins.str] description: Description of the data exchange.
|
754
|
+
:param pulumi.Input[_builtins.str] discovery_type: Type of discovery on the discovery page for all the listings under this exchange. Cannot be set for a Data Clean Room. Updating this field also updates (overwrites) the discoveryType field for all the listings under this exchange.
|
755
|
+
Possible values are: `DISCOVERY_TYPE_PRIVATE`, `DISCOVERY_TYPE_PUBLIC`.
|
686
756
|
:param pulumi.Input[_builtins.str] display_name: Human-readable display name of the data exchange. The display name must contain only Unicode letters, numbers (0-9), underscores (_), dashes (-), spaces ( ), and must not start or end with spaces.
|
687
757
|
:param pulumi.Input[_builtins.str] documentation: Documentation describing the data exchange.
|
688
758
|
:param pulumi.Input[_builtins.str] icon: Base64 encoded image representing the data exchange.
|
@@ -704,6 +774,7 @@ class DataExchange(pulumi.CustomResource):
|
|
704
774
|
|
705
775
|
__props__.__dict__["data_exchange_id"] = data_exchange_id
|
706
776
|
__props__.__dict__["description"] = description
|
777
|
+
__props__.__dict__["discovery_type"] = discovery_type
|
707
778
|
__props__.__dict__["display_name"] = display_name
|
708
779
|
__props__.__dict__["documentation"] = documentation
|
709
780
|
__props__.__dict__["icon"] = icon
|
@@ -732,6 +803,15 @@ class DataExchange(pulumi.CustomResource):
|
|
732
803
|
"""
|
733
804
|
return pulumi.get(self, "description")
|
734
805
|
|
806
|
+
@_builtins.property
|
807
|
+
@pulumi.getter(name="discoveryType")
|
808
|
+
def discovery_type(self) -> pulumi.Output[_builtins.str]:
|
809
|
+
"""
|
810
|
+
Type of discovery on the discovery page for all the listings under this exchange. Cannot be set for a Data Clean Room. Updating this field also updates (overwrites) the discoveryType field for all the listings under this exchange.
|
811
|
+
Possible values are: `DISCOVERY_TYPE_PRIVATE`, `DISCOVERY_TYPE_PUBLIC`.
|
812
|
+
"""
|
813
|
+
return pulumi.get(self, "discovery_type")
|
814
|
+
|
735
815
|
@_builtins.property
|
736
816
|
@pulumi.getter(name="displayName")
|
737
817
|
def display_name(self) -> pulumi.Output[_builtins.str]:
|