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
pulumi_gcp/bigquery/get_table.py
CHANGED
@@ -27,7 +27,7 @@ class GetTableResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getTable.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, biglake_configurations=None, clusterings=None, creation_time=None, dataset_id=None, deletion_protection=None, description=None, effective_labels=None, encryption_configurations=None, etag=None, expiration_time=None, external_catalog_table_options=None, external_data_configurations=None, friendly_name=None, id=None, ignore_schema_changes=None, labels=None, last_modified_time=None, location=None, materialized_views=None, max_staleness=None, num_bytes=None, num_long_term_bytes=None, num_rows=None, project=None, pulumi_labels=None, range_partitionings=None, require_partition_filter=None, resource_tags=None, schema=None, schema_foreign_type_infos=None, self_link=None, table_constraints=None, table_id=None, table_metadata_view=None, table_replication_infos=None, time_partitionings=None, type=None, views=None):
|
30
|
+
def __init__(__self__, biglake_configurations=None, clusterings=None, creation_time=None, dataset_id=None, deletion_protection=None, description=None, effective_labels=None, encryption_configurations=None, etag=None, expiration_time=None, external_catalog_table_options=None, external_data_configurations=None, friendly_name=None, generated_schema_columns=None, id=None, ignore_auto_generated_schema=None, ignore_schema_changes=None, labels=None, last_modified_time=None, location=None, materialized_views=None, max_staleness=None, num_bytes=None, num_long_term_bytes=None, num_rows=None, project=None, pulumi_labels=None, range_partitionings=None, require_partition_filter=None, resource_tags=None, schema=None, schema_foreign_type_infos=None, self_link=None, table_constraints=None, table_id=None, table_metadata_view=None, table_replication_infos=None, time_partitionings=None, type=None, views=None):
|
31
31
|
if biglake_configurations and not isinstance(biglake_configurations, list):
|
32
32
|
raise TypeError("Expected argument 'biglake_configurations' to be a list")
|
33
33
|
pulumi.set(__self__, "biglake_configurations", biglake_configurations)
|
@@ -67,9 +67,15 @@ class GetTableResult:
|
|
67
67
|
if friendly_name and not isinstance(friendly_name, str):
|
68
68
|
raise TypeError("Expected argument 'friendly_name' to be a str")
|
69
69
|
pulumi.set(__self__, "friendly_name", friendly_name)
|
70
|
+
if generated_schema_columns and not isinstance(generated_schema_columns, str):
|
71
|
+
raise TypeError("Expected argument 'generated_schema_columns' to be a str")
|
72
|
+
pulumi.set(__self__, "generated_schema_columns", generated_schema_columns)
|
70
73
|
if id and not isinstance(id, str):
|
71
74
|
raise TypeError("Expected argument 'id' to be a str")
|
72
75
|
pulumi.set(__self__, "id", id)
|
76
|
+
if ignore_auto_generated_schema and not isinstance(ignore_auto_generated_schema, bool):
|
77
|
+
raise TypeError("Expected argument 'ignore_auto_generated_schema' to be a bool")
|
78
|
+
pulumi.set(__self__, "ignore_auto_generated_schema", ignore_auto_generated_schema)
|
73
79
|
if ignore_schema_changes and not isinstance(ignore_schema_changes, list):
|
74
80
|
raise TypeError("Expected argument 'ignore_schema_changes' to be a list")
|
75
81
|
pulumi.set(__self__, "ignore_schema_changes", ignore_schema_changes)
|
@@ -208,6 +214,11 @@ class GetTableResult:
|
|
208
214
|
def friendly_name(self) -> _builtins.str:
|
209
215
|
return pulumi.get(self, "friendly_name")
|
210
216
|
|
217
|
+
@_builtins.property
|
218
|
+
@pulumi.getter(name="generatedSchemaColumns")
|
219
|
+
def generated_schema_columns(self) -> _builtins.str:
|
220
|
+
return pulumi.get(self, "generated_schema_columns")
|
221
|
+
|
211
222
|
@_builtins.property
|
212
223
|
@pulumi.getter
|
213
224
|
def id(self) -> _builtins.str:
|
@@ -216,6 +227,11 @@ class GetTableResult:
|
|
216
227
|
"""
|
217
228
|
return pulumi.get(self, "id")
|
218
229
|
|
230
|
+
@_builtins.property
|
231
|
+
@pulumi.getter(name="ignoreAutoGeneratedSchema")
|
232
|
+
def ignore_auto_generated_schema(self) -> _builtins.bool:
|
233
|
+
return pulumi.get(self, "ignore_auto_generated_schema")
|
234
|
+
|
219
235
|
@_builtins.property
|
220
236
|
@pulumi.getter(name="ignoreSchemaChanges")
|
221
237
|
def ignore_schema_changes(self) -> Sequence[_builtins.str]:
|
@@ -356,7 +372,9 @@ class AwaitableGetTableResult(GetTableResult):
|
|
356
372
|
external_catalog_table_options=self.external_catalog_table_options,
|
357
373
|
external_data_configurations=self.external_data_configurations,
|
358
374
|
friendly_name=self.friendly_name,
|
375
|
+
generated_schema_columns=self.generated_schema_columns,
|
359
376
|
id=self.id,
|
377
|
+
ignore_auto_generated_schema=self.ignore_auto_generated_schema,
|
360
378
|
ignore_schema_changes=self.ignore_schema_changes,
|
361
379
|
labels=self.labels,
|
362
380
|
last_modified_time=self.last_modified_time,
|
@@ -430,7 +448,9 @@ def get_table(dataset_id: Optional[_builtins.str] = None,
|
|
430
448
|
external_catalog_table_options=pulumi.get(__ret__, 'external_catalog_table_options'),
|
431
449
|
external_data_configurations=pulumi.get(__ret__, 'external_data_configurations'),
|
432
450
|
friendly_name=pulumi.get(__ret__, 'friendly_name'),
|
451
|
+
generated_schema_columns=pulumi.get(__ret__, 'generated_schema_columns'),
|
433
452
|
id=pulumi.get(__ret__, 'id'),
|
453
|
+
ignore_auto_generated_schema=pulumi.get(__ret__, 'ignore_auto_generated_schema'),
|
434
454
|
ignore_schema_changes=pulumi.get(__ret__, 'ignore_schema_changes'),
|
435
455
|
labels=pulumi.get(__ret__, 'labels'),
|
436
456
|
last_modified_time=pulumi.get(__ret__, 'last_modified_time'),
|
@@ -501,7 +521,9 @@ def get_table_output(dataset_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
501
521
|
external_catalog_table_options=pulumi.get(__response__, 'external_catalog_table_options'),
|
502
522
|
external_data_configurations=pulumi.get(__response__, 'external_data_configurations'),
|
503
523
|
friendly_name=pulumi.get(__response__, 'friendly_name'),
|
524
|
+
generated_schema_columns=pulumi.get(__response__, 'generated_schema_columns'),
|
504
525
|
id=pulumi.get(__response__, 'id'),
|
526
|
+
ignore_auto_generated_schema=pulumi.get(__response__, 'ignore_auto_generated_schema'),
|
505
527
|
ignore_schema_changes=pulumi.get(__response__, 'ignore_schema_changes'),
|
506
528
|
labels=pulumi.get(__response__, 'labels'),
|
507
529
|
last_modified_time=pulumi.get(__response__, 'last_modified_time'),
|
pulumi_gcp/bigquery/outputs.py
CHANGED
@@ -6609,6 +6609,8 @@ class TableView(dict):
|
|
6609
6609
|
:param _builtins.str query: A query that BigQuery executes when the view is referenced.
|
6610
6610
|
:param _builtins.bool use_legacy_sql: Specifies whether to use BigQuery's legacy SQL for this view.
|
6611
6611
|
The default value is true. If set to false, the view will use BigQuery's standard SQL.
|
6612
|
+
> **Note**: Starting in provider version `7.0.0`, no default value is
|
6613
|
+
provided for this field unless explicitly set in the configuration.
|
6612
6614
|
"""
|
6613
6615
|
pulumi.set(__self__, "query", query)
|
6614
6616
|
if use_legacy_sql is not None:
|
@@ -6628,6 +6630,8 @@ class TableView(dict):
|
|
6628
6630
|
"""
|
6629
6631
|
Specifies whether to use BigQuery's legacy SQL for this view.
|
6630
6632
|
The default value is true. If set to false, the view will use BigQuery's standard SQL.
|
6633
|
+
> **Note**: Starting in provider version `7.0.0`, no default value is
|
6634
|
+
provided for this field unless explicitly set in the configuration.
|
6631
6635
|
"""
|
6632
6636
|
return pulumi.get(self, "use_legacy_sql")
|
6633
6637
|
|
pulumi_gcp/bigquery/table.py
CHANGED
@@ -32,6 +32,7 @@ class TableArgs:
|
|
32
32
|
external_catalog_table_options: Optional[pulumi.Input['TableExternalCatalogTableOptionsArgs']] = None,
|
33
33
|
external_data_configuration: Optional[pulumi.Input['TableExternalDataConfigurationArgs']] = None,
|
34
34
|
friendly_name: Optional[pulumi.Input[_builtins.str]] = None,
|
35
|
+
ignore_auto_generated_schema: Optional[pulumi.Input[_builtins.bool]] = None,
|
35
36
|
ignore_schema_changes: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
36
37
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
37
38
|
materialized_view: Optional[pulumi.Input['TableMaterializedViewArgs']] = None,
|
@@ -136,6 +137,8 @@ class TableArgs:
|
|
136
137
|
pulumi.set(__self__, "external_data_configuration", external_data_configuration)
|
137
138
|
if friendly_name is not None:
|
138
139
|
pulumi.set(__self__, "friendly_name", friendly_name)
|
140
|
+
if ignore_auto_generated_schema is not None:
|
141
|
+
pulumi.set(__self__, "ignore_auto_generated_schema", ignore_auto_generated_schema)
|
139
142
|
if ignore_schema_changes is not None:
|
140
143
|
pulumi.set(__self__, "ignore_schema_changes", ignore_schema_changes)
|
141
144
|
if labels is not None:
|
@@ -313,6 +316,15 @@ class TableArgs:
|
|
313
316
|
def friendly_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
314
317
|
pulumi.set(self, "friendly_name", value)
|
315
318
|
|
319
|
+
@_builtins.property
|
320
|
+
@pulumi.getter(name="ignoreAutoGeneratedSchema")
|
321
|
+
def ignore_auto_generated_schema(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
322
|
+
return pulumi.get(self, "ignore_auto_generated_schema")
|
323
|
+
|
324
|
+
@ignore_auto_generated_schema.setter
|
325
|
+
def ignore_auto_generated_schema(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
326
|
+
pulumi.set(self, "ignore_auto_generated_schema", value)
|
327
|
+
|
316
328
|
@_builtins.property
|
317
329
|
@pulumi.getter(name="ignoreSchemaChanges")
|
318
330
|
def ignore_schema_changes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
@@ -536,6 +548,8 @@ class _TableState:
|
|
536
548
|
external_catalog_table_options: Optional[pulumi.Input['TableExternalCatalogTableOptionsArgs']] = None,
|
537
549
|
external_data_configuration: Optional[pulumi.Input['TableExternalDataConfigurationArgs']] = None,
|
538
550
|
friendly_name: Optional[pulumi.Input[_builtins.str]] = None,
|
551
|
+
generated_schema_columns: Optional[pulumi.Input[_builtins.str]] = None,
|
552
|
+
ignore_auto_generated_schema: Optional[pulumi.Input[_builtins.bool]] = None,
|
539
553
|
ignore_schema_changes: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
540
554
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
541
555
|
last_modified_time: Optional[pulumi.Input[_builtins.int]] = None,
|
@@ -604,6 +618,7 @@ class _TableState:
|
|
604
618
|
By defining these properties, the data source can then be queried as
|
605
619
|
if it were a standard BigQuery table. Structure is documented below.
|
606
620
|
:param pulumi.Input[_builtins.str] friendly_name: A descriptive name for the table.
|
621
|
+
:param pulumi.Input[_builtins.str] generated_schema_columns: (Output-only) A list of autogenerated schema fields.
|
607
622
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] ignore_schema_changes: A list of fields which should be ignored for each column in schema.
|
608
623
|
**NOTE:** Right now only `dataPolicies` field is supported. We might support others in the future.
|
609
624
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: A mapping of labels to assign to the resource.
|
@@ -682,6 +697,10 @@ class _TableState:
|
|
682
697
|
pulumi.set(__self__, "external_data_configuration", external_data_configuration)
|
683
698
|
if friendly_name is not None:
|
684
699
|
pulumi.set(__self__, "friendly_name", friendly_name)
|
700
|
+
if generated_schema_columns is not None:
|
701
|
+
pulumi.set(__self__, "generated_schema_columns", generated_schema_columns)
|
702
|
+
if ignore_auto_generated_schema is not None:
|
703
|
+
pulumi.set(__self__, "ignore_auto_generated_schema", ignore_auto_generated_schema)
|
685
704
|
if ignore_schema_changes is not None:
|
686
705
|
pulumi.set(__self__, "ignore_schema_changes", ignore_schema_changes)
|
687
706
|
if labels is not None:
|
@@ -916,6 +935,27 @@ class _TableState:
|
|
916
935
|
def friendly_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
917
936
|
pulumi.set(self, "friendly_name", value)
|
918
937
|
|
938
|
+
@_builtins.property
|
939
|
+
@pulumi.getter(name="generatedSchemaColumns")
|
940
|
+
def generated_schema_columns(self) -> Optional[pulumi.Input[_builtins.str]]:
|
941
|
+
"""
|
942
|
+
(Output-only) A list of autogenerated schema fields.
|
943
|
+
"""
|
944
|
+
return pulumi.get(self, "generated_schema_columns")
|
945
|
+
|
946
|
+
@generated_schema_columns.setter
|
947
|
+
def generated_schema_columns(self, value: Optional[pulumi.Input[_builtins.str]]):
|
948
|
+
pulumi.set(self, "generated_schema_columns", value)
|
949
|
+
|
950
|
+
@_builtins.property
|
951
|
+
@pulumi.getter(name="ignoreAutoGeneratedSchema")
|
952
|
+
def ignore_auto_generated_schema(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
953
|
+
return pulumi.get(self, "ignore_auto_generated_schema")
|
954
|
+
|
955
|
+
@ignore_auto_generated_schema.setter
|
956
|
+
def ignore_auto_generated_schema(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
957
|
+
pulumi.set(self, "ignore_auto_generated_schema", value)
|
958
|
+
|
919
959
|
@_builtins.property
|
920
960
|
@pulumi.getter(name="ignoreSchemaChanges")
|
921
961
|
def ignore_schema_changes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
@@ -1248,6 +1288,7 @@ class Table(pulumi.CustomResource):
|
|
1248
1288
|
external_catalog_table_options: Optional[pulumi.Input[Union['TableExternalCatalogTableOptionsArgs', 'TableExternalCatalogTableOptionsArgsDict']]] = None,
|
1249
1289
|
external_data_configuration: Optional[pulumi.Input[Union['TableExternalDataConfigurationArgs', 'TableExternalDataConfigurationArgsDict']]] = None,
|
1250
1290
|
friendly_name: Optional[pulumi.Input[_builtins.str]] = None,
|
1291
|
+
ignore_auto_generated_schema: Optional[pulumi.Input[_builtins.bool]] = None,
|
1251
1292
|
ignore_schema_changes: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
1252
1293
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
1253
1294
|
materialized_view: Optional[pulumi.Input[Union['TableMaterializedViewArgs', 'TableMaterializedViewArgsDict']]] = None,
|
@@ -1535,6 +1576,7 @@ class Table(pulumi.CustomResource):
|
|
1535
1576
|
external_catalog_table_options: Optional[pulumi.Input[Union['TableExternalCatalogTableOptionsArgs', 'TableExternalCatalogTableOptionsArgsDict']]] = None,
|
1536
1577
|
external_data_configuration: Optional[pulumi.Input[Union['TableExternalDataConfigurationArgs', 'TableExternalDataConfigurationArgsDict']]] = None,
|
1537
1578
|
friendly_name: Optional[pulumi.Input[_builtins.str]] = None,
|
1579
|
+
ignore_auto_generated_schema: Optional[pulumi.Input[_builtins.bool]] = None,
|
1538
1580
|
ignore_schema_changes: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
1539
1581
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
1540
1582
|
materialized_view: Optional[pulumi.Input[Union['TableMaterializedViewArgs', 'TableMaterializedViewArgsDict']]] = None,
|
@@ -1572,6 +1614,7 @@ class Table(pulumi.CustomResource):
|
|
1572
1614
|
__props__.__dict__["external_catalog_table_options"] = external_catalog_table_options
|
1573
1615
|
__props__.__dict__["external_data_configuration"] = external_data_configuration
|
1574
1616
|
__props__.__dict__["friendly_name"] = friendly_name
|
1617
|
+
__props__.__dict__["ignore_auto_generated_schema"] = ignore_auto_generated_schema
|
1575
1618
|
__props__.__dict__["ignore_schema_changes"] = ignore_schema_changes
|
1576
1619
|
__props__.__dict__["labels"] = labels
|
1577
1620
|
__props__.__dict__["materialized_view"] = materialized_view
|
@@ -1593,6 +1636,7 @@ class Table(pulumi.CustomResource):
|
|
1593
1636
|
__props__.__dict__["creation_time"] = None
|
1594
1637
|
__props__.__dict__["effective_labels"] = None
|
1595
1638
|
__props__.__dict__["etag"] = None
|
1639
|
+
__props__.__dict__["generated_schema_columns"] = None
|
1596
1640
|
__props__.__dict__["last_modified_time"] = None
|
1597
1641
|
__props__.__dict__["location"] = None
|
1598
1642
|
__props__.__dict__["num_bytes"] = None
|
@@ -1626,6 +1670,8 @@ class Table(pulumi.CustomResource):
|
|
1626
1670
|
external_catalog_table_options: Optional[pulumi.Input[Union['TableExternalCatalogTableOptionsArgs', 'TableExternalCatalogTableOptionsArgsDict']]] = None,
|
1627
1671
|
external_data_configuration: Optional[pulumi.Input[Union['TableExternalDataConfigurationArgs', 'TableExternalDataConfigurationArgsDict']]] = None,
|
1628
1672
|
friendly_name: Optional[pulumi.Input[_builtins.str]] = None,
|
1673
|
+
generated_schema_columns: Optional[pulumi.Input[_builtins.str]] = None,
|
1674
|
+
ignore_auto_generated_schema: Optional[pulumi.Input[_builtins.bool]] = None,
|
1629
1675
|
ignore_schema_changes: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
1630
1676
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
1631
1677
|
last_modified_time: Optional[pulumi.Input[_builtins.int]] = None,
|
@@ -1699,6 +1745,7 @@ class Table(pulumi.CustomResource):
|
|
1699
1745
|
By defining these properties, the data source can then be queried as
|
1700
1746
|
if it were a standard BigQuery table. Structure is documented below.
|
1701
1747
|
:param pulumi.Input[_builtins.str] friendly_name: A descriptive name for the table.
|
1748
|
+
:param pulumi.Input[_builtins.str] generated_schema_columns: (Output-only) A list of autogenerated schema fields.
|
1702
1749
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] ignore_schema_changes: A list of fields which should be ignored for each column in schema.
|
1703
1750
|
**NOTE:** Right now only `dataPolicies` field is supported. We might support others in the future.
|
1704
1751
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: A mapping of labels to assign to the resource.
|
@@ -1768,6 +1815,8 @@ class Table(pulumi.CustomResource):
|
|
1768
1815
|
__props__.__dict__["external_catalog_table_options"] = external_catalog_table_options
|
1769
1816
|
__props__.__dict__["external_data_configuration"] = external_data_configuration
|
1770
1817
|
__props__.__dict__["friendly_name"] = friendly_name
|
1818
|
+
__props__.__dict__["generated_schema_columns"] = generated_schema_columns
|
1819
|
+
__props__.__dict__["ignore_auto_generated_schema"] = ignore_auto_generated_schema
|
1771
1820
|
__props__.__dict__["ignore_schema_changes"] = ignore_schema_changes
|
1772
1821
|
__props__.__dict__["labels"] = labels
|
1773
1822
|
__props__.__dict__["last_modified_time"] = last_modified_time
|
@@ -1927,6 +1976,19 @@ class Table(pulumi.CustomResource):
|
|
1927
1976
|
"""
|
1928
1977
|
return pulumi.get(self, "friendly_name")
|
1929
1978
|
|
1979
|
+
@_builtins.property
|
1980
|
+
@pulumi.getter(name="generatedSchemaColumns")
|
1981
|
+
def generated_schema_columns(self) -> pulumi.Output[_builtins.str]:
|
1982
|
+
"""
|
1983
|
+
(Output-only) A list of autogenerated schema fields.
|
1984
|
+
"""
|
1985
|
+
return pulumi.get(self, "generated_schema_columns")
|
1986
|
+
|
1987
|
+
@_builtins.property
|
1988
|
+
@pulumi.getter(name="ignoreAutoGeneratedSchema")
|
1989
|
+
def ignore_auto_generated_schema(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
1990
|
+
return pulumi.get(self, "ignore_auto_generated_schema")
|
1991
|
+
|
1930
1992
|
@_builtins.property
|
1931
1993
|
@pulumi.getter(name="ignoreSchemaChanges")
|
1932
1994
|
def ignore_schema_changes(self) -> pulumi.Output[Optional[Sequence[_builtins.str]]]:
|
@@ -37,6 +37,10 @@ __all__ = [
|
|
37
37
|
'ListingBigqueryDatasetArgsDict',
|
38
38
|
'ListingBigqueryDatasetSelectedResourceArgs',
|
39
39
|
'ListingBigqueryDatasetSelectedResourceArgsDict',
|
40
|
+
'ListingCommercialInfoArgs',
|
41
|
+
'ListingCommercialInfoArgsDict',
|
42
|
+
'ListingCommercialInfoCloudMarketplaceArgs',
|
43
|
+
'ListingCommercialInfoCloudMarketplaceArgsDict',
|
40
44
|
'ListingDataProviderArgs',
|
41
45
|
'ListingDataProviderArgsDict',
|
42
46
|
'ListingIamBindingConditionArgs',
|
@@ -49,6 +53,10 @@ __all__ = [
|
|
49
53
|
'ListingPubsubTopicArgsDict',
|
50
54
|
'ListingRestrictedExportConfigArgs',
|
51
55
|
'ListingRestrictedExportConfigArgsDict',
|
56
|
+
'ListingSubscriptionCommercialInfoArgs',
|
57
|
+
'ListingSubscriptionCommercialInfoArgsDict',
|
58
|
+
'ListingSubscriptionCommercialInfoCloudMarketplaceArgs',
|
59
|
+
'ListingSubscriptionCommercialInfoCloudMarketplaceArgsDict',
|
52
60
|
'ListingSubscriptionDestinationDatasetArgs',
|
53
61
|
'ListingSubscriptionDestinationDatasetArgsDict',
|
54
62
|
'ListingSubscriptionDestinationDatasetDatasetReferenceArgs',
|
@@ -664,6 +672,105 @@ class ListingBigqueryDatasetSelectedResourceArgs:
|
|
664
672
|
pulumi.set(self, "table", value)
|
665
673
|
|
666
674
|
|
675
|
+
if not MYPY:
|
676
|
+
class ListingCommercialInfoArgsDict(TypedDict):
|
677
|
+
cloud_marketplaces: NotRequired[pulumi.Input[Sequence[pulumi.Input['ListingCommercialInfoCloudMarketplaceArgsDict']]]]
|
678
|
+
"""
|
679
|
+
(Output)
|
680
|
+
Details of the Marketplace Data Product associated with the Listing.
|
681
|
+
Structure is documented below.
|
682
|
+
"""
|
683
|
+
elif False:
|
684
|
+
ListingCommercialInfoArgsDict: TypeAlias = Mapping[str, Any]
|
685
|
+
|
686
|
+
@pulumi.input_type
|
687
|
+
class ListingCommercialInfoArgs:
|
688
|
+
def __init__(__self__, *,
|
689
|
+
cloud_marketplaces: Optional[pulumi.Input[Sequence[pulumi.Input['ListingCommercialInfoCloudMarketplaceArgs']]]] = None):
|
690
|
+
"""
|
691
|
+
:param pulumi.Input[Sequence[pulumi.Input['ListingCommercialInfoCloudMarketplaceArgs']]] cloud_marketplaces: (Output)
|
692
|
+
Details of the Marketplace Data Product associated with the Listing.
|
693
|
+
Structure is documented below.
|
694
|
+
"""
|
695
|
+
if cloud_marketplaces is not None:
|
696
|
+
pulumi.set(__self__, "cloud_marketplaces", cloud_marketplaces)
|
697
|
+
|
698
|
+
@_builtins.property
|
699
|
+
@pulumi.getter(name="cloudMarketplaces")
|
700
|
+
def cloud_marketplaces(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ListingCommercialInfoCloudMarketplaceArgs']]]]:
|
701
|
+
"""
|
702
|
+
(Output)
|
703
|
+
Details of the Marketplace Data Product associated with the Listing.
|
704
|
+
Structure is documented below.
|
705
|
+
"""
|
706
|
+
return pulumi.get(self, "cloud_marketplaces")
|
707
|
+
|
708
|
+
@cloud_marketplaces.setter
|
709
|
+
def cloud_marketplaces(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ListingCommercialInfoCloudMarketplaceArgs']]]]):
|
710
|
+
pulumi.set(self, "cloud_marketplaces", value)
|
711
|
+
|
712
|
+
|
713
|
+
if not MYPY:
|
714
|
+
class ListingCommercialInfoCloudMarketplaceArgsDict(TypedDict):
|
715
|
+
commercial_state: NotRequired[pulumi.Input[_builtins.str]]
|
716
|
+
"""
|
717
|
+
(Output)
|
718
|
+
Commercial state of the Marketplace Data Product.
|
719
|
+
Possible values: COMMERCIAL_STATE_UNSPECIFIED, ONBOARDING, ACTIVE
|
720
|
+
"""
|
721
|
+
service: NotRequired[pulumi.Input[_builtins.str]]
|
722
|
+
"""
|
723
|
+
(Output)
|
724
|
+
Resource name of the commercial service associated with the Marketplace Data Product. e.g. example.com
|
725
|
+
"""
|
726
|
+
elif False:
|
727
|
+
ListingCommercialInfoCloudMarketplaceArgsDict: TypeAlias = Mapping[str, Any]
|
728
|
+
|
729
|
+
@pulumi.input_type
|
730
|
+
class ListingCommercialInfoCloudMarketplaceArgs:
|
731
|
+
def __init__(__self__, *,
|
732
|
+
commercial_state: Optional[pulumi.Input[_builtins.str]] = None,
|
733
|
+
service: Optional[pulumi.Input[_builtins.str]] = None):
|
734
|
+
"""
|
735
|
+
:param pulumi.Input[_builtins.str] commercial_state: (Output)
|
736
|
+
Commercial state of the Marketplace Data Product.
|
737
|
+
Possible values: COMMERCIAL_STATE_UNSPECIFIED, ONBOARDING, ACTIVE
|
738
|
+
:param pulumi.Input[_builtins.str] service: (Output)
|
739
|
+
Resource name of the commercial service associated with the Marketplace Data Product. e.g. example.com
|
740
|
+
"""
|
741
|
+
if commercial_state is not None:
|
742
|
+
pulumi.set(__self__, "commercial_state", commercial_state)
|
743
|
+
if service is not None:
|
744
|
+
pulumi.set(__self__, "service", service)
|
745
|
+
|
746
|
+
@_builtins.property
|
747
|
+
@pulumi.getter(name="commercialState")
|
748
|
+
def commercial_state(self) -> Optional[pulumi.Input[_builtins.str]]:
|
749
|
+
"""
|
750
|
+
(Output)
|
751
|
+
Commercial state of the Marketplace Data Product.
|
752
|
+
Possible values: COMMERCIAL_STATE_UNSPECIFIED, ONBOARDING, ACTIVE
|
753
|
+
"""
|
754
|
+
return pulumi.get(self, "commercial_state")
|
755
|
+
|
756
|
+
@commercial_state.setter
|
757
|
+
def commercial_state(self, value: Optional[pulumi.Input[_builtins.str]]):
|
758
|
+
pulumi.set(self, "commercial_state", value)
|
759
|
+
|
760
|
+
@_builtins.property
|
761
|
+
@pulumi.getter
|
762
|
+
def service(self) -> Optional[pulumi.Input[_builtins.str]]:
|
763
|
+
"""
|
764
|
+
(Output)
|
765
|
+
Resource name of the commercial service associated with the Marketplace Data Product. e.g. example.com
|
766
|
+
"""
|
767
|
+
return pulumi.get(self, "service")
|
768
|
+
|
769
|
+
@service.setter
|
770
|
+
def service(self, value: Optional[pulumi.Input[_builtins.str]]):
|
771
|
+
pulumi.set(self, "service", value)
|
772
|
+
|
773
|
+
|
667
774
|
if not MYPY:
|
668
775
|
class ListingDataProviderArgsDict(TypedDict):
|
669
776
|
name: pulumi.Input[_builtins.str]
|
@@ -989,6 +1096,79 @@ class ListingRestrictedExportConfigArgs:
|
|
989
1096
|
pulumi.set(self, "restrict_query_result", value)
|
990
1097
|
|
991
1098
|
|
1099
|
+
if not MYPY:
|
1100
|
+
class ListingSubscriptionCommercialInfoArgsDict(TypedDict):
|
1101
|
+
cloud_marketplaces: NotRequired[pulumi.Input[Sequence[pulumi.Input['ListingSubscriptionCommercialInfoCloudMarketplaceArgsDict']]]]
|
1102
|
+
"""
|
1103
|
+
(Output)
|
1104
|
+
Cloud Marketplace commercial metadata for this subscription.
|
1105
|
+
Structure is documented below.
|
1106
|
+
"""
|
1107
|
+
elif False:
|
1108
|
+
ListingSubscriptionCommercialInfoArgsDict: TypeAlias = Mapping[str, Any]
|
1109
|
+
|
1110
|
+
@pulumi.input_type
|
1111
|
+
class ListingSubscriptionCommercialInfoArgs:
|
1112
|
+
def __init__(__self__, *,
|
1113
|
+
cloud_marketplaces: Optional[pulumi.Input[Sequence[pulumi.Input['ListingSubscriptionCommercialInfoCloudMarketplaceArgs']]]] = None):
|
1114
|
+
"""
|
1115
|
+
:param pulumi.Input[Sequence[pulumi.Input['ListingSubscriptionCommercialInfoCloudMarketplaceArgs']]] cloud_marketplaces: (Output)
|
1116
|
+
Cloud Marketplace commercial metadata for this subscription.
|
1117
|
+
Structure is documented below.
|
1118
|
+
"""
|
1119
|
+
if cloud_marketplaces is not None:
|
1120
|
+
pulumi.set(__self__, "cloud_marketplaces", cloud_marketplaces)
|
1121
|
+
|
1122
|
+
@_builtins.property
|
1123
|
+
@pulumi.getter(name="cloudMarketplaces")
|
1124
|
+
def cloud_marketplaces(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ListingSubscriptionCommercialInfoCloudMarketplaceArgs']]]]:
|
1125
|
+
"""
|
1126
|
+
(Output)
|
1127
|
+
Cloud Marketplace commercial metadata for this subscription.
|
1128
|
+
Structure is documented below.
|
1129
|
+
"""
|
1130
|
+
return pulumi.get(self, "cloud_marketplaces")
|
1131
|
+
|
1132
|
+
@cloud_marketplaces.setter
|
1133
|
+
def cloud_marketplaces(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ListingSubscriptionCommercialInfoCloudMarketplaceArgs']]]]):
|
1134
|
+
pulumi.set(self, "cloud_marketplaces", value)
|
1135
|
+
|
1136
|
+
|
1137
|
+
if not MYPY:
|
1138
|
+
class ListingSubscriptionCommercialInfoCloudMarketplaceArgsDict(TypedDict):
|
1139
|
+
order: NotRequired[pulumi.Input[_builtins.str]]
|
1140
|
+
"""
|
1141
|
+
(Output)
|
1142
|
+
Resource name of the Marketplace Order.
|
1143
|
+
"""
|
1144
|
+
elif False:
|
1145
|
+
ListingSubscriptionCommercialInfoCloudMarketplaceArgsDict: TypeAlias = Mapping[str, Any]
|
1146
|
+
|
1147
|
+
@pulumi.input_type
|
1148
|
+
class ListingSubscriptionCommercialInfoCloudMarketplaceArgs:
|
1149
|
+
def __init__(__self__, *,
|
1150
|
+
order: Optional[pulumi.Input[_builtins.str]] = None):
|
1151
|
+
"""
|
1152
|
+
:param pulumi.Input[_builtins.str] order: (Output)
|
1153
|
+
Resource name of the Marketplace Order.
|
1154
|
+
"""
|
1155
|
+
if order is not None:
|
1156
|
+
pulumi.set(__self__, "order", order)
|
1157
|
+
|
1158
|
+
@_builtins.property
|
1159
|
+
@pulumi.getter
|
1160
|
+
def order(self) -> Optional[pulumi.Input[_builtins.str]]:
|
1161
|
+
"""
|
1162
|
+
(Output)
|
1163
|
+
Resource name of the Marketplace Order.
|
1164
|
+
"""
|
1165
|
+
return pulumi.get(self, "order")
|
1166
|
+
|
1167
|
+
@order.setter
|
1168
|
+
def order(self, value: Optional[pulumi.Input[_builtins.str]]):
|
1169
|
+
pulumi.set(self, "order", value)
|
1170
|
+
|
1171
|
+
|
992
1172
|
if not MYPY:
|
993
1173
|
class ListingSubscriptionDestinationDatasetArgsDict(TypedDict):
|
994
1174
|
dataset_reference: pulumi.Input['ListingSubscriptionDestinationDatasetDatasetReferenceArgsDict']
|