pulumi-gcp 8.42.0a1758178363__py3-none-any.whl → 9.0.0__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 +83 -48
- pulumi_gcp/activedirectory/peering.py +16 -0
- pulumi_gcp/alloydb/backup.py +8 -4
- pulumi_gcp/alloydb/cluster.py +56 -10
- pulumi_gcp/alloydb/get_cluster.py +12 -1
- pulumi_gcp/alloydb/instance.py +10 -4
- pulumi_gcp/alloydb/user.py +8 -4
- pulumi_gcp/apigateway/api_config_iam_binding.py +4 -4
- pulumi_gcp/apigateway/api_config_iam_member.py +4 -4
- pulumi_gcp/apigateway/api_config_iam_policy.py +4 -4
- pulumi_gcp/apigateway/api_iam_binding.py +4 -4
- pulumi_gcp/apigateway/api_iam_member.py +4 -4
- pulumi_gcp/apigateway/api_iam_policy.py +4 -4
- pulumi_gcp/apigateway/gateway_iam_binding.py +4 -4
- pulumi_gcp/apigateway/gateway_iam_member.py +4 -4
- pulumi_gcp/apigateway/gateway_iam_policy.py +4 -4
- pulumi_gcp/apigee/_inputs.py +151 -108
- pulumi_gcp/apigee/keystores_aliases_key_cert_file.py +52 -40
- pulumi_gcp/apigee/outputs.py +92 -88
- pulumi_gcp/artifactregistry/__init__.py +2 -0
- pulumi_gcp/artifactregistry/_inputs.py +0 -12
- pulumi_gcp/artifactregistry/get_npm_package.py +251 -0
- pulumi_gcp/artifactregistry/get_python_package.py +237 -0
- pulumi_gcp/artifactregistry/get_repository.py +12 -1
- pulumi_gcp/artifactregistry/outputs.py +8 -16
- pulumi_gcp/artifactregistry/repository.py +28 -0
- pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +4 -4
- pulumi_gcp/backupdisasterrecovery/get_backup.py +12 -1
- pulumi_gcp/backupdisasterrecovery/get_backup_plan_association.py +4 -0
- pulumi_gcp/backupdisasterrecovery/get_data_source_references.py +135 -0
- pulumi_gcp/backupdisasterrecovery/get_management_server.py +4 -0
- pulumi_gcp/backupdisasterrecovery/outputs.py +103 -0
- pulumi_gcp/beyondcorp/__init__.py +0 -5
- pulumi_gcp/beyondcorp/_inputs.py +0 -312
- pulumi_gcp/beyondcorp/outputs.py +0 -200
- pulumi_gcp/bigquery/_inputs.py +114 -4
- pulumi_gcp/bigquery/app_profile.py +3 -5
- pulumi_gcp/bigquery/outputs.py +75 -5
- pulumi_gcp/bigqueryanalyticshub/data_exchange_subscription.py +20 -0
- pulumi_gcp/bigtable/app_profile.py +1 -1
- pulumi_gcp/bigtable/get_table_iam_policy.py +16 -18
- pulumi_gcp/bigtable/table_iam_binding.py +43 -43
- pulumi_gcp/bigtable/table_iam_member.py +43 -43
- pulumi_gcp/bigtable/table_iam_policy.py +43 -43
- pulumi_gcp/billing/_inputs.py +0 -6
- pulumi_gcp/billing/outputs.py +0 -4
- pulumi_gcp/certificatemanager/__init__.py +1 -0
- pulumi_gcp/certificatemanager/certificate_map_entry.py +7 -7
- pulumi_gcp/certificatemanager/get_dns_authorization.py +229 -0
- pulumi_gcp/certificatemanager/outputs.py +41 -0
- pulumi_gcp/chronicle/_inputs.py +6 -5
- pulumi_gcp/chronicle/outputs.py +4 -3
- pulumi_gcp/chronicle/reference_list.py +53 -5
- pulumi_gcp/cloudasset/get_resources_search_all.py +8 -0
- pulumi_gcp/cloudbuild/_inputs.py +309 -45
- pulumi_gcp/cloudbuild/bitbucket_server_config.py +2 -6
- pulumi_gcp/cloudbuild/get_trigger.py +12 -1
- pulumi_gcp/cloudbuild/outputs.py +380 -30
- pulumi_gcp/cloudbuild/trigger.py +160 -2
- pulumi_gcp/cloudbuild/worker_pool.py +2 -6
- pulumi_gcp/cloudfunctionsv2/_inputs.py +23 -21
- pulumi_gcp/cloudfunctionsv2/outputs.py +17 -16
- pulumi_gcp/cloudquota/s_quota_adjuster_settings.py +16 -0
- pulumi_gcp/cloudrunv2/_inputs.py +80 -26
- pulumi_gcp/cloudrunv2/get_service.py +12 -1
- pulumi_gcp/cloudrunv2/outputs.py +109 -30
- pulumi_gcp/cloudrunv2/service.py +72 -12
- pulumi_gcp/cloudrunv2/worker_pool.py +2 -2
- pulumi_gcp/cloudtasks/queue.py +98 -2
- pulumi_gcp/colab/_inputs.py +1 -114
- pulumi_gcp/colab/outputs.py +1 -106
- pulumi_gcp/compute/_inputs.py +884 -24
- pulumi_gcp/compute/backend_bucket.py +68 -0
- pulumi_gcp/compute/backend_bucket_iam_binding.py +236 -0
- pulumi_gcp/compute/backend_bucket_iam_member.py +236 -0
- pulumi_gcp/compute/backend_bucket_iam_policy.py +236 -0
- pulumi_gcp/compute/backend_service.py +54 -0
- pulumi_gcp/compute/backend_service_iam_binding.py +464 -0
- pulumi_gcp/compute/backend_service_iam_member.py +464 -0
- pulumi_gcp/compute/backend_service_iam_policy.py +464 -0
- pulumi_gcp/compute/cross_site_network.py +16 -0
- pulumi_gcp/compute/future_reservation.py +32 -0
- pulumi_gcp/compute/get_backend_bucket.py +12 -1
- pulumi_gcp/compute/get_backend_service.py +12 -1
- pulumi_gcp/compute/get_region_backend_service.py +12 -1
- pulumi_gcp/compute/get_resource_policy.py +2 -20
- pulumi_gcp/compute/machine_image_iam_binding.py +8 -4
- pulumi_gcp/compute/machine_image_iam_member.py +8 -4
- pulumi_gcp/compute/machine_image_iam_policy.py +8 -4
- pulumi_gcp/compute/network_edge_security_service.py +16 -0
- pulumi_gcp/compute/network_firewall_policy_packet_mirroring_rule.py +12 -0
- pulumi_gcp/compute/network_peering_routes_config.py +0 -100
- pulumi_gcp/compute/organization_security_policy.py +83 -51
- pulumi_gcp/compute/outputs.py +799 -16
- pulumi_gcp/compute/packet_mirroring.py +6 -0
- pulumi_gcp/compute/preview_feature.py +16 -0
- pulumi_gcp/compute/public_delegated_prefix.py +42 -0
- pulumi_gcp/compute/region_backend_service.py +54 -0
- pulumi_gcp/compute/region_backend_service_iam_binding.py +488 -0
- pulumi_gcp/compute/region_backend_service_iam_member.py +488 -0
- pulumi_gcp/compute/region_backend_service_iam_policy.py +488 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +1 -3
- pulumi_gcp/compute/region_resize_request.py +24 -0
- pulumi_gcp/compute/region_url_map.py +75 -0
- pulumi_gcp/compute/subnetwork.py +0 -98
- pulumi_gcp/compute/wire_group.py +16 -0
- pulumi_gcp/config/__init__.pyi +2 -2
- pulumi_gcp/config/vars.py +4 -4
- pulumi_gcp/container/_inputs.py +466 -18
- pulumi_gcp/container/cluster.py +16 -7
- pulumi_gcp/container/outputs.py +448 -15
- pulumi_gcp/databasemigrationservice/connection_profile.py +4 -2
- pulumi_gcp/databasemigrationservice/migration_job.py +4 -2
- pulumi_gcp/dataflow/flex_template_job.py +10 -0
- pulumi_gcp/dataform/repository.py +16 -0
- pulumi_gcp/dataform/repository_release_config.py +16 -0
- pulumi_gcp/dataform/repository_workflow_config.py +16 -0
- pulumi_gcp/diagflow/_inputs.py +152 -0
- pulumi_gcp/diagflow/cx_agent.py +425 -0
- pulumi_gcp/diagflow/outputs.py +143 -0
- pulumi_gcp/discoveryengine/__init__.py +1 -0
- pulumi_gcp/discoveryengine/_inputs.py +94 -0
- pulumi_gcp/discoveryengine/acl_config.py +393 -0
- pulumi_gcp/discoveryengine/outputs.py +92 -0
- pulumi_gcp/firebase/android_app.py +16 -0
- pulumi_gcp/firebase/app_check_play_integrity_config.py +4 -8
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +2 -4
- pulumi_gcp/firebase/app_check_service_config.py +6 -12
- pulumi_gcp/firebase/app_hosting_backend.py +4 -8
- pulumi_gcp/firebase/app_hosting_build.py +4 -8
- pulumi_gcp/firebase/app_hosting_traffic.py +6 -12
- pulumi_gcp/firebase/apple_app.py +16 -0
- pulumi_gcp/firebase/data_connect_service.py +4 -8
- pulumi_gcp/firebase/database_instance.py +20 -8
- pulumi_gcp/firebase/extensions_instance.py +12 -0
- pulumi_gcp/firebase/get_android_app.py +4 -2
- pulumi_gcp/firebase/get_apple_app.py +4 -2
- pulumi_gcp/firebase/get_apple_app_config.py +16 -2
- pulumi_gcp/firebase/get_hosting_channel.py +4 -2
- pulumi_gcp/firebase/hosting_channel.py +20 -0
- pulumi_gcp/firebase/hosting_custom_domain.py +20 -0
- pulumi_gcp/firebase/hosting_release.py +16 -0
- pulumi_gcp/firebase/hosting_site.py +16 -0
- pulumi_gcp/firebase/hosting_version.py +16 -0
- pulumi_gcp/firebase/storage_bucket.py +18 -0
- pulumi_gcp/firestore/index.py +118 -3
- pulumi_gcp/folder/service_identity.py +26 -0
- pulumi_gcp/gkehub/_inputs.py +0 -60
- pulumi_gcp/gkehub/get_membership.py +1 -12
- pulumi_gcp/gkehub/membership.py +0 -70
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +16 -0
- pulumi_gcp/gkehub/outputs.py +0 -36
- pulumi_gcp/healthcare/_inputs.py +205 -0
- pulumi_gcp/healthcare/fhir_store.py +128 -0
- pulumi_gcp/healthcare/outputs.py +163 -0
- pulumi_gcp/iam/workload_identity_pool_iam_binding.py +464 -0
- pulumi_gcp/iam/workload_identity_pool_iam_member.py +464 -0
- pulumi_gcp/iam/workload_identity_pool_iam_policy.py +464 -0
- pulumi_gcp/iam/workload_identity_pool_managed_identity.py +18 -0
- pulumi_gcp/iam/workload_identity_pool_namespace.py +20 -0
- pulumi_gcp/iap/__init__.py +8 -0
- pulumi_gcp/iap/_inputs.py +260 -0
- pulumi_gcp/iap/get_web_forwarding_rule_service_iam_policy.py +159 -0
- pulumi_gcp/iap/get_web_region_forwarding_rule_service_iam_policy.py +182 -0
- pulumi_gcp/iap/outputs.py +152 -0
- pulumi_gcp/{beyondcorp/application_iam_binding.py → iap/web_forwarding_rule_service_iam_binding.py} +233 -315
- pulumi_gcp/{beyondcorp/application_iam_member.py → iap/web_forwarding_rule_service_iam_member.py} +233 -315
- pulumi_gcp/{beyondcorp/application_iam_policy.py → iap/web_forwarding_rule_service_iam_policy.py} +212 -294
- pulumi_gcp/iap/web_region_forwarding_rule_service_iam_binding.py +1091 -0
- pulumi_gcp/iap/web_region_forwarding_rule_service_iam_member.py +1091 -0
- pulumi_gcp/iap/web_region_forwarding_rule_service_iam_policy.py +910 -0
- pulumi_gcp/kms/autokey_config.py +0 -2
- pulumi_gcp/kms/get_kms_secret_asymmetric.py +22 -0
- pulumi_gcp/kms/key_handle.py +0 -2
- pulumi_gcp/logging/organization_sink.py +7 -7
- pulumi_gcp/managedkafka/connect_cluster.py +4 -0
- pulumi_gcp/managedkafka/connector.py +4 -0
- pulumi_gcp/memorystore/get_instance.py +1 -12
- pulumi_gcp/memorystore/instance.py +14 -84
- pulumi_gcp/netapp/storage_pool.py +91 -2
- pulumi_gcp/netapp/volume.py +47 -0
- pulumi_gcp/networkmanagement/__init__.py +1 -0
- pulumi_gcp/networkmanagement/organization_vpc_flow_logs_config.py +1028 -0
- pulumi_gcp/networksecurity/authorization_policy.py +12 -0
- pulumi_gcp/networkservices/gateway.py +7 -7
- pulumi_gcp/networkservices/lb_traffic_extension.py +24 -23
- pulumi_gcp/networkservices/service_lb_policies.py +12 -0
- pulumi_gcp/notebooks/__init__.py +0 -1
- pulumi_gcp/oracledatabase/autonomous_database.py +2 -2
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +3 -3
- pulumi_gcp/projects/service.py +2 -11
- pulumi_gcp/provider.py +20 -20
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/cluster.py +0 -70
- pulumi_gcp/redis/get_cluster.py +1 -12
- pulumi_gcp/resourcemanager/capability.py +16 -0
- pulumi_gcp/runtimeconfig/config.py +16 -0
- pulumi_gcp/runtimeconfig/config_iam_binding.py +236 -0
- pulumi_gcp/runtimeconfig/config_iam_member.py +236 -0
- pulumi_gcp/runtimeconfig/config_iam_policy.py +236 -0
- pulumi_gcp/runtimeconfig/variable.py +10 -0
- pulumi_gcp/saasruntime/__init__.py +12 -0
- pulumi_gcp/saasruntime/_inputs.py +513 -0
- pulumi_gcp/saasruntime/outputs.py +431 -0
- pulumi_gcp/saasruntime/saa_s.py +819 -0
- pulumi_gcp/saasruntime/unit_kind.py +1024 -0
- pulumi_gcp/securesourcemanager/_inputs.py +20 -19
- pulumi_gcp/securesourcemanager/instance.py +7 -7
- pulumi_gcp/securesourcemanager/outputs.py +15 -14
- pulumi_gcp/securesourcemanager/repository.py +7 -7
- pulumi_gcp/serviceaccount/get_account_key.py +1 -21
- pulumi_gcp/servicedirectory/namespace_iam_binding.py +4 -4
- pulumi_gcp/servicedirectory/namespace_iam_member.py +4 -4
- pulumi_gcp/servicedirectory/namespace_iam_policy.py +4 -4
- pulumi_gcp/servicedirectory/service_iam_binding.py +4 -4
- pulumi_gcp/servicedirectory/service_iam_member.py +4 -4
- pulumi_gcp/servicedirectory/service_iam_policy.py +4 -4
- pulumi_gcp/sql/_inputs.py +135 -1
- pulumi_gcp/sql/database_instance.py +94 -0
- pulumi_gcp/sql/get_database_instance.py +23 -1
- pulumi_gcp/sql/outputs.py +276 -3
- pulumi_gcp/sql/user.py +61 -0
- pulumi_gcp/storage/_inputs.py +253 -7
- pulumi_gcp/storage/bucket_object.py +0 -9
- pulumi_gcp/storage/outputs.py +198 -8
- pulumi_gcp/storage/transfer_job.py +47 -0
- pulumi_gcp/tpu/__init__.py +0 -2
- pulumi_gcp/tpu/_inputs.py +0 -93
- pulumi_gcp/tpu/outputs.py +0 -72
- pulumi_gcp/tpu/v2_queued_resource.py +16 -0
- pulumi_gcp/tpu/v2_vm.py +16 -0
- pulumi_gcp/vertex/_inputs.py +8 -9
- pulumi_gcp/vertex/ai_endpoint.py +2 -4
- pulumi_gcp/vertex/ai_feature_group_iam_binding.py +236 -0
- pulumi_gcp/vertex/ai_feature_group_iam_member.py +236 -0
- pulumi_gcp/vertex/ai_feature_group_iam_policy.py +236 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +0 -2
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_binding.py +248 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_member.py +248 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_policy.py +248 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_binding.py +236 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_member.py +236 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_policy.py +236 -0
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_binding.py +238 -0
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_member.py +238 -0
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_policy.py +238 -0
- pulumi_gcp/vertex/ai_feature_store_iam_binding.py +248 -0
- pulumi_gcp/vertex/ai_feature_store_iam_member.py +248 -0
- pulumi_gcp/vertex/ai_feature_store_iam_policy.py +248 -0
- pulumi_gcp/vertex/ai_index.py +24 -23
- pulumi_gcp/vertex/ai_metadata_store.py +16 -0
- pulumi_gcp/vertex/outputs.py +7 -8
- pulumi_gcp/workstations/workstation.py +16 -0
- pulumi_gcp/workstations/workstation_cluster.py +16 -0
- pulumi_gcp/workstations/workstation_config.py +16 -0
- pulumi_gcp/workstations/workstation_config_iam_binding.py +260 -0
- pulumi_gcp/workstations/workstation_config_iam_member.py +260 -0
- pulumi_gcp/workstations/workstation_config_iam_policy.py +260 -0
- pulumi_gcp/workstations/workstation_iam_binding.py +272 -0
- pulumi_gcp/workstations/workstation_iam_member.py +272 -0
- pulumi_gcp/workstations/workstation_iam_policy.py +272 -0
- {pulumi_gcp-8.42.0a1758178363.dist-info → pulumi_gcp-9.0.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.42.0a1758178363.dist-info → pulumi_gcp-9.0.0.dist-info}/RECORD +266 -255
- pulumi_gcp/beyondcorp/application.py +0 -746
- pulumi_gcp/beyondcorp/get_application_iam_policy.py +0 -182
- pulumi_gcp/notebooks/location.py +0 -285
- pulumi_gcp/tpu/get_tensorflow_versions.py +0 -184
- pulumi_gcp/tpu/node.py +0 -1062
- {pulumi_gcp-8.42.0a1758178363.dist-info → pulumi_gcp-9.0.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.42.0a1758178363.dist-info → pulumi_gcp-9.0.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/bigquery/_inputs.py
CHANGED
@@ -111,6 +111,8 @@ __all__ = [
|
|
111
111
|
'JobLoadTimePartitioningArgsDict',
|
112
112
|
'JobQueryArgs',
|
113
113
|
'JobQueryArgsDict',
|
114
|
+
'JobQueryConnectionPropertyArgs',
|
115
|
+
'JobQueryConnectionPropertyArgsDict',
|
114
116
|
'JobQueryDefaultDatasetArgs',
|
115
117
|
'JobQueryDefaultDatasetArgsDict',
|
116
118
|
'JobQueryDestinationEncryptionConfigurationArgs',
|
@@ -1406,18 +1408,26 @@ if not MYPY:
|
|
1406
1408
|
"""
|
1407
1409
|
The Secret Access Key of the AWS account transferring data from.
|
1408
1410
|
"""
|
1411
|
+
secret_access_key_wo_version: NotRequired[pulumi.Input[_builtins.int]]
|
1412
|
+
"""
|
1413
|
+
The version of the sensitive params - used to trigger updates of the write-only params. For more info see [updating write-only attributes](https://www.terraform.io/docs/providers/google/guides/using_write_only_attributes.html#updating-write-only-attributes)
|
1414
|
+
"""
|
1409
1415
|
elif False:
|
1410
1416
|
DataTransferConfigSensitiveParamsArgsDict: TypeAlias = Mapping[str, Any]
|
1411
1417
|
|
1412
1418
|
@pulumi.input_type
|
1413
1419
|
class DataTransferConfigSensitiveParamsArgs:
|
1414
1420
|
def __init__(__self__, *,
|
1415
|
-
secret_access_key: Optional[pulumi.Input[_builtins.str]] = None
|
1421
|
+
secret_access_key: Optional[pulumi.Input[_builtins.str]] = None,
|
1422
|
+
secret_access_key_wo_version: Optional[pulumi.Input[_builtins.int]] = None):
|
1416
1423
|
"""
|
1417
1424
|
:param pulumi.Input[_builtins.str] secret_access_key: The Secret Access Key of the AWS account transferring data from.
|
1425
|
+
:param pulumi.Input[_builtins.int] secret_access_key_wo_version: The version of the sensitive params - used to trigger updates of the write-only params. For more info see [updating write-only attributes](https://www.terraform.io/docs/providers/google/guides/using_write_only_attributes.html#updating-write-only-attributes)
|
1418
1426
|
"""
|
1419
1427
|
if secret_access_key is not None:
|
1420
1428
|
pulumi.set(__self__, "secret_access_key", secret_access_key)
|
1429
|
+
if secret_access_key_wo_version is not None:
|
1430
|
+
pulumi.set(__self__, "secret_access_key_wo_version", secret_access_key_wo_version)
|
1421
1431
|
|
1422
1432
|
@_builtins.property
|
1423
1433
|
@pulumi.getter(name="secretAccessKey")
|
@@ -1431,6 +1441,18 @@ class DataTransferConfigSensitiveParamsArgs:
|
|
1431
1441
|
def secret_access_key(self, value: Optional[pulumi.Input[_builtins.str]]):
|
1432
1442
|
pulumi.set(self, "secret_access_key", value)
|
1433
1443
|
|
1444
|
+
@_builtins.property
|
1445
|
+
@pulumi.getter(name="secretAccessKeyWoVersion")
|
1446
|
+
def secret_access_key_wo_version(self) -> Optional[pulumi.Input[_builtins.int]]:
|
1447
|
+
"""
|
1448
|
+
The version of the sensitive params - used to trigger updates of the write-only params. For more info see [updating write-only attributes](https://www.terraform.io/docs/providers/google/guides/using_write_only_attributes.html#updating-write-only-attributes)
|
1449
|
+
"""
|
1450
|
+
return pulumi.get(self, "secret_access_key_wo_version")
|
1451
|
+
|
1452
|
+
@secret_access_key_wo_version.setter
|
1453
|
+
def secret_access_key_wo_version(self, value: Optional[pulumi.Input[_builtins.int]]):
|
1454
|
+
pulumi.set(self, "secret_access_key_wo_version", value)
|
1455
|
+
|
1434
1456
|
|
1435
1457
|
if not MYPY:
|
1436
1458
|
class DatasetAccessArgsDict(TypedDict):
|
@@ -4097,6 +4119,13 @@ if not MYPY:
|
|
4097
4119
|
Requires destinationTable to be set. For standard SQL queries, this flag is ignored and large results are always allowed.
|
4098
4120
|
However, you must still set destinationTable when result size exceeds the allowed maximum response size.
|
4099
4121
|
"""
|
4122
|
+
connection_properties: NotRequired[pulumi.Input[Sequence[pulumi.Input['JobQueryConnectionPropertyArgsDict']]]]
|
4123
|
+
"""
|
4124
|
+
Connection properties to customize query behavior. Under JDBC, these correspond
|
4125
|
+
directly to connection properties passed to the DriverManager. Under ODBC, these
|
4126
|
+
correspond to properties in the connection string.
|
4127
|
+
Structure is documented below.
|
4128
|
+
"""
|
4100
4129
|
continuous: NotRequired[pulumi.Input[_builtins.bool]]
|
4101
4130
|
"""
|
4102
4131
|
Whether to run the query as continuous or a regular query.
|
@@ -4202,6 +4231,7 @@ class JobQueryArgs:
|
|
4202
4231
|
def __init__(__self__, *,
|
4203
4232
|
query: pulumi.Input[_builtins.str],
|
4204
4233
|
allow_large_results: Optional[pulumi.Input[_builtins.bool]] = None,
|
4234
|
+
connection_properties: Optional[pulumi.Input[Sequence[pulumi.Input['JobQueryConnectionPropertyArgs']]]] = None,
|
4205
4235
|
continuous: Optional[pulumi.Input[_builtins.bool]] = None,
|
4206
4236
|
create_disposition: Optional[pulumi.Input[_builtins.str]] = None,
|
4207
4237
|
default_dataset: Optional[pulumi.Input['JobQueryDefaultDatasetArgs']] = None,
|
@@ -4225,6 +4255,10 @@ class JobQueryArgs:
|
|
4225
4255
|
:param pulumi.Input[_builtins.bool] allow_large_results: If true and query uses legacy SQL dialect, allows the query to produce arbitrarily large result tables at a slight cost in performance.
|
4226
4256
|
Requires destinationTable to be set. For standard SQL queries, this flag is ignored and large results are always allowed.
|
4227
4257
|
However, you must still set destinationTable when result size exceeds the allowed maximum response size.
|
4258
|
+
:param pulumi.Input[Sequence[pulumi.Input['JobQueryConnectionPropertyArgs']]] connection_properties: Connection properties to customize query behavior. Under JDBC, these correspond
|
4259
|
+
directly to connection properties passed to the DriverManager. Under ODBC, these
|
4260
|
+
correspond to properties in the connection string.
|
4261
|
+
Structure is documented below.
|
4228
4262
|
:param pulumi.Input[_builtins.bool] continuous: Whether to run the query as continuous or a regular query.
|
4229
4263
|
:param pulumi.Input[_builtins.str] create_disposition: Specifies whether the job is allowed to create new tables. The following values are supported:
|
4230
4264
|
CREATE_IF_NEEDED: If the table does not exist, BigQuery creates the table.
|
@@ -4278,6 +4312,8 @@ class JobQueryArgs:
|
|
4278
4312
|
pulumi.set(__self__, "query", query)
|
4279
4313
|
if allow_large_results is not None:
|
4280
4314
|
pulumi.set(__self__, "allow_large_results", allow_large_results)
|
4315
|
+
if connection_properties is not None:
|
4316
|
+
pulumi.set(__self__, "connection_properties", connection_properties)
|
4281
4317
|
if continuous is not None:
|
4282
4318
|
pulumi.set(__self__, "continuous", continuous)
|
4283
4319
|
if create_disposition is not None:
|
@@ -4339,6 +4375,21 @@ class JobQueryArgs:
|
|
4339
4375
|
def allow_large_results(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
4340
4376
|
pulumi.set(self, "allow_large_results", value)
|
4341
4377
|
|
4378
|
+
@_builtins.property
|
4379
|
+
@pulumi.getter(name="connectionProperties")
|
4380
|
+
def connection_properties(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['JobQueryConnectionPropertyArgs']]]]:
|
4381
|
+
"""
|
4382
|
+
Connection properties to customize query behavior. Under JDBC, these correspond
|
4383
|
+
directly to connection properties passed to the DriverManager. Under ODBC, these
|
4384
|
+
correspond to properties in the connection string.
|
4385
|
+
Structure is documented below.
|
4386
|
+
"""
|
4387
|
+
return pulumi.get(self, "connection_properties")
|
4388
|
+
|
4389
|
+
@connection_properties.setter
|
4390
|
+
def connection_properties(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['JobQueryConnectionPropertyArgs']]]]):
|
4391
|
+
pulumi.set(self, "connection_properties", value)
|
4392
|
+
|
4342
4393
|
@_builtins.property
|
4343
4394
|
@pulumi.getter
|
4344
4395
|
def continuous(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
@@ -4565,6 +4616,56 @@ class JobQueryArgs:
|
|
4565
4616
|
pulumi.set(self, "write_disposition", value)
|
4566
4617
|
|
4567
4618
|
|
4619
|
+
if not MYPY:
|
4620
|
+
class JobQueryConnectionPropertyArgsDict(TypedDict):
|
4621
|
+
key: pulumi.Input[_builtins.str]
|
4622
|
+
"""
|
4623
|
+
The key of the property to set. Currently supported connection properties:
|
4624
|
+
"""
|
4625
|
+
value: pulumi.Input[_builtins.str]
|
4626
|
+
"""
|
4627
|
+
The value of the property to set.
|
4628
|
+
"""
|
4629
|
+
elif False:
|
4630
|
+
JobQueryConnectionPropertyArgsDict: TypeAlias = Mapping[str, Any]
|
4631
|
+
|
4632
|
+
@pulumi.input_type
|
4633
|
+
class JobQueryConnectionPropertyArgs:
|
4634
|
+
def __init__(__self__, *,
|
4635
|
+
key: pulumi.Input[_builtins.str],
|
4636
|
+
value: pulumi.Input[_builtins.str]):
|
4637
|
+
"""
|
4638
|
+
:param pulumi.Input[_builtins.str] key: The key of the property to set. Currently supported connection properties:
|
4639
|
+
:param pulumi.Input[_builtins.str] value: The value of the property to set.
|
4640
|
+
"""
|
4641
|
+
pulumi.set(__self__, "key", key)
|
4642
|
+
pulumi.set(__self__, "value", value)
|
4643
|
+
|
4644
|
+
@_builtins.property
|
4645
|
+
@pulumi.getter
|
4646
|
+
def key(self) -> pulumi.Input[_builtins.str]:
|
4647
|
+
"""
|
4648
|
+
The key of the property to set. Currently supported connection properties:
|
4649
|
+
"""
|
4650
|
+
return pulumi.get(self, "key")
|
4651
|
+
|
4652
|
+
@key.setter
|
4653
|
+
def key(self, value: pulumi.Input[_builtins.str]):
|
4654
|
+
pulumi.set(self, "key", value)
|
4655
|
+
|
4656
|
+
@_builtins.property
|
4657
|
+
@pulumi.getter
|
4658
|
+
def value(self) -> pulumi.Input[_builtins.str]:
|
4659
|
+
"""
|
4660
|
+
The value of the property to set.
|
4661
|
+
"""
|
4662
|
+
return pulumi.get(self, "value")
|
4663
|
+
|
4664
|
+
@value.setter
|
4665
|
+
def value(self, value: pulumi.Input[_builtins.str]):
|
4666
|
+
pulumi.set(self, "value", value)
|
4667
|
+
|
4668
|
+
|
4568
4669
|
if not MYPY:
|
4569
4670
|
class JobQueryDefaultDatasetArgsDict(TypedDict):
|
4570
4671
|
dataset_id: pulumi.Input[_builtins.str]
|
@@ -8386,7 +8487,10 @@ if not MYPY:
|
|
8386
8487
|
use_legacy_sql: NotRequired[pulumi.Input[_builtins.bool]]
|
8387
8488
|
"""
|
8388
8489
|
Specifies whether to use BigQuery's legacy SQL for this view.
|
8389
|
-
|
8490
|
+
If set to `false`, the view will use BigQuery's standard SQL. If set to
|
8491
|
+
`true`, the view will use BigQuery's legacy SQL. If unset, the API will
|
8492
|
+
interpret it as a `true` and assumes the legacy SQL dialect for its query
|
8493
|
+
according to the [API documentation](https://cloud.google.com/bigquery/docs/reference/rest/v2/tables#ViewDefinition).
|
8390
8494
|
> **Note**: Starting in provider version `7.0.0`, no default value is
|
8391
8495
|
provided for this field unless explicitly set in the configuration.
|
8392
8496
|
"""
|
@@ -8401,7 +8505,10 @@ class TableViewArgs:
|
|
8401
8505
|
"""
|
8402
8506
|
:param pulumi.Input[_builtins.str] query: A query that BigQuery executes when the view is referenced.
|
8403
8507
|
:param pulumi.Input[_builtins.bool] use_legacy_sql: Specifies whether to use BigQuery's legacy SQL for this view.
|
8404
|
-
|
8508
|
+
If set to `false`, the view will use BigQuery's standard SQL. If set to
|
8509
|
+
`true`, the view will use BigQuery's legacy SQL. If unset, the API will
|
8510
|
+
interpret it as a `true` and assumes the legacy SQL dialect for its query
|
8511
|
+
according to the [API documentation](https://cloud.google.com/bigquery/docs/reference/rest/v2/tables#ViewDefinition).
|
8405
8512
|
> **Note**: Starting in provider version `7.0.0`, no default value is
|
8406
8513
|
provided for this field unless explicitly set in the configuration.
|
8407
8514
|
"""
|
@@ -8426,7 +8533,10 @@ class TableViewArgs:
|
|
8426
8533
|
def use_legacy_sql(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
8427
8534
|
"""
|
8428
8535
|
Specifies whether to use BigQuery's legacy SQL for this view.
|
8429
|
-
|
8536
|
+
If set to `false`, the view will use BigQuery's standard SQL. If set to
|
8537
|
+
`true`, the view will use BigQuery's legacy SQL. If unset, the API will
|
8538
|
+
interpret it as a `true` and assumes the legacy SQL dialect for its query
|
8539
|
+
according to the [API documentation](https://cloud.google.com/bigquery/docs/reference/rest/v2/tables#ViewDefinition).
|
8430
8540
|
> **Note**: Starting in provider version `7.0.0`, no default value is
|
8431
8541
|
provided for this field unless explicitly set in the configuration.
|
8432
8542
|
"""
|
@@ -425,12 +425,12 @@ class _AppProfileState:
|
|
425
425
|
pulumi.set(self, "standard_isolation", value)
|
426
426
|
|
427
427
|
|
428
|
-
warnings.warn("""gcp.bigquery
|
428
|
+
warnings.warn("""gcp.bigquery.AppProfile has been deprecated in favor of gcp.bigtable.AppProfile""", DeprecationWarning)
|
429
429
|
|
430
430
|
|
431
431
|
@pulumi.type_token("gcp:bigquery/appProfile:AppProfile")
|
432
432
|
class AppProfile(pulumi.CustomResource):
|
433
|
-
warnings.warn("""gcp.bigquery
|
433
|
+
warnings.warn("""gcp.bigquery.AppProfile has been deprecated in favor of gcp.bigtable.AppProfile""", DeprecationWarning)
|
434
434
|
|
435
435
|
@overload
|
436
436
|
def __init__(__self__,
|
@@ -819,7 +819,7 @@ class AppProfile(pulumi.CustomResource):
|
|
819
819
|
single_cluster_routing: Optional[pulumi.Input[Union['AppProfileSingleClusterRoutingArgs', 'AppProfileSingleClusterRoutingArgsDict']]] = None,
|
820
820
|
standard_isolation: Optional[pulumi.Input[Union['AppProfileStandardIsolationArgs', 'AppProfileStandardIsolationArgsDict']]] = None,
|
821
821
|
__props__=None):
|
822
|
-
pulumi.log.warn("""AppProfile is deprecated: gcp.bigquery
|
822
|
+
pulumi.log.warn("""AppProfile is deprecated: gcp.bigquery.AppProfile has been deprecated in favor of gcp.bigtable.AppProfile""")
|
823
823
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
824
824
|
if not isinstance(opts, pulumi.ResourceOptions):
|
825
825
|
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
@@ -842,8 +842,6 @@ class AppProfile(pulumi.CustomResource):
|
|
842
842
|
__props__.__dict__["single_cluster_routing"] = single_cluster_routing
|
843
843
|
__props__.__dict__["standard_isolation"] = standard_isolation
|
844
844
|
__props__.__dict__["name"] = None
|
845
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="gcp:bigquery/appProfile:AppProfile")])
|
846
|
-
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
847
845
|
super(AppProfile, __self__).__init__(
|
848
846
|
'gcp:bigquery/appProfile:AppProfile',
|
849
847
|
resource_name,
|
pulumi_gcp/bigquery/outputs.py
CHANGED
@@ -64,6 +64,7 @@ __all__ = [
|
|
64
64
|
'JobLoadParquetOptions',
|
65
65
|
'JobLoadTimePartitioning',
|
66
66
|
'JobQuery',
|
67
|
+
'JobQueryConnectionProperty',
|
67
68
|
'JobQueryDefaultDataset',
|
68
69
|
'JobQueryDestinationEncryptionConfiguration',
|
69
70
|
'JobQueryDestinationTable',
|
@@ -1154,6 +1155,8 @@ class DataTransferConfigSensitiveParams(dict):
|
|
1154
1155
|
suggest = None
|
1155
1156
|
if key == "secretAccessKey":
|
1156
1157
|
suggest = "secret_access_key"
|
1158
|
+
elif key == "secretAccessKeyWoVersion":
|
1159
|
+
suggest = "secret_access_key_wo_version"
|
1157
1160
|
|
1158
1161
|
if suggest:
|
1159
1162
|
pulumi.log.warn(f"Key '{key}' not found in DataTransferConfigSensitiveParams. Access the value via the '{suggest}' property getter instead.")
|
@@ -1167,12 +1170,16 @@ class DataTransferConfigSensitiveParams(dict):
|
|
1167
1170
|
return super().get(key, default)
|
1168
1171
|
|
1169
1172
|
def __init__(__self__, *,
|
1170
|
-
secret_access_key: Optional[_builtins.str] = None
|
1173
|
+
secret_access_key: Optional[_builtins.str] = None,
|
1174
|
+
secret_access_key_wo_version: Optional[_builtins.int] = None):
|
1171
1175
|
"""
|
1172
1176
|
:param _builtins.str secret_access_key: The Secret Access Key of the AWS account transferring data from.
|
1177
|
+
:param _builtins.int secret_access_key_wo_version: The version of the sensitive params - used to trigger updates of the write-only params. For more info see [updating write-only attributes](https://www.terraform.io/docs/providers/google/guides/using_write_only_attributes.html#updating-write-only-attributes)
|
1173
1178
|
"""
|
1174
1179
|
if secret_access_key is not None:
|
1175
1180
|
pulumi.set(__self__, "secret_access_key", secret_access_key)
|
1181
|
+
if secret_access_key_wo_version is not None:
|
1182
|
+
pulumi.set(__self__, "secret_access_key_wo_version", secret_access_key_wo_version)
|
1176
1183
|
|
1177
1184
|
@_builtins.property
|
1178
1185
|
@pulumi.getter(name="secretAccessKey")
|
@@ -1182,6 +1189,14 @@ class DataTransferConfigSensitiveParams(dict):
|
|
1182
1189
|
"""
|
1183
1190
|
return pulumi.get(self, "secret_access_key")
|
1184
1191
|
|
1192
|
+
@_builtins.property
|
1193
|
+
@pulumi.getter(name="secretAccessKeyWoVersion")
|
1194
|
+
def secret_access_key_wo_version(self) -> Optional[_builtins.int]:
|
1195
|
+
"""
|
1196
|
+
The version of the sensitive params - used to trigger updates of the write-only params. For more info see [updating write-only attributes](https://www.terraform.io/docs/providers/google/guides/using_write_only_attributes.html#updating-write-only-attributes)
|
1197
|
+
"""
|
1198
|
+
return pulumi.get(self, "secret_access_key_wo_version")
|
1199
|
+
|
1185
1200
|
|
1186
1201
|
@pulumi.output_type
|
1187
1202
|
class DatasetAccess(dict):
|
@@ -3257,6 +3272,8 @@ class JobQuery(dict):
|
|
3257
3272
|
suggest = None
|
3258
3273
|
if key == "allowLargeResults":
|
3259
3274
|
suggest = "allow_large_results"
|
3275
|
+
elif key == "connectionProperties":
|
3276
|
+
suggest = "connection_properties"
|
3260
3277
|
elif key == "createDisposition":
|
3261
3278
|
suggest = "create_disposition"
|
3262
3279
|
elif key == "defaultDataset":
|
@@ -3300,6 +3317,7 @@ class JobQuery(dict):
|
|
3300
3317
|
def __init__(__self__, *,
|
3301
3318
|
query: _builtins.str,
|
3302
3319
|
allow_large_results: Optional[_builtins.bool] = None,
|
3320
|
+
connection_properties: Optional[Sequence['outputs.JobQueryConnectionProperty']] = None,
|
3303
3321
|
continuous: Optional[_builtins.bool] = None,
|
3304
3322
|
create_disposition: Optional[_builtins.str] = None,
|
3305
3323
|
default_dataset: Optional['outputs.JobQueryDefaultDataset'] = None,
|
@@ -3323,6 +3341,10 @@ class JobQuery(dict):
|
|
3323
3341
|
:param _builtins.bool allow_large_results: If true and query uses legacy SQL dialect, allows the query to produce arbitrarily large result tables at a slight cost in performance.
|
3324
3342
|
Requires destinationTable to be set. For standard SQL queries, this flag is ignored and large results are always allowed.
|
3325
3343
|
However, you must still set destinationTable when result size exceeds the allowed maximum response size.
|
3344
|
+
:param Sequence['JobQueryConnectionPropertyArgs'] connection_properties: Connection properties to customize query behavior. Under JDBC, these correspond
|
3345
|
+
directly to connection properties passed to the DriverManager. Under ODBC, these
|
3346
|
+
correspond to properties in the connection string.
|
3347
|
+
Structure is documented below.
|
3326
3348
|
:param _builtins.bool continuous: Whether to run the query as continuous or a regular query.
|
3327
3349
|
:param _builtins.str create_disposition: Specifies whether the job is allowed to create new tables. The following values are supported:
|
3328
3350
|
CREATE_IF_NEEDED: If the table does not exist, BigQuery creates the table.
|
@@ -3376,6 +3398,8 @@ class JobQuery(dict):
|
|
3376
3398
|
pulumi.set(__self__, "query", query)
|
3377
3399
|
if allow_large_results is not None:
|
3378
3400
|
pulumi.set(__self__, "allow_large_results", allow_large_results)
|
3401
|
+
if connection_properties is not None:
|
3402
|
+
pulumi.set(__self__, "connection_properties", connection_properties)
|
3379
3403
|
if continuous is not None:
|
3380
3404
|
pulumi.set(__self__, "continuous", continuous)
|
3381
3405
|
if create_disposition is not None:
|
@@ -3429,6 +3453,17 @@ class JobQuery(dict):
|
|
3429
3453
|
"""
|
3430
3454
|
return pulumi.get(self, "allow_large_results")
|
3431
3455
|
|
3456
|
+
@_builtins.property
|
3457
|
+
@pulumi.getter(name="connectionProperties")
|
3458
|
+
def connection_properties(self) -> Optional[Sequence['outputs.JobQueryConnectionProperty']]:
|
3459
|
+
"""
|
3460
|
+
Connection properties to customize query behavior. Under JDBC, these correspond
|
3461
|
+
directly to connection properties passed to the DriverManager. Under ODBC, these
|
3462
|
+
correspond to properties in the connection string.
|
3463
|
+
Structure is documented below.
|
3464
|
+
"""
|
3465
|
+
return pulumi.get(self, "connection_properties")
|
3466
|
+
|
3432
3467
|
@_builtins.property
|
3433
3468
|
@pulumi.getter
|
3434
3469
|
def continuous(self) -> Optional[_builtins.bool]:
|
@@ -3591,6 +3626,35 @@ class JobQuery(dict):
|
|
3591
3626
|
return pulumi.get(self, "write_disposition")
|
3592
3627
|
|
3593
3628
|
|
3629
|
+
@pulumi.output_type
|
3630
|
+
class JobQueryConnectionProperty(dict):
|
3631
|
+
def __init__(__self__, *,
|
3632
|
+
key: _builtins.str,
|
3633
|
+
value: _builtins.str):
|
3634
|
+
"""
|
3635
|
+
:param _builtins.str key: The key of the property to set. Currently supported connection properties:
|
3636
|
+
:param _builtins.str value: The value of the property to set.
|
3637
|
+
"""
|
3638
|
+
pulumi.set(__self__, "key", key)
|
3639
|
+
pulumi.set(__self__, "value", value)
|
3640
|
+
|
3641
|
+
@_builtins.property
|
3642
|
+
@pulumi.getter
|
3643
|
+
def key(self) -> _builtins.str:
|
3644
|
+
"""
|
3645
|
+
The key of the property to set. Currently supported connection properties:
|
3646
|
+
"""
|
3647
|
+
return pulumi.get(self, "key")
|
3648
|
+
|
3649
|
+
@_builtins.property
|
3650
|
+
@pulumi.getter
|
3651
|
+
def value(self) -> _builtins.str:
|
3652
|
+
"""
|
3653
|
+
The value of the property to set.
|
3654
|
+
"""
|
3655
|
+
return pulumi.get(self, "value")
|
3656
|
+
|
3657
|
+
|
3594
3658
|
@pulumi.output_type
|
3595
3659
|
class JobQueryDefaultDataset(dict):
|
3596
3660
|
@staticmethod
|
@@ -6608,7 +6672,10 @@ class TableView(dict):
|
|
6608
6672
|
"""
|
6609
6673
|
:param _builtins.str query: A query that BigQuery executes when the view is referenced.
|
6610
6674
|
:param _builtins.bool use_legacy_sql: Specifies whether to use BigQuery's legacy SQL for this view.
|
6611
|
-
|
6675
|
+
If set to `false`, the view will use BigQuery's standard SQL. If set to
|
6676
|
+
`true`, the view will use BigQuery's legacy SQL. If unset, the API will
|
6677
|
+
interpret it as a `true` and assumes the legacy SQL dialect for its query
|
6678
|
+
according to the [API documentation](https://cloud.google.com/bigquery/docs/reference/rest/v2/tables#ViewDefinition).
|
6612
6679
|
> **Note**: Starting in provider version `7.0.0`, no default value is
|
6613
6680
|
provided for this field unless explicitly set in the configuration.
|
6614
6681
|
"""
|
@@ -6629,7 +6696,10 @@ class TableView(dict):
|
|
6629
6696
|
def use_legacy_sql(self) -> Optional[_builtins.bool]:
|
6630
6697
|
"""
|
6631
6698
|
Specifies whether to use BigQuery's legacy SQL for this view.
|
6632
|
-
|
6699
|
+
If set to `false`, the view will use BigQuery's standard SQL. If set to
|
6700
|
+
`true`, the view will use BigQuery's legacy SQL. If unset, the API will
|
6701
|
+
interpret it as a `true` and assumes the legacy SQL dialect for its query
|
6702
|
+
according to the [API documentation](https://cloud.google.com/bigquery/docs/reference/rest/v2/tables#ViewDefinition).
|
6633
6703
|
> **Note**: Starting in provider version `7.0.0`, no default value is
|
6634
6704
|
provided for this field unless explicitly set in the configuration.
|
6635
6705
|
"""
|
@@ -8365,7 +8435,7 @@ class GetTableViewResult(dict):
|
|
8365
8435
|
use_legacy_sql: _builtins.bool):
|
8366
8436
|
"""
|
8367
8437
|
:param _builtins.str query: A query that BigQuery executes when the view is referenced.
|
8368
|
-
:param _builtins.bool use_legacy_sql: Specifies whether to use BigQuery's legacy SQL for this view.
|
8438
|
+
:param _builtins.bool use_legacy_sql: Specifies whether to use BigQuery's legacy SQL for this view. If set to false, the view will use BigQuery's standard SQL
|
8369
8439
|
"""
|
8370
8440
|
pulumi.set(__self__, "query", query)
|
8371
8441
|
pulumi.set(__self__, "use_legacy_sql", use_legacy_sql)
|
@@ -8382,7 +8452,7 @@ class GetTableViewResult(dict):
|
|
8382
8452
|
@pulumi.getter(name="useLegacySql")
|
8383
8453
|
def use_legacy_sql(self) -> _builtins.bool:
|
8384
8454
|
"""
|
8385
|
-
Specifies whether to use BigQuery's legacy SQL for this view.
|
8455
|
+
Specifies whether to use BigQuery's legacy SQL for this view. If set to false, the view will use BigQuery's standard SQL
|
8386
8456
|
"""
|
8387
8457
|
return pulumi.get(self, "use_legacy_sql")
|
8388
8458
|
|
@@ -526,6 +526,16 @@ class DataExchangeSubscription(pulumi.CustomResource):
|
|
526
526
|
subscription_id: Optional[pulumi.Input[_builtins.str]] = None,
|
527
527
|
__props__=None):
|
528
528
|
"""
|
529
|
+
A Bigquery Analytics Hub Data Exchange subscription
|
530
|
+
|
531
|
+
To get more information about DataExchangeSubscription, see:
|
532
|
+
|
533
|
+
* [API documentation](https://cloud.google.com/bigquery/docs/reference/analytics-hub/rest/v1/projects.locations.subscriptions)
|
534
|
+
* How-to Guides
|
535
|
+
* [Official Documentation](https://cloud.google.com/bigquery/docs/analytics-hub-introduction)
|
536
|
+
|
537
|
+
> **Note:** When importing the resource with `pulumi import`, provide the destination/subscriber's project and location
|
538
|
+
in the format projects/{{subscriber_project}}/locations/{{subscriber_location}}/subscriptions/{{subscription_id}}
|
529
539
|
## Example Usage
|
530
540
|
|
531
541
|
### Bigquery Analyticshub Dataexchange Subscription Basic
|
@@ -654,6 +664,16 @@ class DataExchangeSubscription(pulumi.CustomResource):
|
|
654
664
|
args: DataExchangeSubscriptionArgs,
|
655
665
|
opts: Optional[pulumi.ResourceOptions] = None):
|
656
666
|
"""
|
667
|
+
A Bigquery Analytics Hub Data Exchange subscription
|
668
|
+
|
669
|
+
To get more information about DataExchangeSubscription, see:
|
670
|
+
|
671
|
+
* [API documentation](https://cloud.google.com/bigquery/docs/reference/analytics-hub/rest/v1/projects.locations.subscriptions)
|
672
|
+
* How-to Guides
|
673
|
+
* [Official Documentation](https://cloud.google.com/bigquery/docs/analytics-hub-introduction)
|
674
|
+
|
675
|
+
> **Note:** When importing the resource with `pulumi import`, provide the destination/subscriber's project and location
|
676
|
+
in the format projects/{{subscriber_project}}/locations/{{subscriber_location}}/subscriptions/{{subscription_id}}
|
657
677
|
## Example Usage
|
658
678
|
|
659
679
|
### Bigquery Analyticshub Dataexchange Subscription Basic
|
@@ -836,7 +836,7 @@ class AppProfile(pulumi.CustomResource):
|
|
836
836
|
__props__.__dict__["single_cluster_routing"] = single_cluster_routing
|
837
837
|
__props__.__dict__["standard_isolation"] = standard_isolation
|
838
838
|
__props__.__dict__["name"] = None
|
839
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="gcp:bigquery/appProfile:AppProfile")])
|
839
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="gcp:bigquery/appProfile:AppProfile"), pulumi.Alias(type_="gcp:bigquery/appProfile:AppProfile")])
|
840
840
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
841
841
|
super(AppProfile, __self__).__init__(
|
842
842
|
'gcp:bigtable/appProfile:AppProfile',
|
@@ -26,16 +26,16 @@ class GetTableIamPolicyResult:
|
|
26
26
|
"""
|
27
27
|
A collection of values returned by getTableIamPolicy.
|
28
28
|
"""
|
29
|
-
def __init__(__self__, etag=None, id=None,
|
29
|
+
def __init__(__self__, etag=None, id=None, instance_name=None, policy_data=None, project=None, table=None):
|
30
30
|
if etag and not isinstance(etag, str):
|
31
31
|
raise TypeError("Expected argument 'etag' to be a str")
|
32
32
|
pulumi.set(__self__, "etag", etag)
|
33
33
|
if id and not isinstance(id, str):
|
34
34
|
raise TypeError("Expected argument 'id' to be a str")
|
35
35
|
pulumi.set(__self__, "id", id)
|
36
|
-
if
|
37
|
-
raise TypeError("Expected argument '
|
38
|
-
pulumi.set(__self__, "
|
36
|
+
if instance_name and not isinstance(instance_name, str):
|
37
|
+
raise TypeError("Expected argument 'instance_name' to be a str")
|
38
|
+
pulumi.set(__self__, "instance_name", instance_name)
|
39
39
|
if policy_data and not isinstance(policy_data, str):
|
40
40
|
raise TypeError("Expected argument 'policy_data' to be a str")
|
41
41
|
pulumi.set(__self__, "policy_data", policy_data)
|
@@ -63,9 +63,9 @@ class GetTableIamPolicyResult:
|
|
63
63
|
return pulumi.get(self, "id")
|
64
64
|
|
65
65
|
@_builtins.property
|
66
|
-
@pulumi.getter
|
67
|
-
def
|
68
|
-
return pulumi.get(self, "
|
66
|
+
@pulumi.getter(name="instanceName")
|
67
|
+
def instance_name(self) -> _builtins.str:
|
68
|
+
return pulumi.get(self, "instance_name")
|
69
69
|
|
70
70
|
@_builtins.property
|
71
71
|
@pulumi.getter(name="policyData")
|
@@ -94,13 +94,13 @@ class AwaitableGetTableIamPolicyResult(GetTableIamPolicyResult):
|
|
94
94
|
return GetTableIamPolicyResult(
|
95
95
|
etag=self.etag,
|
96
96
|
id=self.id,
|
97
|
-
|
97
|
+
instance_name=self.instance_name,
|
98
98
|
policy_data=self.policy_data,
|
99
99
|
project=self.project,
|
100
100
|
table=self.table)
|
101
101
|
|
102
102
|
|
103
|
-
def get_table_iam_policy(
|
103
|
+
def get_table_iam_policy(instance_name: Optional[_builtins.str] = None,
|
104
104
|
project: Optional[_builtins.str] = None,
|
105
105
|
table: Optional[_builtins.str] = None,
|
106
106
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetTableIamPolicyResult:
|
@@ -113,16 +113,15 @@ def get_table_iam_policy(instance: Optional[_builtins.str] = None,
|
|
113
113
|
import pulumi
|
114
114
|
import pulumi_gcp as gcp
|
115
115
|
|
116
|
-
policy = gcp.bigtable.get_table_iam_policy(
|
116
|
+
policy = gcp.bigtable.get_table_iam_policy(instance_name=instance["name"],
|
117
117
|
table=table["name"])
|
118
118
|
```
|
119
119
|
|
120
120
|
|
121
|
-
:param _builtins.str instance: The name or relative resource id of the instance that owns the table.
|
122
121
|
:param _builtins.str table: The name or relative resource id of the table to manage IAM policies for.
|
123
122
|
"""
|
124
123
|
__args__ = dict()
|
125
|
-
__args__['
|
124
|
+
__args__['instanceName'] = instance_name
|
126
125
|
__args__['project'] = project
|
127
126
|
__args__['table'] = table
|
128
127
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
@@ -131,11 +130,11 @@ def get_table_iam_policy(instance: Optional[_builtins.str] = None,
|
|
131
130
|
return AwaitableGetTableIamPolicyResult(
|
132
131
|
etag=pulumi.get(__ret__, 'etag'),
|
133
132
|
id=pulumi.get(__ret__, 'id'),
|
134
|
-
|
133
|
+
instance_name=pulumi.get(__ret__, 'instance_name'),
|
135
134
|
policy_data=pulumi.get(__ret__, 'policy_data'),
|
136
135
|
project=pulumi.get(__ret__, 'project'),
|
137
136
|
table=pulumi.get(__ret__, 'table'))
|
138
|
-
def get_table_iam_policy_output(
|
137
|
+
def get_table_iam_policy_output(instance_name: Optional[pulumi.Input[_builtins.str]] = None,
|
139
138
|
project: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
140
139
|
table: Optional[pulumi.Input[_builtins.str]] = None,
|
141
140
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetTableIamPolicyResult]:
|
@@ -148,16 +147,15 @@ def get_table_iam_policy_output(instance: Optional[pulumi.Input[_builtins.str]]
|
|
148
147
|
import pulumi
|
149
148
|
import pulumi_gcp as gcp
|
150
149
|
|
151
|
-
policy = gcp.bigtable.get_table_iam_policy(
|
150
|
+
policy = gcp.bigtable.get_table_iam_policy(instance_name=instance["name"],
|
152
151
|
table=table["name"])
|
153
152
|
```
|
154
153
|
|
155
154
|
|
156
|
-
:param _builtins.str instance: The name or relative resource id of the instance that owns the table.
|
157
155
|
:param _builtins.str table: The name or relative resource id of the table to manage IAM policies for.
|
158
156
|
"""
|
159
157
|
__args__ = dict()
|
160
|
-
__args__['
|
158
|
+
__args__['instanceName'] = instance_name
|
161
159
|
__args__['project'] = project
|
162
160
|
__args__['table'] = table
|
163
161
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
@@ -165,7 +163,7 @@ def get_table_iam_policy_output(instance: Optional[pulumi.Input[_builtins.str]]
|
|
165
163
|
return __ret__.apply(lambda __response__: GetTableIamPolicyResult(
|
166
164
|
etag=pulumi.get(__response__, 'etag'),
|
167
165
|
id=pulumi.get(__response__, 'id'),
|
168
|
-
|
166
|
+
instance_name=pulumi.get(__response__, 'instance_name'),
|
169
167
|
policy_data=pulumi.get(__response__, 'policy_data'),
|
170
168
|
project=pulumi.get(__response__, 'project'),
|
171
169
|
table=pulumi.get(__response__, 'table')))
|