pulumi-gcp 7.30.0a1719470057__py3-none-any.whl → 7.30.0a1719513455__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/_inputs.py +15 -0
- pulumi_gcp/accessapproval/get_folder_service_account.py +5 -0
- pulumi_gcp/accessapproval/get_organization_service_account.py +5 -0
- pulumi_gcp/accessapproval/get_project_service_account.py +5 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +2066 -6
- pulumi_gcp/accesscontextmanager/access_level.py +37 -32
- pulumi_gcp/accesscontextmanager/access_level_condition.py +53 -48
- pulumi_gcp/accesscontextmanager/access_levels.py +70 -65
- pulumi_gcp/accesscontextmanager/access_policy.py +5 -0
- pulumi_gcp/accesscontextmanager/access_policy_iam_binding.py +24 -19
- pulumi_gcp/accesscontextmanager/access_policy_iam_member.py +24 -19
- pulumi_gcp/accesscontextmanager/access_policy_iam_policy.py +21 -16
- pulumi_gcp/accesscontextmanager/authorized_orgs_desc.py +5 -0
- pulumi_gcp/accesscontextmanager/egress_policy.py +5 -0
- pulumi_gcp/accesscontextmanager/gcp_user_access_binding.py +33 -28
- pulumi_gcp/accesscontextmanager/get_access_policy_iam_policy.py +5 -0
- pulumi_gcp/accesscontextmanager/ingress_policy.py +5 -0
- pulumi_gcp/accesscontextmanager/outputs.py +5 -0
- pulumi_gcp/accesscontextmanager/service_perimeter.py +201 -196
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_resource.py +11 -6
- pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +15 -10
- pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +15 -10
- pulumi_gcp/accesscontextmanager/service_perimeter_resource.py +11 -6
- pulumi_gcp/accesscontextmanager/service_perimeters.py +60 -55
- pulumi_gcp/activedirectory/domain.py +5 -0
- pulumi_gcp/activedirectory/domain_trust.py +5 -0
- pulumi_gcp/activedirectory/peering.py +5 -0
- pulumi_gcp/alloydb/_inputs.py +535 -0
- pulumi_gcp/alloydb/backup.py +26 -21
- pulumi_gcp/alloydb/cluster.py +177 -172
- pulumi_gcp/alloydb/get_locations.py +5 -0
- pulumi_gcp/alloydb/get_supported_database_flags.py +5 -0
- pulumi_gcp/alloydb/instance.py +77 -72
- pulumi_gcp/alloydb/outputs.py +5 -0
- pulumi_gcp/alloydb/user.py +17 -12
- pulumi_gcp/apigateway/_inputs.py +168 -0
- pulumi_gcp/apigateway/api.py +5 -0
- pulumi_gcp/apigateway/api_config.py +25 -20
- pulumi_gcp/apigateway/api_config_iam_binding.py +24 -19
- pulumi_gcp/apigateway/api_config_iam_member.py +24 -19
- pulumi_gcp/apigateway/api_config_iam_policy.py +21 -16
- pulumi_gcp/apigateway/api_iam_binding.py +24 -19
- pulumi_gcp/apigateway/api_iam_member.py +24 -19
- pulumi_gcp/apigateway/api_iam_policy.py +21 -16
- pulumi_gcp/apigateway/gateway.py +5 -0
- pulumi_gcp/apigateway/gateway_iam_binding.py +24 -19
- pulumi_gcp/apigateway/gateway_iam_member.py +24 -19
- pulumi_gcp/apigateway/gateway_iam_policy.py +21 -16
- pulumi_gcp/apigateway/get_api_config_iam_policy.py +5 -0
- pulumi_gcp/apigateway/get_api_iam_policy.py +5 -0
- pulumi_gcp/apigateway/get_gateway_iam_policy.py +5 -0
- pulumi_gcp/apigateway/outputs.py +5 -0
- pulumi_gcp/apigee/_inputs.py +508 -0
- pulumi_gcp/apigee/addons_config.py +60 -55
- pulumi_gcp/apigee/endpoint_attachment.py +5 -0
- pulumi_gcp/apigee/env_group.py +5 -0
- pulumi_gcp/apigee/env_group_attachment.py +5 -0
- pulumi_gcp/apigee/env_keystore.py +5 -0
- pulumi_gcp/apigee/env_references.py +5 -0
- pulumi_gcp/apigee/environment.py +10 -5
- pulumi_gcp/apigee/environment_iam_binding.py +24 -19
- pulumi_gcp/apigee/environment_iam_member.py +24 -19
- pulumi_gcp/apigee/environment_iam_policy.py +21 -16
- pulumi_gcp/apigee/flowhook.py +5 -0
- pulumi_gcp/apigee/get_environment_iam_policy.py +5 -0
- pulumi_gcp/apigee/instance.py +5 -0
- pulumi_gcp/apigee/instance_attachment.py +5 -0
- pulumi_gcp/apigee/keystores_aliases_key_cert_file.py +10 -5
- pulumi_gcp/apigee/keystores_aliases_pkcs12.py +7 -2
- pulumi_gcp/apigee/keystores_aliases_self_signed_cert.py +31 -26
- pulumi_gcp/apigee/nat_address.py +5 -0
- pulumi_gcp/apigee/organization.py +10 -5
- pulumi_gcp/apigee/outputs.py +5 -0
- pulumi_gcp/apigee/sharedflow.py +7 -2
- pulumi_gcp/apigee/sharedflow_deployment.py +5 -0
- pulumi_gcp/apigee/sync_authorization.py +5 -0
- pulumi_gcp/apigee/target_server.py +10 -5
- pulumi_gcp/appengine/_inputs.py +990 -7
- pulumi_gcp/appengine/application.py +17 -12
- pulumi_gcp/appengine/application_url_dispatch_rules.py +46 -41
- pulumi_gcp/appengine/domain_mapping.py +18 -13
- pulumi_gcp/appengine/engine_split_traffic.py +50 -45
- pulumi_gcp/appengine/firewall_rule.py +5 -0
- pulumi_gcp/appengine/flexible_app_version.py +130 -125
- pulumi_gcp/appengine/get_default_service_account.py +5 -0
- pulumi_gcp/appengine/outputs.py +5 -0
- pulumi_gcp/appengine/service_network_settings.py +32 -27
- pulumi_gcp/appengine/standard_app_version.py +109 -104
- pulumi_gcp/apphub/_inputs.py +370 -0
- pulumi_gcp/apphub/application.py +67 -62
- pulumi_gcp/apphub/get_application.py +5 -0
- pulumi_gcp/apphub/get_discovered_service.py +5 -0
- pulumi_gcp/apphub/get_discovered_workload.py +5 -0
- pulumi_gcp/apphub/outputs.py +5 -0
- pulumi_gcp/apphub/service.py +78 -73
- pulumi_gcp/apphub/service_project_attachment.py +5 -0
- pulumi_gcp/apphub/workload.py +14 -9
- pulumi_gcp/applicationintegration/_inputs.py +324 -0
- pulumi_gcp/applicationintegration/auth_config.py +29 -24
- pulumi_gcp/applicationintegration/client.py +24 -19
- pulumi_gcp/applicationintegration/outputs.py +5 -0
- pulumi_gcp/artifactregistry/_inputs.py +392 -0
- pulumi_gcp/artifactregistry/get_docker_image.py +5 -0
- pulumi_gcp/artifactregistry/get_repository.py +5 -0
- pulumi_gcp/artifactregistry/get_repository_iam_policy.py +5 -0
- pulumi_gcp/artifactregistry/outputs.py +5 -0
- pulumi_gcp/artifactregistry/repository.py +338 -333
- pulumi_gcp/artifactregistry/repository_iam_binding.py +24 -19
- pulumi_gcp/artifactregistry/repository_iam_member.py +24 -19
- pulumi_gcp/artifactregistry/repository_iam_policy.py +21 -16
- pulumi_gcp/artifactregistry/vpcsc_config.py +5 -0
- pulumi_gcp/assuredworkloads/_inputs.py +117 -0
- pulumi_gcp/assuredworkloads/outputs.py +5 -0
- pulumi_gcp/assuredworkloads/workload.py +86 -81
- pulumi_gcp/backupdisasterrecovery/_inputs.py +41 -0
- pulumi_gcp/backupdisasterrecovery/get_management_server.py +5 -0
- pulumi_gcp/backupdisasterrecovery/management_server.py +20 -15
- pulumi_gcp/backupdisasterrecovery/outputs.py +5 -0
- pulumi_gcp/beyondcorp/_inputs.py +86 -0
- pulumi_gcp/beyondcorp/app_connection.py +57 -52
- pulumi_gcp/beyondcorp/app_connector.py +30 -25
- pulumi_gcp/beyondcorp/app_gateway.py +7 -2
- pulumi_gcp/beyondcorp/get_app_connection.py +5 -0
- pulumi_gcp/beyondcorp/get_app_connector.py +5 -0
- pulumi_gcp/beyondcorp/get_app_gateway.py +5 -0
- pulumi_gcp/beyondcorp/outputs.py +5 -0
- pulumi_gcp/biglake/_inputs.py +64 -0
- pulumi_gcp/biglake/catalog.py +5 -0
- pulumi_gcp/biglake/database.py +18 -13
- pulumi_gcp/biglake/outputs.py +5 -0
- pulumi_gcp/biglake/table.py +36 -31
- pulumi_gcp/bigquery/_inputs.py +1930 -6
- pulumi_gcp/bigquery/app_profile.py +133 -128
- pulumi_gcp/bigquery/bi_reservation.py +10 -5
- pulumi_gcp/bigquery/capacity_commitment.py +5 -0
- pulumi_gcp/bigquery/connection.py +181 -176
- pulumi_gcp/bigquery/connection_iam_binding.py +24 -19
- pulumi_gcp/bigquery/connection_iam_member.py +24 -19
- pulumi_gcp/bigquery/connection_iam_policy.py +21 -16
- pulumi_gcp/bigquery/data_transfer_config.py +20 -15
- pulumi_gcp/bigquery/dataset.py +132 -127
- pulumi_gcp/bigquery/dataset_access.py +72 -67
- pulumi_gcp/bigquery/dataset_iam_binding.py +24 -19
- pulumi_gcp/bigquery/dataset_iam_member.py +24 -19
- pulumi_gcp/bigquery/dataset_iam_policy.py +21 -16
- pulumi_gcp/bigquery/get_connection_iam_policy.py +5 -0
- pulumi_gcp/bigquery/get_dataset.py +5 -0
- pulumi_gcp/bigquery/get_dataset_iam_policy.py +5 -0
- pulumi_gcp/bigquery/get_default_service_account.py +5 -0
- pulumi_gcp/bigquery/get_table_iam_policy.py +5 -0
- pulumi_gcp/bigquery/iam_binding.py +102 -97
- pulumi_gcp/bigquery/iam_member.py +102 -97
- pulumi_gcp/bigquery/iam_policy.py +97 -92
- pulumi_gcp/bigquery/job.py +229 -224
- pulumi_gcp/bigquery/outputs.py +5 -0
- pulumi_gcp/bigquery/reservation.py +16 -11
- pulumi_gcp/bigquery/reservation_assignment.py +5 -0
- pulumi_gcp/bigquery/routine.py +114 -109
- pulumi_gcp/bigquery/table.py +67 -62
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +97 -0
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +5 -0
- pulumi_gcp/bigqueryanalyticshub/data_exchange_iam_binding.py +24 -19
- pulumi_gcp/bigqueryanalyticshub/data_exchange_iam_member.py +24 -19
- pulumi_gcp/bigqueryanalyticshub/data_exchange_iam_policy.py +21 -16
- pulumi_gcp/bigqueryanalyticshub/get_data_exchange_iam_policy.py +5 -0
- pulumi_gcp/bigqueryanalyticshub/get_listing_iam_policy.py +5 -0
- pulumi_gcp/bigqueryanalyticshub/listing.py +45 -40
- pulumi_gcp/bigqueryanalyticshub/listing_iam_binding.py +24 -19
- pulumi_gcp/bigqueryanalyticshub/listing_iam_member.py +24 -19
- pulumi_gcp/bigqueryanalyticshub/listing_iam_policy.py +21 -16
- pulumi_gcp/bigqueryanalyticshub/outputs.py +5 -0
- pulumi_gcp/bigquerydatapolicy/_inputs.py +40 -0
- pulumi_gcp/bigquerydatapolicy/data_policy.py +24 -19
- pulumi_gcp/bigquerydatapolicy/data_policy_iam_binding.py +24 -19
- pulumi_gcp/bigquerydatapolicy/data_policy_iam_member.py +24 -19
- pulumi_gcp/bigquerydatapolicy/data_policy_iam_policy.py +21 -16
- pulumi_gcp/bigquerydatapolicy/get_iam_policy.py +5 -0
- pulumi_gcp/bigquerydatapolicy/outputs.py +5 -0
- pulumi_gcp/bigtable/_inputs.py +202 -0
- pulumi_gcp/bigtable/authorized_view.py +10 -5
- pulumi_gcp/bigtable/gc_policy.py +45 -40
- pulumi_gcp/bigtable/get_instance_iam_policy.py +5 -0
- pulumi_gcp/bigtable/get_table_iam_policy.py +5 -0
- pulumi_gcp/bigtable/instance.py +52 -47
- pulumi_gcp/bigtable/instance_iam_binding.py +24 -19
- pulumi_gcp/bigtable/instance_iam_member.py +24 -19
- pulumi_gcp/bigtable/instance_iam_policy.py +21 -16
- pulumi_gcp/bigtable/outputs.py +5 -0
- pulumi_gcp/bigtable/table.py +39 -34
- pulumi_gcp/bigtable/table_iam_binding.py +24 -19
- pulumi_gcp/bigtable/table_iam_member.py +24 -19
- pulumi_gcp/bigtable/table_iam_policy.py +21 -16
- pulumi_gcp/billing/_inputs.py +257 -0
- pulumi_gcp/billing/account_iam_binding.py +24 -19
- pulumi_gcp/billing/account_iam_member.py +24 -19
- pulumi_gcp/billing/account_iam_policy.py +21 -16
- pulumi_gcp/billing/budget.py +225 -220
- pulumi_gcp/billing/get_account_iam_policy.py +5 -0
- pulumi_gcp/billing/outputs.py +5 -0
- pulumi_gcp/billing/project_info.py +5 -0
- pulumi_gcp/billing/sub_account.py +5 -0
- pulumi_gcp/binaryauthorization/_inputs.py +199 -0
- pulumi_gcp/binaryauthorization/attestor.py +68 -63
- pulumi_gcp/binaryauthorization/attestor_iam_binding.py +24 -19
- pulumi_gcp/binaryauthorization/attestor_iam_member.py +24 -19
- pulumi_gcp/binaryauthorization/attestor_iam_policy.py +21 -16
- pulumi_gcp/binaryauthorization/get_attestor_iam_policy.py +5 -0
- pulumi_gcp/binaryauthorization/outputs.py +5 -0
- pulumi_gcp/binaryauthorization/policy.py +88 -83
- pulumi_gcp/blockchainnodeengine/_inputs.py +131 -0
- pulumi_gcp/blockchainnodeengine/blockchain_nodes.py +62 -57
- pulumi_gcp/blockchainnodeengine/outputs.py +5 -0
- pulumi_gcp/certificateauthority/_inputs.py +2157 -36
- pulumi_gcp/certificateauthority/authority.py +398 -393
- pulumi_gcp/certificateauthority/ca_pool.py +189 -184
- pulumi_gcp/certificateauthority/ca_pool_iam_binding.py +102 -97
- pulumi_gcp/certificateauthority/ca_pool_iam_member.py +102 -97
- pulumi_gcp/certificateauthority/ca_pool_iam_policy.py +97 -92
- pulumi_gcp/certificateauthority/certificate.py +636 -631
- pulumi_gcp/certificateauthority/certificate_template.py +134 -129
- pulumi_gcp/certificateauthority/certificate_template_iam_binding.py +102 -97
- pulumi_gcp/certificateauthority/certificate_template_iam_member.py +102 -97
- pulumi_gcp/certificateauthority/certificate_template_iam_policy.py +97 -92
- pulumi_gcp/certificateauthority/get_authority.py +5 -0
- pulumi_gcp/certificateauthority/get_ca_pool_iam_policy.py +5 -0
- pulumi_gcp/certificateauthority/get_certificate_template_iam_policy.py +5 -0
- pulumi_gcp/certificateauthority/outputs.py +5 -0
- pulumi_gcp/certificatemanager/_inputs.py +256 -0
- pulumi_gcp/certificatemanager/certificate.py +203 -198
- pulumi_gcp/certificatemanager/certificate_issuance_config.py +76 -71
- pulumi_gcp/certificatemanager/certificate_map.py +7 -2
- pulumi_gcp/certificatemanager/certificate_map_entry.py +13 -8
- pulumi_gcp/certificatemanager/dns_authorization.py +7 -2
- pulumi_gcp/certificatemanager/get_certificate_map.py +5 -0
- pulumi_gcp/certificatemanager/outputs.py +5 -0
- pulumi_gcp/certificatemanager/trust_config.py +26 -21
- pulumi_gcp/cloudasset/_inputs.py +151 -0
- pulumi_gcp/cloudasset/folder_feed.py +35 -30
- pulumi_gcp/cloudasset/get_resources_search_all.py +5 -0
- pulumi_gcp/cloudasset/get_search_all_resources.py +5 -0
- pulumi_gcp/cloudasset/organization_feed.py +35 -30
- pulumi_gcp/cloudasset/outputs.py +5 -0
- pulumi_gcp/cloudasset/project_feed.py +35 -30
- pulumi_gcp/cloudbuild/_inputs.py +1038 -29
- pulumi_gcp/cloudbuild/bitbucket_server_config.py +61 -56
- pulumi_gcp/cloudbuild/get_trigger.py +5 -0
- pulumi_gcp/cloudbuild/outputs.py +5 -0
- pulumi_gcp/cloudbuild/trigger.py +733 -728
- pulumi_gcp/cloudbuild/worker_pool.py +43 -38
- pulumi_gcp/cloudbuildv2/_inputs.py +335 -0
- pulumi_gcp/cloudbuildv2/connection.py +106 -101
- pulumi_gcp/cloudbuildv2/connection_iam_binding.py +24 -19
- pulumi_gcp/cloudbuildv2/connection_iam_member.py +24 -19
- pulumi_gcp/cloudbuildv2/connection_iam_policy.py +21 -16
- pulumi_gcp/cloudbuildv2/get_connection_iam_policy.py +5 -0
- pulumi_gcp/cloudbuildv2/outputs.py +5 -0
- pulumi_gcp/cloudbuildv2/repository.py +67 -62
- pulumi_gcp/clouddeploy/_inputs.py +700 -0
- pulumi_gcp/clouddeploy/automation.py +101 -96
- pulumi_gcp/clouddeploy/custom_target_type.py +88 -83
- pulumi_gcp/clouddeploy/custom_target_type_iam_binding.py +8 -3
- pulumi_gcp/clouddeploy/custom_target_type_iam_member.py +8 -3
- pulumi_gcp/clouddeploy/custom_target_type_iam_policy.py +5 -0
- pulumi_gcp/clouddeploy/delivery_pipeline.py +162 -157
- pulumi_gcp/clouddeploy/delivery_pipeline_iam_binding.py +8 -3
- pulumi_gcp/clouddeploy/delivery_pipeline_iam_member.py +8 -3
- pulumi_gcp/clouddeploy/delivery_pipeline_iam_policy.py +5 -0
- pulumi_gcp/clouddeploy/get_custom_target_type_iam_policy.py +5 -0
- pulumi_gcp/clouddeploy/get_delivery_pipeline_iam_policy.py +5 -0
- pulumi_gcp/clouddeploy/get_target_iam_policy.py +5 -0
- pulumi_gcp/clouddeploy/outputs.py +5 -0
- pulumi_gcp/clouddeploy/target.py +69 -64
- pulumi_gcp/clouddeploy/target_iam_binding.py +8 -3
- pulumi_gcp/clouddeploy/target_iam_member.py +8 -3
- pulumi_gcp/clouddeploy/target_iam_policy.py +5 -0
- pulumi_gcp/clouddomains/_inputs.py +372 -0
- pulumi_gcp/clouddomains/outputs.py +5 -0
- pulumi_gcp/clouddomains/registration.py +121 -116
- pulumi_gcp/cloudfunctions/_inputs.py +132 -0
- pulumi_gcp/cloudfunctions/function.py +25 -20
- pulumi_gcp/cloudfunctions/function_iam_binding.py +24 -19
- pulumi_gcp/cloudfunctions/function_iam_member.py +24 -19
- pulumi_gcp/cloudfunctions/function_iam_policy.py +21 -16
- pulumi_gcp/cloudfunctions/get_function.py +5 -0
- pulumi_gcp/cloudfunctions/get_function_iam_policy.py +5 -0
- pulumi_gcp/cloudfunctions/outputs.py +5 -0
- pulumi_gcp/cloudfunctionsv2/_inputs.py +357 -0
- pulumi_gcp/cloudfunctionsv2/function.py +514 -509
- pulumi_gcp/cloudfunctionsv2/function_iam_binding.py +24 -19
- pulumi_gcp/cloudfunctionsv2/function_iam_member.py +24 -19
- pulumi_gcp/cloudfunctionsv2/function_iam_policy.py +21 -16
- pulumi_gcp/cloudfunctionsv2/get_function.py +5 -0
- pulumi_gcp/cloudfunctionsv2/get_function_iam_policy.py +5 -0
- pulumi_gcp/cloudfunctionsv2/outputs.py +5 -0
- pulumi_gcp/cloudidentity/_inputs.py +161 -0
- pulumi_gcp/cloudidentity/get_group_lookup.py +9 -4
- pulumi_gcp/cloudidentity/get_group_memberships.py +5 -0
- pulumi_gcp/cloudidentity/get_groups.py +5 -0
- pulumi_gcp/cloudidentity/group.py +18 -13
- pulumi_gcp/cloudidentity/group_membership.py +68 -63
- pulumi_gcp/cloudidentity/outputs.py +5 -0
- pulumi_gcp/cloudids/endpoint.py +5 -0
- pulumi_gcp/cloudquota/_inputs.py +44 -0
- pulumi_gcp/cloudquota/get_s_quota_info.py +5 -0
- pulumi_gcp/cloudquota/get_s_quota_infos.py +5 -0
- pulumi_gcp/cloudquota/outputs.py +5 -0
- pulumi_gcp/cloudquota/s_quota_preference.py +16 -11
- pulumi_gcp/cloudrun/_inputs.py +1165 -15
- pulumi_gcp/cloudrun/domain_mapping.py +49 -44
- pulumi_gcp/cloudrun/get_locations.py +5 -0
- pulumi_gcp/cloudrun/get_service.py +5 -0
- pulumi_gcp/cloudrun/get_service_iam_policy.py +5 -0
- pulumi_gcp/cloudrun/iam_binding.py +24 -19
- pulumi_gcp/cloudrun/iam_member.py +24 -19
- pulumi_gcp/cloudrun/iam_policy.py +21 -16
- pulumi_gcp/cloudrun/outputs.py +5 -0
- pulumi_gcp/cloudrun/service.py +270 -265
- pulumi_gcp/cloudrunv2/_inputs.py +1338 -5
- pulumi_gcp/cloudrunv2/get_job.py +5 -0
- pulumi_gcp/cloudrunv2/get_job_iam_policy.py +5 -0
- pulumi_gcp/cloudrunv2/get_service.py +5 -0
- pulumi_gcp/cloudrunv2/get_service_iam_policy.py +5 -0
- pulumi_gcp/cloudrunv2/job.py +287 -282
- pulumi_gcp/cloudrunv2/job_iam_binding.py +24 -19
- pulumi_gcp/cloudrunv2/job_iam_member.py +24 -19
- pulumi_gcp/cloudrunv2/job_iam_policy.py +21 -16
- pulumi_gcp/cloudrunv2/outputs.py +5 -0
- pulumi_gcp/cloudrunv2/service.py +437 -432
- pulumi_gcp/cloudrunv2/service_iam_binding.py +24 -19
- pulumi_gcp/cloudrunv2/service_iam_member.py +24 -19
- pulumi_gcp/cloudrunv2/service_iam_policy.py +21 -16
- pulumi_gcp/cloudscheduler/_inputs.py +193 -0
- pulumi_gcp/cloudscheduler/job.py +127 -122
- pulumi_gcp/cloudscheduler/outputs.py +5 -0
- pulumi_gcp/cloudtasks/_inputs.py +134 -0
- pulumi_gcp/cloudtasks/get_queue_iam_policy.py +5 -0
- pulumi_gcp/cloudtasks/outputs.py +5 -0
- pulumi_gcp/cloudtasks/queue.py +63 -58
- pulumi_gcp/cloudtasks/queue_iam_binding.py +24 -19
- pulumi_gcp/cloudtasks/queue_iam_member.py +24 -19
- pulumi_gcp/cloudtasks/queue_iam_policy.py +21 -16
- pulumi_gcp/composer/_inputs.py +566 -0
- pulumi_gcp/composer/environment.py +15 -10
- pulumi_gcp/composer/get_environment.py +5 -0
- pulumi_gcp/composer/get_image_versions.py +15 -10
- pulumi_gcp/composer/get_user_workloads_config_map.py +15 -10
- pulumi_gcp/composer/get_user_workloads_secret.py +15 -10
- pulumi_gcp/composer/outputs.py +5 -0
- pulumi_gcp/composer/user_workloads_config_map.py +15 -10
- pulumi_gcp/composer/user_workloads_secret.py +15 -10
- pulumi_gcp/compute/_inputs.py +13512 -145
- pulumi_gcp/compute/address.py +27 -22
- pulumi_gcp/compute/attached_disk.py +21 -16
- pulumi_gcp/compute/autoscaler.py +98 -93
- pulumi_gcp/compute/backend_bucket.py +30 -25
- pulumi_gcp/compute/backend_bucket_iam_binding.py +8 -3
- pulumi_gcp/compute/backend_bucket_iam_member.py +8 -3
- pulumi_gcp/compute/backend_bucket_iam_policy.py +5 -0
- pulumi_gcp/compute/backend_bucket_signed_url_key.py +5 -0
- pulumi_gcp/compute/backend_service.py +204 -199
- pulumi_gcp/compute/backend_service_iam_binding.py +10 -5
- pulumi_gcp/compute/backend_service_iam_member.py +10 -5
- pulumi_gcp/compute/backend_service_iam_policy.py +5 -0
- pulumi_gcp/compute/backend_service_signed_url_key.py +35 -30
- pulumi_gcp/compute/ca_external_account_key.py +5 -0
- pulumi_gcp/compute/disk.py +54 -49
- pulumi_gcp/compute/disk_async_replication.py +10 -5
- pulumi_gcp/compute/disk_iam_binding.py +24 -19
- pulumi_gcp/compute/disk_iam_member.py +24 -19
- pulumi_gcp/compute/disk_iam_policy.py +21 -16
- pulumi_gcp/compute/disk_resource_policy_attachment.py +21 -16
- pulumi_gcp/compute/external_vpn_gateway.py +24 -19
- pulumi_gcp/compute/firewall.py +42 -37
- pulumi_gcp/compute/firewall_policy.py +5 -0
- pulumi_gcp/compute/firewall_policy_association.py +5 -0
- pulumi_gcp/compute/firewall_policy_rule.py +44 -39
- pulumi_gcp/compute/forwarding_rule.py +248 -243
- pulumi_gcp/compute/get_address.py +5 -0
- pulumi_gcp/compute/get_addresses.py +5 -0
- pulumi_gcp/compute/get_backend_bucket.py +5 -0
- pulumi_gcp/compute/get_backend_bucket_iam_policy.py +5 -0
- pulumi_gcp/compute/get_backend_service.py +5 -0
- pulumi_gcp/compute/get_backend_service_iam_policy.py +5 -0
- pulumi_gcp/compute/get_certificate.py +5 -0
- pulumi_gcp/compute/get_default_service_account.py +5 -0
- pulumi_gcp/compute/get_disk.py +13 -8
- pulumi_gcp/compute/get_disk_iam_policy.py +5 -0
- pulumi_gcp/compute/get_forwarding_rule.py +5 -0
- pulumi_gcp/compute/get_forwarding_rules.py +5 -0
- pulumi_gcp/compute/get_global_address.py +5 -0
- pulumi_gcp/compute/get_global_forwarding_rule.py +5 -0
- pulumi_gcp/compute/get_hc_vpn_gateway.py +5 -0
- pulumi_gcp/compute/get_health_check.py +5 -0
- pulumi_gcp/compute/get_image.py +15 -10
- pulumi_gcp/compute/get_image_iam_policy.py +5 -0
- pulumi_gcp/compute/get_instance.py +5 -0
- pulumi_gcp/compute/get_instance_group.py +5 -0
- pulumi_gcp/compute/get_instance_group_manager.py +5 -0
- pulumi_gcp/compute/get_instance_iam_policy.py +5 -0
- pulumi_gcp/compute/get_instance_serial_port.py +29 -24
- pulumi_gcp/compute/get_instance_template.py +5 -0
- pulumi_gcp/compute/get_lbip_ranges.py +5 -0
- pulumi_gcp/compute/get_machine_image_iam_policy.py +5 -0
- pulumi_gcp/compute/get_machine_types.py +5 -0
- pulumi_gcp/compute/get_netblock_ip_ranges.py +5 -0
- pulumi_gcp/compute/get_network.py +5 -0
- pulumi_gcp/compute/get_network_endpoint_group.py +5 -0
- pulumi_gcp/compute/get_network_peering.py +5 -0
- pulumi_gcp/compute/get_networks.py +5 -0
- pulumi_gcp/compute/get_node_types.py +5 -0
- pulumi_gcp/compute/get_region_backend_service_iam_policy.py +5 -0
- pulumi_gcp/compute/get_region_disk.py +5 -0
- pulumi_gcp/compute/get_region_disk_iam_policy.py +5 -0
- pulumi_gcp/compute/get_region_instance_group.py +5 -0
- pulumi_gcp/compute/get_region_instance_template.py +5 -0
- pulumi_gcp/compute/get_region_network_endpoint_group.py +5 -0
- pulumi_gcp/compute/get_region_ssl_certificate.py +5 -0
- pulumi_gcp/compute/get_regions.py +5 -0
- pulumi_gcp/compute/get_reservation.py +5 -0
- pulumi_gcp/compute/get_resource_policy.py +5 -0
- pulumi_gcp/compute/get_router.py +5 -0
- pulumi_gcp/compute/get_router_nat.py +5 -0
- pulumi_gcp/compute/get_router_status.py +5 -0
- pulumi_gcp/compute/get_security_policy.py +5 -0
- pulumi_gcp/compute/get_snapshot.py +5 -0
- pulumi_gcp/compute/get_snapshot_iam_policy.py +5 -0
- pulumi_gcp/compute/get_ssl_policy.py +5 -0
- pulumi_gcp/compute/get_subnetwork.py +5 -0
- pulumi_gcp/compute/get_subnetwork_iam_policy.py +5 -0
- pulumi_gcp/compute/get_subnetworks.py +5 -0
- pulumi_gcp/compute/get_vpn_gateway.py +5 -0
- pulumi_gcp/compute/get_zones.py +5 -0
- pulumi_gcp/compute/global_address.py +5 -0
- pulumi_gcp/compute/global_forwarding_rule.py +211 -206
- pulumi_gcp/compute/global_network_endpoint.py +5 -0
- pulumi_gcp/compute/global_network_endpoint_group.py +5 -0
- pulumi_gcp/compute/ha_vpn_gateway.py +32 -27
- pulumi_gcp/compute/health_check.py +174 -169
- pulumi_gcp/compute/http_health_check.py +5 -0
- pulumi_gcp/compute/https_health_check.py +5 -0
- pulumi_gcp/compute/image.py +50 -45
- pulumi_gcp/compute/image_iam_binding.py +102 -97
- pulumi_gcp/compute/image_iam_member.py +102 -97
- pulumi_gcp/compute/image_iam_policy.py +97 -92
- pulumi_gcp/compute/instance.py +104 -99
- pulumi_gcp/compute/instance_from_machine_image.py +61 -56
- pulumi_gcp/compute/instance_from_template.py +88 -83
- pulumi_gcp/compute/instance_group.py +26 -21
- pulumi_gcp/compute/instance_group_manager.py +138 -133
- pulumi_gcp/compute/instance_group_membership.py +21 -16
- pulumi_gcp/compute/instance_group_named_port.py +13 -8
- pulumi_gcp/compute/instance_iam_binding.py +102 -97
- pulumi_gcp/compute/instance_iam_member.py +102 -97
- pulumi_gcp/compute/instance_iam_policy.py +97 -92
- pulumi_gcp/compute/instance_settings.py +16 -11
- pulumi_gcp/compute/instance_template.py +147 -142
- pulumi_gcp/compute/interconnect.py +14 -9
- pulumi_gcp/compute/interconnect_attachment.py +19 -14
- pulumi_gcp/compute/machine_image.py +48 -43
- pulumi_gcp/compute/machine_image_iam_binding.py +102 -97
- pulumi_gcp/compute/machine_image_iam_member.py +102 -97
- pulumi_gcp/compute/machine_image_iam_policy.py +97 -92
- pulumi_gcp/compute/managed_ssl_certificate.py +40 -35
- pulumi_gcp/compute/manged_ssl_certificate.py +40 -35
- pulumi_gcp/compute/network.py +5 -0
- pulumi_gcp/compute/network_attachment.py +29 -24
- pulumi_gcp/compute/network_edge_security_service.py +5 -0
- pulumi_gcp/compute/network_endpoint.py +23 -18
- pulumi_gcp/compute/network_endpoint_group.py +5 -0
- pulumi_gcp/compute/network_endpoint_list.py +66 -61
- pulumi_gcp/compute/network_firewall_policy.py +5 -0
- pulumi_gcp/compute/network_firewall_policy_association.py +5 -0
- pulumi_gcp/compute/network_firewall_policy_rule.py +41 -36
- pulumi_gcp/compute/network_peering.py +5 -0
- pulumi_gcp/compute/network_peering_routes_config.py +41 -36
- pulumi_gcp/compute/node_group.py +50 -45
- pulumi_gcp/compute/node_template.py +21 -16
- pulumi_gcp/compute/organization_security_policy.py +5 -0
- pulumi_gcp/compute/organization_security_policy_association.py +31 -26
- pulumi_gcp/compute/organization_security_policy_rule.py +36 -31
- pulumi_gcp/compute/outputs.py +5 -0
- pulumi_gcp/compute/packet_mirroring.py +83 -78
- pulumi_gcp/compute/per_instance_config.py +56 -51
- pulumi_gcp/compute/project_cloud_armor_tier.py +5 -0
- pulumi_gcp/compute/project_default_network_tier.py +5 -0
- pulumi_gcp/compute/project_metadata.py +5 -0
- pulumi_gcp/compute/project_metadata_item.py +5 -0
- pulumi_gcp/compute/public_advertised_prefix.py +5 -0
- pulumi_gcp/compute/public_delegated_prefix.py +5 -0
- pulumi_gcp/compute/region_autoscaler.py +60 -55
- pulumi_gcp/compute/region_backend_service.py +203 -198
- pulumi_gcp/compute/region_backend_service_iam_binding.py +10 -5
- pulumi_gcp/compute/region_backend_service_iam_member.py +10 -5
- pulumi_gcp/compute/region_backend_service_iam_policy.py +5 -0
- pulumi_gcp/compute/region_commitment.py +47 -42
- pulumi_gcp/compute/region_disk.py +49 -44
- pulumi_gcp/compute/region_disk_iam_binding.py +24 -19
- pulumi_gcp/compute/region_disk_iam_member.py +24 -19
- pulumi_gcp/compute/region_disk_iam_policy.py +21 -16
- pulumi_gcp/compute/region_disk_resource_policy_attachment.py +21 -16
- pulumi_gcp/compute/region_health_check.py +174 -169
- pulumi_gcp/compute/region_instance_group_manager.py +134 -129
- pulumi_gcp/compute/region_instance_template.py +55 -50
- pulumi_gcp/compute/region_network_endpoint.py +23 -18
- pulumi_gcp/compute/region_network_endpoint_group.py +135 -130
- pulumi_gcp/compute/region_network_firewall_policy.py +5 -0
- pulumi_gcp/compute/region_network_firewall_policy_association.py +5 -0
- pulumi_gcp/compute/region_network_firewall_policy_rule.py +41 -36
- pulumi_gcp/compute/region_per_instance_config.py +66 -61
- pulumi_gcp/compute/region_security_policy.py +49 -44
- pulumi_gcp/compute/region_security_policy_rule.py +161 -156
- pulumi_gcp/compute/region_ssl_certificate.py +5 -0
- pulumi_gcp/compute/region_ssl_policy.py +5 -0
- pulumi_gcp/compute/region_target_http_proxy.py +43 -38
- pulumi_gcp/compute/region_target_https_proxy.py +97 -92
- pulumi_gcp/compute/region_target_tcp_proxy.py +11 -6
- pulumi_gcp/compute/region_url_map.py +824 -819
- pulumi_gcp/compute/reservation.py +29 -24
- pulumi_gcp/compute/resource_policy.py +153 -148
- pulumi_gcp/compute/route.py +17 -12
- pulumi_gcp/compute/router.py +40 -35
- pulumi_gcp/compute/router_interface.py +5 -0
- pulumi_gcp/compute/router_nat.py +98 -93
- pulumi_gcp/compute/router_peer.py +78 -73
- pulumi_gcp/compute/router_status.py +5 -0
- pulumi_gcp/compute/security_policy.py +201 -196
- pulumi_gcp/compute/security_policy_rule.py +80 -75
- pulumi_gcp/compute/security_scan_config.py +15 -10
- pulumi_gcp/compute/service_attachment.py +60 -55
- pulumi_gcp/compute/shared_vpc_host_project.py +5 -0
- pulumi_gcp/compute/shared_vpc_service_project.py +5 -0
- pulumi_gcp/compute/snapshot.py +15 -10
- pulumi_gcp/compute/snapshot_iam_binding.py +24 -19
- pulumi_gcp/compute/snapshot_iam_member.py +24 -19
- pulumi_gcp/compute/snapshot_iam_policy.py +21 -16
- pulumi_gcp/compute/ssl_certificate.py +5 -0
- pulumi_gcp/compute/ssl_policy.py +5 -0
- pulumi_gcp/compute/subnetwork.py +33 -28
- pulumi_gcp/compute/subnetwork_iam_binding.py +102 -97
- pulumi_gcp/compute/subnetwork_iam_member.py +102 -97
- pulumi_gcp/compute/subnetwork_iam_policy.py +97 -92
- pulumi_gcp/compute/target_grpc_proxy.py +129 -124
- pulumi_gcp/compute/target_http_proxy.py +61 -56
- pulumi_gcp/compute/target_https_proxy.py +133 -128
- pulumi_gcp/compute/target_instance.py +63 -58
- pulumi_gcp/compute/target_pool.py +5 -0
- pulumi_gcp/compute/target_ssl_proxy.py +11 -6
- pulumi_gcp/compute/target_tcp_proxy.py +11 -6
- pulumi_gcp/compute/url_map.py +731 -726
- pulumi_gcp/compute/vpn_gateway.py +5 -0
- pulumi_gcp/compute/vpn_tunnel.py +5 -0
- pulumi_gcp/config/__init__.pyi +5 -0
- pulumi_gcp/config/outputs.py +5 -0
- pulumi_gcp/config/vars.py +5 -0
- pulumi_gcp/container/_inputs.py +5502 -823
- pulumi_gcp/container/attached_cluster.py +128 -123
- pulumi_gcp/container/aws_cluster.py +359 -354
- pulumi_gcp/container/aws_node_pool.py +554 -549
- pulumi_gcp/container/azure_client.py +5 -0
- pulumi_gcp/container/azure_cluster.py +133 -128
- pulumi_gcp/container/azure_node_pool.py +115 -110
- pulumi_gcp/container/cluster.py +224 -219
- pulumi_gcp/container/get_attached_install_manifest.py +5 -0
- pulumi_gcp/container/get_attached_versions.py +5 -0
- pulumi_gcp/container/get_aws_versions.py +5 -0
- pulumi_gcp/container/get_azure_versions.py +5 -0
- pulumi_gcp/container/get_cluster.py +5 -0
- pulumi_gcp/container/get_engine_versions.py +5 -0
- pulumi_gcp/container/get_registry_image.py +5 -0
- pulumi_gcp/container/get_registry_repository.py +5 -0
- pulumi_gcp/container/node_pool.py +78 -73
- pulumi_gcp/container/outputs.py +5 -0
- pulumi_gcp/container/registry.py +5 -0
- pulumi_gcp/containeranalysis/_inputs.py +121 -0
- pulumi_gcp/containeranalysis/get_note_iam_policy.py +5 -0
- pulumi_gcp/containeranalysis/note.py +49 -44
- pulumi_gcp/containeranalysis/note_iam_binding.py +24 -19
- pulumi_gcp/containeranalysis/note_iam_member.py +24 -19
- pulumi_gcp/containeranalysis/note_iam_policy.py +21 -16
- pulumi_gcp/containeranalysis/occurence.py +10 -5
- pulumi_gcp/containeranalysis/outputs.py +5 -0
- pulumi_gcp/databasemigrationservice/_inputs.py +578 -0
- pulumi_gcp/databasemigrationservice/connection_profile.py +188 -183
- pulumi_gcp/databasemigrationservice/outputs.py +5 -0
- pulumi_gcp/databasemigrationservice/private_connection.py +20 -15
- pulumi_gcp/datacatalog/_inputs.py +318 -0
- pulumi_gcp/datacatalog/entry.py +20 -15
- pulumi_gcp/datacatalog/entry_group.py +5 -0
- pulumi_gcp/datacatalog/entry_group_iam_binding.py +24 -19
- pulumi_gcp/datacatalog/entry_group_iam_member.py +24 -19
- pulumi_gcp/datacatalog/entry_group_iam_policy.py +21 -16
- pulumi_gcp/datacatalog/get_entry_group_iam_policy.py +5 -0
- pulumi_gcp/datacatalog/get_policy_tag_iam_policy.py +5 -0
- pulumi_gcp/datacatalog/get_tag_template_iam_policy.py +5 -0
- pulumi_gcp/datacatalog/get_taxonomy_iam_policy.py +5 -0
- pulumi_gcp/datacatalog/outputs.py +5 -0
- pulumi_gcp/datacatalog/policy_tag.py +5 -0
- pulumi_gcp/datacatalog/policy_tag_iam_binding.py +24 -19
- pulumi_gcp/datacatalog/policy_tag_iam_member.py +24 -19
- pulumi_gcp/datacatalog/policy_tag_iam_policy.py +21 -16
- pulumi_gcp/datacatalog/tag.py +264 -259
- pulumi_gcp/datacatalog/tag_template.py +76 -71
- pulumi_gcp/datacatalog/tag_template_iam_binding.py +24 -19
- pulumi_gcp/datacatalog/tag_template_iam_member.py +24 -19
- pulumi_gcp/datacatalog/tag_template_iam_policy.py +21 -16
- pulumi_gcp/datacatalog/taxonomy.py +5 -0
- pulumi_gcp/datacatalog/taxonomy_iam_binding.py +24 -19
- pulumi_gcp/datacatalog/taxonomy_iam_member.py +24 -19
- pulumi_gcp/datacatalog/taxonomy_iam_policy.py +21 -16
- pulumi_gcp/dataflow/_inputs.py +316 -0
- pulumi_gcp/dataflow/flex_template_job.py +5 -0
- pulumi_gcp/dataflow/job.py +5 -0
- pulumi_gcp/dataflow/outputs.py +5 -0
- pulumi_gcp/dataflow/pipeline.py +75 -70
- pulumi_gcp/dataform/_inputs.py +251 -0
- pulumi_gcp/dataform/get_repository_iam_policy.py +5 -0
- pulumi_gcp/dataform/outputs.py +5 -0
- pulumi_gcp/dataform/repository.py +41 -36
- pulumi_gcp/dataform/repository_iam_binding.py +8 -3
- pulumi_gcp/dataform/repository_iam_member.py +8 -3
- pulumi_gcp/dataform/repository_iam_policy.py +5 -0
- pulumi_gcp/dataform/repository_release_config.py +58 -53
- pulumi_gcp/dataform/repository_workflow_config.py +94 -89
- pulumi_gcp/datafusion/_inputs.py +64 -0
- pulumi_gcp/datafusion/get_instance_iam_policy.py +5 -0
- pulumi_gcp/datafusion/instance.py +55 -50
- pulumi_gcp/datafusion/outputs.py +5 -0
- pulumi_gcp/dataloss/_inputs.py +6566 -114
- pulumi_gcp/dataloss/outputs.py +5 -0
- pulumi_gcp/dataloss/prevention_deidentify_template.py +226 -221
- pulumi_gcp/dataloss/prevention_discovery_config.py +22 -17
- pulumi_gcp/dataloss/prevention_inspect_template.py +442 -437
- pulumi_gcp/dataloss/prevention_job_trigger.py +701 -696
- pulumi_gcp/dataloss/prevention_stored_info_type.py +62 -57
- pulumi_gcp/dataplex/_inputs.py +1212 -6
- pulumi_gcp/dataplex/aspect_type.py +5 -0
- pulumi_gcp/dataplex/aspect_type_iam_binding.py +24 -19
- pulumi_gcp/dataplex/aspect_type_iam_member.py +24 -19
- pulumi_gcp/dataplex/aspect_type_iam_policy.py +21 -16
- pulumi_gcp/dataplex/asset.py +47 -42
- pulumi_gcp/dataplex/asset_iam_binding.py +24 -19
- pulumi_gcp/dataplex/asset_iam_member.py +24 -19
- pulumi_gcp/dataplex/asset_iam_policy.py +21 -16
- pulumi_gcp/dataplex/datascan.py +289 -284
- pulumi_gcp/dataplex/datascan_iam_binding.py +24 -19
- pulumi_gcp/dataplex/datascan_iam_member.py +24 -19
- pulumi_gcp/dataplex/datascan_iam_policy.py +21 -16
- pulumi_gcp/dataplex/entry_group.py +5 -0
- pulumi_gcp/dataplex/entry_group_iam_binding.py +24 -19
- pulumi_gcp/dataplex/entry_group_iam_member.py +24 -19
- pulumi_gcp/dataplex/entry_group_iam_policy.py +21 -16
- pulumi_gcp/dataplex/entry_type.py +16 -11
- pulumi_gcp/dataplex/entry_type_iam_binding.py +24 -19
- pulumi_gcp/dataplex/entry_type_iam_member.py +24 -19
- pulumi_gcp/dataplex/entry_type_iam_policy.py +21 -16
- pulumi_gcp/dataplex/get_aspect_type_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_asset_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_datascan_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_entry_group_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_entry_type_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_lake_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_task_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_zone_iam_policy.py +5 -0
- pulumi_gcp/dataplex/lake.py +14 -9
- pulumi_gcp/dataplex/lake_iam_binding.py +24 -19
- pulumi_gcp/dataplex/lake_iam_member.py +24 -19
- pulumi_gcp/dataplex/lake_iam_policy.py +21 -16
- pulumi_gcp/dataplex/outputs.py +5 -0
- pulumi_gcp/dataplex/task.py +173 -168
- pulumi_gcp/dataplex/task_iam_binding.py +24 -19
- pulumi_gcp/dataplex/task_iam_member.py +24 -19
- pulumi_gcp/dataplex/task_iam_policy.py +21 -16
- pulumi_gcp/dataplex/zone.py +29 -24
- pulumi_gcp/dataplex/zone_iam_binding.py +24 -19
- pulumi_gcp/dataplex/zone_iam_member.py +24 -19
- pulumi_gcp/dataplex/zone_iam_policy.py +21 -16
- pulumi_gcp/dataproc/_inputs.py +3214 -39
- pulumi_gcp/dataproc/autoscaling_policy.py +50 -45
- pulumi_gcp/dataproc/autoscaling_policy_iam_binding.py +24 -19
- pulumi_gcp/dataproc/autoscaling_policy_iam_member.py +24 -19
- pulumi_gcp/dataproc/autoscaling_policy_iam_policy.py +21 -16
- pulumi_gcp/dataproc/cluster.py +109 -104
- pulumi_gcp/dataproc/cluster_iam_binding.py +24 -19
- pulumi_gcp/dataproc/cluster_iam_member.py +24 -19
- pulumi_gcp/dataproc/cluster_iam_policy.py +21 -16
- pulumi_gcp/dataproc/get_autoscaling_policy_iam_policy.py +5 -0
- pulumi_gcp/dataproc/get_cluster_iam_policy.py +5 -0
- pulumi_gcp/dataproc/get_job_iam_policy.py +5 -0
- pulumi_gcp/dataproc/get_metastore_federation_iam_policy.py +5 -0
- pulumi_gcp/dataproc/get_metastore_service.py +5 -0
- pulumi_gcp/dataproc/get_metastore_service_iam_policy.py +5 -0
- pulumi_gcp/dataproc/job.py +95 -90
- pulumi_gcp/dataproc/job_iam_binding.py +24 -19
- pulumi_gcp/dataproc/job_iam_member.py +24 -19
- pulumi_gcp/dataproc/job_iam_policy.py +21 -16
- pulumi_gcp/dataproc/metastore_federation.py +56 -51
- pulumi_gcp/dataproc/metastore_federation_iam_binding.py +24 -19
- pulumi_gcp/dataproc/metastore_federation_iam_member.py +24 -19
- pulumi_gcp/dataproc/metastore_federation_iam_policy.py +21 -16
- pulumi_gcp/dataproc/metastore_service.py +239 -234
- pulumi_gcp/dataproc/metastore_service_iam_binding.py +24 -19
- pulumi_gcp/dataproc/metastore_service_iam_member.py +24 -19
- pulumi_gcp/dataproc/metastore_service_iam_policy.py +21 -16
- pulumi_gcp/dataproc/outputs.py +5 -0
- pulumi_gcp/dataproc/workflow_template.py +112 -107
- pulumi_gcp/datastore/_inputs.py +22 -0
- pulumi_gcp/datastore/data_store_index.py +26 -21
- pulumi_gcp/datastore/outputs.py +5 -0
- pulumi_gcp/datastream/_inputs.py +1631 -35
- pulumi_gcp/datastream/connection_profile.py +251 -246
- pulumi_gcp/datastream/get_static_ips.py +5 -0
- pulumi_gcp/datastream/outputs.py +5 -0
- pulumi_gcp/datastream/private_connection.py +20 -15
- pulumi_gcp/datastream/stream.py +777 -772
- pulumi_gcp/deploymentmanager/_inputs.py +66 -0
- pulumi_gcp/deploymentmanager/deployment.py +33 -28
- pulumi_gcp/deploymentmanager/outputs.py +5 -0
- pulumi_gcp/diagflow/_inputs.py +2590 -41
- pulumi_gcp/diagflow/agent.py +5 -0
- pulumi_gcp/diagflow/cx_agent.py +75 -70
- pulumi_gcp/diagflow/cx_entity_type.py +37 -32
- pulumi_gcp/diagflow/cx_environment.py +22 -17
- pulumi_gcp/diagflow/cx_flow.py +455 -450
- pulumi_gcp/diagflow/cx_intent.py +55 -50
- pulumi_gcp/diagflow/cx_page.py +718 -713
- pulumi_gcp/diagflow/cx_security_settings.py +69 -64
- pulumi_gcp/diagflow/cx_test_case.py +197 -192
- pulumi_gcp/diagflow/cx_version.py +13 -8
- pulumi_gcp/diagflow/cx_webhook.py +27 -22
- pulumi_gcp/diagflow/entity_type.py +26 -21
- pulumi_gcp/diagflow/fulfillment.py +27 -22
- pulumi_gcp/diagflow/intent.py +7 -2
- pulumi_gcp/diagflow/outputs.py +5 -0
- pulumi_gcp/discoveryengine/_inputs.py +183 -0
- pulumi_gcp/discoveryengine/chat_engine.py +37 -32
- pulumi_gcp/discoveryengine/data_store.py +32 -27
- pulumi_gcp/discoveryengine/outputs.py +5 -0
- pulumi_gcp/discoveryengine/search_engine.py +17 -12
- pulumi_gcp/dns/_inputs.py +589 -0
- pulumi_gcp/dns/dns_managed_zone_iam_binding.py +24 -19
- pulumi_gcp/dns/dns_managed_zone_iam_member.py +24 -19
- pulumi_gcp/dns/dns_managed_zone_iam_policy.py +21 -16
- pulumi_gcp/dns/get_keys.py +13 -8
- pulumi_gcp/dns/get_managed_zone.py +5 -0
- pulumi_gcp/dns/get_managed_zone_iam_policy.py +5 -0
- pulumi_gcp/dns/get_managed_zones.py +5 -0
- pulumi_gcp/dns/get_record_set.py +5 -0
- pulumi_gcp/dns/managed_zone.py +183 -178
- pulumi_gcp/dns/outputs.py +5 -0
- pulumi_gcp/dns/policy.py +47 -42
- pulumi_gcp/dns/record_set.py +100 -95
- pulumi_gcp/dns/response_policy.py +81 -76
- pulumi_gcp/dns/response_policy_rule.py +38 -33
- pulumi_gcp/edgecontainer/_inputs.py +464 -0
- pulumi_gcp/edgecontainer/cluster.py +152 -147
- pulumi_gcp/edgecontainer/node_pool.py +109 -104
- pulumi_gcp/edgecontainer/outputs.py +5 -0
- pulumi_gcp/edgecontainer/vpn_connection.py +36 -31
- pulumi_gcp/edgenetwork/network.py +5 -0
- pulumi_gcp/edgenetwork/subnet.py +5 -0
- pulumi_gcp/endpoints/_inputs.py +101 -0
- pulumi_gcp/endpoints/consumers_iam_binding.py +8 -3
- pulumi_gcp/endpoints/consumers_iam_member.py +8 -3
- pulumi_gcp/endpoints/consumers_iam_policy.py +5 -0
- pulumi_gcp/endpoints/get_service_consumers_iam_policy.py +5 -0
- pulumi_gcp/endpoints/get_service_iam_policy.py +5 -0
- pulumi_gcp/endpoints/outputs.py +5 -0
- pulumi_gcp/endpoints/service.py +9 -4
- pulumi_gcp/endpoints/service_iam_binding.py +24 -19
- pulumi_gcp/endpoints/service_iam_member.py +24 -19
- pulumi_gcp/endpoints/service_iam_policy.py +21 -16
- pulumi_gcp/essentialcontacts/_inputs.py +313 -0
- pulumi_gcp/essentialcontacts/contact.py +5 -0
- pulumi_gcp/essentialcontacts/document_ai_processor.py +5 -0
- pulumi_gcp/essentialcontacts/document_ai_processor_default_version.py +5 -0
- pulumi_gcp/essentialcontacts/document_ai_warehouse_document_schema.py +40 -35
- pulumi_gcp/essentialcontacts/document_ai_warehouse_location.py +5 -0
- pulumi_gcp/essentialcontacts/outputs.py +5 -0
- pulumi_gcp/eventarc/_inputs.py +145 -0
- pulumi_gcp/eventarc/channel.py +5 -0
- pulumi_gcp/eventarc/google_channel_config.py +5 -0
- pulumi_gcp/eventarc/outputs.py +5 -0
- pulumi_gcp/eventarc/trigger.py +78 -73
- pulumi_gcp/filestore/_inputs.py +108 -0
- pulumi_gcp/filestore/backup.py +23 -18
- pulumi_gcp/filestore/get_instance.py +5 -0
- pulumi_gcp/filestore/instance.py +107 -102
- pulumi_gcp/filestore/outputs.py +5 -0
- pulumi_gcp/filestore/snapshot.py +37 -32
- pulumi_gcp/firebase/_inputs.py +511 -0
- pulumi_gcp/firebase/android_app.py +21 -16
- pulumi_gcp/firebase/app_check_app_attest_config.py +5 -0
- pulumi_gcp/firebase/app_check_debug_token.py +5 -0
- pulumi_gcp/firebase/app_check_device_check_config.py +5 -0
- pulumi_gcp/firebase/app_check_play_integrity_config.py +5 -0
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +5 -0
- pulumi_gcp/firebase/app_check_recaptcha_v3_config.py +5 -0
- pulumi_gcp/firebase/app_check_service_config.py +5 -0
- pulumi_gcp/firebase/apple_app.py +15 -10
- pulumi_gcp/firebase/database_instance.py +5 -0
- pulumi_gcp/firebase/extensions_instance.py +30 -25
- pulumi_gcp/firebase/get_android_app.py +5 -0
- pulumi_gcp/firebase/get_android_app_config.py +5 -0
- pulumi_gcp/firebase/get_apple_app.py +5 -0
- pulumi_gcp/firebase/get_apple_app_config.py +5 -0
- pulumi_gcp/firebase/get_hosting_channel.py +5 -0
- pulumi_gcp/firebase/get_web_app.py +5 -0
- pulumi_gcp/firebase/get_web_app_config.py +5 -0
- pulumi_gcp/firebase/hosting_channel.py +5 -0
- pulumi_gcp/firebase/hosting_custom_domain.py +39 -34
- pulumi_gcp/firebase/hosting_release.py +33 -28
- pulumi_gcp/firebase/hosting_site.py +5 -0
- pulumi_gcp/firebase/hosting_version.py +76 -71
- pulumi_gcp/firebase/outputs.py +5 -0
- pulumi_gcp/firebase/project.py +5 -0
- pulumi_gcp/firebase/storage_bucket.py +5 -0
- pulumi_gcp/firebase/web_app.py +15 -10
- pulumi_gcp/firebaserules/_inputs.py +51 -0
- pulumi_gcp/firebaserules/outputs.py +5 -0
- pulumi_gcp/firebaserules/release.py +5 -0
- pulumi_gcp/firebaserules/ruleset.py +40 -35
- pulumi_gcp/firestore/_inputs.py +154 -0
- pulumi_gcp/firestore/backup_schedule.py +23 -18
- pulumi_gcp/firestore/database.py +22 -17
- pulumi_gcp/firestore/document.py +5 -0
- pulumi_gcp/firestore/field.py +63 -58
- pulumi_gcp/firestore/index.py +72 -67
- pulumi_gcp/firestore/outputs.py +5 -0
- pulumi_gcp/folder/_inputs.py +165 -0
- pulumi_gcp/folder/access_approval_settings.py +28 -23
- pulumi_gcp/folder/get_iam_policy.py +5 -0
- pulumi_gcp/folder/get_organization_policy.py +5 -0
- pulumi_gcp/folder/iam_audit_config.py +130 -125
- pulumi_gcp/folder/iam_binding.py +8 -3
- pulumi_gcp/folder/iam_member.py +130 -125
- pulumi_gcp/folder/iam_policy.py +125 -120
- pulumi_gcp/folder/organization_policy.py +54 -49
- pulumi_gcp/folder/outputs.py +5 -0
- pulumi_gcp/gkebackup/_inputs.py +694 -0
- pulumi_gcp/gkebackup/backup_plan.py +436 -431
- pulumi_gcp/gkebackup/backup_plan_iam_binding.py +24 -19
- pulumi_gcp/gkebackup/backup_plan_iam_member.py +24 -19
- pulumi_gcp/gkebackup/backup_plan_iam_policy.py +21 -16
- pulumi_gcp/gkebackup/get_backup_plan_iam_policy.py +5 -0
- pulumi_gcp/gkebackup/get_restore_plan_iam_policy.py +5 -0
- pulumi_gcp/gkebackup/outputs.py +5 -0
- pulumi_gcp/gkebackup/restore_plan.py +580 -575
- pulumi_gcp/gkebackup/restore_plan_iam_binding.py +578 -573
- pulumi_gcp/gkebackup/restore_plan_iam_member.py +578 -573
- pulumi_gcp/gkebackup/restore_plan_iam_policy.py +575 -570
- pulumi_gcp/gkehub/_inputs.py +1204 -6
- pulumi_gcp/gkehub/feature.py +319 -314
- pulumi_gcp/gkehub/feature_iam_binding.py +24 -19
- pulumi_gcp/gkehub/feature_iam_member.py +24 -19
- pulumi_gcp/gkehub/feature_iam_policy.py +21 -16
- pulumi_gcp/gkehub/feature_membership.py +184 -179
- pulumi_gcp/gkehub/fleet.py +24 -19
- pulumi_gcp/gkehub/get_feature_iam_policy.py +5 -0
- pulumi_gcp/gkehub/get_membership_iam_policy.py +5 -0
- pulumi_gcp/gkehub/get_scope_iam_policy.py +5 -0
- pulumi_gcp/gkehub/membership.py +57 -52
- pulumi_gcp/gkehub/membership_binding.py +17 -12
- pulumi_gcp/gkehub/membership_iam_binding.py +24 -19
- pulumi_gcp/gkehub/membership_iam_member.py +24 -19
- pulumi_gcp/gkehub/membership_iam_policy.py +21 -16
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +28 -23
- pulumi_gcp/gkehub/namespace.py +7 -2
- pulumi_gcp/gkehub/outputs.py +5 -0
- pulumi_gcp/gkehub/scope.py +7 -2
- pulumi_gcp/gkehub/scope_iam_binding.py +24 -19
- pulumi_gcp/gkehub/scope_iam_member.py +24 -19
- pulumi_gcp/gkehub/scope_iam_policy.py +21 -16
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +18 -13
- pulumi_gcp/gkeonprem/_inputs.py +2318 -18
- pulumi_gcp/gkeonprem/bare_metal_admin_cluster.py +335 -330
- pulumi_gcp/gkeonprem/bare_metal_cluster.py +528 -523
- pulumi_gcp/gkeonprem/bare_metal_node_pool.py +262 -257
- pulumi_gcp/gkeonprem/outputs.py +5 -0
- pulumi_gcp/gkeonprem/v_mware_cluster.py +399 -394
- pulumi_gcp/gkeonprem/v_mware_node_pool.py +89 -84
- pulumi_gcp/healthcare/_inputs.py +316 -0
- pulumi_gcp/healthcare/consent_store.py +5 -0
- pulumi_gcp/healthcare/consent_store_iam_binding.py +24 -19
- pulumi_gcp/healthcare/consent_store_iam_member.py +24 -19
- pulumi_gcp/healthcare/consent_store_iam_policy.py +21 -16
- pulumi_gcp/healthcare/dataset.py +5 -0
- pulumi_gcp/healthcare/dataset_iam_binding.py +24 -19
- pulumi_gcp/healthcare/dataset_iam_member.py +24 -19
- pulumi_gcp/healthcare/dataset_iam_policy.py +21 -16
- pulumi_gcp/healthcare/dicom_store.py +39 -34
- pulumi_gcp/healthcare/dicom_store_iam_binding.py +24 -19
- pulumi_gcp/healthcare/dicom_store_iam_member.py +24 -19
- pulumi_gcp/healthcare/dicom_store_iam_policy.py +21 -16
- pulumi_gcp/healthcare/fhir_store.py +62 -57
- pulumi_gcp/healthcare/fhir_store_iam_binding.py +24 -19
- pulumi_gcp/healthcare/fhir_store_iam_member.py +24 -19
- pulumi_gcp/healthcare/fhir_store_iam_policy.py +21 -16
- pulumi_gcp/healthcare/get_consent_store_iam_policy.py +5 -0
- pulumi_gcp/healthcare/get_dataset_iam_policy.py +5 -0
- pulumi_gcp/healthcare/get_dicom_store_iam_policy.py +5 -0
- pulumi_gcp/healthcare/get_fhir_store_iam_policy.py +5 -0
- pulumi_gcp/healthcare/get_hl7_v2_store_iam_policy.py +5 -0
- pulumi_gcp/healthcare/hl7_store.py +46 -41
- pulumi_gcp/healthcare/hl7_store_iam_binding.py +24 -19
- pulumi_gcp/healthcare/hl7_store_iam_member.py +24 -19
- pulumi_gcp/healthcare/hl7_store_iam_policy.py +21 -16
- pulumi_gcp/healthcare/outputs.py +5 -0
- pulumi_gcp/iam/_inputs.py +433 -0
- pulumi_gcp/iam/access_boundary_policy.py +54 -49
- pulumi_gcp/iam/deny_policy.py +56 -51
- pulumi_gcp/iam/get_rule.py +5 -0
- pulumi_gcp/iam/get_testable_permissions.py +5 -0
- pulumi_gcp/iam/get_workload_identity_pool.py +5 -0
- pulumi_gcp/iam/get_workload_identity_pool_provider.py +5 -0
- pulumi_gcp/iam/outputs.py +5 -0
- pulumi_gcp/iam/workforce_pool.py +22 -17
- pulumi_gcp/iam/workforce_pool_provider.py +184 -179
- pulumi_gcp/iam/workload_identity_pool.py +5 -0
- pulumi_gcp/iam/workload_identity_pool_provider.py +68 -63
- pulumi_gcp/iap/_inputs.py +411 -0
- pulumi_gcp/iap/app_engine_service_iam_binding.py +102 -97
- pulumi_gcp/iap/app_engine_service_iam_member.py +102 -97
- pulumi_gcp/iap/app_engine_service_iam_policy.py +97 -92
- pulumi_gcp/iap/app_engine_version_iam_binding.py +102 -97
- pulumi_gcp/iap/app_engine_version_iam_member.py +102 -97
- pulumi_gcp/iap/app_engine_version_iam_policy.py +97 -92
- pulumi_gcp/iap/brand.py +5 -0
- pulumi_gcp/iap/client.py +5 -0
- pulumi_gcp/iap/get_app_engine_service_iam_policy.py +5 -0
- pulumi_gcp/iap/get_app_engine_version_iam_policy.py +5 -0
- pulumi_gcp/iap/get_client.py +5 -0
- pulumi_gcp/iap/get_tunnel_dest_group_iam_policy.py +5 -0
- pulumi_gcp/iap/get_tunnel_iam_policy.py +5 -0
- pulumi_gcp/iap/get_tunnel_instance_iam_policy.py +5 -0
- pulumi_gcp/iap/get_web_backend_service_iam_policy.py +5 -0
- pulumi_gcp/iap/get_web_iam_policy.py +5 -0
- pulumi_gcp/iap/get_web_region_backend_service_iam_policy.py +5 -0
- pulumi_gcp/iap/get_web_type_app_engine_iam_policy.py +5 -0
- pulumi_gcp/iap/get_web_type_compute_iam_policy.py +5 -0
- pulumi_gcp/iap/outputs.py +5 -0
- pulumi_gcp/iap/tunnel_dest_group.py +5 -0
- pulumi_gcp/iap/tunnel_dest_group_iam_binding.py +102 -97
- pulumi_gcp/iap/tunnel_dest_group_iam_member.py +102 -97
- pulumi_gcp/iap/tunnel_dest_group_iam_policy.py +97 -92
- pulumi_gcp/iap/tunnel_iam_binding.py +102 -97
- pulumi_gcp/iap/tunnel_iam_member.py +102 -97
- pulumi_gcp/iap/tunnel_iam_policy.py +97 -92
- pulumi_gcp/iap/tunnel_instance_iam_binding.py +102 -97
- pulumi_gcp/iap/tunnel_instance_iam_member.py +102 -97
- pulumi_gcp/iap/tunnel_instance_iam_policy.py +97 -92
- pulumi_gcp/iap/web_backend_service_iam_binding.py +102 -97
- pulumi_gcp/iap/web_backend_service_iam_member.py +102 -97
- pulumi_gcp/iap/web_backend_service_iam_policy.py +97 -92
- pulumi_gcp/iap/web_iam_binding.py +102 -97
- pulumi_gcp/iap/web_iam_member.py +102 -97
- pulumi_gcp/iap/web_iam_policy.py +97 -92
- pulumi_gcp/iap/web_region_backend_service_iam_binding.py +102 -97
- pulumi_gcp/iap/web_region_backend_service_iam_member.py +102 -97
- pulumi_gcp/iap/web_region_backend_service_iam_policy.py +97 -92
- pulumi_gcp/iap/web_type_app_enging_iam_binding.py +102 -97
- pulumi_gcp/iap/web_type_app_enging_iam_member.py +102 -97
- pulumi_gcp/iap/web_type_app_enging_iam_policy.py +97 -92
- pulumi_gcp/iap/web_type_compute_iam_binding.py +102 -97
- pulumi_gcp/iap/web_type_compute_iam_member.py +102 -97
- pulumi_gcp/iap/web_type_compute_iam_policy.py +97 -92
- pulumi_gcp/identityplatform/_inputs.py +576 -0
- pulumi_gcp/identityplatform/config.py +119 -114
- pulumi_gcp/identityplatform/default_supported_idp_config.py +5 -0
- pulumi_gcp/identityplatform/inbound_saml_config.py +39 -34
- pulumi_gcp/identityplatform/oauth_idp_config.py +5 -0
- pulumi_gcp/identityplatform/outputs.py +5 -0
- pulumi_gcp/identityplatform/project_default_config.py +38 -33
- pulumi_gcp/identityplatform/tenant.py +5 -0
- pulumi_gcp/identityplatform/tenant_default_supported_idp_config.py +5 -0
- pulumi_gcp/identityplatform/tenant_inbound_saml_config.py +39 -34
- pulumi_gcp/identityplatform/tenant_oauth_idp_config.py +5 -0
- pulumi_gcp/integrationconnectors/_inputs.py +868 -0
- pulumi_gcp/integrationconnectors/connection.py +465 -460
- pulumi_gcp/integrationconnectors/endpoint_attachment.py +5 -0
- pulumi_gcp/integrationconnectors/managed_zone.py +15 -10
- pulumi_gcp/integrationconnectors/outputs.py +5 -0
- pulumi_gcp/kms/_inputs.py +303 -0
- pulumi_gcp/kms/autokey_config.py +5 -0
- pulumi_gcp/kms/crypto_key.py +18 -13
- pulumi_gcp/kms/crypto_key_iam_binding.py +56 -51
- pulumi_gcp/kms/crypto_key_iam_member.py +56 -51
- pulumi_gcp/kms/crypto_key_iam_policy.py +51 -46
- pulumi_gcp/kms/crypto_key_version.py +12 -7
- pulumi_gcp/kms/ekm_connection.py +24 -19
- pulumi_gcp/kms/get_crypto_key_iam_policy.py +5 -0
- pulumi_gcp/kms/get_key_ring_iam_policy.py +5 -0
- pulumi_gcp/kms/get_kms_crypto_key.py +5 -0
- pulumi_gcp/kms/get_kms_crypto_key_version.py +5 -0
- pulumi_gcp/kms/get_kms_key_ring.py +5 -0
- pulumi_gcp/kms/get_kms_secret.py +11 -6
- pulumi_gcp/kms/get_kms_secret_asymmetric.py +17 -12
- pulumi_gcp/kms/get_kms_secret_ciphertext.py +23 -18
- pulumi_gcp/kms/key_handle.py +5 -0
- pulumi_gcp/kms/key_ring.py +5 -0
- pulumi_gcp/kms/key_ring_iam_binding.py +102 -97
- pulumi_gcp/kms/key_ring_iam_member.py +102 -97
- pulumi_gcp/kms/key_ring_iam_policy.py +97 -92
- pulumi_gcp/kms/key_ring_import_job.py +9 -4
- pulumi_gcp/kms/outputs.py +5 -0
- pulumi_gcp/kms/secret_ciphertext.py +23 -18
- pulumi_gcp/logging/_inputs.py +520 -0
- pulumi_gcp/logging/billing_account_bucket_config.py +15 -10
- pulumi_gcp/logging/billing_account_exclusion.py +5 -0
- pulumi_gcp/logging/billing_account_sink.py +15 -10
- pulumi_gcp/logging/folder_bucket_config.py +15 -10
- pulumi_gcp/logging/folder_exclusion.py +5 -0
- pulumi_gcp/logging/folder_settings.py +5 -0
- pulumi_gcp/logging/folder_sink.py +15 -10
- pulumi_gcp/logging/get_folder_settings.py +5 -0
- pulumi_gcp/logging/get_log_view_iam_policy.py +5 -0
- pulumi_gcp/logging/get_organization_settings.py +5 -0
- pulumi_gcp/logging/get_project_cmek_settings.py +5 -0
- pulumi_gcp/logging/get_project_settings.py +5 -0
- pulumi_gcp/logging/get_sink.py +5 -0
- pulumi_gcp/logging/linked_dataset.py +10 -5
- pulumi_gcp/logging/log_view.py +5 -0
- pulumi_gcp/logging/log_view_iam_binding.py +10 -5
- pulumi_gcp/logging/log_view_iam_member.py +10 -5
- pulumi_gcp/logging/log_view_iam_policy.py +5 -0
- pulumi_gcp/logging/metric.py +97 -92
- pulumi_gcp/logging/organization_bucket_config.py +15 -10
- pulumi_gcp/logging/organization_exclusion.py +5 -0
- pulumi_gcp/logging/organization_settings.py +5 -0
- pulumi_gcp/logging/organization_sink.py +15 -10
- pulumi_gcp/logging/outputs.py +5 -0
- pulumi_gcp/logging/project_bucket_config.py +21 -16
- pulumi_gcp/logging/project_exclusion.py +5 -0
- pulumi_gcp/logging/project_sink.py +15 -10
- pulumi_gcp/looker/_inputs.py +211 -0
- pulumi_gcp/looker/instance.py +204 -199
- pulumi_gcp/looker/outputs.py +5 -0
- pulumi_gcp/managedkafka/_inputs.py +69 -0
- pulumi_gcp/managedkafka/cluster.py +72 -67
- pulumi_gcp/managedkafka/outputs.py +5 -0
- pulumi_gcp/managedkafka/topic.py +27 -22
- pulumi_gcp/memcache/_inputs.py +184 -0
- pulumi_gcp/memcache/instance.py +56 -51
- pulumi_gcp/memcache/outputs.py +5 -0
- pulumi_gcp/migrationcenter/_inputs.py +182 -0
- pulumi_gcp/migrationcenter/group.py +5 -0
- pulumi_gcp/migrationcenter/outputs.py +5 -0
- pulumi_gcp/migrationcenter/preference_set.py +82 -77
- pulumi_gcp/ml/_inputs.py +17 -0
- pulumi_gcp/ml/engine_model.py +10 -5
- pulumi_gcp/ml/outputs.py +5 -0
- pulumi_gcp/monitoring/_inputs.py +1651 -12
- pulumi_gcp/monitoring/alert_policy.py +128 -123
- pulumi_gcp/monitoring/custom_service.py +16 -11
- pulumi_gcp/monitoring/dashboard.py +5 -0
- pulumi_gcp/monitoring/generic_service.py +20 -15
- pulumi_gcp/monitoring/get_app_engine_service.py +21 -16
- pulumi_gcp/monitoring/get_cluster_istio_service.py +5 -0
- pulumi_gcp/monitoring/get_istio_canonical_service.py +5 -0
- pulumi_gcp/monitoring/get_mesh_istio_service.py +5 -0
- pulumi_gcp/monitoring/get_notification_channel.py +29 -24
- pulumi_gcp/monitoring/get_secret_version.py +5 -0
- pulumi_gcp/monitoring/get_uptime_check_i_ps.py +5 -0
- pulumi_gcp/monitoring/group.py +5 -0
- pulumi_gcp/monitoring/metric_descriptor.py +49 -44
- pulumi_gcp/monitoring/monitored_project.py +5 -0
- pulumi_gcp/monitoring/notification_channel.py +16 -11
- pulumi_gcp/monitoring/outputs.py +5 -0
- pulumi_gcp/monitoring/slo.py +120 -115
- pulumi_gcp/monitoring/uptime_check_config.py +241 -236
- pulumi_gcp/netapp/_inputs.py +311 -0
- pulumi_gcp/netapp/active_directory.py +5 -0
- pulumi_gcp/netapp/backup.py +11 -6
- pulumi_gcp/netapp/backup_policy.py +5 -0
- pulumi_gcp/netapp/backup_vault.py +5 -0
- pulumi_gcp/netapp/kmsconfig.py +5 -0
- pulumi_gcp/netapp/outputs.py +5 -0
- pulumi_gcp/netapp/storage_pool.py +5 -0
- pulumi_gcp/netapp/volume.py +27 -22
- pulumi_gcp/netapp/volume_replication.py +24 -19
- pulumi_gcp/netapp/volume_snapshot.py +5 -0
- pulumi_gcp/networkconnectivity/_inputs.py +253 -0
- pulumi_gcp/networkconnectivity/hub.py +7 -2
- pulumi_gcp/networkconnectivity/internal_range.py +5 -0
- pulumi_gcp/networkconnectivity/outputs.py +5 -0
- pulumi_gcp/networkconnectivity/policy_based_route.py +46 -41
- pulumi_gcp/networkconnectivity/regional_endpoint.py +5 -0
- pulumi_gcp/networkconnectivity/service_connection_policy.py +20 -15
- pulumi_gcp/networkconnectivity/spoke.py +71 -66
- pulumi_gcp/networkmanagement/_inputs.py +87 -0
- pulumi_gcp/networkmanagement/connectivity_test.py +85 -80
- pulumi_gcp/networkmanagement/outputs.py +5 -0
- pulumi_gcp/networksecurity/_inputs.py +321 -0
- pulumi_gcp/networksecurity/address_group.py +5 -0
- pulumi_gcp/networksecurity/address_group_iam_binding.py +8 -3
- pulumi_gcp/networksecurity/address_group_iam_member.py +8 -3
- pulumi_gcp/networksecurity/address_group_iam_policy.py +5 -0
- pulumi_gcp/networksecurity/authorization_policy.py +52 -47
- pulumi_gcp/networksecurity/client_tls_policy.py +45 -40
- pulumi_gcp/networksecurity/firewall_endpoint.py +5 -0
- pulumi_gcp/networksecurity/firewall_endpoint_association.py +5 -0
- pulumi_gcp/networksecurity/gateway_security_policy.py +91 -86
- pulumi_gcp/networksecurity/gateway_security_policy_rule.py +5 -0
- pulumi_gcp/networksecurity/get_address_group_iam_policy.py +5 -0
- pulumi_gcp/networksecurity/outputs.py +5 -0
- pulumi_gcp/networksecurity/security_profile.py +40 -35
- pulumi_gcp/networksecurity/security_profile_group.py +5 -0
- pulumi_gcp/networksecurity/server_tls_policy.py +101 -96
- pulumi_gcp/networksecurity/tls_inspection_policy.py +193 -188
- pulumi_gcp/networksecurity/url_list.py +5 -0
- pulumi_gcp/networkservices/_inputs.py +1781 -29
- pulumi_gcp/networkservices/edge_cache_keyset.py +51 -46
- pulumi_gcp/networkservices/edge_cache_origin.py +89 -84
- pulumi_gcp/networkservices/edge_cache_service.py +567 -562
- pulumi_gcp/networkservices/endpoint_policy.py +55 -50
- pulumi_gcp/networkservices/gateway.py +21 -16
- pulumi_gcp/networkservices/grpc_route.py +146 -141
- pulumi_gcp/networkservices/http_route.py +294 -289
- pulumi_gcp/networkservices/lb_route_extension.py +10 -5
- pulumi_gcp/networkservices/lb_traffic_extension.py +10 -5
- pulumi_gcp/networkservices/mesh.py +5 -0
- pulumi_gcp/networkservices/outputs.py +5 -0
- pulumi_gcp/networkservices/service_binding.py +5 -0
- pulumi_gcp/networkservices/service_lb_policies.py +27 -22
- pulumi_gcp/networkservices/tcp_route.py +106 -101
- pulumi_gcp/networkservices/tls_route.py +82 -77
- pulumi_gcp/notebooks/_inputs.py +615 -0
- pulumi_gcp/notebooks/environment.py +21 -16
- pulumi_gcp/notebooks/get_instance_iam_policy.py +5 -0
- pulumi_gcp/notebooks/get_runtime_iam_policy.py +5 -0
- pulumi_gcp/notebooks/instance.py +78 -73
- pulumi_gcp/notebooks/instance_iam_binding.py +24 -19
- pulumi_gcp/notebooks/instance_iam_member.py +24 -19
- pulumi_gcp/notebooks/instance_iam_policy.py +21 -16
- pulumi_gcp/notebooks/location.py +5 -0
- pulumi_gcp/notebooks/outputs.py +5 -0
- pulumi_gcp/notebooks/runtime.py +222 -217
- pulumi_gcp/notebooks/runtime_iam_binding.py +24 -19
- pulumi_gcp/notebooks/runtime_iam_member.py +24 -19
- pulumi_gcp/notebooks/runtime_iam_policy.py +21 -16
- pulumi_gcp/organizations/_inputs.py +231 -0
- pulumi_gcp/organizations/access_approval_settings.py +36 -31
- pulumi_gcp/organizations/folder.py +5 -0
- pulumi_gcp/organizations/get_active_folder.py +5 -0
- pulumi_gcp/organizations/get_billing_account.py +5 -0
- pulumi_gcp/organizations/get_client_config.py +5 -0
- pulumi_gcp/organizations/get_client_open_id_user_info.py +5 -0
- pulumi_gcp/organizations/get_folder.py +5 -0
- pulumi_gcp/organizations/get_folders.py +5 -0
- pulumi_gcp/organizations/get_iam_policy.py +13 -8
- pulumi_gcp/organizations/get_organization.py +5 -0
- pulumi_gcp/organizations/get_project.py +5 -0
- pulumi_gcp/organizations/iam_audit_config.py +18 -13
- pulumi_gcp/organizations/iam_binding.py +8 -3
- pulumi_gcp/organizations/iam_custom_role.py +5 -0
- pulumi_gcp/organizations/iam_member.py +130 -125
- pulumi_gcp/organizations/iam_policy.py +125 -120
- pulumi_gcp/organizations/outputs.py +5 -0
- pulumi_gcp/organizations/policy.py +54 -49
- pulumi_gcp/organizations/project.py +5 -0
- pulumi_gcp/orgpolicy/_inputs.py +183 -0
- pulumi_gcp/orgpolicy/custom_constraint.py +15 -10
- pulumi_gcp/orgpolicy/outputs.py +5 -0
- pulumi_gcp/orgpolicy/policy.py +103 -98
- pulumi_gcp/osconfig/_inputs.py +2235 -30
- pulumi_gcp/osconfig/guest_policies.py +171 -166
- pulumi_gcp/osconfig/os_policy_assignment.py +158 -153
- pulumi_gcp/osconfig/outputs.py +5 -0
- pulumi_gcp/osconfig/patch_deployment.py +326 -321
- pulumi_gcp/oslogin/ssh_public_key.py +5 -0
- pulumi_gcp/parallelstore/instance.py +5 -0
- pulumi_gcp/privilegedaccessmanager/_inputs.py +170 -0
- pulumi_gcp/privilegedaccessmanager/entitlement.py +94 -89
- pulumi_gcp/privilegedaccessmanager/outputs.py +5 -0
- pulumi_gcp/projects/_inputs.py +262 -0
- pulumi_gcp/projects/access_approval_settings.py +30 -25
- pulumi_gcp/projects/api_key.py +88 -83
- pulumi_gcp/projects/default_service_accounts.py +5 -0
- pulumi_gcp/projects/get_iam_policy.py +5 -0
- pulumi_gcp/projects/get_organization_policy.py +5 -0
- pulumi_gcp/projects/get_project.py +5 -0
- pulumi_gcp/projects/get_project_service.py +5 -0
- pulumi_gcp/projects/iam_audit_config.py +130 -125
- pulumi_gcp/projects/iam_binding.py +130 -125
- pulumi_gcp/projects/iam_custom_role.py +5 -0
- pulumi_gcp/projects/iam_member.py +130 -125
- pulumi_gcp/projects/iam_member_remove.py +5 -0
- pulumi_gcp/projects/iam_policy.py +125 -120
- pulumi_gcp/projects/organization_policy.py +54 -49
- pulumi_gcp/projects/outputs.py +5 -0
- pulumi_gcp/projects/service.py +5 -0
- pulumi_gcp/projects/service_identity.py +5 -0
- pulumi_gcp/projects/usage_export_bucket.py +5 -0
- pulumi_gcp/provider.py +7 -2
- pulumi_gcp/pubsub/_inputs.py +438 -0
- pulumi_gcp/pubsub/get_schema_iam_policy.py +5 -0
- pulumi_gcp/pubsub/get_subscription.py +5 -0
- pulumi_gcp/pubsub/get_subscription_iam_policy.py +5 -0
- pulumi_gcp/pubsub/get_topic.py +5 -0
- pulumi_gcp/pubsub/get_topic_iam_policy.py +5 -0
- pulumi_gcp/pubsub/lite_reservation.py +5 -0
- pulumi_gcp/pubsub/lite_subscription.py +36 -31
- pulumi_gcp/pubsub/lite_topic.py +46 -41
- pulumi_gcp/pubsub/outputs.py +5 -0
- pulumi_gcp/pubsub/schema.py +13 -8
- pulumi_gcp/pubsub/schema_iam_binding.py +24 -19
- pulumi_gcp/pubsub/schema_iam_member.py +24 -19
- pulumi_gcp/pubsub/schema_iam_policy.py +21 -16
- pulumi_gcp/pubsub/subscription.py +141 -136
- pulumi_gcp/pubsub/subscription_iam_binding.py +24 -19
- pulumi_gcp/pubsub/subscription_iam_member.py +24 -19
- pulumi_gcp/pubsub/subscription_iam_policy.py +21 -16
- pulumi_gcp/pubsub/topic.py +50 -45
- pulumi_gcp/pubsub/topic_iam_binding.py +24 -19
- pulumi_gcp/pubsub/topic_iam_member.py +24 -19
- pulumi_gcp/pubsub/topic_iam_policy.py +21 -16
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/recaptcha/_inputs.py +89 -0
- pulumi_gcp/recaptcha/enterprise_key.py +132 -127
- pulumi_gcp/recaptcha/outputs.py +5 -0
- pulumi_gcp/redis/_inputs.py +321 -0
- pulumi_gcp/redis/cluster.py +59 -54
- pulumi_gcp/redis/get_instance.py +5 -0
- pulumi_gcp/redis/instance.py +51 -46
- pulumi_gcp/redis/outputs.py +5 -0
- pulumi_gcp/resourcemanager/lien.py +5 -0
- pulumi_gcp/runtimeconfig/_inputs.py +25 -0
- pulumi_gcp/runtimeconfig/config.py +5 -0
- pulumi_gcp/runtimeconfig/config_iam_binding.py +8 -3
- pulumi_gcp/runtimeconfig/config_iam_member.py +8 -3
- pulumi_gcp/runtimeconfig/config_iam_policy.py +5 -0
- pulumi_gcp/runtimeconfig/get_config.py +5 -0
- pulumi_gcp/runtimeconfig/get_config_iam_policy.py +5 -0
- pulumi_gcp/runtimeconfig/get_variable.py +5 -0
- pulumi_gcp/runtimeconfig/outputs.py +5 -0
- pulumi_gcp/runtimeconfig/variable.py +5 -0
- pulumi_gcp/secretmanager/_inputs.py +143 -0
- pulumi_gcp/secretmanager/get_secret.py +5 -0
- pulumi_gcp/secretmanager/get_secret_iam_policy.py +5 -0
- pulumi_gcp/secretmanager/get_secret_version.py +5 -0
- pulumi_gcp/secretmanager/get_secret_version_access.py +5 -0
- pulumi_gcp/secretmanager/get_secrets.py +5 -0
- pulumi_gcp/secretmanager/outputs.py +5 -0
- pulumi_gcp/secretmanager/secret.py +68 -63
- pulumi_gcp/secretmanager/secret_iam_binding.py +102 -97
- pulumi_gcp/secretmanager/secret_iam_member.py +102 -97
- pulumi_gcp/secretmanager/secret_iam_policy.py +97 -92
- pulumi_gcp/secretmanager/secret_version.py +53 -48
- pulumi_gcp/securesourcemanager/_inputs.py +75 -0
- pulumi_gcp/securesourcemanager/get_instance_iam_policy.py +5 -0
- pulumi_gcp/securesourcemanager/instance.py +78 -73
- pulumi_gcp/securesourcemanager/instance_iam_binding.py +8 -3
- pulumi_gcp/securesourcemanager/instance_iam_member.py +8 -3
- pulumi_gcp/securesourcemanager/instance_iam_policy.py +5 -0
- pulumi_gcp/securesourcemanager/outputs.py +5 -0
- pulumi_gcp/securitycenter/_inputs.py +860 -7
- pulumi_gcp/securitycenter/event_threat_detection_custom_module.py +5 -0
- pulumi_gcp/securitycenter/folder_custom_module.py +82 -77
- pulumi_gcp/securitycenter/get_source_iam_policy.py +5 -0
- pulumi_gcp/securitycenter/instance_iam_binding.py +38 -33
- pulumi_gcp/securitycenter/instance_iam_member.py +38 -33
- pulumi_gcp/securitycenter/instance_iam_policy.py +35 -30
- pulumi_gcp/securitycenter/management_folder_security_health_analytics_custom_module.py +82 -77
- pulumi_gcp/securitycenter/management_organization_event_threat_detection_custom_module.py +5 -0
- pulumi_gcp/securitycenter/management_organization_security_health_analytics_custom_module.py +82 -77
- pulumi_gcp/securitycenter/management_project_security_health_analytics_custom_module.py +82 -77
- pulumi_gcp/securitycenter/mute_config.py +5 -0
- pulumi_gcp/securitycenter/notification_config.py +16 -11
- pulumi_gcp/securitycenter/organization_custom_module.py +82 -77
- pulumi_gcp/securitycenter/outputs.py +5 -0
- pulumi_gcp/securitycenter/project_custom_module.py +82 -77
- pulumi_gcp/securitycenter/source.py +5 -0
- pulumi_gcp/securitycenter/source_iam_binding.py +8 -3
- pulumi_gcp/securitycenter/source_iam_member.py +8 -3
- pulumi_gcp/securitycenter/source_iam_policy.py +5 -0
- pulumi_gcp/securityposture/_inputs.py +457 -0
- pulumi_gcp/securityposture/outputs.py +5 -0
- pulumi_gcp/securityposture/posture.py +186 -181
- pulumi_gcp/securityposture/posture_deployment.py +35 -30
- pulumi_gcp/serviceaccount/_inputs.py +51 -0
- pulumi_gcp/serviceaccount/account.py +5 -0
- pulumi_gcp/serviceaccount/get_account.py +5 -0
- pulumi_gcp/serviceaccount/get_account_access_token.py +5 -0
- pulumi_gcp/serviceaccount/get_account_id_token.py +5 -0
- pulumi_gcp/serviceaccount/get_account_jwt.py +5 -0
- pulumi_gcp/serviceaccount/get_account_key.py +5 -0
- pulumi_gcp/serviceaccount/get_iam_policy.py +5 -0
- pulumi_gcp/serviceaccount/iam_binding.py +66 -61
- pulumi_gcp/serviceaccount/iam_member.py +66 -61
- pulumi_gcp/serviceaccount/iam_policy.py +61 -56
- pulumi_gcp/serviceaccount/key.py +5 -0
- pulumi_gcp/serviceaccount/outputs.py +5 -0
- pulumi_gcp/servicedirectory/_inputs.py +43 -0
- pulumi_gcp/servicedirectory/endpoint.py +5 -0
- pulumi_gcp/servicedirectory/get_namespace_iam_policy.py +5 -0
- pulumi_gcp/servicedirectory/get_service_iam_policy.py +5 -0
- pulumi_gcp/servicedirectory/namespace.py +5 -0
- pulumi_gcp/servicedirectory/namespace_iam_binding.py +24 -19
- pulumi_gcp/servicedirectory/namespace_iam_member.py +24 -19
- pulumi_gcp/servicedirectory/namespace_iam_policy.py +21 -16
- pulumi_gcp/servicedirectory/outputs.py +5 -0
- pulumi_gcp/servicedirectory/service.py +5 -0
- pulumi_gcp/servicedirectory/service_iam_binding.py +24 -19
- pulumi_gcp/servicedirectory/service_iam_member.py +24 -19
- pulumi_gcp/servicedirectory/service_iam_policy.py +21 -16
- pulumi_gcp/servicenetworking/connection.py +5 -0
- pulumi_gcp/servicenetworking/get_peered_dns_domain.py +5 -0
- pulumi_gcp/servicenetworking/peered_dns_domain.py +5 -0
- pulumi_gcp/servicenetworking/vpc_service_controls.py +5 -0
- pulumi_gcp/serviceusage/consumer_quota_override.py +5 -0
- pulumi_gcp/sourcerepo/_inputs.py +49 -0
- pulumi_gcp/sourcerepo/get_repository.py +5 -0
- pulumi_gcp/sourcerepo/get_repository_iam_policy.py +5 -0
- pulumi_gcp/sourcerepo/outputs.py +5 -0
- pulumi_gcp/sourcerepo/repository.py +20 -15
- pulumi_gcp/sourcerepo/repository_iam_binding.py +24 -19
- pulumi_gcp/sourcerepo/repository_iam_member.py +24 -19
- pulumi_gcp/sourcerepo/repository_iam_policy.py +21 -16
- pulumi_gcp/spanner/_inputs.py +157 -0
- pulumi_gcp/spanner/database.py +10 -5
- pulumi_gcp/spanner/database_iam_binding.py +102 -97
- pulumi_gcp/spanner/database_iam_member.py +102 -97
- pulumi_gcp/spanner/database_iam_policy.py +97 -92
- pulumi_gcp/spanner/get_database_iam_policy.py +5 -0
- pulumi_gcp/spanner/get_instance.py +5 -0
- pulumi_gcp/spanner/get_instance_iam_policy.py +5 -0
- pulumi_gcp/spanner/instance.py +30 -25
- pulumi_gcp/spanner/instance_config.py +10 -5
- pulumi_gcp/spanner/instance_iam_binding.py +24 -19
- pulumi_gcp/spanner/instance_iam_member.py +24 -19
- pulumi_gcp/spanner/instance_iam_policy.py +21 -16
- pulumi_gcp/spanner/outputs.py +5 -0
- pulumi_gcp/sql/_inputs.py +616 -0
- pulumi_gcp/sql/database.py +17 -12
- pulumi_gcp/sql/database_instance.py +93 -88
- pulumi_gcp/sql/get_backup_run.py +5 -0
- pulumi_gcp/sql/get_ca_certs.py +5 -0
- pulumi_gcp/sql/get_database.py +5 -0
- pulumi_gcp/sql/get_database_instance.py +5 -0
- pulumi_gcp/sql/get_database_instance_latest_recovery_time.py +5 -0
- pulumi_gcp/sql/get_database_instances.py +5 -0
- pulumi_gcp/sql/get_databases.py +5 -0
- pulumi_gcp/sql/get_tiers.py +5 -0
- pulumi_gcp/sql/outputs.py +5 -0
- pulumi_gcp/sql/source_representation_instance.py +5 -0
- pulumi_gcp/sql/ssl_cert.py +11 -6
- pulumi_gcp/sql/user.py +43 -38
- pulumi_gcp/storage/_inputs.py +828 -0
- pulumi_gcp/storage/bucket.py +125 -120
- pulumi_gcp/storage/bucket_access_control.py +5 -0
- pulumi_gcp/storage/bucket_acl.py +5 -0
- pulumi_gcp/storage/bucket_iam_binding.py +102 -97
- pulumi_gcp/storage/bucket_iam_member.py +102 -97
- pulumi_gcp/storage/bucket_iam_policy.py +97 -92
- pulumi_gcp/storage/bucket_object.py +15 -10
- pulumi_gcp/storage/default_object_access_control.py +7 -2
- pulumi_gcp/storage/default_object_acl.py +5 -0
- pulumi_gcp/storage/get_bucket.py +5 -0
- pulumi_gcp/storage/get_bucket_iam_policy.py +5 -0
- pulumi_gcp/storage/get_bucket_object.py +5 -0
- pulumi_gcp/storage/get_bucket_object_content.py +5 -0
- pulumi_gcp/storage/get_bucket_objects.py +5 -0
- pulumi_gcp/storage/get_buckets.py +5 -0
- pulumi_gcp/storage/get_object_signed_url.py +5 -0
- pulumi_gcp/storage/get_project_service_account.py +11 -6
- pulumi_gcp/storage/get_transfer_project_service_account.py +5 -0
- pulumi_gcp/storage/get_transfer_project_servie_account.py +5 -0
- pulumi_gcp/storage/hmac_key.py +5 -0
- pulumi_gcp/storage/insights_report_config.py +76 -71
- pulumi_gcp/storage/notification.py +5 -0
- pulumi_gcp/storage/object_access_control.py +7 -2
- pulumi_gcp/storage/object_acl.py +5 -0
- pulumi_gcp/storage/outputs.py +5 -0
- pulumi_gcp/storage/transfer_agent_pool.py +16 -11
- pulumi_gcp/storage/transfer_job.py +113 -108
- pulumi_gcp/tags/_inputs.py +43 -0
- pulumi_gcp/tags/get_tag_key.py +5 -0
- pulumi_gcp/tags/get_tag_key_iam_policy.py +5 -0
- pulumi_gcp/tags/get_tag_keys.py +5 -0
- pulumi_gcp/tags/get_tag_value.py +5 -0
- pulumi_gcp/tags/get_tag_value_iam_policy.py +5 -0
- pulumi_gcp/tags/get_tag_values.py +5 -0
- pulumi_gcp/tags/location_tag_binding.py +5 -0
- pulumi_gcp/tags/outputs.py +5 -0
- pulumi_gcp/tags/tag_binding.py +5 -0
- pulumi_gcp/tags/tag_key.py +5 -0
- pulumi_gcp/tags/tag_key_iam_binding.py +24 -19
- pulumi_gcp/tags/tag_key_iam_member.py +24 -19
- pulumi_gcp/tags/tag_key_iam_policy.py +21 -16
- pulumi_gcp/tags/tag_value.py +5 -0
- pulumi_gcp/tags/tag_value_iam_binding.py +24 -19
- pulumi_gcp/tags/tag_value_iam_member.py +24 -19
- pulumi_gcp/tags/tag_value_iam_policy.py +21 -16
- pulumi_gcp/tpu/_inputs.py +194 -0
- pulumi_gcp/tpu/get_tensorflow_versions.py +5 -0
- pulumi_gcp/tpu/get_v2_accelerator_types.py +5 -0
- pulumi_gcp/tpu/get_v2_runtime_versions.py +5 -0
- pulumi_gcp/tpu/node.py +18 -13
- pulumi_gcp/tpu/outputs.py +5 -0
- pulumi_gcp/tpu/v2_vm.py +87 -82
- pulumi_gcp/vertex/_inputs.py +841 -0
- pulumi_gcp/vertex/ai_dataset.py +10 -5
- pulumi_gcp/vertex/ai_deployment_resource_pool.py +36 -31
- pulumi_gcp/vertex/ai_endpoint.py +18 -13
- pulumi_gcp/vertex/ai_endpoint_iam_binding.py +8 -3
- pulumi_gcp/vertex/ai_endpoint_iam_member.py +8 -3
- pulumi_gcp/vertex/ai_endpoint_iam_policy.py +5 -0
- pulumi_gcp/vertex/ai_feature_group.py +22 -17
- pulumi_gcp/vertex/ai_feature_group_feature.py +17 -12
- pulumi_gcp/vertex/ai_feature_online_store.py +73 -68
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +151 -146
- pulumi_gcp/vertex/ai_feature_store.py +57 -52
- pulumi_gcp/vertex/ai_feature_store_entity_type.py +92 -87
- pulumi_gcp/vertex/ai_feature_store_entity_type_feature.py +41 -36
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_binding.py +8 -3
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_member.py +8 -3
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_policy.py +5 -0
- pulumi_gcp/vertex/ai_feature_store_iam_binding.py +8 -3
- pulumi_gcp/vertex/ai_feature_store_iam_member.py +8 -3
- pulumi_gcp/vertex/ai_feature_store_iam_policy.py +5 -0
- pulumi_gcp/vertex/ai_index.py +68 -63
- pulumi_gcp/vertex/ai_index_endpoint.py +18 -13
- pulumi_gcp/vertex/ai_metadata_store.py +12 -7
- pulumi_gcp/vertex/ai_tensorboard.py +16 -11
- pulumi_gcp/vertex/get_ai_endpoint_iam_policy.py +5 -0
- pulumi_gcp/vertex/get_ai_featurestore_entitytype_iam_policy.py +5 -0
- pulumi_gcp/vertex/get_ai_featurestore_iam_policy.py +5 -0
- pulumi_gcp/vertex/get_ai_index.py +5 -0
- pulumi_gcp/vertex/outputs.py +5 -0
- pulumi_gcp/vmwareengine/_inputs.py +290 -0
- pulumi_gcp/vmwareengine/cluster.py +74 -69
- pulumi_gcp/vmwareengine/external_access_rule.py +61 -56
- pulumi_gcp/vmwareengine/external_address.py +27 -22
- pulumi_gcp/vmwareengine/get_cluster.py +5 -0
- pulumi_gcp/vmwareengine/get_external_access_rule.py +5 -0
- pulumi_gcp/vmwareengine/get_external_address.py +5 -0
- pulumi_gcp/vmwareengine/get_network.py +5 -0
- pulumi_gcp/vmwareengine/get_network_peering.py +5 -0
- pulumi_gcp/vmwareengine/get_network_policy.py +5 -0
- pulumi_gcp/vmwareengine/get_nsx_credentials.py +5 -0
- pulumi_gcp/vmwareengine/get_private_cloud.py +5 -0
- pulumi_gcp/vmwareengine/get_subnet.py +5 -0
- pulumi_gcp/vmwareengine/get_vcenter_credentials.py +5 -0
- pulumi_gcp/vmwareengine/network.py +7 -2
- pulumi_gcp/vmwareengine/network_peering.py +5 -0
- pulumi_gcp/vmwareengine/network_policy.py +27 -22
- pulumi_gcp/vmwareengine/outputs.py +5 -0
- pulumi_gcp/vmwareengine/private_cloud.py +67 -62
- pulumi_gcp/vmwareengine/subnet.py +29 -24
- pulumi_gcp/vpcaccess/_inputs.py +22 -0
- pulumi_gcp/vpcaccess/connector.py +16 -11
- pulumi_gcp/vpcaccess/get_connector.py +5 -0
- pulumi_gcp/vpcaccess/outputs.py +5 -0
- pulumi_gcp/workbench/_inputs.py +319 -0
- pulumi_gcp/workbench/get_instance_iam_policy.py +5 -0
- pulumi_gcp/workbench/instance.py +144 -139
- pulumi_gcp/workbench/instance_iam_binding.py +8 -3
- pulumi_gcp/workbench/instance_iam_member.py +8 -3
- pulumi_gcp/workbench/instance_iam_policy.py +5 -0
- pulumi_gcp/workbench/outputs.py +5 -0
- pulumi_gcp/workflows/workflow.py +5 -0
- pulumi_gcp/workstations/_inputs.py +433 -0
- pulumi_gcp/workstations/get_workstation_config_iam_policy.py +5 -0
- pulumi_gcp/workstations/get_workstation_iam_policy.py +5 -0
- pulumi_gcp/workstations/outputs.py +5 -0
- pulumi_gcp/workstations/workstation.py +19 -14
- pulumi_gcp/workstations/workstation_cluster.py +35 -30
- pulumi_gcp/workstations/workstation_config.py +251 -246
- pulumi_gcp/workstations/workstation_config_iam_binding.py +8 -3
- pulumi_gcp/workstations/workstation_config_iam_member.py +8 -3
- pulumi_gcp/workstations/workstation_config_iam_policy.py +5 -0
- pulumi_gcp/workstations/workstation_iam_binding.py +8 -3
- pulumi_gcp/workstations/workstation_iam_member.py +8 -3
- pulumi_gcp/workstations/workstation_iam_policy.py +5 -0
- {pulumi_gcp-7.30.0a1719470057.dist-info → pulumi_gcp-7.30.0a1719513455.dist-info}/METADATA +2 -1
- pulumi_gcp-7.30.0a1719513455.dist-info/RECORD +1600 -0
- pulumi_gcp-7.30.0a1719470057.dist-info/RECORD +0 -1600
- {pulumi_gcp-7.30.0a1719470057.dist-info → pulumi_gcp-7.30.0a1719513455.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.30.0a1719470057.dist-info → pulumi_gcp-7.30.0a1719513455.dist-info}/top_level.txt +0 -0
pulumi_gcp/bigquery/_inputs.py
CHANGED
@@ -4,92 +4,191 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from .. import _utilities
|
11
16
|
|
12
17
|
__all__ = [
|
13
18
|
'AppProfileSingleClusterRoutingArgs',
|
19
|
+
'AppProfileSingleClusterRoutingArgsDict',
|
14
20
|
'AppProfileStandardIsolationArgs',
|
21
|
+
'AppProfileStandardIsolationArgsDict',
|
15
22
|
'BiReservationPreferredTableArgs',
|
23
|
+
'BiReservationPreferredTableArgsDict',
|
16
24
|
'ConnectionAwsArgs',
|
25
|
+
'ConnectionAwsArgsDict',
|
17
26
|
'ConnectionAwsAccessRoleArgs',
|
27
|
+
'ConnectionAwsAccessRoleArgsDict',
|
18
28
|
'ConnectionAzureArgs',
|
29
|
+
'ConnectionAzureArgsDict',
|
19
30
|
'ConnectionCloudResourceArgs',
|
31
|
+
'ConnectionCloudResourceArgsDict',
|
20
32
|
'ConnectionCloudSpannerArgs',
|
33
|
+
'ConnectionCloudSpannerArgsDict',
|
21
34
|
'ConnectionCloudSqlArgs',
|
35
|
+
'ConnectionCloudSqlArgsDict',
|
22
36
|
'ConnectionCloudSqlCredentialArgs',
|
37
|
+
'ConnectionCloudSqlCredentialArgsDict',
|
23
38
|
'ConnectionIamBindingConditionArgs',
|
39
|
+
'ConnectionIamBindingConditionArgsDict',
|
24
40
|
'ConnectionIamMemberConditionArgs',
|
41
|
+
'ConnectionIamMemberConditionArgsDict',
|
25
42
|
'ConnectionSparkArgs',
|
43
|
+
'ConnectionSparkArgsDict',
|
26
44
|
'ConnectionSparkMetastoreServiceConfigArgs',
|
45
|
+
'ConnectionSparkMetastoreServiceConfigArgsDict',
|
27
46
|
'ConnectionSparkSparkHistoryServerConfigArgs',
|
47
|
+
'ConnectionSparkSparkHistoryServerConfigArgsDict',
|
28
48
|
'DataTransferConfigEmailPreferencesArgs',
|
49
|
+
'DataTransferConfigEmailPreferencesArgsDict',
|
29
50
|
'DataTransferConfigScheduleOptionsArgs',
|
51
|
+
'DataTransferConfigScheduleOptionsArgsDict',
|
30
52
|
'DataTransferConfigSensitiveParamsArgs',
|
53
|
+
'DataTransferConfigSensitiveParamsArgsDict',
|
31
54
|
'DatasetAccessArgs',
|
55
|
+
'DatasetAccessArgsDict',
|
32
56
|
'DatasetAccessAuthorizedDatasetArgs',
|
57
|
+
'DatasetAccessAuthorizedDatasetArgsDict',
|
33
58
|
'DatasetAccessAuthorizedDatasetDatasetArgs',
|
59
|
+
'DatasetAccessAuthorizedDatasetDatasetArgsDict',
|
34
60
|
'DatasetAccessDatasetArgs',
|
61
|
+
'DatasetAccessDatasetArgsDict',
|
35
62
|
'DatasetAccessDatasetDatasetArgs',
|
63
|
+
'DatasetAccessDatasetDatasetArgsDict',
|
36
64
|
'DatasetAccessRoutineArgs',
|
65
|
+
'DatasetAccessRoutineArgsDict',
|
37
66
|
'DatasetAccessViewArgs',
|
67
|
+
'DatasetAccessViewArgsDict',
|
38
68
|
'DatasetDefaultEncryptionConfigurationArgs',
|
69
|
+
'DatasetDefaultEncryptionConfigurationArgsDict',
|
39
70
|
'DatasetExternalDatasetReferenceArgs',
|
71
|
+
'DatasetExternalDatasetReferenceArgsDict',
|
40
72
|
'DatasetIamBindingConditionArgs',
|
73
|
+
'DatasetIamBindingConditionArgsDict',
|
41
74
|
'DatasetIamMemberConditionArgs',
|
75
|
+
'DatasetIamMemberConditionArgsDict',
|
42
76
|
'IamBindingConditionArgs',
|
77
|
+
'IamBindingConditionArgsDict',
|
43
78
|
'IamMemberConditionArgs',
|
79
|
+
'IamMemberConditionArgsDict',
|
44
80
|
'JobCopyArgs',
|
81
|
+
'JobCopyArgsDict',
|
45
82
|
'JobCopyDestinationEncryptionConfigurationArgs',
|
83
|
+
'JobCopyDestinationEncryptionConfigurationArgsDict',
|
46
84
|
'JobCopyDestinationTableArgs',
|
85
|
+
'JobCopyDestinationTableArgsDict',
|
47
86
|
'JobCopySourceTableArgs',
|
87
|
+
'JobCopySourceTableArgsDict',
|
48
88
|
'JobExtractArgs',
|
89
|
+
'JobExtractArgsDict',
|
49
90
|
'JobExtractSourceModelArgs',
|
91
|
+
'JobExtractSourceModelArgsDict',
|
50
92
|
'JobExtractSourceTableArgs',
|
93
|
+
'JobExtractSourceTableArgsDict',
|
51
94
|
'JobLoadArgs',
|
95
|
+
'JobLoadArgsDict',
|
52
96
|
'JobLoadDestinationEncryptionConfigurationArgs',
|
97
|
+
'JobLoadDestinationEncryptionConfigurationArgsDict',
|
53
98
|
'JobLoadDestinationTableArgs',
|
99
|
+
'JobLoadDestinationTableArgsDict',
|
54
100
|
'JobLoadParquetOptionsArgs',
|
101
|
+
'JobLoadParquetOptionsArgsDict',
|
55
102
|
'JobLoadTimePartitioningArgs',
|
103
|
+
'JobLoadTimePartitioningArgsDict',
|
56
104
|
'JobQueryArgs',
|
105
|
+
'JobQueryArgsDict',
|
57
106
|
'JobQueryDefaultDatasetArgs',
|
107
|
+
'JobQueryDefaultDatasetArgsDict',
|
58
108
|
'JobQueryDestinationEncryptionConfigurationArgs',
|
109
|
+
'JobQueryDestinationEncryptionConfigurationArgsDict',
|
59
110
|
'JobQueryDestinationTableArgs',
|
111
|
+
'JobQueryDestinationTableArgsDict',
|
60
112
|
'JobQueryScriptOptionsArgs',
|
113
|
+
'JobQueryScriptOptionsArgsDict',
|
61
114
|
'JobQueryUserDefinedFunctionResourceArgs',
|
115
|
+
'JobQueryUserDefinedFunctionResourceArgsDict',
|
62
116
|
'JobStatusArgs',
|
117
|
+
'JobStatusArgsDict',
|
63
118
|
'JobStatusErrorArgs',
|
119
|
+
'JobStatusErrorArgsDict',
|
64
120
|
'JobStatusErrorResultArgs',
|
121
|
+
'JobStatusErrorResultArgsDict',
|
65
122
|
'ReservationAutoscaleArgs',
|
123
|
+
'ReservationAutoscaleArgsDict',
|
66
124
|
'RoutineArgumentArgs',
|
125
|
+
'RoutineArgumentArgsDict',
|
67
126
|
'RoutineRemoteFunctionOptionsArgs',
|
127
|
+
'RoutineRemoteFunctionOptionsArgsDict',
|
68
128
|
'RoutineSparkOptionsArgs',
|
129
|
+
'RoutineSparkOptionsArgsDict',
|
69
130
|
'TableEncryptionConfigurationArgs',
|
131
|
+
'TableEncryptionConfigurationArgsDict',
|
70
132
|
'TableExternalDataConfigurationArgs',
|
133
|
+
'TableExternalDataConfigurationArgsDict',
|
71
134
|
'TableExternalDataConfigurationAvroOptionsArgs',
|
135
|
+
'TableExternalDataConfigurationAvroOptionsArgsDict',
|
72
136
|
'TableExternalDataConfigurationBigtableOptionsArgs',
|
137
|
+
'TableExternalDataConfigurationBigtableOptionsArgsDict',
|
73
138
|
'TableExternalDataConfigurationBigtableOptionsColumnFamilyArgs',
|
139
|
+
'TableExternalDataConfigurationBigtableOptionsColumnFamilyArgsDict',
|
74
140
|
'TableExternalDataConfigurationBigtableOptionsColumnFamilyColumnArgs',
|
141
|
+
'TableExternalDataConfigurationBigtableOptionsColumnFamilyColumnArgsDict',
|
75
142
|
'TableExternalDataConfigurationCsvOptionsArgs',
|
143
|
+
'TableExternalDataConfigurationCsvOptionsArgsDict',
|
76
144
|
'TableExternalDataConfigurationGoogleSheetsOptionsArgs',
|
145
|
+
'TableExternalDataConfigurationGoogleSheetsOptionsArgsDict',
|
77
146
|
'TableExternalDataConfigurationHivePartitioningOptionsArgs',
|
147
|
+
'TableExternalDataConfigurationHivePartitioningOptionsArgsDict',
|
78
148
|
'TableExternalDataConfigurationJsonOptionsArgs',
|
149
|
+
'TableExternalDataConfigurationJsonOptionsArgsDict',
|
79
150
|
'TableExternalDataConfigurationParquetOptionsArgs',
|
151
|
+
'TableExternalDataConfigurationParquetOptionsArgsDict',
|
80
152
|
'TableMaterializedViewArgs',
|
153
|
+
'TableMaterializedViewArgsDict',
|
81
154
|
'TableRangePartitioningArgs',
|
155
|
+
'TableRangePartitioningArgsDict',
|
82
156
|
'TableRangePartitioningRangeArgs',
|
157
|
+
'TableRangePartitioningRangeArgsDict',
|
83
158
|
'TableTableConstraintsArgs',
|
159
|
+
'TableTableConstraintsArgsDict',
|
84
160
|
'TableTableConstraintsForeignKeyArgs',
|
161
|
+
'TableTableConstraintsForeignKeyArgsDict',
|
85
162
|
'TableTableConstraintsForeignKeyColumnReferencesArgs',
|
163
|
+
'TableTableConstraintsForeignKeyColumnReferencesArgsDict',
|
86
164
|
'TableTableConstraintsForeignKeyReferencedTableArgs',
|
165
|
+
'TableTableConstraintsForeignKeyReferencedTableArgsDict',
|
87
166
|
'TableTableConstraintsPrimaryKeyArgs',
|
167
|
+
'TableTableConstraintsPrimaryKeyArgsDict',
|
88
168
|
'TableTableReplicationInfoArgs',
|
169
|
+
'TableTableReplicationInfoArgsDict',
|
89
170
|
'TableTimePartitioningArgs',
|
171
|
+
'TableTimePartitioningArgsDict',
|
90
172
|
'TableViewArgs',
|
173
|
+
'TableViewArgsDict',
|
91
174
|
]
|
92
175
|
|
176
|
+
MYPY = False
|
177
|
+
|
178
|
+
if not MYPY:
|
179
|
+
class AppProfileSingleClusterRoutingArgsDict(TypedDict):
|
180
|
+
cluster_id: pulumi.Input[str]
|
181
|
+
"""
|
182
|
+
The cluster to which read/write requests should be routed.
|
183
|
+
"""
|
184
|
+
allow_transactional_writes: NotRequired[pulumi.Input[bool]]
|
185
|
+
"""
|
186
|
+
If true, CheckAndMutateRow and ReadModifyWriteRow requests are allowed by this app profile.
|
187
|
+
It is unsafe to send these requests to the same table/row/column in multiple clusters.
|
188
|
+
"""
|
189
|
+
elif False:
|
190
|
+
AppProfileSingleClusterRoutingArgsDict: TypeAlias = Mapping[str, Any]
|
191
|
+
|
93
192
|
@pulumi.input_type
|
94
193
|
class AppProfileSingleClusterRoutingArgs:
|
95
194
|
def __init__(__self__, *,
|
@@ -130,6 +229,16 @@ class AppProfileSingleClusterRoutingArgs:
|
|
130
229
|
pulumi.set(self, "allow_transactional_writes", value)
|
131
230
|
|
132
231
|
|
232
|
+
if not MYPY:
|
233
|
+
class AppProfileStandardIsolationArgsDict(TypedDict):
|
234
|
+
priority: pulumi.Input[str]
|
235
|
+
"""
|
236
|
+
The priority of requests sent using this app profile.
|
237
|
+
Possible values are: `PRIORITY_LOW`, `PRIORITY_MEDIUM`, `PRIORITY_HIGH`.
|
238
|
+
"""
|
239
|
+
elif False:
|
240
|
+
AppProfileStandardIsolationArgsDict: TypeAlias = Mapping[str, Any]
|
241
|
+
|
133
242
|
@pulumi.input_type
|
134
243
|
class AppProfileStandardIsolationArgs:
|
135
244
|
def __init__(__self__, *,
|
@@ -154,6 +263,23 @@ class AppProfileStandardIsolationArgs:
|
|
154
263
|
pulumi.set(self, "priority", value)
|
155
264
|
|
156
265
|
|
266
|
+
if not MYPY:
|
267
|
+
class BiReservationPreferredTableArgsDict(TypedDict):
|
268
|
+
dataset_id: NotRequired[pulumi.Input[str]]
|
269
|
+
"""
|
270
|
+
The ID of the dataset in the above project.
|
271
|
+
"""
|
272
|
+
project_id: NotRequired[pulumi.Input[str]]
|
273
|
+
"""
|
274
|
+
The assigned project ID of the project.
|
275
|
+
"""
|
276
|
+
table_id: NotRequired[pulumi.Input[str]]
|
277
|
+
"""
|
278
|
+
The ID of the table in the above dataset.
|
279
|
+
"""
|
280
|
+
elif False:
|
281
|
+
BiReservationPreferredTableArgsDict: TypeAlias = Mapping[str, Any]
|
282
|
+
|
157
283
|
@pulumi.input_type
|
158
284
|
class BiReservationPreferredTableArgs:
|
159
285
|
def __init__(__self__, *,
|
@@ -209,6 +335,16 @@ class BiReservationPreferredTableArgs:
|
|
209
335
|
pulumi.set(self, "table_id", value)
|
210
336
|
|
211
337
|
|
338
|
+
if not MYPY:
|
339
|
+
class ConnectionAwsArgsDict(TypedDict):
|
340
|
+
access_role: pulumi.Input['ConnectionAwsAccessRoleArgsDict']
|
341
|
+
"""
|
342
|
+
Authentication using Google owned service account to assume into customer's AWS IAM Role.
|
343
|
+
Structure is documented below.
|
344
|
+
"""
|
345
|
+
elif False:
|
346
|
+
ConnectionAwsArgsDict: TypeAlias = Mapping[str, Any]
|
347
|
+
|
212
348
|
@pulumi.input_type
|
213
349
|
class ConnectionAwsArgs:
|
214
350
|
def __init__(__self__, *,
|
@@ -233,6 +369,20 @@ class ConnectionAwsArgs:
|
|
233
369
|
pulumi.set(self, "access_role", value)
|
234
370
|
|
235
371
|
|
372
|
+
if not MYPY:
|
373
|
+
class ConnectionAwsAccessRoleArgsDict(TypedDict):
|
374
|
+
iam_role_id: pulumi.Input[str]
|
375
|
+
"""
|
376
|
+
The user’s AWS IAM Role that trusts the Google-owned AWS IAM user Connection.
|
377
|
+
"""
|
378
|
+
identity: NotRequired[pulumi.Input[str]]
|
379
|
+
"""
|
380
|
+
(Output)
|
381
|
+
A unique Google-owned and Google-generated identity for the Connection. This identity will be used to access the user's AWS IAM Role.
|
382
|
+
"""
|
383
|
+
elif False:
|
384
|
+
ConnectionAwsAccessRoleArgsDict: TypeAlias = Mapping[str, Any]
|
385
|
+
|
236
386
|
@pulumi.input_type
|
237
387
|
class ConnectionAwsAccessRoleArgs:
|
238
388
|
def __init__(__self__, *,
|
@@ -273,6 +423,44 @@ class ConnectionAwsAccessRoleArgs:
|
|
273
423
|
pulumi.set(self, "identity", value)
|
274
424
|
|
275
425
|
|
426
|
+
if not MYPY:
|
427
|
+
class ConnectionAzureArgsDict(TypedDict):
|
428
|
+
customer_tenant_id: pulumi.Input[str]
|
429
|
+
"""
|
430
|
+
The id of customer's directory that host the data.
|
431
|
+
"""
|
432
|
+
application: NotRequired[pulumi.Input[str]]
|
433
|
+
"""
|
434
|
+
(Output)
|
435
|
+
The name of the Azure Active Directory Application.
|
436
|
+
"""
|
437
|
+
client_id: NotRequired[pulumi.Input[str]]
|
438
|
+
"""
|
439
|
+
(Output)
|
440
|
+
The client id of the Azure Active Directory Application.
|
441
|
+
"""
|
442
|
+
federated_application_client_id: NotRequired[pulumi.Input[str]]
|
443
|
+
"""
|
444
|
+
The Azure Application (client) ID where the federated credentials will be hosted.
|
445
|
+
"""
|
446
|
+
identity: NotRequired[pulumi.Input[str]]
|
447
|
+
"""
|
448
|
+
(Output)
|
449
|
+
A unique Google-owned and Google-generated identity for the Connection. This identity will be used to access the user's Azure Active Directory Application.
|
450
|
+
"""
|
451
|
+
object_id: NotRequired[pulumi.Input[str]]
|
452
|
+
"""
|
453
|
+
(Output)
|
454
|
+
The object id of the Azure Active Directory Application.
|
455
|
+
"""
|
456
|
+
redirect_uri: NotRequired[pulumi.Input[str]]
|
457
|
+
"""
|
458
|
+
(Output)
|
459
|
+
The URL user will be redirected to after granting consent during connection setup.
|
460
|
+
"""
|
461
|
+
elif False:
|
462
|
+
ConnectionAzureArgsDict: TypeAlias = Mapping[str, Any]
|
463
|
+
|
276
464
|
@pulumi.input_type
|
277
465
|
class ConnectionAzureArgs:
|
278
466
|
def __init__(__self__, *,
|
@@ -401,6 +589,16 @@ class ConnectionAzureArgs:
|
|
401
589
|
pulumi.set(self, "redirect_uri", value)
|
402
590
|
|
403
591
|
|
592
|
+
if not MYPY:
|
593
|
+
class ConnectionCloudResourceArgsDict(TypedDict):
|
594
|
+
service_account_id: NotRequired[pulumi.Input[str]]
|
595
|
+
"""
|
596
|
+
(Output)
|
597
|
+
The account ID of the service created for the purpose of this connection.
|
598
|
+
"""
|
599
|
+
elif False:
|
600
|
+
ConnectionCloudResourceArgsDict: TypeAlias = Mapping[str, Any]
|
601
|
+
|
404
602
|
@pulumi.input_type
|
405
603
|
class ConnectionCloudResourceArgs:
|
406
604
|
def __init__(__self__, *,
|
@@ -426,6 +624,38 @@ class ConnectionCloudResourceArgs:
|
|
426
624
|
pulumi.set(self, "service_account_id", value)
|
427
625
|
|
428
626
|
|
627
|
+
if not MYPY:
|
628
|
+
class ConnectionCloudSpannerArgsDict(TypedDict):
|
629
|
+
database: pulumi.Input[str]
|
630
|
+
"""
|
631
|
+
Cloud Spanner database in the form `project/instance/database'.
|
632
|
+
"""
|
633
|
+
database_role: NotRequired[pulumi.Input[str]]
|
634
|
+
"""
|
635
|
+
Cloud Spanner database role for fine-grained access control. The Cloud Spanner admin should have provisioned the database role with appropriate permissions, such as `SELECT` and `INSERT`. Other users should only use roles provided by their Cloud Spanner admins. The database role name must start with a letter, and can only contain letters, numbers, and underscores. For more details, see https://cloud.google.com/spanner/docs/fgac-about.
|
636
|
+
"""
|
637
|
+
max_parallelism: NotRequired[pulumi.Input[int]]
|
638
|
+
"""
|
639
|
+
Allows setting max parallelism per query when executing on Spanner independent compute resources. If unspecified, default values of parallelism are chosen that are dependent on the Cloud Spanner instance configuration. `useParallelism` and `useDataBoost` must be set when setting max parallelism.
|
640
|
+
"""
|
641
|
+
use_data_boost: NotRequired[pulumi.Input[bool]]
|
642
|
+
"""
|
643
|
+
If set, the request will be executed via Spanner independent compute resources. `use_parallelism` must be set when using data boost.
|
644
|
+
"""
|
645
|
+
use_parallelism: NotRequired[pulumi.Input[bool]]
|
646
|
+
"""
|
647
|
+
If parallelism should be used when reading from Cloud Spanner.
|
648
|
+
"""
|
649
|
+
use_serverless_analytics: NotRequired[pulumi.Input[bool]]
|
650
|
+
"""
|
651
|
+
(Optional, Deprecated)
|
652
|
+
If the serverless analytics service should be used to read data from Cloud Spanner. `useParallelism` must be set when using serverless analytics.
|
653
|
+
|
654
|
+
> **Warning:** `useServerlessAnalytics` is deprecated and will be removed in a future major release. Use `useDataBoost` instead.
|
655
|
+
"""
|
656
|
+
elif False:
|
657
|
+
ConnectionCloudSpannerArgsDict: TypeAlias = Mapping[str, Any]
|
658
|
+
|
429
659
|
@pulumi.input_type
|
430
660
|
class ConnectionCloudSpannerArgs:
|
431
661
|
def __init__(__self__, *,
|
@@ -538,6 +768,34 @@ class ConnectionCloudSpannerArgs:
|
|
538
768
|
pulumi.set(self, "use_serverless_analytics", value)
|
539
769
|
|
540
770
|
|
771
|
+
if not MYPY:
|
772
|
+
class ConnectionCloudSqlArgsDict(TypedDict):
|
773
|
+
credential: pulumi.Input['ConnectionCloudSqlCredentialArgsDict']
|
774
|
+
"""
|
775
|
+
Cloud SQL properties.
|
776
|
+
Structure is documented below.
|
777
|
+
"""
|
778
|
+
database: pulumi.Input[str]
|
779
|
+
"""
|
780
|
+
Database name.
|
781
|
+
"""
|
782
|
+
instance_id: pulumi.Input[str]
|
783
|
+
"""
|
784
|
+
Cloud SQL instance ID in the form project:location:instance.
|
785
|
+
"""
|
786
|
+
type: pulumi.Input[str]
|
787
|
+
"""
|
788
|
+
Type of the Cloud SQL database.
|
789
|
+
Possible values are: `DATABASE_TYPE_UNSPECIFIED`, `POSTGRES`, `MYSQL`.
|
790
|
+
"""
|
791
|
+
service_account_id: NotRequired[pulumi.Input[str]]
|
792
|
+
"""
|
793
|
+
(Output)
|
794
|
+
When the connection is used in the context of an operation in BigQuery, this service account will serve as the identity being used for connecting to the CloudSQL instance specified in this connection.
|
795
|
+
"""
|
796
|
+
elif False:
|
797
|
+
ConnectionCloudSqlArgsDict: TypeAlias = Mapping[str, Any]
|
798
|
+
|
541
799
|
@pulumi.input_type
|
542
800
|
class ConnectionCloudSqlArgs:
|
543
801
|
def __init__(__self__, *,
|
@@ -627,6 +885,20 @@ class ConnectionCloudSqlArgs:
|
|
627
885
|
pulumi.set(self, "service_account_id", value)
|
628
886
|
|
629
887
|
|
888
|
+
if not MYPY:
|
889
|
+
class ConnectionCloudSqlCredentialArgsDict(TypedDict):
|
890
|
+
password: pulumi.Input[str]
|
891
|
+
"""
|
892
|
+
Password for database.
|
893
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
894
|
+
"""
|
895
|
+
username: pulumi.Input[str]
|
896
|
+
"""
|
897
|
+
Username for database.
|
898
|
+
"""
|
899
|
+
elif False:
|
900
|
+
ConnectionCloudSqlCredentialArgsDict: TypeAlias = Mapping[str, Any]
|
901
|
+
|
630
902
|
@pulumi.input_type
|
631
903
|
class ConnectionCloudSqlCredentialArgs:
|
632
904
|
def __init__(__self__, *,
|
@@ -666,6 +938,14 @@ class ConnectionCloudSqlCredentialArgs:
|
|
666
938
|
pulumi.set(self, "username", value)
|
667
939
|
|
668
940
|
|
941
|
+
if not MYPY:
|
942
|
+
class ConnectionIamBindingConditionArgsDict(TypedDict):
|
943
|
+
expression: pulumi.Input[str]
|
944
|
+
title: pulumi.Input[str]
|
945
|
+
description: NotRequired[pulumi.Input[str]]
|
946
|
+
elif False:
|
947
|
+
ConnectionIamBindingConditionArgsDict: TypeAlias = Mapping[str, Any]
|
948
|
+
|
669
949
|
@pulumi.input_type
|
670
950
|
class ConnectionIamBindingConditionArgs:
|
671
951
|
def __init__(__self__, *,
|
@@ -705,6 +985,14 @@ class ConnectionIamBindingConditionArgs:
|
|
705
985
|
pulumi.set(self, "description", value)
|
706
986
|
|
707
987
|
|
988
|
+
if not MYPY:
|
989
|
+
class ConnectionIamMemberConditionArgsDict(TypedDict):
|
990
|
+
expression: pulumi.Input[str]
|
991
|
+
title: pulumi.Input[str]
|
992
|
+
description: NotRequired[pulumi.Input[str]]
|
993
|
+
elif False:
|
994
|
+
ConnectionIamMemberConditionArgsDict: TypeAlias = Mapping[str, Any]
|
995
|
+
|
708
996
|
@pulumi.input_type
|
709
997
|
class ConnectionIamMemberConditionArgs:
|
710
998
|
def __init__(__self__, *,
|
@@ -744,6 +1032,26 @@ class ConnectionIamMemberConditionArgs:
|
|
744
1032
|
pulumi.set(self, "description", value)
|
745
1033
|
|
746
1034
|
|
1035
|
+
if not MYPY:
|
1036
|
+
class ConnectionSparkArgsDict(TypedDict):
|
1037
|
+
metastore_service_config: NotRequired[pulumi.Input['ConnectionSparkMetastoreServiceConfigArgsDict']]
|
1038
|
+
"""
|
1039
|
+
Dataproc Metastore Service configuration for the connection.
|
1040
|
+
Structure is documented below.
|
1041
|
+
"""
|
1042
|
+
service_account_id: NotRequired[pulumi.Input[str]]
|
1043
|
+
"""
|
1044
|
+
(Output)
|
1045
|
+
The account ID of the service created for the purpose of this connection.
|
1046
|
+
"""
|
1047
|
+
spark_history_server_config: NotRequired[pulumi.Input['ConnectionSparkSparkHistoryServerConfigArgsDict']]
|
1048
|
+
"""
|
1049
|
+
Spark History Server configuration for the connection.
|
1050
|
+
Structure is documented below.
|
1051
|
+
"""
|
1052
|
+
elif False:
|
1053
|
+
ConnectionSparkArgsDict: TypeAlias = Mapping[str, Any]
|
1054
|
+
|
747
1055
|
@pulumi.input_type
|
748
1056
|
class ConnectionSparkArgs:
|
749
1057
|
def __init__(__self__, *,
|
@@ -805,6 +1113,15 @@ class ConnectionSparkArgs:
|
|
805
1113
|
pulumi.set(self, "spark_history_server_config", value)
|
806
1114
|
|
807
1115
|
|
1116
|
+
if not MYPY:
|
1117
|
+
class ConnectionSparkMetastoreServiceConfigArgsDict(TypedDict):
|
1118
|
+
metastore_service: NotRequired[pulumi.Input[str]]
|
1119
|
+
"""
|
1120
|
+
Resource name of an existing Dataproc Metastore service in the form of projects/[projectId]/locations/[region]/services/[serviceId].
|
1121
|
+
"""
|
1122
|
+
elif False:
|
1123
|
+
ConnectionSparkMetastoreServiceConfigArgsDict: TypeAlias = Mapping[str, Any]
|
1124
|
+
|
808
1125
|
@pulumi.input_type
|
809
1126
|
class ConnectionSparkMetastoreServiceConfigArgs:
|
810
1127
|
def __init__(__self__, *,
|
@@ -828,6 +1145,15 @@ class ConnectionSparkMetastoreServiceConfigArgs:
|
|
828
1145
|
pulumi.set(self, "metastore_service", value)
|
829
1146
|
|
830
1147
|
|
1148
|
+
if not MYPY:
|
1149
|
+
class ConnectionSparkSparkHistoryServerConfigArgsDict(TypedDict):
|
1150
|
+
dataproc_cluster: NotRequired[pulumi.Input[str]]
|
1151
|
+
"""
|
1152
|
+
Resource name of an existing Dataproc Cluster to act as a Spark History Server for the connection if the form of projects/[projectId]/regions/[region]/clusters/[cluster_name].
|
1153
|
+
"""
|
1154
|
+
elif False:
|
1155
|
+
ConnectionSparkSparkHistoryServerConfigArgsDict: TypeAlias = Mapping[str, Any]
|
1156
|
+
|
831
1157
|
@pulumi.input_type
|
832
1158
|
class ConnectionSparkSparkHistoryServerConfigArgs:
|
833
1159
|
def __init__(__self__, *,
|
@@ -851,6 +1177,15 @@ class ConnectionSparkSparkHistoryServerConfigArgs:
|
|
851
1177
|
pulumi.set(self, "dataproc_cluster", value)
|
852
1178
|
|
853
1179
|
|
1180
|
+
if not MYPY:
|
1181
|
+
class DataTransferConfigEmailPreferencesArgsDict(TypedDict):
|
1182
|
+
enable_failure_email: pulumi.Input[bool]
|
1183
|
+
"""
|
1184
|
+
If true, email notifications will be sent on transfer run failures.
|
1185
|
+
"""
|
1186
|
+
elif False:
|
1187
|
+
DataTransferConfigEmailPreferencesArgsDict: TypeAlias = Mapping[str, Any]
|
1188
|
+
|
854
1189
|
@pulumi.input_type
|
855
1190
|
class DataTransferConfigEmailPreferencesArgs:
|
856
1191
|
def __init__(__self__, *,
|
@@ -873,6 +1208,34 @@ class DataTransferConfigEmailPreferencesArgs:
|
|
873
1208
|
pulumi.set(self, "enable_failure_email", value)
|
874
1209
|
|
875
1210
|
|
1211
|
+
if not MYPY:
|
1212
|
+
class DataTransferConfigScheduleOptionsArgsDict(TypedDict):
|
1213
|
+
disable_auto_scheduling: NotRequired[pulumi.Input[bool]]
|
1214
|
+
"""
|
1215
|
+
If true, automatic scheduling of data transfer runs for this
|
1216
|
+
configuration will be disabled. The runs can be started on ad-hoc
|
1217
|
+
basis using transferConfigs.startManualRuns API. When automatic
|
1218
|
+
scheduling is disabled, the TransferConfig.schedule field will
|
1219
|
+
be ignored.
|
1220
|
+
"""
|
1221
|
+
end_time: NotRequired[pulumi.Input[str]]
|
1222
|
+
"""
|
1223
|
+
Defines time to stop scheduling transfer runs. A transfer run cannot be
|
1224
|
+
scheduled at or after the end time. The end time can be changed at any
|
1225
|
+
moment. The time when a data transfer can be triggered manually is not
|
1226
|
+
limited by this option.
|
1227
|
+
"""
|
1228
|
+
start_time: NotRequired[pulumi.Input[str]]
|
1229
|
+
"""
|
1230
|
+
Specifies time to start scheduling transfer runs. The first run will be
|
1231
|
+
scheduled at or after the start time according to a recurrence pattern
|
1232
|
+
defined in the schedule string. The start time can be changed at any
|
1233
|
+
moment. The time when a data transfer can be triggered manually is not
|
1234
|
+
limited by this option.
|
1235
|
+
"""
|
1236
|
+
elif False:
|
1237
|
+
DataTransferConfigScheduleOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
1238
|
+
|
876
1239
|
@pulumi.input_type
|
877
1240
|
class DataTransferConfigScheduleOptionsArgs:
|
878
1241
|
def __init__(__self__, *,
|
@@ -950,6 +1313,16 @@ class DataTransferConfigScheduleOptionsArgs:
|
|
950
1313
|
pulumi.set(self, "start_time", value)
|
951
1314
|
|
952
1315
|
|
1316
|
+
if not MYPY:
|
1317
|
+
class DataTransferConfigSensitiveParamsArgsDict(TypedDict):
|
1318
|
+
secret_access_key: pulumi.Input[str]
|
1319
|
+
"""
|
1320
|
+
The Secret Access Key of the AWS account transferring data from.
|
1321
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
1322
|
+
"""
|
1323
|
+
elif False:
|
1324
|
+
DataTransferConfigSensitiveParamsArgsDict: TypeAlias = Mapping[str, Any]
|
1325
|
+
|
953
1326
|
@pulumi.input_type
|
954
1327
|
class DataTransferConfigSensitiveParamsArgs:
|
955
1328
|
def __init__(__self__, *,
|
@@ -974,6 +1347,73 @@ class DataTransferConfigSensitiveParamsArgs:
|
|
974
1347
|
pulumi.set(self, "secret_access_key", value)
|
975
1348
|
|
976
1349
|
|
1350
|
+
if not MYPY:
|
1351
|
+
class DatasetAccessArgsDict(TypedDict):
|
1352
|
+
dataset: NotRequired[pulumi.Input['DatasetAccessDatasetArgsDict']]
|
1353
|
+
"""
|
1354
|
+
Grants all resources of particular types in a particular dataset read access to the current dataset.
|
1355
|
+
Structure is documented below.
|
1356
|
+
"""
|
1357
|
+
domain: NotRequired[pulumi.Input[str]]
|
1358
|
+
"""
|
1359
|
+
A domain to grant access to. Any users signed in with the
|
1360
|
+
domain specified will be granted the specified access
|
1361
|
+
"""
|
1362
|
+
group_by_email: NotRequired[pulumi.Input[str]]
|
1363
|
+
"""
|
1364
|
+
An email address of a Google Group to grant access to.
|
1365
|
+
"""
|
1366
|
+
iam_member: NotRequired[pulumi.Input[str]]
|
1367
|
+
"""
|
1368
|
+
Some other type of member that appears in the IAM Policy but isn't a user,
|
1369
|
+
group, domain, or special group. For example: `allUsers`
|
1370
|
+
"""
|
1371
|
+
role: NotRequired[pulumi.Input[str]]
|
1372
|
+
"""
|
1373
|
+
Describes the rights granted to the user specified by the other
|
1374
|
+
member of the access object. Basic, predefined, and custom roles
|
1375
|
+
are supported. Predefined roles that have equivalent basic roles
|
1376
|
+
are swapped by the API to their basic counterparts. See
|
1377
|
+
[official docs](https://cloud.google.com/bigquery/docs/access-control).
|
1378
|
+
"""
|
1379
|
+
routine: NotRequired[pulumi.Input['DatasetAccessRoutineArgsDict']]
|
1380
|
+
"""
|
1381
|
+
A routine from a different dataset to grant access to. Queries
|
1382
|
+
executed against that routine will have read access to tables in
|
1383
|
+
this dataset. The role field is not required when this field is
|
1384
|
+
set. If that routine is updated by any user, access to the routine
|
1385
|
+
needs to be granted again via an update operation.
|
1386
|
+
Structure is documented below.
|
1387
|
+
"""
|
1388
|
+
special_group: NotRequired[pulumi.Input[str]]
|
1389
|
+
"""
|
1390
|
+
A special group to grant access to. Possible values include:
|
1391
|
+
|
1392
|
+
* `projectOwners`: Owners of the enclosing project.
|
1393
|
+
|
1394
|
+
* `projectReaders`: Readers of the enclosing project.
|
1395
|
+
|
1396
|
+
* `projectWriters`: Writers of the enclosing project.
|
1397
|
+
|
1398
|
+
* `allAuthenticatedUsers`: All authenticated BigQuery users.
|
1399
|
+
"""
|
1400
|
+
user_by_email: NotRequired[pulumi.Input[str]]
|
1401
|
+
"""
|
1402
|
+
An email address of a user to grant access to. For example:
|
1403
|
+
fred@example.com
|
1404
|
+
"""
|
1405
|
+
view: NotRequired[pulumi.Input['DatasetAccessViewArgsDict']]
|
1406
|
+
"""
|
1407
|
+
A view from a different dataset to grant access to. Queries
|
1408
|
+
executed against that view will have read access to tables in
|
1409
|
+
this dataset. The role field is not required when this field is
|
1410
|
+
set. If that view is updated by any user, access to the view
|
1411
|
+
needs to be granted again via an update operation.
|
1412
|
+
Structure is documented below.
|
1413
|
+
"""
|
1414
|
+
elif False:
|
1415
|
+
DatasetAccessArgsDict: TypeAlias = Mapping[str, Any]
|
1416
|
+
|
977
1417
|
@pulumi.input_type
|
978
1418
|
class DatasetAccessArgs:
|
979
1419
|
def __init__(__self__, *,
|
@@ -1177,6 +1617,21 @@ class DatasetAccessArgs:
|
|
1177
1617
|
pulumi.set(self, "view", value)
|
1178
1618
|
|
1179
1619
|
|
1620
|
+
if not MYPY:
|
1621
|
+
class DatasetAccessAuthorizedDatasetArgsDict(TypedDict):
|
1622
|
+
dataset: pulumi.Input['DatasetAccessAuthorizedDatasetDatasetArgsDict']
|
1623
|
+
"""
|
1624
|
+
The dataset this entry applies to
|
1625
|
+
Structure is documented below.
|
1626
|
+
"""
|
1627
|
+
target_types: pulumi.Input[Sequence[pulumi.Input[str]]]
|
1628
|
+
"""
|
1629
|
+
Which resources in the dataset this entry applies to. Currently, only views are supported,
|
1630
|
+
but additional target types may be added in the future. Possible values: VIEWS
|
1631
|
+
"""
|
1632
|
+
elif False:
|
1633
|
+
DatasetAccessAuthorizedDatasetArgsDict: TypeAlias = Mapping[str, Any]
|
1634
|
+
|
1180
1635
|
@pulumi.input_type
|
1181
1636
|
class DatasetAccessAuthorizedDatasetArgs:
|
1182
1637
|
def __init__(__self__, *,
|
@@ -1218,6 +1673,19 @@ class DatasetAccessAuthorizedDatasetArgs:
|
|
1218
1673
|
pulumi.set(self, "target_types", value)
|
1219
1674
|
|
1220
1675
|
|
1676
|
+
if not MYPY:
|
1677
|
+
class DatasetAccessAuthorizedDatasetDatasetArgsDict(TypedDict):
|
1678
|
+
dataset_id: pulumi.Input[str]
|
1679
|
+
"""
|
1680
|
+
The ID of the dataset containing this table.
|
1681
|
+
"""
|
1682
|
+
project_id: pulumi.Input[str]
|
1683
|
+
"""
|
1684
|
+
The ID of the project containing this table.
|
1685
|
+
"""
|
1686
|
+
elif False:
|
1687
|
+
DatasetAccessAuthorizedDatasetDatasetArgsDict: TypeAlias = Mapping[str, Any]
|
1688
|
+
|
1221
1689
|
@pulumi.input_type
|
1222
1690
|
class DatasetAccessAuthorizedDatasetDatasetArgs:
|
1223
1691
|
def __init__(__self__, *,
|
@@ -1255,6 +1723,21 @@ class DatasetAccessAuthorizedDatasetDatasetArgs:
|
|
1255
1723
|
pulumi.set(self, "project_id", value)
|
1256
1724
|
|
1257
1725
|
|
1726
|
+
if not MYPY:
|
1727
|
+
class DatasetAccessDatasetArgsDict(TypedDict):
|
1728
|
+
dataset: pulumi.Input['DatasetAccessDatasetDatasetArgsDict']
|
1729
|
+
"""
|
1730
|
+
The dataset this entry applies to
|
1731
|
+
Structure is documented below.
|
1732
|
+
"""
|
1733
|
+
target_types: pulumi.Input[Sequence[pulumi.Input[str]]]
|
1734
|
+
"""
|
1735
|
+
Which resources in the dataset this entry applies to. Currently, only views are supported,
|
1736
|
+
but additional target types may be added in the future. Possible values: VIEWS
|
1737
|
+
"""
|
1738
|
+
elif False:
|
1739
|
+
DatasetAccessDatasetArgsDict: TypeAlias = Mapping[str, Any]
|
1740
|
+
|
1258
1741
|
@pulumi.input_type
|
1259
1742
|
class DatasetAccessDatasetArgs:
|
1260
1743
|
def __init__(__self__, *,
|
@@ -1296,13 +1779,26 @@ class DatasetAccessDatasetArgs:
|
|
1296
1779
|
pulumi.set(self, "target_types", value)
|
1297
1780
|
|
1298
1781
|
|
1299
|
-
|
1300
|
-
class
|
1301
|
-
|
1302
|
-
dataset_id: pulumi.Input[str],
|
1303
|
-
project_id: pulumi.Input[str]):
|
1782
|
+
if not MYPY:
|
1783
|
+
class DatasetAccessDatasetDatasetArgsDict(TypedDict):
|
1784
|
+
dataset_id: pulumi.Input[str]
|
1304
1785
|
"""
|
1305
|
-
|
1786
|
+
The ID of the dataset containing this table.
|
1787
|
+
"""
|
1788
|
+
project_id: pulumi.Input[str]
|
1789
|
+
"""
|
1790
|
+
The ID of the project containing this table.
|
1791
|
+
"""
|
1792
|
+
elif False:
|
1793
|
+
DatasetAccessDatasetDatasetArgsDict: TypeAlias = Mapping[str, Any]
|
1794
|
+
|
1795
|
+
@pulumi.input_type
|
1796
|
+
class DatasetAccessDatasetDatasetArgs:
|
1797
|
+
def __init__(__self__, *,
|
1798
|
+
dataset_id: pulumi.Input[str],
|
1799
|
+
project_id: pulumi.Input[str]):
|
1800
|
+
"""
|
1801
|
+
:param pulumi.Input[str] dataset_id: The ID of the dataset containing this table.
|
1306
1802
|
:param pulumi.Input[str] project_id: The ID of the project containing this table.
|
1307
1803
|
"""
|
1308
1804
|
pulumi.set(__self__, "dataset_id", dataset_id)
|
@@ -1333,6 +1829,25 @@ class DatasetAccessDatasetDatasetArgs:
|
|
1333
1829
|
pulumi.set(self, "project_id", value)
|
1334
1830
|
|
1335
1831
|
|
1832
|
+
if not MYPY:
|
1833
|
+
class DatasetAccessRoutineArgsDict(TypedDict):
|
1834
|
+
dataset_id: pulumi.Input[str]
|
1835
|
+
"""
|
1836
|
+
The ID of the dataset containing this table.
|
1837
|
+
"""
|
1838
|
+
project_id: pulumi.Input[str]
|
1839
|
+
"""
|
1840
|
+
The ID of the project containing this table.
|
1841
|
+
"""
|
1842
|
+
routine_id: pulumi.Input[str]
|
1843
|
+
"""
|
1844
|
+
The ID of the routine. The ID must contain only letters (a-z,
|
1845
|
+
A-Z), numbers (0-9), or underscores (_). The maximum length
|
1846
|
+
is 256 characters.
|
1847
|
+
"""
|
1848
|
+
elif False:
|
1849
|
+
DatasetAccessRoutineArgsDict: TypeAlias = Mapping[str, Any]
|
1850
|
+
|
1336
1851
|
@pulumi.input_type
|
1337
1852
|
class DatasetAccessRoutineArgs:
|
1338
1853
|
def __init__(__self__, *,
|
@@ -1389,6 +1904,25 @@ class DatasetAccessRoutineArgs:
|
|
1389
1904
|
pulumi.set(self, "routine_id", value)
|
1390
1905
|
|
1391
1906
|
|
1907
|
+
if not MYPY:
|
1908
|
+
class DatasetAccessViewArgsDict(TypedDict):
|
1909
|
+
dataset_id: pulumi.Input[str]
|
1910
|
+
"""
|
1911
|
+
The ID of the dataset containing this table.
|
1912
|
+
"""
|
1913
|
+
project_id: pulumi.Input[str]
|
1914
|
+
"""
|
1915
|
+
The ID of the project containing this table.
|
1916
|
+
"""
|
1917
|
+
table_id: pulumi.Input[str]
|
1918
|
+
"""
|
1919
|
+
The ID of the table. The ID must contain only letters (a-z,
|
1920
|
+
A-Z), numbers (0-9), or underscores (_). The maximum length
|
1921
|
+
is 1,024 characters.
|
1922
|
+
"""
|
1923
|
+
elif False:
|
1924
|
+
DatasetAccessViewArgsDict: TypeAlias = Mapping[str, Any]
|
1925
|
+
|
1392
1926
|
@pulumi.input_type
|
1393
1927
|
class DatasetAccessViewArgs:
|
1394
1928
|
def __init__(__self__, *,
|
@@ -1445,6 +1979,17 @@ class DatasetAccessViewArgs:
|
|
1445
1979
|
pulumi.set(self, "table_id", value)
|
1446
1980
|
|
1447
1981
|
|
1982
|
+
if not MYPY:
|
1983
|
+
class DatasetDefaultEncryptionConfigurationArgsDict(TypedDict):
|
1984
|
+
kms_key_name: pulumi.Input[str]
|
1985
|
+
"""
|
1986
|
+
Describes the Cloud KMS encryption key that will be used to protect destination
|
1987
|
+
BigQuery table. The BigQuery Service Account associated with your project requires
|
1988
|
+
access to this encryption key.
|
1989
|
+
"""
|
1990
|
+
elif False:
|
1991
|
+
DatasetDefaultEncryptionConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
1992
|
+
|
1448
1993
|
@pulumi.input_type
|
1449
1994
|
class DatasetDefaultEncryptionConfigurationArgs:
|
1450
1995
|
def __init__(__self__, *,
|
@@ -1471,6 +2016,20 @@ class DatasetDefaultEncryptionConfigurationArgs:
|
|
1471
2016
|
pulumi.set(self, "kms_key_name", value)
|
1472
2017
|
|
1473
2018
|
|
2019
|
+
if not MYPY:
|
2020
|
+
class DatasetExternalDatasetReferenceArgsDict(TypedDict):
|
2021
|
+
connection: pulumi.Input[str]
|
2022
|
+
"""
|
2023
|
+
The connection id that is used to access the externalSource.
|
2024
|
+
Format: projects/{projectId}/locations/{locationId}/connections/{connectionId}
|
2025
|
+
"""
|
2026
|
+
external_source: pulumi.Input[str]
|
2027
|
+
"""
|
2028
|
+
External source that backs this dataset.
|
2029
|
+
"""
|
2030
|
+
elif False:
|
2031
|
+
DatasetExternalDatasetReferenceArgsDict: TypeAlias = Mapping[str, Any]
|
2032
|
+
|
1474
2033
|
@pulumi.input_type
|
1475
2034
|
class DatasetExternalDatasetReferenceArgs:
|
1476
2035
|
def __init__(__self__, *,
|
@@ -1510,6 +2069,14 @@ class DatasetExternalDatasetReferenceArgs:
|
|
1510
2069
|
pulumi.set(self, "external_source", value)
|
1511
2070
|
|
1512
2071
|
|
2072
|
+
if not MYPY:
|
2073
|
+
class DatasetIamBindingConditionArgsDict(TypedDict):
|
2074
|
+
expression: pulumi.Input[str]
|
2075
|
+
title: pulumi.Input[str]
|
2076
|
+
description: NotRequired[pulumi.Input[str]]
|
2077
|
+
elif False:
|
2078
|
+
DatasetIamBindingConditionArgsDict: TypeAlias = Mapping[str, Any]
|
2079
|
+
|
1513
2080
|
@pulumi.input_type
|
1514
2081
|
class DatasetIamBindingConditionArgs:
|
1515
2082
|
def __init__(__self__, *,
|
@@ -1549,6 +2116,14 @@ class DatasetIamBindingConditionArgs:
|
|
1549
2116
|
pulumi.set(self, "description", value)
|
1550
2117
|
|
1551
2118
|
|
2119
|
+
if not MYPY:
|
2120
|
+
class DatasetIamMemberConditionArgsDict(TypedDict):
|
2121
|
+
expression: pulumi.Input[str]
|
2122
|
+
title: pulumi.Input[str]
|
2123
|
+
description: NotRequired[pulumi.Input[str]]
|
2124
|
+
elif False:
|
2125
|
+
DatasetIamMemberConditionArgsDict: TypeAlias = Mapping[str, Any]
|
2126
|
+
|
1552
2127
|
@pulumi.input_type
|
1553
2128
|
class DatasetIamMemberConditionArgs:
|
1554
2129
|
def __init__(__self__, *,
|
@@ -1588,6 +2163,27 @@ class DatasetIamMemberConditionArgs:
|
|
1588
2163
|
pulumi.set(self, "description", value)
|
1589
2164
|
|
1590
2165
|
|
2166
|
+
if not MYPY:
|
2167
|
+
class IamBindingConditionArgsDict(TypedDict):
|
2168
|
+
expression: pulumi.Input[str]
|
2169
|
+
"""
|
2170
|
+
Textual representation of an expression in Common Expression Language syntax.
|
2171
|
+
"""
|
2172
|
+
title: pulumi.Input[str]
|
2173
|
+
"""
|
2174
|
+
A title for the expression, i.e. a short string describing its purpose.
|
2175
|
+
"""
|
2176
|
+
description: NotRequired[pulumi.Input[str]]
|
2177
|
+
"""
|
2178
|
+
An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
|
2179
|
+
|
2180
|
+
> **Warning:** This provider considers the `role` and condition contents (`title`+`description`+`expression`) as the
|
2181
|
+
identifier for the binding. This means that if any part of the condition is changed out-of-band, this provider will
|
2182
|
+
consider it to be an entirely different resource and will treat it as such.
|
2183
|
+
"""
|
2184
|
+
elif False:
|
2185
|
+
IamBindingConditionArgsDict: TypeAlias = Mapping[str, Any]
|
2186
|
+
|
1591
2187
|
@pulumi.input_type
|
1592
2188
|
class IamBindingConditionArgs:
|
1593
2189
|
def __init__(__self__, *,
|
@@ -1649,6 +2245,27 @@ class IamBindingConditionArgs:
|
|
1649
2245
|
pulumi.set(self, "description", value)
|
1650
2246
|
|
1651
2247
|
|
2248
|
+
if not MYPY:
|
2249
|
+
class IamMemberConditionArgsDict(TypedDict):
|
2250
|
+
expression: pulumi.Input[str]
|
2251
|
+
"""
|
2252
|
+
Textual representation of an expression in Common Expression Language syntax.
|
2253
|
+
"""
|
2254
|
+
title: pulumi.Input[str]
|
2255
|
+
"""
|
2256
|
+
A title for the expression, i.e. a short string describing its purpose.
|
2257
|
+
"""
|
2258
|
+
description: NotRequired[pulumi.Input[str]]
|
2259
|
+
"""
|
2260
|
+
An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
|
2261
|
+
|
2262
|
+
> **Warning:** This provider considers the `role` and condition contents (`title`+`description`+`expression`) as the
|
2263
|
+
identifier for the binding. This means that if any part of the condition is changed out-of-band, this provider will
|
2264
|
+
consider it to be an entirely different resource and will treat it as such.
|
2265
|
+
"""
|
2266
|
+
elif False:
|
2267
|
+
IamMemberConditionArgsDict: TypeAlias = Mapping[str, Any]
|
2268
|
+
|
1652
2269
|
@pulumi.input_type
|
1653
2270
|
class IamMemberConditionArgs:
|
1654
2271
|
def __init__(__self__, *,
|
@@ -1710,6 +2327,46 @@ class IamMemberConditionArgs:
|
|
1710
2327
|
pulumi.set(self, "description", value)
|
1711
2328
|
|
1712
2329
|
|
2330
|
+
if not MYPY:
|
2331
|
+
class JobCopyArgsDict(TypedDict):
|
2332
|
+
source_tables: pulumi.Input[Sequence[pulumi.Input['JobCopySourceTableArgsDict']]]
|
2333
|
+
"""
|
2334
|
+
Source tables to copy.
|
2335
|
+
Structure is documented below.
|
2336
|
+
"""
|
2337
|
+
create_disposition: NotRequired[pulumi.Input[str]]
|
2338
|
+
"""
|
2339
|
+
Specifies whether the job is allowed to create new tables. The following values are supported:
|
2340
|
+
CREATE_IF_NEEDED: If the table does not exist, BigQuery creates the table.
|
2341
|
+
CREATE_NEVER: The table must already exist. If it does not, a 'notFound' error is returned in the job result.
|
2342
|
+
Creation, truncation and append actions occur as one atomic update upon job completion
|
2343
|
+
Default value is `CREATE_IF_NEEDED`.
|
2344
|
+
Possible values are: `CREATE_IF_NEEDED`, `CREATE_NEVER`.
|
2345
|
+
"""
|
2346
|
+
destination_encryption_configuration: NotRequired[pulumi.Input['JobCopyDestinationEncryptionConfigurationArgsDict']]
|
2347
|
+
"""
|
2348
|
+
Custom encryption configuration (e.g., Cloud KMS keys)
|
2349
|
+
Structure is documented below.
|
2350
|
+
"""
|
2351
|
+
destination_table: NotRequired[pulumi.Input['JobCopyDestinationTableArgsDict']]
|
2352
|
+
"""
|
2353
|
+
The destination table.
|
2354
|
+
Structure is documented below.
|
2355
|
+
"""
|
2356
|
+
write_disposition: NotRequired[pulumi.Input[str]]
|
2357
|
+
"""
|
2358
|
+
Specifies the action that occurs if the destination table already exists. The following values are supported:
|
2359
|
+
WRITE_TRUNCATE: If the table already exists, BigQuery overwrites the table data and uses the schema from the query result.
|
2360
|
+
WRITE_APPEND: If the table already exists, BigQuery appends the data to the table.
|
2361
|
+
WRITE_EMPTY: If the table already exists and contains data, a 'duplicate' error is returned in the job result.
|
2362
|
+
Each action is atomic and only occurs if BigQuery is able to complete the job successfully.
|
2363
|
+
Creation, truncation and append actions occur as one atomic update upon job completion.
|
2364
|
+
Default value is `WRITE_EMPTY`.
|
2365
|
+
Possible values are: `WRITE_TRUNCATE`, `WRITE_APPEND`, `WRITE_EMPTY`.
|
2366
|
+
"""
|
2367
|
+
elif False:
|
2368
|
+
JobCopyArgsDict: TypeAlias = Mapping[str, Any]
|
2369
|
+
|
1713
2370
|
@pulumi.input_type
|
1714
2371
|
class JobCopyArgs:
|
1715
2372
|
def __init__(__self__, *,
|
@@ -1826,6 +2483,21 @@ class JobCopyArgs:
|
|
1826
2483
|
pulumi.set(self, "write_disposition", value)
|
1827
2484
|
|
1828
2485
|
|
2486
|
+
if not MYPY:
|
2487
|
+
class JobCopyDestinationEncryptionConfigurationArgsDict(TypedDict):
|
2488
|
+
kms_key_name: pulumi.Input[str]
|
2489
|
+
"""
|
2490
|
+
Describes the Cloud KMS encryption key that will be used to protect destination BigQuery table.
|
2491
|
+
The BigQuery Service Account associated with your project requires access to this encryption key.
|
2492
|
+
"""
|
2493
|
+
kms_key_version: NotRequired[pulumi.Input[str]]
|
2494
|
+
"""
|
2495
|
+
(Output)
|
2496
|
+
Describes the Cloud KMS encryption key version used to protect destination BigQuery table.
|
2497
|
+
"""
|
2498
|
+
elif False:
|
2499
|
+
JobCopyDestinationEncryptionConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
2500
|
+
|
1829
2501
|
@pulumi.input_type
|
1830
2502
|
class JobCopyDestinationEncryptionConfigurationArgs:
|
1831
2503
|
def __init__(__self__, *,
|
@@ -1868,6 +2540,24 @@ class JobCopyDestinationEncryptionConfigurationArgs:
|
|
1868
2540
|
pulumi.set(self, "kms_key_version", value)
|
1869
2541
|
|
1870
2542
|
|
2543
|
+
if not MYPY:
|
2544
|
+
class JobCopyDestinationTableArgsDict(TypedDict):
|
2545
|
+
table_id: pulumi.Input[str]
|
2546
|
+
"""
|
2547
|
+
The table. Can be specified `{{table_id}}` if `project_id` and `dataset_id` are also set,
|
2548
|
+
or of the form `projects/{{project}}/datasets/{{dataset_id}}/tables/{{table_id}}` if not.
|
2549
|
+
"""
|
2550
|
+
dataset_id: NotRequired[pulumi.Input[str]]
|
2551
|
+
"""
|
2552
|
+
The ID of the dataset containing this table.
|
2553
|
+
"""
|
2554
|
+
project_id: NotRequired[pulumi.Input[str]]
|
2555
|
+
"""
|
2556
|
+
The ID of the project containing this table.
|
2557
|
+
"""
|
2558
|
+
elif False:
|
2559
|
+
JobCopyDestinationTableArgsDict: TypeAlias = Mapping[str, Any]
|
2560
|
+
|
1871
2561
|
@pulumi.input_type
|
1872
2562
|
class JobCopyDestinationTableArgs:
|
1873
2563
|
def __init__(__self__, *,
|
@@ -1924,6 +2614,24 @@ class JobCopyDestinationTableArgs:
|
|
1924
2614
|
pulumi.set(self, "project_id", value)
|
1925
2615
|
|
1926
2616
|
|
2617
|
+
if not MYPY:
|
2618
|
+
class JobCopySourceTableArgsDict(TypedDict):
|
2619
|
+
table_id: pulumi.Input[str]
|
2620
|
+
"""
|
2621
|
+
The table. Can be specified `{{table_id}}` if `project_id` and `dataset_id` are also set,
|
2622
|
+
or of the form `projects/{{project}}/datasets/{{dataset_id}}/tables/{{table_id}}` if not.
|
2623
|
+
"""
|
2624
|
+
dataset_id: NotRequired[pulumi.Input[str]]
|
2625
|
+
"""
|
2626
|
+
The ID of the dataset containing this table.
|
2627
|
+
"""
|
2628
|
+
project_id: NotRequired[pulumi.Input[str]]
|
2629
|
+
"""
|
2630
|
+
The ID of the project containing this table.
|
2631
|
+
"""
|
2632
|
+
elif False:
|
2633
|
+
JobCopySourceTableArgsDict: TypeAlias = Mapping[str, Any]
|
2634
|
+
|
1927
2635
|
@pulumi.input_type
|
1928
2636
|
class JobCopySourceTableArgs:
|
1929
2637
|
def __init__(__self__, *,
|
@@ -1980,6 +2688,49 @@ class JobCopySourceTableArgs:
|
|
1980
2688
|
pulumi.set(self, "project_id", value)
|
1981
2689
|
|
1982
2690
|
|
2691
|
+
if not MYPY:
|
2692
|
+
class JobExtractArgsDict(TypedDict):
|
2693
|
+
destination_uris: pulumi.Input[Sequence[pulumi.Input[str]]]
|
2694
|
+
"""
|
2695
|
+
A list of fully-qualified Google Cloud Storage URIs where the extracted table should be written.
|
2696
|
+
"""
|
2697
|
+
compression: NotRequired[pulumi.Input[str]]
|
2698
|
+
"""
|
2699
|
+
The compression type to use for exported files. Possible values include GZIP, DEFLATE, SNAPPY, and NONE.
|
2700
|
+
The default value is NONE. DEFLATE and SNAPPY are only supported for Avro.
|
2701
|
+
"""
|
2702
|
+
destination_format: NotRequired[pulumi.Input[str]]
|
2703
|
+
"""
|
2704
|
+
The exported file format. Possible values include CSV, NEWLINE_DELIMITED_JSON and AVRO for tables and SAVED_MODEL for models.
|
2705
|
+
The default value for tables is CSV. Tables with nested or repeated fields cannot be exported as CSV.
|
2706
|
+
The default value for models is SAVED_MODEL.
|
2707
|
+
"""
|
2708
|
+
field_delimiter: NotRequired[pulumi.Input[str]]
|
2709
|
+
"""
|
2710
|
+
When extracting data in CSV format, this defines the delimiter to use between fields in the exported data.
|
2711
|
+
Default is ','
|
2712
|
+
"""
|
2713
|
+
print_header: NotRequired[pulumi.Input[bool]]
|
2714
|
+
"""
|
2715
|
+
Whether to print out a header row in the results. Default is true.
|
2716
|
+
"""
|
2717
|
+
source_model: NotRequired[pulumi.Input['JobExtractSourceModelArgsDict']]
|
2718
|
+
"""
|
2719
|
+
A reference to the model being exported.
|
2720
|
+
Structure is documented below.
|
2721
|
+
"""
|
2722
|
+
source_table: NotRequired[pulumi.Input['JobExtractSourceTableArgsDict']]
|
2723
|
+
"""
|
2724
|
+
A reference to the table being exported.
|
2725
|
+
Structure is documented below.
|
2726
|
+
"""
|
2727
|
+
use_avro_logical_types: NotRequired[pulumi.Input[bool]]
|
2728
|
+
"""
|
2729
|
+
Whether to use logical types when extracting to AVRO format.
|
2730
|
+
"""
|
2731
|
+
elif False:
|
2732
|
+
JobExtractArgsDict: TypeAlias = Mapping[str, Any]
|
2733
|
+
|
1983
2734
|
@pulumi.input_type
|
1984
2735
|
class JobExtractArgs:
|
1985
2736
|
def __init__(__self__, *,
|
@@ -2126,6 +2877,25 @@ class JobExtractArgs:
|
|
2126
2877
|
pulumi.set(self, "use_avro_logical_types", value)
|
2127
2878
|
|
2128
2879
|
|
2880
|
+
if not MYPY:
|
2881
|
+
class JobExtractSourceModelArgsDict(TypedDict):
|
2882
|
+
dataset_id: pulumi.Input[str]
|
2883
|
+
"""
|
2884
|
+
The ID of the dataset containing this model.
|
2885
|
+
"""
|
2886
|
+
model_id: pulumi.Input[str]
|
2887
|
+
"""
|
2888
|
+
The ID of the model.
|
2889
|
+
|
2890
|
+
- - -
|
2891
|
+
"""
|
2892
|
+
project_id: pulumi.Input[str]
|
2893
|
+
"""
|
2894
|
+
The ID of the project containing this model.
|
2895
|
+
"""
|
2896
|
+
elif False:
|
2897
|
+
JobExtractSourceModelArgsDict: TypeAlias = Mapping[str, Any]
|
2898
|
+
|
2129
2899
|
@pulumi.input_type
|
2130
2900
|
class JobExtractSourceModelArgs:
|
2131
2901
|
def __init__(__self__, *,
|
@@ -2182,6 +2952,24 @@ class JobExtractSourceModelArgs:
|
|
2182
2952
|
pulumi.set(self, "project_id", value)
|
2183
2953
|
|
2184
2954
|
|
2955
|
+
if not MYPY:
|
2956
|
+
class JobExtractSourceTableArgsDict(TypedDict):
|
2957
|
+
table_id: pulumi.Input[str]
|
2958
|
+
"""
|
2959
|
+
The table. Can be specified `{{table_id}}` if `project_id` and `dataset_id` are also set,
|
2960
|
+
or of the form `projects/{{project}}/datasets/{{dataset_id}}/tables/{{table_id}}` if not.
|
2961
|
+
"""
|
2962
|
+
dataset_id: NotRequired[pulumi.Input[str]]
|
2963
|
+
"""
|
2964
|
+
The ID of the dataset containing this table.
|
2965
|
+
"""
|
2966
|
+
project_id: NotRequired[pulumi.Input[str]]
|
2967
|
+
"""
|
2968
|
+
The ID of the project containing this table.
|
2969
|
+
"""
|
2970
|
+
elif False:
|
2971
|
+
JobExtractSourceTableArgsDict: TypeAlias = Mapping[str, Any]
|
2972
|
+
|
2185
2973
|
@pulumi.input_type
|
2186
2974
|
class JobExtractSourceTableArgs:
|
2187
2975
|
def __init__(__self__, *,
|
@@ -2238,6 +3026,156 @@ class JobExtractSourceTableArgs:
|
|
2238
3026
|
pulumi.set(self, "project_id", value)
|
2239
3027
|
|
2240
3028
|
|
3029
|
+
if not MYPY:
|
3030
|
+
class JobLoadArgsDict(TypedDict):
|
3031
|
+
destination_table: pulumi.Input['JobLoadDestinationTableArgsDict']
|
3032
|
+
"""
|
3033
|
+
The destination table to load the data into.
|
3034
|
+
Structure is documented below.
|
3035
|
+
"""
|
3036
|
+
source_uris: pulumi.Input[Sequence[pulumi.Input[str]]]
|
3037
|
+
"""
|
3038
|
+
The fully-qualified URIs that point to your data in Google Cloud.
|
3039
|
+
For Google Cloud Storage URIs: Each URI can contain one '\\*' wildcard character
|
3040
|
+
and it must come after the 'bucket' name. Size limits related to load jobs apply
|
3041
|
+
to external data sources. For Google Cloud Bigtable URIs: Exactly one URI can be
|
3042
|
+
specified and it has be a fully specified and valid HTTPS URL for a Google Cloud Bigtable table.
|
3043
|
+
For Google Cloud Datastore backups: Exactly one URI can be specified. Also, the '\\*' wildcard character is not allowed.
|
3044
|
+
"""
|
3045
|
+
allow_jagged_rows: NotRequired[pulumi.Input[bool]]
|
3046
|
+
"""
|
3047
|
+
Accept rows that are missing trailing optional columns. The missing values are treated as nulls.
|
3048
|
+
If false, records with missing trailing columns are treated as bad records, and if there are too many bad records,
|
3049
|
+
an invalid error is returned in the job result. The default value is false. Only applicable to CSV, ignored for other formats.
|
3050
|
+
"""
|
3051
|
+
allow_quoted_newlines: NotRequired[pulumi.Input[bool]]
|
3052
|
+
"""
|
3053
|
+
Indicates if BigQuery should allow quoted data sections that contain newline characters in a CSV file.
|
3054
|
+
The default value is false.
|
3055
|
+
"""
|
3056
|
+
autodetect: NotRequired[pulumi.Input[bool]]
|
3057
|
+
"""
|
3058
|
+
Indicates if we should automatically infer the options and schema for CSV and JSON sources.
|
3059
|
+
"""
|
3060
|
+
create_disposition: NotRequired[pulumi.Input[str]]
|
3061
|
+
"""
|
3062
|
+
Specifies whether the job is allowed to create new tables. The following values are supported:
|
3063
|
+
CREATE_IF_NEEDED: If the table does not exist, BigQuery creates the table.
|
3064
|
+
CREATE_NEVER: The table must already exist. If it does not, a 'notFound' error is returned in the job result.
|
3065
|
+
Creation, truncation and append actions occur as one atomic update upon job completion
|
3066
|
+
Default value is `CREATE_IF_NEEDED`.
|
3067
|
+
Possible values are: `CREATE_IF_NEEDED`, `CREATE_NEVER`.
|
3068
|
+
"""
|
3069
|
+
destination_encryption_configuration: NotRequired[pulumi.Input['JobLoadDestinationEncryptionConfigurationArgsDict']]
|
3070
|
+
"""
|
3071
|
+
Custom encryption configuration (e.g., Cloud KMS keys)
|
3072
|
+
Structure is documented below.
|
3073
|
+
"""
|
3074
|
+
encoding: NotRequired[pulumi.Input[str]]
|
3075
|
+
"""
|
3076
|
+
The character encoding of the data. The supported values are UTF-8 or ISO-8859-1.
|
3077
|
+
The default value is UTF-8. BigQuery decodes the data after the raw, binary data
|
3078
|
+
has been split using the values of the quote and fieldDelimiter properties.
|
3079
|
+
"""
|
3080
|
+
field_delimiter: NotRequired[pulumi.Input[str]]
|
3081
|
+
"""
|
3082
|
+
The separator for fields in a CSV file. The separator can be any ISO-8859-1 single-byte character.
|
3083
|
+
To use a character in the range 128-255, you must encode the character as UTF8. BigQuery converts
|
3084
|
+
the string to ISO-8859-1 encoding, and then uses the first byte of the encoded string to split the
|
3085
|
+
data in its raw, binary state. BigQuery also supports the escape sequence "\\t" to specify a tab separator.
|
3086
|
+
The default value is a comma (',').
|
3087
|
+
"""
|
3088
|
+
ignore_unknown_values: NotRequired[pulumi.Input[bool]]
|
3089
|
+
"""
|
3090
|
+
Indicates if BigQuery should allow extra values that are not represented in the table schema.
|
3091
|
+
If true, the extra values are ignored. If false, records with extra columns are treated as bad records,
|
3092
|
+
and if there are too many bad records, an invalid error is returned in the job result.
|
3093
|
+
The default value is false. The sourceFormat property determines what BigQuery treats as an extra value:
|
3094
|
+
CSV: Trailing columns
|
3095
|
+
JSON: Named values that don't match any column names
|
3096
|
+
"""
|
3097
|
+
json_extension: NotRequired[pulumi.Input[str]]
|
3098
|
+
"""
|
3099
|
+
If sourceFormat is set to newline-delimited JSON, indicates whether it should be processed as a JSON variant such as GeoJSON.
|
3100
|
+
For a sourceFormat other than JSON, omit this field. If the sourceFormat is newline-delimited JSON: - for newline-delimited
|
3101
|
+
GeoJSON: set to GEOJSON.
|
3102
|
+
"""
|
3103
|
+
max_bad_records: NotRequired[pulumi.Input[int]]
|
3104
|
+
"""
|
3105
|
+
The maximum number of bad records that BigQuery can ignore when running the job. If the number of bad records exceeds this value,
|
3106
|
+
an invalid error is returned in the job result. The default value is 0, which requires that all records are valid.
|
3107
|
+
"""
|
3108
|
+
null_marker: NotRequired[pulumi.Input[str]]
|
3109
|
+
"""
|
3110
|
+
Specifies a string that represents a null value in a CSV file. The default value is the empty string. If you set this
|
3111
|
+
property to a custom value, BigQuery throws an error if an
|
3112
|
+
empty string is present for all data types except for STRING and BYTE. For STRING and BYTE columns, BigQuery interprets the empty string as
|
3113
|
+
an empty value.
|
3114
|
+
"""
|
3115
|
+
parquet_options: NotRequired[pulumi.Input['JobLoadParquetOptionsArgsDict']]
|
3116
|
+
"""
|
3117
|
+
Parquet Options for load and make external tables.
|
3118
|
+
Structure is documented below.
|
3119
|
+
"""
|
3120
|
+
projection_fields: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
3121
|
+
"""
|
3122
|
+
If sourceFormat is set to "DATASTORE_BACKUP", indicates which entity properties to load into BigQuery from a Cloud Datastore backup.
|
3123
|
+
Property names are case sensitive and must be top-level properties. If no properties are specified, BigQuery loads all properties.
|
3124
|
+
If any named property isn't found in the Cloud Datastore backup, an invalid error is returned in the job result.
|
3125
|
+
"""
|
3126
|
+
quote: NotRequired[pulumi.Input[str]]
|
3127
|
+
"""
|
3128
|
+
The value that is used to quote data sections in a CSV file. BigQuery converts the string to ISO-8859-1 encoding,
|
3129
|
+
and then uses the first byte of the encoded string to split the data in its raw, binary state.
|
3130
|
+
The default value is a double-quote ('"'). If your data does not contain quoted sections, set the property value to an empty string.
|
3131
|
+
If your data contains quoted newline characters, you must also set the allowQuotedNewlines property to true.
|
3132
|
+
"""
|
3133
|
+
schema_update_options: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
3134
|
+
"""
|
3135
|
+
Allows the schema of the destination table to be updated as a side effect of the load job if a schema is autodetected or
|
3136
|
+
supplied in the job configuration. Schema update options are supported in two cases: when writeDisposition is WRITE_APPEND;
|
3137
|
+
when writeDisposition is WRITE_TRUNCATE and the destination table is a partition of a table, specified by partition decorators.
|
3138
|
+
For normal tables, WRITE_TRUNCATE will always overwrite the schema. One or more of the following values are specified:
|
3139
|
+
ALLOW_FIELD_ADDITION: allow adding a nullable field to the schema.
|
3140
|
+
ALLOW_FIELD_RELAXATION: allow relaxing a required field in the original schema to nullable.
|
3141
|
+
"""
|
3142
|
+
skip_leading_rows: NotRequired[pulumi.Input[int]]
|
3143
|
+
"""
|
3144
|
+
The number of rows at the top of a CSV file that BigQuery will skip when loading the data.
|
3145
|
+
The default value is 0. This property is useful if you have header rows in the file that should be skipped.
|
3146
|
+
When autodetect is on, the behavior is the following:
|
3147
|
+
skipLeadingRows unspecified - Autodetect tries to detect headers in the first row. If they are not detected,
|
3148
|
+
the row is read as data. Otherwise data is read starting from the second row.
|
3149
|
+
skipLeadingRows is 0 - Instructs autodetect that there are no headers and data should be read starting from the first row.
|
3150
|
+
skipLeadingRows = N > 0 - Autodetect skips N-1 rows and tries to detect headers in row N. If headers are not detected,
|
3151
|
+
row N is just skipped. Otherwise row N is used to extract column names for the detected schema.
|
3152
|
+
"""
|
3153
|
+
source_format: NotRequired[pulumi.Input[str]]
|
3154
|
+
"""
|
3155
|
+
The format of the data files. For CSV files, specify "CSV". For datastore backups, specify "DATASTORE_BACKUP".
|
3156
|
+
For newline-delimited JSON, specify "NEWLINE_DELIMITED_JSON". For Avro, specify "AVRO". For parquet, specify "PARQUET".
|
3157
|
+
For orc, specify "ORC". [Beta] For Bigtable, specify "BIGTABLE".
|
3158
|
+
The default value is CSV.
|
3159
|
+
"""
|
3160
|
+
time_partitioning: NotRequired[pulumi.Input['JobLoadTimePartitioningArgsDict']]
|
3161
|
+
"""
|
3162
|
+
Time-based partitioning specification for the destination table.
|
3163
|
+
Structure is documented below.
|
3164
|
+
"""
|
3165
|
+
write_disposition: NotRequired[pulumi.Input[str]]
|
3166
|
+
"""
|
3167
|
+
Specifies the action that occurs if the destination table already exists. The following values are supported:
|
3168
|
+
WRITE_TRUNCATE: If the table already exists, BigQuery overwrites the table data and uses the schema from the query result.
|
3169
|
+
WRITE_APPEND: If the table already exists, BigQuery appends the data to the table.
|
3170
|
+
WRITE_EMPTY: If the table already exists and contains data, a 'duplicate' error is returned in the job result.
|
3171
|
+
Each action is atomic and only occurs if BigQuery is able to complete the job successfully.
|
3172
|
+
Creation, truncation and append actions occur as one atomic update upon job completion.
|
3173
|
+
Default value is `WRITE_EMPTY`.
|
3174
|
+
Possible values are: `WRITE_TRUNCATE`, `WRITE_APPEND`, `WRITE_EMPTY`.
|
3175
|
+
"""
|
3176
|
+
elif False:
|
3177
|
+
JobLoadArgsDict: TypeAlias = Mapping[str, Any]
|
3178
|
+
|
2241
3179
|
@pulumi.input_type
|
2242
3180
|
class JobLoadArgs:
|
2243
3181
|
def __init__(__self__, *,
|
@@ -2701,6 +3639,21 @@ class JobLoadArgs:
|
|
2701
3639
|
pulumi.set(self, "write_disposition", value)
|
2702
3640
|
|
2703
3641
|
|
3642
|
+
if not MYPY:
|
3643
|
+
class JobLoadDestinationEncryptionConfigurationArgsDict(TypedDict):
|
3644
|
+
kms_key_name: pulumi.Input[str]
|
3645
|
+
"""
|
3646
|
+
Describes the Cloud KMS encryption key that will be used to protect destination BigQuery table.
|
3647
|
+
The BigQuery Service Account associated with your project requires access to this encryption key.
|
3648
|
+
"""
|
3649
|
+
kms_key_version: NotRequired[pulumi.Input[str]]
|
3650
|
+
"""
|
3651
|
+
(Output)
|
3652
|
+
Describes the Cloud KMS encryption key version used to protect destination BigQuery table.
|
3653
|
+
"""
|
3654
|
+
elif False:
|
3655
|
+
JobLoadDestinationEncryptionConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
3656
|
+
|
2704
3657
|
@pulumi.input_type
|
2705
3658
|
class JobLoadDestinationEncryptionConfigurationArgs:
|
2706
3659
|
def __init__(__self__, *,
|
@@ -2743,6 +3696,24 @@ class JobLoadDestinationEncryptionConfigurationArgs:
|
|
2743
3696
|
pulumi.set(self, "kms_key_version", value)
|
2744
3697
|
|
2745
3698
|
|
3699
|
+
if not MYPY:
|
3700
|
+
class JobLoadDestinationTableArgsDict(TypedDict):
|
3701
|
+
table_id: pulumi.Input[str]
|
3702
|
+
"""
|
3703
|
+
The table. Can be specified `{{table_id}}` if `project_id` and `dataset_id` are also set,
|
3704
|
+
or of the form `projects/{{project}}/datasets/{{dataset_id}}/tables/{{table_id}}` if not.
|
3705
|
+
"""
|
3706
|
+
dataset_id: NotRequired[pulumi.Input[str]]
|
3707
|
+
"""
|
3708
|
+
The ID of the dataset containing this table.
|
3709
|
+
"""
|
3710
|
+
project_id: NotRequired[pulumi.Input[str]]
|
3711
|
+
"""
|
3712
|
+
The ID of the project containing this table.
|
3713
|
+
"""
|
3714
|
+
elif False:
|
3715
|
+
JobLoadDestinationTableArgsDict: TypeAlias = Mapping[str, Any]
|
3716
|
+
|
2746
3717
|
@pulumi.input_type
|
2747
3718
|
class JobLoadDestinationTableArgs:
|
2748
3719
|
def __init__(__self__, *,
|
@@ -2799,6 +3770,19 @@ class JobLoadDestinationTableArgs:
|
|
2799
3770
|
pulumi.set(self, "project_id", value)
|
2800
3771
|
|
2801
3772
|
|
3773
|
+
if not MYPY:
|
3774
|
+
class JobLoadParquetOptionsArgsDict(TypedDict):
|
3775
|
+
enable_list_inference: NotRequired[pulumi.Input[bool]]
|
3776
|
+
"""
|
3777
|
+
If sourceFormat is set to PARQUET, indicates whether to use schema inference specifically for Parquet LIST logical type.
|
3778
|
+
"""
|
3779
|
+
enum_as_string: NotRequired[pulumi.Input[bool]]
|
3780
|
+
"""
|
3781
|
+
If sourceFormat is set to PARQUET, indicates whether to infer Parquet ENUM logical type as STRING instead of BYTES by default.
|
3782
|
+
"""
|
3783
|
+
elif False:
|
3784
|
+
JobLoadParquetOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
3785
|
+
|
2802
3786
|
@pulumi.input_type
|
2803
3787
|
class JobLoadParquetOptionsArgs:
|
2804
3788
|
def __init__(__self__, *,
|
@@ -2838,6 +3822,26 @@ class JobLoadParquetOptionsArgs:
|
|
2838
3822
|
pulumi.set(self, "enum_as_string", value)
|
2839
3823
|
|
2840
3824
|
|
3825
|
+
if not MYPY:
|
3826
|
+
class JobLoadTimePartitioningArgsDict(TypedDict):
|
3827
|
+
type: pulumi.Input[str]
|
3828
|
+
"""
|
3829
|
+
The only type supported is DAY, which will generate one partition per day. Providing an empty string used to cause an error,
|
3830
|
+
but in OnePlatform the field will be treated as unset.
|
3831
|
+
"""
|
3832
|
+
expiration_ms: NotRequired[pulumi.Input[str]]
|
3833
|
+
"""
|
3834
|
+
Number of milliseconds for which to keep the storage for a partition. A wrapper is used here because 0 is an invalid value.
|
3835
|
+
"""
|
3836
|
+
field: NotRequired[pulumi.Input[str]]
|
3837
|
+
"""
|
3838
|
+
If not set, the table is partitioned by pseudo column '_PARTITIONTIME'; if set, the table is partitioned by this field.
|
3839
|
+
The field must be a top-level TIMESTAMP or DATE field. Its mode must be NULLABLE or REQUIRED.
|
3840
|
+
A wrapper is used here because an empty string is an invalid value.
|
3841
|
+
"""
|
3842
|
+
elif False:
|
3843
|
+
JobLoadTimePartitioningArgsDict: TypeAlias = Mapping[str, Any]
|
3844
|
+
|
2841
3845
|
@pulumi.input_type
|
2842
3846
|
class JobLoadTimePartitioningArgs:
|
2843
3847
|
def __init__(__self__, *,
|
@@ -2898,6 +3902,116 @@ class JobLoadTimePartitioningArgs:
|
|
2898
3902
|
pulumi.set(self, "field", value)
|
2899
3903
|
|
2900
3904
|
|
3905
|
+
if not MYPY:
|
3906
|
+
class JobQueryArgsDict(TypedDict):
|
3907
|
+
query: pulumi.Input[str]
|
3908
|
+
"""
|
3909
|
+
SQL query text to execute. The useLegacySql field can be used to indicate whether the query uses legacy SQL or standard SQL.
|
3910
|
+
*NOTE*: queries containing [DML language](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-manipulation-language)
|
3911
|
+
(`DELETE`, `UPDATE`, `MERGE`, `INSERT`) must specify `create_disposition = ""` and `write_disposition = ""`.
|
3912
|
+
"""
|
3913
|
+
allow_large_results: NotRequired[pulumi.Input[bool]]
|
3914
|
+
"""
|
3915
|
+
If true and query uses legacy SQL dialect, allows the query to produce arbitrarily large result tables at a slight cost in performance.
|
3916
|
+
Requires destinationTable to be set. For standard SQL queries, this flag is ignored and large results are always allowed.
|
3917
|
+
However, you must still set destinationTable when result size exceeds the allowed maximum response size.
|
3918
|
+
"""
|
3919
|
+
create_disposition: NotRequired[pulumi.Input[str]]
|
3920
|
+
"""
|
3921
|
+
Specifies whether the job is allowed to create new tables. The following values are supported:
|
3922
|
+
CREATE_IF_NEEDED: If the table does not exist, BigQuery creates the table.
|
3923
|
+
CREATE_NEVER: The table must already exist. If it does not, a 'notFound' error is returned in the job result.
|
3924
|
+
Creation, truncation and append actions occur as one atomic update upon job completion
|
3925
|
+
Default value is `CREATE_IF_NEEDED`.
|
3926
|
+
Possible values are: `CREATE_IF_NEEDED`, `CREATE_NEVER`.
|
3927
|
+
"""
|
3928
|
+
default_dataset: NotRequired[pulumi.Input['JobQueryDefaultDatasetArgsDict']]
|
3929
|
+
"""
|
3930
|
+
Specifies the default dataset to use for unqualified table names in the query. Note that this does not alter behavior of unqualified dataset names.
|
3931
|
+
Structure is documented below.
|
3932
|
+
"""
|
3933
|
+
destination_encryption_configuration: NotRequired[pulumi.Input['JobQueryDestinationEncryptionConfigurationArgsDict']]
|
3934
|
+
"""
|
3935
|
+
Custom encryption configuration (e.g., Cloud KMS keys)
|
3936
|
+
Structure is documented below.
|
3937
|
+
"""
|
3938
|
+
destination_table: NotRequired[pulumi.Input['JobQueryDestinationTableArgsDict']]
|
3939
|
+
"""
|
3940
|
+
Describes the table where the query results should be stored.
|
3941
|
+
This property must be set for large results that exceed the maximum response size.
|
3942
|
+
For queries that produce anonymous (cached) results, this field will be populated by BigQuery.
|
3943
|
+
Structure is documented below.
|
3944
|
+
"""
|
3945
|
+
flatten_results: NotRequired[pulumi.Input[bool]]
|
3946
|
+
"""
|
3947
|
+
If true and query uses legacy SQL dialect, flattens all nested and repeated fields in the query results.
|
3948
|
+
allowLargeResults must be true if this is set to false. For standard SQL queries, this flag is ignored and results are never flattened.
|
3949
|
+
"""
|
3950
|
+
maximum_billing_tier: NotRequired[pulumi.Input[int]]
|
3951
|
+
"""
|
3952
|
+
Limits the billing tier for this job. Queries that have resource usage beyond this tier will fail (without incurring a charge).
|
3953
|
+
If unspecified, this will be set to your project default.
|
3954
|
+
"""
|
3955
|
+
maximum_bytes_billed: NotRequired[pulumi.Input[str]]
|
3956
|
+
"""
|
3957
|
+
Limits the bytes billed for this job. Queries that will have bytes billed beyond this limit will fail (without incurring a charge).
|
3958
|
+
If unspecified, this will be set to your project default.
|
3959
|
+
"""
|
3960
|
+
parameter_mode: NotRequired[pulumi.Input[str]]
|
3961
|
+
"""
|
3962
|
+
Standard SQL only. Set to POSITIONAL to use positional (?) query parameters or to NAMED to use named (@myparam) query parameters in this query.
|
3963
|
+
"""
|
3964
|
+
priority: NotRequired[pulumi.Input[str]]
|
3965
|
+
"""
|
3966
|
+
Specifies a priority for the query.
|
3967
|
+
Default value is `INTERACTIVE`.
|
3968
|
+
Possible values are: `INTERACTIVE`, `BATCH`.
|
3969
|
+
"""
|
3970
|
+
schema_update_options: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
3971
|
+
"""
|
3972
|
+
Allows the schema of the destination table to be updated as a side effect of the query job.
|
3973
|
+
Schema update options are supported in two cases: when writeDisposition is WRITE_APPEND;
|
3974
|
+
when writeDisposition is WRITE_TRUNCATE and the destination table is a partition of a table,
|
3975
|
+
specified by partition decorators. For normal tables, WRITE_TRUNCATE will always overwrite the schema.
|
3976
|
+
One or more of the following values are specified:
|
3977
|
+
ALLOW_FIELD_ADDITION: allow adding a nullable field to the schema.
|
3978
|
+
ALLOW_FIELD_RELAXATION: allow relaxing a required field in the original schema to nullable.
|
3979
|
+
"""
|
3980
|
+
script_options: NotRequired[pulumi.Input['JobQueryScriptOptionsArgsDict']]
|
3981
|
+
"""
|
3982
|
+
Options controlling the execution of scripts.
|
3983
|
+
Structure is documented below.
|
3984
|
+
"""
|
3985
|
+
use_legacy_sql: NotRequired[pulumi.Input[bool]]
|
3986
|
+
"""
|
3987
|
+
Specifies whether to use BigQuery's legacy SQL dialect for this query. The default value is true.
|
3988
|
+
If set to false, the query will use BigQuery's standard SQL.
|
3989
|
+
"""
|
3990
|
+
use_query_cache: NotRequired[pulumi.Input[bool]]
|
3991
|
+
"""
|
3992
|
+
Whether to look for the result in the query cache. The query cache is a best-effort cache that will be flushed whenever
|
3993
|
+
tables in the query are modified. Moreover, the query cache is only available when a query does not have a destination table specified.
|
3994
|
+
The default value is true.
|
3995
|
+
"""
|
3996
|
+
user_defined_function_resources: NotRequired[pulumi.Input[Sequence[pulumi.Input['JobQueryUserDefinedFunctionResourceArgsDict']]]]
|
3997
|
+
"""
|
3998
|
+
Describes user-defined function resources used in the query.
|
3999
|
+
Structure is documented below.
|
4000
|
+
"""
|
4001
|
+
write_disposition: NotRequired[pulumi.Input[str]]
|
4002
|
+
"""
|
4003
|
+
Specifies the action that occurs if the destination table already exists. The following values are supported:
|
4004
|
+
WRITE_TRUNCATE: If the table already exists, BigQuery overwrites the table data and uses the schema from the query result.
|
4005
|
+
WRITE_APPEND: If the table already exists, BigQuery appends the data to the table.
|
4006
|
+
WRITE_EMPTY: If the table already exists and contains data, a 'duplicate' error is returned in the job result.
|
4007
|
+
Each action is atomic and only occurs if BigQuery is able to complete the job successfully.
|
4008
|
+
Creation, truncation and append actions occur as one atomic update upon job completion.
|
4009
|
+
Default value is `WRITE_EMPTY`.
|
4010
|
+
Possible values are: `WRITE_TRUNCATE`, `WRITE_APPEND`, `WRITE_EMPTY`.
|
4011
|
+
"""
|
4012
|
+
elif False:
|
4013
|
+
JobQueryArgsDict: TypeAlias = Mapping[str, Any]
|
4014
|
+
|
2901
4015
|
@pulumi.input_type
|
2902
4016
|
class JobQueryArgs:
|
2903
4017
|
def __init__(__self__, *,
|
@@ -3250,6 +4364,20 @@ class JobQueryArgs:
|
|
3250
4364
|
pulumi.set(self, "write_disposition", value)
|
3251
4365
|
|
3252
4366
|
|
4367
|
+
if not MYPY:
|
4368
|
+
class JobQueryDefaultDatasetArgsDict(TypedDict):
|
4369
|
+
dataset_id: pulumi.Input[str]
|
4370
|
+
"""
|
4371
|
+
The dataset. Can be specified `{{dataset_id}}` if `project_id` is also set,
|
4372
|
+
or of the form `projects/{{project}}/datasets/{{dataset_id}}` if not.
|
4373
|
+
"""
|
4374
|
+
project_id: NotRequired[pulumi.Input[str]]
|
4375
|
+
"""
|
4376
|
+
The ID of the project containing this table.
|
4377
|
+
"""
|
4378
|
+
elif False:
|
4379
|
+
JobQueryDefaultDatasetArgsDict: TypeAlias = Mapping[str, Any]
|
4380
|
+
|
3253
4381
|
@pulumi.input_type
|
3254
4382
|
class JobQueryDefaultDatasetArgs:
|
3255
4383
|
def __init__(__self__, *,
|
@@ -3290,6 +4418,21 @@ class JobQueryDefaultDatasetArgs:
|
|
3290
4418
|
pulumi.set(self, "project_id", value)
|
3291
4419
|
|
3292
4420
|
|
4421
|
+
if not MYPY:
|
4422
|
+
class JobQueryDestinationEncryptionConfigurationArgsDict(TypedDict):
|
4423
|
+
kms_key_name: pulumi.Input[str]
|
4424
|
+
"""
|
4425
|
+
Describes the Cloud KMS encryption key that will be used to protect destination BigQuery table.
|
4426
|
+
The BigQuery Service Account associated with your project requires access to this encryption key.
|
4427
|
+
"""
|
4428
|
+
kms_key_version: NotRequired[pulumi.Input[str]]
|
4429
|
+
"""
|
4430
|
+
(Output)
|
4431
|
+
Describes the Cloud KMS encryption key version used to protect destination BigQuery table.
|
4432
|
+
"""
|
4433
|
+
elif False:
|
4434
|
+
JobQueryDestinationEncryptionConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
4435
|
+
|
3293
4436
|
@pulumi.input_type
|
3294
4437
|
class JobQueryDestinationEncryptionConfigurationArgs:
|
3295
4438
|
def __init__(__self__, *,
|
@@ -3332,6 +4475,24 @@ class JobQueryDestinationEncryptionConfigurationArgs:
|
|
3332
4475
|
pulumi.set(self, "kms_key_version", value)
|
3333
4476
|
|
3334
4477
|
|
4478
|
+
if not MYPY:
|
4479
|
+
class JobQueryDestinationTableArgsDict(TypedDict):
|
4480
|
+
table_id: pulumi.Input[str]
|
4481
|
+
"""
|
4482
|
+
The table. Can be specified `{{table_id}}` if `project_id` and `dataset_id` are also set,
|
4483
|
+
or of the form `projects/{{project}}/datasets/{{dataset_id}}/tables/{{table_id}}` if not.
|
4484
|
+
"""
|
4485
|
+
dataset_id: NotRequired[pulumi.Input[str]]
|
4486
|
+
"""
|
4487
|
+
The ID of the dataset containing this table.
|
4488
|
+
"""
|
4489
|
+
project_id: NotRequired[pulumi.Input[str]]
|
4490
|
+
"""
|
4491
|
+
The ID of the project containing this table.
|
4492
|
+
"""
|
4493
|
+
elif False:
|
4494
|
+
JobQueryDestinationTableArgsDict: TypeAlias = Mapping[str, Any]
|
4495
|
+
|
3335
4496
|
@pulumi.input_type
|
3336
4497
|
class JobQueryDestinationTableArgs:
|
3337
4498
|
def __init__(__self__, *,
|
@@ -3388,6 +4549,25 @@ class JobQueryDestinationTableArgs:
|
|
3388
4549
|
pulumi.set(self, "project_id", value)
|
3389
4550
|
|
3390
4551
|
|
4552
|
+
if not MYPY:
|
4553
|
+
class JobQueryScriptOptionsArgsDict(TypedDict):
|
4554
|
+
key_result_statement: NotRequired[pulumi.Input[str]]
|
4555
|
+
"""
|
4556
|
+
Determines which statement in the script represents the "key result",
|
4557
|
+
used to populate the schema and query results of the script job.
|
4558
|
+
Possible values are: `LAST`, `FIRST_SELECT`.
|
4559
|
+
"""
|
4560
|
+
statement_byte_budget: NotRequired[pulumi.Input[str]]
|
4561
|
+
"""
|
4562
|
+
Limit on the number of bytes billed per statement. Exceeding this budget results in an error.
|
4563
|
+
"""
|
4564
|
+
statement_timeout_ms: NotRequired[pulumi.Input[str]]
|
4565
|
+
"""
|
4566
|
+
Timeout period for each statement in a script.
|
4567
|
+
"""
|
4568
|
+
elif False:
|
4569
|
+
JobQueryScriptOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
4570
|
+
|
3391
4571
|
@pulumi.input_type
|
3392
4572
|
class JobQueryScriptOptionsArgs:
|
3393
4573
|
def __init__(__self__, *,
|
@@ -3447,6 +4627,20 @@ class JobQueryScriptOptionsArgs:
|
|
3447
4627
|
pulumi.set(self, "statement_timeout_ms", value)
|
3448
4628
|
|
3449
4629
|
|
4630
|
+
if not MYPY:
|
4631
|
+
class JobQueryUserDefinedFunctionResourceArgsDict(TypedDict):
|
4632
|
+
inline_code: NotRequired[pulumi.Input[str]]
|
4633
|
+
"""
|
4634
|
+
An inline resource that contains code for a user-defined function (UDF).
|
4635
|
+
Providing a inline code resource is equivalent to providing a URI for a file containing the same code.
|
4636
|
+
"""
|
4637
|
+
resource_uri: NotRequired[pulumi.Input[str]]
|
4638
|
+
"""
|
4639
|
+
A code resource to load from a Google Cloud Storage URI (gs://bucket/path).
|
4640
|
+
"""
|
4641
|
+
elif False:
|
4642
|
+
JobQueryUserDefinedFunctionResourceArgsDict: TypeAlias = Mapping[str, Any]
|
4643
|
+
|
3450
4644
|
@pulumi.input_type
|
3451
4645
|
class JobQueryUserDefinedFunctionResourceArgs:
|
3452
4646
|
def __init__(__self__, *,
|
@@ -3488,6 +4682,30 @@ class JobQueryUserDefinedFunctionResourceArgs:
|
|
3488
4682
|
pulumi.set(self, "resource_uri", value)
|
3489
4683
|
|
3490
4684
|
|
4685
|
+
if not MYPY:
|
4686
|
+
class JobStatusArgsDict(TypedDict):
|
4687
|
+
error_results: NotRequired[pulumi.Input[Sequence[pulumi.Input['JobStatusErrorResultArgsDict']]]]
|
4688
|
+
"""
|
4689
|
+
(Output)
|
4690
|
+
Final error result of the job. If present, indicates that the job has completed and was unsuccessful.
|
4691
|
+
Structure is documented below.
|
4692
|
+
"""
|
4693
|
+
errors: NotRequired[pulumi.Input[Sequence[pulumi.Input['JobStatusErrorArgsDict']]]]
|
4694
|
+
"""
|
4695
|
+
(Output)
|
4696
|
+
The first errors encountered during the running of the job. The final message
|
4697
|
+
includes the number of errors that caused the process to stop. Errors here do
|
4698
|
+
not necessarily mean that the job has not completed or was unsuccessful.
|
4699
|
+
Structure is documented below.
|
4700
|
+
"""
|
4701
|
+
state: NotRequired[pulumi.Input[str]]
|
4702
|
+
"""
|
4703
|
+
(Output)
|
4704
|
+
Running state of the job. Valid states include 'PENDING', 'RUNNING', and 'DONE'.
|
4705
|
+
"""
|
4706
|
+
elif False:
|
4707
|
+
JobStatusArgsDict: TypeAlias = Mapping[str, Any]
|
4708
|
+
|
3491
4709
|
@pulumi.input_type
|
3492
4710
|
class JobStatusArgs:
|
3493
4711
|
def __init__(__self__, *,
|
@@ -3557,6 +4775,23 @@ class JobStatusArgs:
|
|
3557
4775
|
pulumi.set(self, "state", value)
|
3558
4776
|
|
3559
4777
|
|
4778
|
+
if not MYPY:
|
4779
|
+
class JobStatusErrorArgsDict(TypedDict):
|
4780
|
+
location: NotRequired[pulumi.Input[str]]
|
4781
|
+
"""
|
4782
|
+
Specifies where the error occurred, if present.
|
4783
|
+
"""
|
4784
|
+
message: NotRequired[pulumi.Input[str]]
|
4785
|
+
"""
|
4786
|
+
A human-readable description of the error.
|
4787
|
+
"""
|
4788
|
+
reason: NotRequired[pulumi.Input[str]]
|
4789
|
+
"""
|
4790
|
+
A short error code that summarizes the error.
|
4791
|
+
"""
|
4792
|
+
elif False:
|
4793
|
+
JobStatusErrorArgsDict: TypeAlias = Mapping[str, Any]
|
4794
|
+
|
3560
4795
|
@pulumi.input_type
|
3561
4796
|
class JobStatusErrorArgs:
|
3562
4797
|
def __init__(__self__, *,
|
@@ -3612,6 +4847,23 @@ class JobStatusErrorArgs:
|
|
3612
4847
|
pulumi.set(self, "reason", value)
|
3613
4848
|
|
3614
4849
|
|
4850
|
+
if not MYPY:
|
4851
|
+
class JobStatusErrorResultArgsDict(TypedDict):
|
4852
|
+
location: NotRequired[pulumi.Input[str]]
|
4853
|
+
"""
|
4854
|
+
Specifies where the error occurred, if present.
|
4855
|
+
"""
|
4856
|
+
message: NotRequired[pulumi.Input[str]]
|
4857
|
+
"""
|
4858
|
+
A human-readable description of the error.
|
4859
|
+
"""
|
4860
|
+
reason: NotRequired[pulumi.Input[str]]
|
4861
|
+
"""
|
4862
|
+
A short error code that summarizes the error.
|
4863
|
+
"""
|
4864
|
+
elif False:
|
4865
|
+
JobStatusErrorResultArgsDict: TypeAlias = Mapping[str, Any]
|
4866
|
+
|
3615
4867
|
@pulumi.input_type
|
3616
4868
|
class JobStatusErrorResultArgs:
|
3617
4869
|
def __init__(__self__, *,
|
@@ -3667,6 +4919,20 @@ class JobStatusErrorResultArgs:
|
|
3667
4919
|
pulumi.set(self, "reason", value)
|
3668
4920
|
|
3669
4921
|
|
4922
|
+
if not MYPY:
|
4923
|
+
class ReservationAutoscaleArgsDict(TypedDict):
|
4924
|
+
current_slots: NotRequired[pulumi.Input[int]]
|
4925
|
+
"""
|
4926
|
+
(Output)
|
4927
|
+
The slot capacity added to this reservation when autoscale happens. Will be between [0, max_slots].
|
4928
|
+
"""
|
4929
|
+
max_slots: NotRequired[pulumi.Input[int]]
|
4930
|
+
"""
|
4931
|
+
Number of slots to be scaled when needed.
|
4932
|
+
"""
|
4933
|
+
elif False:
|
4934
|
+
ReservationAutoscaleArgsDict: TypeAlias = Mapping[str, Any]
|
4935
|
+
|
3670
4936
|
@pulumi.input_type
|
3671
4937
|
class ReservationAutoscaleArgs:
|
3672
4938
|
def __init__(__self__, *,
|
@@ -3708,6 +4974,36 @@ class ReservationAutoscaleArgs:
|
|
3708
4974
|
pulumi.set(self, "max_slots", value)
|
3709
4975
|
|
3710
4976
|
|
4977
|
+
if not MYPY:
|
4978
|
+
class RoutineArgumentArgsDict(TypedDict):
|
4979
|
+
argument_kind: NotRequired[pulumi.Input[str]]
|
4980
|
+
"""
|
4981
|
+
Defaults to FIXED_TYPE.
|
4982
|
+
Default value is `FIXED_TYPE`.
|
4983
|
+
Possible values are: `FIXED_TYPE`, `ANY_TYPE`.
|
4984
|
+
"""
|
4985
|
+
data_type: NotRequired[pulumi.Input[str]]
|
4986
|
+
"""
|
4987
|
+
A JSON schema for the data type. Required unless argumentKind = ANY_TYPE.
|
4988
|
+
~>**NOTE**: Because this field expects a JSON string, any changes to the string
|
4989
|
+
will create a diff, even if the JSON itself hasn't changed. If the API returns
|
4990
|
+
a different value for the same schema, e.g. it switched the order of values
|
4991
|
+
or replaced STRUCT field type with RECORD field type, we currently cannot
|
4992
|
+
suppress the recurring diff this causes. As a workaround, we recommend using
|
4993
|
+
the schema as returned by the API.
|
4994
|
+
"""
|
4995
|
+
mode: NotRequired[pulumi.Input[str]]
|
4996
|
+
"""
|
4997
|
+
Specifies whether the argument is input or output. Can be set for procedures only.
|
4998
|
+
Possible values are: `IN`, `OUT`, `INOUT`.
|
4999
|
+
"""
|
5000
|
+
name: NotRequired[pulumi.Input[str]]
|
5001
|
+
"""
|
5002
|
+
The name of this argument. Can be absent for function return argument.
|
5003
|
+
"""
|
5004
|
+
elif False:
|
5005
|
+
RoutineArgumentArgsDict: TypeAlias = Mapping[str, Any]
|
5006
|
+
|
3711
5007
|
@pulumi.input_type
|
3712
5008
|
class RoutineArgumentArgs:
|
3713
5009
|
def __init__(__self__, *,
|
@@ -3797,6 +5093,35 @@ class RoutineArgumentArgs:
|
|
3797
5093
|
pulumi.set(self, "name", value)
|
3798
5094
|
|
3799
5095
|
|
5096
|
+
if not MYPY:
|
5097
|
+
class RoutineRemoteFunctionOptionsArgsDict(TypedDict):
|
5098
|
+
connection: NotRequired[pulumi.Input[str]]
|
5099
|
+
"""
|
5100
|
+
Fully qualified name of the user-provided connection object which holds
|
5101
|
+
the authentication information to send requests to the remote service.
|
5102
|
+
Format: "projects/{projectId}/locations/{locationId}/connections/{connectionId}"
|
5103
|
+
"""
|
5104
|
+
endpoint: NotRequired[pulumi.Input[str]]
|
5105
|
+
"""
|
5106
|
+
Endpoint of the user-provided remote service, e.g.
|
5107
|
+
`https://us-east1-my_gcf_project.cloudfunctions.net/remote_add`
|
5108
|
+
"""
|
5109
|
+
max_batching_rows: NotRequired[pulumi.Input[str]]
|
5110
|
+
"""
|
5111
|
+
Max number of rows in each batch sent to the remote service. If absent or if 0,
|
5112
|
+
BigQuery dynamically decides the number of rows in a batch.
|
5113
|
+
"""
|
5114
|
+
user_defined_context: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
5115
|
+
"""
|
5116
|
+
User-defined context as a set of key/value pairs, which will be sent as function
|
5117
|
+
invocation context together with batched arguments in the requests to the remote
|
5118
|
+
service. The total number of bytes of keys and values must be less than 8KB.
|
5119
|
+
An object containing a list of "key": value pairs. Example:
|
5120
|
+
`{ "name": "wrench", "mass": "1.3kg", "count": "3" }`.
|
5121
|
+
"""
|
5122
|
+
elif False:
|
5123
|
+
RoutineRemoteFunctionOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
5124
|
+
|
3800
5125
|
@pulumi.input_type
|
3801
5126
|
class RoutineRemoteFunctionOptionsArgs:
|
3802
5127
|
def __init__(__self__, *,
|
@@ -3884,6 +5209,57 @@ class RoutineRemoteFunctionOptionsArgs:
|
|
3884
5209
|
pulumi.set(self, "user_defined_context", value)
|
3885
5210
|
|
3886
5211
|
|
5212
|
+
if not MYPY:
|
5213
|
+
class RoutineSparkOptionsArgsDict(TypedDict):
|
5214
|
+
archive_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
5215
|
+
"""
|
5216
|
+
Archive files to be extracted into the working directory of each executor. For more information about Apache Spark, see Apache Spark.
|
5217
|
+
"""
|
5218
|
+
connection: NotRequired[pulumi.Input[str]]
|
5219
|
+
"""
|
5220
|
+
Fully qualified name of the user-provided Spark connection object.
|
5221
|
+
Format: "projects/{projectId}/locations/{locationId}/connections/{connectionId}"
|
5222
|
+
"""
|
5223
|
+
container_image: NotRequired[pulumi.Input[str]]
|
5224
|
+
"""
|
5225
|
+
Custom container image for the runtime environment.
|
5226
|
+
"""
|
5227
|
+
file_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
5228
|
+
"""
|
5229
|
+
Files to be placed in the working directory of each executor. For more information about Apache Spark, see Apache Spark.
|
5230
|
+
"""
|
5231
|
+
jar_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
5232
|
+
"""
|
5233
|
+
JARs to include on the driver and executor CLASSPATH. For more information about Apache Spark, see Apache Spark.
|
5234
|
+
"""
|
5235
|
+
main_class: NotRequired[pulumi.Input[str]]
|
5236
|
+
"""
|
5237
|
+
The fully qualified name of a class in jarUris, for example, com.example.wordcount.
|
5238
|
+
Exactly one of mainClass and main_jar_uri field should be set for Java/Scala language type.
|
5239
|
+
"""
|
5240
|
+
main_file_uri: NotRequired[pulumi.Input[str]]
|
5241
|
+
"""
|
5242
|
+
The main file/jar URI of the Spark application.
|
5243
|
+
Exactly one of the definitionBody field and the mainFileUri field must be set for Python.
|
5244
|
+
Exactly one of mainClass and mainFileUri field should be set for Java/Scala language type.
|
5245
|
+
"""
|
5246
|
+
properties: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
5247
|
+
"""
|
5248
|
+
Configuration properties as a set of key/value pairs, which will be passed on to the Spark application.
|
5249
|
+
For more information, see Apache Spark and the procedure option list.
|
5250
|
+
An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
5251
|
+
"""
|
5252
|
+
py_file_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
5253
|
+
"""
|
5254
|
+
Python files to be placed on the PYTHONPATH for PySpark application. Supported file types: .py, .egg, and .zip. For more information about Apache Spark, see Apache Spark.
|
5255
|
+
"""
|
5256
|
+
runtime_version: NotRequired[pulumi.Input[str]]
|
5257
|
+
"""
|
5258
|
+
Runtime version. If not specified, the default runtime version is used.
|
5259
|
+
"""
|
5260
|
+
elif False:
|
5261
|
+
RoutineSparkOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
5262
|
+
|
3887
5263
|
@pulumi.input_type
|
3888
5264
|
class RoutineSparkOptionsArgs:
|
3889
5265
|
def __init__(__self__, *,
|
@@ -4063,6 +5439,23 @@ class RoutineSparkOptionsArgs:
|
|
4063
5439
|
pulumi.set(self, "runtime_version", value)
|
4064
5440
|
|
4065
5441
|
|
5442
|
+
if not MYPY:
|
5443
|
+
class TableEncryptionConfigurationArgsDict(TypedDict):
|
5444
|
+
kms_key_name: pulumi.Input[str]
|
5445
|
+
"""
|
5446
|
+
The self link or full name of a key which should be used to
|
5447
|
+
encrypt this table. Note that the default bigquery service account will need to have
|
5448
|
+
encrypt/decrypt permissions on this key - you may want to see the
|
5449
|
+
`bigquery_get_default_service_account` datasource and the
|
5450
|
+
`kms.CryptoKeyIAMBinding` resource.
|
5451
|
+
"""
|
5452
|
+
kms_key_version: NotRequired[pulumi.Input[str]]
|
5453
|
+
"""
|
5454
|
+
The self link or full name of the kms key version used to encrypt this table.
|
5455
|
+
"""
|
5456
|
+
elif False:
|
5457
|
+
TableEncryptionConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
5458
|
+
|
4066
5459
|
@pulumi.input_type
|
4067
5460
|
class TableEncryptionConfigurationArgs:
|
4068
5461
|
def __init__(__self__, *,
|
@@ -4109,6 +5502,136 @@ class TableEncryptionConfigurationArgs:
|
|
4109
5502
|
pulumi.set(self, "kms_key_version", value)
|
4110
5503
|
|
4111
5504
|
|
5505
|
+
if not MYPY:
|
5506
|
+
class TableExternalDataConfigurationArgsDict(TypedDict):
|
5507
|
+
autodetect: pulumi.Input[bool]
|
5508
|
+
"""
|
5509
|
+
Let BigQuery try to autodetect the schema
|
5510
|
+
and format of the table.
|
5511
|
+
"""
|
5512
|
+
source_uris: pulumi.Input[Sequence[pulumi.Input[str]]]
|
5513
|
+
"""
|
5514
|
+
A list of the fully-qualified URIs that point to
|
5515
|
+
your data in Google Cloud.
|
5516
|
+
"""
|
5517
|
+
avro_options: NotRequired[pulumi.Input['TableExternalDataConfigurationAvroOptionsArgsDict']]
|
5518
|
+
"""
|
5519
|
+
Additional options if `source_format` is set to
|
5520
|
+
"AVRO". Structure is documented below.
|
5521
|
+
"""
|
5522
|
+
bigtable_options: NotRequired[pulumi.Input['TableExternalDataConfigurationBigtableOptionsArgsDict']]
|
5523
|
+
"""
|
5524
|
+
Additional properties to set if
|
5525
|
+
`source_format` is set to "BIGTABLE". Structure is documented below.
|
5526
|
+
"""
|
5527
|
+
compression: NotRequired[pulumi.Input[str]]
|
5528
|
+
"""
|
5529
|
+
The compression type of the data source.
|
5530
|
+
Valid values are "NONE" or "GZIP".
|
5531
|
+
"""
|
5532
|
+
connection_id: NotRequired[pulumi.Input[str]]
|
5533
|
+
"""
|
5534
|
+
The connection specifying the credentials to be used to read
|
5535
|
+
external storage, such as Azure Blob, Cloud Storage, or S3. The `connection_id` can have
|
5536
|
+
the form `{{project}}.{{location}}.{{connection_id}}`
|
5537
|
+
or `projects/{{project}}/locations/{{location}}/connections/{{connection_id}}`.
|
5538
|
+
|
5539
|
+
~>**NOTE:** If you set `external_data_configuration.connection_id`, the
|
5540
|
+
table schema must be specified using the top-level `schema` field
|
5541
|
+
documented above.
|
5542
|
+
"""
|
5543
|
+
csv_options: NotRequired[pulumi.Input['TableExternalDataConfigurationCsvOptionsArgsDict']]
|
5544
|
+
"""
|
5545
|
+
Additional properties to set if
|
5546
|
+
`source_format` is set to "CSV". Structure is documented below.
|
5547
|
+
"""
|
5548
|
+
file_set_spec_type: NotRequired[pulumi.Input[str]]
|
5549
|
+
"""
|
5550
|
+
Specifies how source URIs are interpreted for constructing the file set to load.
|
5551
|
+
By default source URIs are expanded against the underlying storage.
|
5552
|
+
Other options include specifying manifest files. Only applicable to object storage systems. Docs
|
5553
|
+
"""
|
5554
|
+
google_sheets_options: NotRequired[pulumi.Input['TableExternalDataConfigurationGoogleSheetsOptionsArgsDict']]
|
5555
|
+
"""
|
5556
|
+
Additional options if
|
5557
|
+
`source_format` is set to "GOOGLE_SHEETS". Structure is
|
5558
|
+
documented below.
|
5559
|
+
"""
|
5560
|
+
hive_partitioning_options: NotRequired[pulumi.Input['TableExternalDataConfigurationHivePartitioningOptionsArgsDict']]
|
5561
|
+
"""
|
5562
|
+
When set, configures hive partitioning
|
5563
|
+
support. Not all storage formats support hive partitioning -- requesting hive
|
5564
|
+
partitioning on an unsupported format will lead to an error, as will providing
|
5565
|
+
an invalid specification. Structure is documented below.
|
5566
|
+
"""
|
5567
|
+
ignore_unknown_values: NotRequired[pulumi.Input[bool]]
|
5568
|
+
"""
|
5569
|
+
Indicates if BigQuery should
|
5570
|
+
allow extra values that are not represented in the table schema.
|
5571
|
+
If true, the extra values are ignored. If false, records with
|
5572
|
+
extra columns are treated as bad records, and if there are too
|
5573
|
+
many bad records, an invalid error is returned in the job result.
|
5574
|
+
The default value is false.
|
5575
|
+
"""
|
5576
|
+
json_extension: NotRequired[pulumi.Input[str]]
|
5577
|
+
"""
|
5578
|
+
Used to indicate that a JSON variant, rather than normal JSON, is being used as the sourceFormat. This should only be used in combination with the `JSON` source format. Valid values are: `GEOJSON`.
|
5579
|
+
"""
|
5580
|
+
json_options: NotRequired[pulumi.Input['TableExternalDataConfigurationJsonOptionsArgsDict']]
|
5581
|
+
"""
|
5582
|
+
Additional properties to set if
|
5583
|
+
`source_format` is set to "JSON". Structure is documented below.
|
5584
|
+
"""
|
5585
|
+
max_bad_records: NotRequired[pulumi.Input[int]]
|
5586
|
+
"""
|
5587
|
+
The maximum number of bad records that
|
5588
|
+
BigQuery can ignore when reading data.
|
5589
|
+
"""
|
5590
|
+
metadata_cache_mode: NotRequired[pulumi.Input[str]]
|
5591
|
+
"""
|
5592
|
+
Metadata Cache Mode for the table. Set this to enable caching of metadata from external data source. Valid values are `AUTOMATIC` and `MANUAL`.
|
5593
|
+
"""
|
5594
|
+
object_metadata: NotRequired[pulumi.Input[str]]
|
5595
|
+
"""
|
5596
|
+
Object Metadata is used to create Object Tables. Object Tables contain a listing of objects (with their metadata) found at the sourceUris. If `object_metadata` is set, `source_format` should be omitted.
|
5597
|
+
"""
|
5598
|
+
parquet_options: NotRequired[pulumi.Input['TableExternalDataConfigurationParquetOptionsArgsDict']]
|
5599
|
+
"""
|
5600
|
+
Additional properties to set if
|
5601
|
+
`source_format` is set to "PARQUET". Structure is documented below.
|
5602
|
+
"""
|
5603
|
+
reference_file_schema_uri: NotRequired[pulumi.Input[str]]
|
5604
|
+
"""
|
5605
|
+
When creating an external table, the user can provide a reference file with the table schema. This is enabled for the following formats: AVRO, PARQUET, ORC.
|
5606
|
+
"""
|
5607
|
+
schema: NotRequired[pulumi.Input[str]]
|
5608
|
+
"""
|
5609
|
+
A JSON schema for the external table. Schema is required
|
5610
|
+
for CSV and JSON formats if autodetect is not on. Schema is disallowed
|
5611
|
+
for Google Cloud Bigtable, Cloud Datastore backups, Avro, Iceberg, ORC and Parquet formats.
|
5612
|
+
~>**NOTE:** Because this field expects a JSON string, any changes to the
|
5613
|
+
string will create a diff, even if the JSON itself hasn't changed.
|
5614
|
+
Furthermore drift for this field cannot not be detected because BigQuery
|
5615
|
+
only uses this schema to compute the effective schema for the table, therefore
|
5616
|
+
any changes on the configured value will force the table to be recreated.
|
5617
|
+
This schema is effectively only applied when creating a table from an external
|
5618
|
+
datasource, after creation the computed schema will be stored in
|
5619
|
+
`google_bigquery_table.schema`
|
5620
|
+
|
5621
|
+
~>**NOTE:** If you set `external_data_configuration.connection_id`, the
|
5622
|
+
table schema must be specified using the top-level `schema` field
|
5623
|
+
documented above.
|
5624
|
+
"""
|
5625
|
+
source_format: NotRequired[pulumi.Input[str]]
|
5626
|
+
"""
|
5627
|
+
The data format. Please see sourceFormat under
|
5628
|
+
[ExternalDataConfiguration](https://cloud.google.com/bigquery/docs/reference/rest/v2/tables#externaldataconfiguration)
|
5629
|
+
in Bigquery's public API documentation for supported formats. To use "GOOGLE_SHEETS"
|
5630
|
+
the `scopes` must include "https://www.googleapis.com/auth/drive.readonly".
|
5631
|
+
"""
|
5632
|
+
elif False:
|
5633
|
+
TableExternalDataConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
5634
|
+
|
4112
5635
|
@pulumi.input_type
|
4113
5636
|
class TableExternalDataConfigurationArgs:
|
4114
5637
|
def __init__(__self__, *,
|
@@ -4524,6 +6047,17 @@ class TableExternalDataConfigurationArgs:
|
|
4524
6047
|
pulumi.set(self, "source_format", value)
|
4525
6048
|
|
4526
6049
|
|
6050
|
+
if not MYPY:
|
6051
|
+
class TableExternalDataConfigurationAvroOptionsArgsDict(TypedDict):
|
6052
|
+
use_avro_logical_types: pulumi.Input[bool]
|
6053
|
+
"""
|
6054
|
+
If is set to true, indicates whether
|
6055
|
+
to interpret logical types as the corresponding BigQuery data type
|
6056
|
+
(for example, TIMESTAMP), instead of using the raw type (for example, INTEGER).
|
6057
|
+
"""
|
6058
|
+
elif False:
|
6059
|
+
TableExternalDataConfigurationAvroOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
6060
|
+
|
4527
6061
|
@pulumi.input_type
|
4528
6062
|
class TableExternalDataConfigurationAvroOptionsArgs:
|
4529
6063
|
def __init__(__self__, *,
|
@@ -4550,6 +6084,27 @@ class TableExternalDataConfigurationAvroOptionsArgs:
|
|
4550
6084
|
pulumi.set(self, "use_avro_logical_types", value)
|
4551
6085
|
|
4552
6086
|
|
6087
|
+
if not MYPY:
|
6088
|
+
class TableExternalDataConfigurationBigtableOptionsArgsDict(TypedDict):
|
6089
|
+
column_families: NotRequired[pulumi.Input[Sequence[pulumi.Input['TableExternalDataConfigurationBigtableOptionsColumnFamilyArgsDict']]]]
|
6090
|
+
"""
|
6091
|
+
A list of column families to expose in the table schema along with their types. This list restricts the column families that can be referenced in queries and specifies their value types. You can use this list to do type conversions - see the 'type' field for more details. If you leave this list empty, all column families are present in the table schema and their values are read as BYTES. During a query only the column families referenced in that query are read from Bigtable. Structure is documented below.
|
6092
|
+
"""
|
6093
|
+
ignore_unspecified_column_families: NotRequired[pulumi.Input[bool]]
|
6094
|
+
"""
|
6095
|
+
If field is true, then the column families that are not specified in columnFamilies list are not exposed in the table schema. Otherwise, they are read with BYTES type values. The default value is false.
|
6096
|
+
"""
|
6097
|
+
output_column_families_as_json: NotRequired[pulumi.Input[bool]]
|
6098
|
+
"""
|
6099
|
+
If field is true, then each column family will be read as a single JSON column. Otherwise they are read as a repeated cell structure containing timestamp/value tuples. The default value is false.
|
6100
|
+
"""
|
6101
|
+
read_rowkey_as_string: NotRequired[pulumi.Input[bool]]
|
6102
|
+
"""
|
6103
|
+
If field is true, then the rowkey column families will be read and converted to string. Otherwise they are read with BYTES type values and users need to manually cast them with CAST if necessary. The default value is false.
|
6104
|
+
"""
|
6105
|
+
elif False:
|
6106
|
+
TableExternalDataConfigurationBigtableOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
6107
|
+
|
4553
6108
|
@pulumi.input_type
|
4554
6109
|
class TableExternalDataConfigurationBigtableOptionsArgs:
|
4555
6110
|
def __init__(__self__, *,
|
@@ -4621,6 +6176,31 @@ class TableExternalDataConfigurationBigtableOptionsArgs:
|
|
4621
6176
|
pulumi.set(self, "read_rowkey_as_string", value)
|
4622
6177
|
|
4623
6178
|
|
6179
|
+
if not MYPY:
|
6180
|
+
class TableExternalDataConfigurationBigtableOptionsColumnFamilyArgsDict(TypedDict):
|
6181
|
+
columns: NotRequired[pulumi.Input[Sequence[pulumi.Input['TableExternalDataConfigurationBigtableOptionsColumnFamilyColumnArgsDict']]]]
|
6182
|
+
"""
|
6183
|
+
A List of columns that should be exposed as individual fields as opposed to a list of (column name, value) pairs. All columns whose qualifier matches a qualifier in this list can be accessed as Other columns can be accessed as a list through column field. Structure is documented below.
|
6184
|
+
"""
|
6185
|
+
encoding: NotRequired[pulumi.Input[str]]
|
6186
|
+
"""
|
6187
|
+
The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. This can be overridden for a specific column by listing that column in 'columns' and specifying an encoding for it.
|
6188
|
+
"""
|
6189
|
+
family_id: NotRequired[pulumi.Input[str]]
|
6190
|
+
"""
|
6191
|
+
Identifier of the column family.
|
6192
|
+
"""
|
6193
|
+
only_read_latest: NotRequired[pulumi.Input[bool]]
|
6194
|
+
"""
|
6195
|
+
If this is set only the latest version of value are exposed for all columns in this column family. This can be overridden for a specific column by listing that column in 'columns' and specifying a different setting for that column.
|
6196
|
+
"""
|
6197
|
+
type: NotRequired[pulumi.Input[str]]
|
6198
|
+
"""
|
6199
|
+
The type to convert the value in cells of this column family. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive): "BYTES", "STRING", "INTEGER", "FLOAT", "BOOLEAN", "JSON". Default type is BYTES. This can be overridden for a specific column by listing that column in 'columns' and specifying a type for it.
|
6200
|
+
"""
|
6201
|
+
elif False:
|
6202
|
+
TableExternalDataConfigurationBigtableOptionsColumnFamilyArgsDict: TypeAlias = Mapping[str, Any]
|
6203
|
+
|
4624
6204
|
@pulumi.input_type
|
4625
6205
|
class TableExternalDataConfigurationBigtableOptionsColumnFamilyArgs:
|
4626
6206
|
def __init__(__self__, *,
|
@@ -4708,6 +6288,35 @@ class TableExternalDataConfigurationBigtableOptionsColumnFamilyArgs:
|
|
4708
6288
|
pulumi.set(self, "type", value)
|
4709
6289
|
|
4710
6290
|
|
6291
|
+
if not MYPY:
|
6292
|
+
class TableExternalDataConfigurationBigtableOptionsColumnFamilyColumnArgsDict(TypedDict):
|
6293
|
+
encoding: NotRequired[pulumi.Input[str]]
|
6294
|
+
"""
|
6295
|
+
The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. 'encoding' can also be set at the column family level. However, the setting at this level takes precedence if 'encoding' is set at both levels.
|
6296
|
+
"""
|
6297
|
+
field_name: NotRequired[pulumi.Input[str]]
|
6298
|
+
"""
|
6299
|
+
If the qualifier is not a valid BigQuery field identifier i.e. does not match [a-zA-Z][a-zA-Z0-9_]*, a valid identifier must be provided as the column field name and is used as field name in queries.
|
6300
|
+
"""
|
6301
|
+
only_read_latest: NotRequired[pulumi.Input[bool]]
|
6302
|
+
"""
|
6303
|
+
If this is set, only the latest version of value in this column are exposed. 'onlyReadLatest' can also be set at the column family level. However, the setting at this level takes precedence if 'onlyReadLatest' is set at both levels.
|
6304
|
+
"""
|
6305
|
+
qualifier_encoded: NotRequired[pulumi.Input[str]]
|
6306
|
+
"""
|
6307
|
+
Qualifier of the column. Columns in the parent column family that has this exact qualifier are exposed as . field. If the qualifier is valid UTF-8 string, it can be specified in the qualifierString field. Otherwise, a base-64 encoded value must be set to qualifierEncoded. The column field name is the same as the column qualifier. However, if the qualifier is not a valid BigQuery field identifier i.e. does not match [a-zA-Z][a-zA-Z0-9_]*, a valid identifier must be provided as fieldName.
|
6308
|
+
"""
|
6309
|
+
qualifier_string: NotRequired[pulumi.Input[str]]
|
6310
|
+
"""
|
6311
|
+
Qualifier string.
|
6312
|
+
"""
|
6313
|
+
type: NotRequired[pulumi.Input[str]]
|
6314
|
+
"""
|
6315
|
+
The type to convert the value in cells of this column. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive): "BYTES", "STRING", "INTEGER", "FLOAT", "BOOLEAN", "JSON", Default type is "BYTES". 'type' can also be set at the column family level. However, the setting at this level takes precedence if 'type' is set at both levels.
|
6316
|
+
"""
|
6317
|
+
elif False:
|
6318
|
+
TableExternalDataConfigurationBigtableOptionsColumnFamilyColumnArgsDict: TypeAlias = Mapping[str, Any]
|
6319
|
+
|
4711
6320
|
@pulumi.input_type
|
4712
6321
|
class TableExternalDataConfigurationBigtableOptionsColumnFamilyColumnArgs:
|
4713
6322
|
def __init__(__self__, *,
|
@@ -4811,6 +6420,46 @@ class TableExternalDataConfigurationBigtableOptionsColumnFamilyColumnArgs:
|
|
4811
6420
|
pulumi.set(self, "type", value)
|
4812
6421
|
|
4813
6422
|
|
6423
|
+
if not MYPY:
|
6424
|
+
class TableExternalDataConfigurationCsvOptionsArgsDict(TypedDict):
|
6425
|
+
quote: pulumi.Input[str]
|
6426
|
+
"""
|
6427
|
+
The value that is used to quote data sections in a
|
6428
|
+
CSV file. If your data does not contain quoted sections, set the
|
6429
|
+
property value to an empty string. If your data contains quoted newline
|
6430
|
+
characters, you must also set the `allow_quoted_newlines` property to true.
|
6431
|
+
The API-side default is `"`, specified in the provider escaped as `\\"`. Due to
|
6432
|
+
limitations with default values, this value is required to be
|
6433
|
+
explicitly set.
|
6434
|
+
"""
|
6435
|
+
allow_jagged_rows: NotRequired[pulumi.Input[bool]]
|
6436
|
+
"""
|
6437
|
+
Indicates if BigQuery should accept rows
|
6438
|
+
that are missing trailing optional columns.
|
6439
|
+
"""
|
6440
|
+
allow_quoted_newlines: NotRequired[pulumi.Input[bool]]
|
6441
|
+
"""
|
6442
|
+
Indicates if BigQuery should allow
|
6443
|
+
quoted data sections that contain newline characters in a CSV file.
|
6444
|
+
The default value is false.
|
6445
|
+
"""
|
6446
|
+
encoding: NotRequired[pulumi.Input[str]]
|
6447
|
+
"""
|
6448
|
+
The character encoding of the data. The supported
|
6449
|
+
values are UTF-8 or ISO-8859-1.
|
6450
|
+
"""
|
6451
|
+
field_delimiter: NotRequired[pulumi.Input[str]]
|
6452
|
+
"""
|
6453
|
+
The separator for fields in a CSV file.
|
6454
|
+
"""
|
6455
|
+
skip_leading_rows: NotRequired[pulumi.Input[int]]
|
6456
|
+
"""
|
6457
|
+
The number of rows at the top of a CSV
|
6458
|
+
file that BigQuery will skip when reading the data.
|
6459
|
+
"""
|
6460
|
+
elif False:
|
6461
|
+
TableExternalDataConfigurationCsvOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
6462
|
+
|
4814
6463
|
@pulumi.input_type
|
4815
6464
|
class TableExternalDataConfigurationCsvOptionsArgs:
|
4816
6465
|
def __init__(__self__, *,
|
@@ -4935,6 +6584,24 @@ class TableExternalDataConfigurationCsvOptionsArgs:
|
|
4935
6584
|
pulumi.set(self, "skip_leading_rows", value)
|
4936
6585
|
|
4937
6586
|
|
6587
|
+
if not MYPY:
|
6588
|
+
class TableExternalDataConfigurationGoogleSheetsOptionsArgsDict(TypedDict):
|
6589
|
+
range: NotRequired[pulumi.Input[str]]
|
6590
|
+
"""
|
6591
|
+
Range of a sheet to query from. Only used when
|
6592
|
+
non-empty. At least one of `range` or `skip_leading_rows` must be set.
|
6593
|
+
Typical format: "sheet_name!top_left_cell_id:bottom_right_cell_id"
|
6594
|
+
For example: "sheet1!A1:B20"
|
6595
|
+
"""
|
6596
|
+
skip_leading_rows: NotRequired[pulumi.Input[int]]
|
6597
|
+
"""
|
6598
|
+
The number of rows at the top of the sheet
|
6599
|
+
that BigQuery will skip when reading the data. At least one of `range` or
|
6600
|
+
`skip_leading_rows` must be set.
|
6601
|
+
"""
|
6602
|
+
elif False:
|
6603
|
+
TableExternalDataConfigurationGoogleSheetsOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
6604
|
+
|
4938
6605
|
@pulumi.input_type
|
4939
6606
|
class TableExternalDataConfigurationGoogleSheetsOptionsArgs:
|
4940
6607
|
def __init__(__self__, *,
|
@@ -4984,6 +6651,39 @@ class TableExternalDataConfigurationGoogleSheetsOptionsArgs:
|
|
4984
6651
|
pulumi.set(self, "skip_leading_rows", value)
|
4985
6652
|
|
4986
6653
|
|
6654
|
+
if not MYPY:
|
6655
|
+
class TableExternalDataConfigurationHivePartitioningOptionsArgsDict(TypedDict):
|
6656
|
+
mode: NotRequired[pulumi.Input[str]]
|
6657
|
+
"""
|
6658
|
+
When set, what mode of hive partitioning to use when
|
6659
|
+
reading data. The following modes are supported.
|
6660
|
+
* AUTO: automatically infer partition key name(s) and type(s).
|
6661
|
+
* STRINGS: automatically infer partition key name(s). All types are
|
6662
|
+
Not all storage formats support hive partitioning. Requesting hive
|
6663
|
+
partitioning on an unsupported format will lead to an error.
|
6664
|
+
Currently supported formats are: JSON, CSV, ORC, Avro and Parquet.
|
6665
|
+
* CUSTOM: when set to `CUSTOM`, you must encode the partition key schema within the `source_uri_prefix` by setting `source_uri_prefix` to `gs://bucket/path_to_table/{key1:TYPE1}/{key2:TYPE2}/{key3:TYPE3}`.
|
6666
|
+
"""
|
6667
|
+
require_partition_filter: NotRequired[pulumi.Input[bool]]
|
6668
|
+
"""
|
6669
|
+
If set to true, queries over this table
|
6670
|
+
require a partition filter that can be used for partition elimination to be
|
6671
|
+
specified.
|
6672
|
+
"""
|
6673
|
+
source_uri_prefix: NotRequired[pulumi.Input[str]]
|
6674
|
+
"""
|
6675
|
+
When hive partition detection is requested,
|
6676
|
+
a common for all source uris must be required. The prefix must end immediately
|
6677
|
+
before the partition key encoding begins. For example, consider files following
|
6678
|
+
this data layout. `gs://bucket/path_to_table/dt=2019-06-01/country=USA/id=7/file.avro`
|
6679
|
+
`gs://bucket/path_to_table/dt=2019-05-31/country=CA/id=3/file.avro` When hive
|
6680
|
+
partitioning is requested with either AUTO or STRINGS detection, the common prefix
|
6681
|
+
can be either of `gs://bucket/path_to_table` or `gs://bucket/path_to_table/`.
|
6682
|
+
Note that when `mode` is set to `CUSTOM`, you must encode the partition key schema within the `source_uri_prefix` by setting `source_uri_prefix` to `gs://bucket/path_to_table/{key1:TYPE1}/{key2:TYPE2}/{key3:TYPE3}`.
|
6683
|
+
"""
|
6684
|
+
elif False:
|
6685
|
+
TableExternalDataConfigurationHivePartitioningOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
6686
|
+
|
4987
6687
|
@pulumi.input_type
|
4988
6688
|
class TableExternalDataConfigurationHivePartitioningOptionsArgs:
|
4989
6689
|
def __init__(__self__, *,
|
@@ -5071,6 +6771,15 @@ class TableExternalDataConfigurationHivePartitioningOptionsArgs:
|
|
5071
6771
|
pulumi.set(self, "source_uri_prefix", value)
|
5072
6772
|
|
5073
6773
|
|
6774
|
+
if not MYPY:
|
6775
|
+
class TableExternalDataConfigurationJsonOptionsArgsDict(TypedDict):
|
6776
|
+
encoding: NotRequired[pulumi.Input[str]]
|
6777
|
+
"""
|
6778
|
+
The character encoding of the data. The supported values are UTF-8, UTF-16BE, UTF-16LE, UTF-32BE, and UTF-32LE. The default value is UTF-8.
|
6779
|
+
"""
|
6780
|
+
elif False:
|
6781
|
+
TableExternalDataConfigurationJsonOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
6782
|
+
|
5074
6783
|
@pulumi.input_type
|
5075
6784
|
class TableExternalDataConfigurationJsonOptionsArgs:
|
5076
6785
|
def __init__(__self__, *,
|
@@ -5094,6 +6803,19 @@ class TableExternalDataConfigurationJsonOptionsArgs:
|
|
5094
6803
|
pulumi.set(self, "encoding", value)
|
5095
6804
|
|
5096
6805
|
|
6806
|
+
if not MYPY:
|
6807
|
+
class TableExternalDataConfigurationParquetOptionsArgsDict(TypedDict):
|
6808
|
+
enable_list_inference: NotRequired[pulumi.Input[bool]]
|
6809
|
+
"""
|
6810
|
+
Indicates whether to use schema inference specifically for Parquet LIST logical type.
|
6811
|
+
"""
|
6812
|
+
enum_as_string: NotRequired[pulumi.Input[bool]]
|
6813
|
+
"""
|
6814
|
+
Indicates whether to infer Parquet ENUM logical type as STRING instead of BYTES by default.
|
6815
|
+
"""
|
6816
|
+
elif False:
|
6817
|
+
TableExternalDataConfigurationParquetOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
6818
|
+
|
5097
6819
|
@pulumi.input_type
|
5098
6820
|
class TableExternalDataConfigurationParquetOptionsArgs:
|
5099
6821
|
def __init__(__self__, *,
|
@@ -5133,6 +6855,30 @@ class TableExternalDataConfigurationParquetOptionsArgs:
|
|
5133
6855
|
pulumi.set(self, "enum_as_string", value)
|
5134
6856
|
|
5135
6857
|
|
6858
|
+
if not MYPY:
|
6859
|
+
class TableMaterializedViewArgsDict(TypedDict):
|
6860
|
+
query: pulumi.Input[str]
|
6861
|
+
"""
|
6862
|
+
A query whose result is persisted.
|
6863
|
+
"""
|
6864
|
+
allow_non_incremental_definition: NotRequired[pulumi.Input[bool]]
|
6865
|
+
"""
|
6866
|
+
Allow non incremental materialized view definition.
|
6867
|
+
The default value is false.
|
6868
|
+
"""
|
6869
|
+
enable_refresh: NotRequired[pulumi.Input[bool]]
|
6870
|
+
"""
|
6871
|
+
Specifies whether to use BigQuery's automatic refresh for this materialized view when the base table is updated.
|
6872
|
+
The default value is true.
|
6873
|
+
"""
|
6874
|
+
refresh_interval_ms: NotRequired[pulumi.Input[int]]
|
6875
|
+
"""
|
6876
|
+
The maximum frequency at which this materialized view will be refreshed.
|
6877
|
+
The default value is 1800000
|
6878
|
+
"""
|
6879
|
+
elif False:
|
6880
|
+
TableMaterializedViewArgsDict: TypeAlias = Mapping[str, Any]
|
6881
|
+
|
5136
6882
|
@pulumi.input_type
|
5137
6883
|
class TableMaterializedViewArgs:
|
5138
6884
|
def __init__(__self__, *,
|
@@ -5209,6 +6955,21 @@ class TableMaterializedViewArgs:
|
|
5209
6955
|
pulumi.set(self, "refresh_interval_ms", value)
|
5210
6956
|
|
5211
6957
|
|
6958
|
+
if not MYPY:
|
6959
|
+
class TableRangePartitioningArgsDict(TypedDict):
|
6960
|
+
field: pulumi.Input[str]
|
6961
|
+
"""
|
6962
|
+
The field used to determine how to create a range-based
|
6963
|
+
partition.
|
6964
|
+
"""
|
6965
|
+
range: pulumi.Input['TableRangePartitioningRangeArgsDict']
|
6966
|
+
"""
|
6967
|
+
Information required to partition based on ranges.
|
6968
|
+
Structure is documented below.
|
6969
|
+
"""
|
6970
|
+
elif False:
|
6971
|
+
TableRangePartitioningArgsDict: TypeAlias = Mapping[str, Any]
|
6972
|
+
|
5212
6973
|
@pulumi.input_type
|
5213
6974
|
class TableRangePartitioningArgs:
|
5214
6975
|
def __init__(__self__, *,
|
@@ -5250,6 +7011,23 @@ class TableRangePartitioningArgs:
|
|
5250
7011
|
pulumi.set(self, "range", value)
|
5251
7012
|
|
5252
7013
|
|
7014
|
+
if not MYPY:
|
7015
|
+
class TableRangePartitioningRangeArgsDict(TypedDict):
|
7016
|
+
end: pulumi.Input[int]
|
7017
|
+
"""
|
7018
|
+
End of the range partitioning, exclusive.
|
7019
|
+
"""
|
7020
|
+
interval: pulumi.Input[int]
|
7021
|
+
"""
|
7022
|
+
The width of each range within the partition.
|
7023
|
+
"""
|
7024
|
+
start: pulumi.Input[int]
|
7025
|
+
"""
|
7026
|
+
Start of the range partitioning, inclusive.
|
7027
|
+
"""
|
7028
|
+
elif False:
|
7029
|
+
TableRangePartitioningRangeArgsDict: TypeAlias = Mapping[str, Any]
|
7030
|
+
|
5253
7031
|
@pulumi.input_type
|
5254
7032
|
class TableRangePartitioningRangeArgs:
|
5255
7033
|
def __init__(__self__, *,
|
@@ -5302,6 +7080,24 @@ class TableRangePartitioningRangeArgs:
|
|
5302
7080
|
pulumi.set(self, "start", value)
|
5303
7081
|
|
5304
7082
|
|
7083
|
+
if not MYPY:
|
7084
|
+
class TableTableConstraintsArgsDict(TypedDict):
|
7085
|
+
foreign_keys: NotRequired[pulumi.Input[Sequence[pulumi.Input['TableTableConstraintsForeignKeyArgsDict']]]]
|
7086
|
+
"""
|
7087
|
+
Present only if the table has a foreign key.
|
7088
|
+
The foreign key is not enforced.
|
7089
|
+
Structure is documented below.
|
7090
|
+
"""
|
7091
|
+
primary_key: NotRequired[pulumi.Input['TableTableConstraintsPrimaryKeyArgsDict']]
|
7092
|
+
"""
|
7093
|
+
Represents the primary key constraint
|
7094
|
+
on a table's columns. Present only if the table has a primary key.
|
7095
|
+
The primary key is not enforced.
|
7096
|
+
Structure is documented below.
|
7097
|
+
"""
|
7098
|
+
elif False:
|
7099
|
+
TableTableConstraintsArgsDict: TypeAlias = Mapping[str, Any]
|
7100
|
+
|
5305
7101
|
@pulumi.input_type
|
5306
7102
|
class TableTableConstraintsArgs:
|
5307
7103
|
def __init__(__self__, *,
|
@@ -5351,6 +7147,26 @@ class TableTableConstraintsArgs:
|
|
5351
7147
|
pulumi.set(self, "primary_key", value)
|
5352
7148
|
|
5353
7149
|
|
7150
|
+
if not MYPY:
|
7151
|
+
class TableTableConstraintsForeignKeyArgsDict(TypedDict):
|
7152
|
+
column_references: pulumi.Input['TableTableConstraintsForeignKeyColumnReferencesArgsDict']
|
7153
|
+
"""
|
7154
|
+
The pair of the foreign key column and primary key column.
|
7155
|
+
Structure is documented below.
|
7156
|
+
"""
|
7157
|
+
referenced_table: pulumi.Input['TableTableConstraintsForeignKeyReferencedTableArgsDict']
|
7158
|
+
"""
|
7159
|
+
The table that holds the primary key
|
7160
|
+
and is referenced by this foreign key.
|
7161
|
+
Structure is documented below.
|
7162
|
+
"""
|
7163
|
+
name: NotRequired[pulumi.Input[str]]
|
7164
|
+
"""
|
7165
|
+
Set only if the foreign key constraint is named.
|
7166
|
+
"""
|
7167
|
+
elif False:
|
7168
|
+
TableTableConstraintsForeignKeyArgsDict: TypeAlias = Mapping[str, Any]
|
7169
|
+
|
5354
7170
|
@pulumi.input_type
|
5355
7171
|
class TableTableConstraintsForeignKeyArgs:
|
5356
7172
|
def __init__(__self__, *,
|
@@ -5410,6 +7226,20 @@ class TableTableConstraintsForeignKeyArgs:
|
|
5410
7226
|
pulumi.set(self, "name", value)
|
5411
7227
|
|
5412
7228
|
|
7229
|
+
if not MYPY:
|
7230
|
+
class TableTableConstraintsForeignKeyColumnReferencesArgsDict(TypedDict):
|
7231
|
+
referenced_column: pulumi.Input[str]
|
7232
|
+
"""
|
7233
|
+
The column in the primary key that are
|
7234
|
+
referenced by the referencingColumn
|
7235
|
+
"""
|
7236
|
+
referencing_column: pulumi.Input[str]
|
7237
|
+
"""
|
7238
|
+
The column that composes the foreign key.
|
7239
|
+
"""
|
7240
|
+
elif False:
|
7241
|
+
TableTableConstraintsForeignKeyColumnReferencesArgsDict: TypeAlias = Mapping[str, Any]
|
7242
|
+
|
5413
7243
|
@pulumi.input_type
|
5414
7244
|
class TableTableConstraintsForeignKeyColumnReferencesArgs:
|
5415
7245
|
def __init__(__self__, *,
|
@@ -5449,6 +7279,27 @@ class TableTableConstraintsForeignKeyColumnReferencesArgs:
|
|
5449
7279
|
pulumi.set(self, "referencing_column", value)
|
5450
7280
|
|
5451
7281
|
|
7282
|
+
if not MYPY:
|
7283
|
+
class TableTableConstraintsForeignKeyReferencedTableArgsDict(TypedDict):
|
7284
|
+
dataset_id: pulumi.Input[str]
|
7285
|
+
"""
|
7286
|
+
The ID of the dataset containing this table.
|
7287
|
+
"""
|
7288
|
+
project_id: pulumi.Input[str]
|
7289
|
+
"""
|
7290
|
+
The ID of the project containing this table.
|
7291
|
+
"""
|
7292
|
+
table_id: pulumi.Input[str]
|
7293
|
+
"""
|
7294
|
+
The ID of the table. The ID must contain only
|
7295
|
+
letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum
|
7296
|
+
length is 1,024 characters. Certain operations allow suffixing of
|
7297
|
+
the table ID with a partition decorator, such as
|
7298
|
+
sample_table$20190123.
|
7299
|
+
"""
|
7300
|
+
elif False:
|
7301
|
+
TableTableConstraintsForeignKeyReferencedTableArgsDict: TypeAlias = Mapping[str, Any]
|
7302
|
+
|
5452
7303
|
@pulumi.input_type
|
5453
7304
|
class TableTableConstraintsForeignKeyReferencedTableArgs:
|
5454
7305
|
def __init__(__self__, *,
|
@@ -5509,6 +7360,15 @@ class TableTableConstraintsForeignKeyReferencedTableArgs:
|
|
5509
7360
|
pulumi.set(self, "table_id", value)
|
5510
7361
|
|
5511
7362
|
|
7363
|
+
if not MYPY:
|
7364
|
+
class TableTableConstraintsPrimaryKeyArgsDict(TypedDict):
|
7365
|
+
columns: pulumi.Input[Sequence[pulumi.Input[str]]]
|
7366
|
+
"""
|
7367
|
+
The columns that are composed of the primary key constraint.
|
7368
|
+
"""
|
7369
|
+
elif False:
|
7370
|
+
TableTableConstraintsPrimaryKeyArgsDict: TypeAlias = Mapping[str, Any]
|
7371
|
+
|
5512
7372
|
@pulumi.input_type
|
5513
7373
|
class TableTableConstraintsPrimaryKeyArgs:
|
5514
7374
|
def __init__(__self__, *,
|
@@ -5531,6 +7391,28 @@ class TableTableConstraintsPrimaryKeyArgs:
|
|
5531
7391
|
pulumi.set(self, "columns", value)
|
5532
7392
|
|
5533
7393
|
|
7394
|
+
if not MYPY:
|
7395
|
+
class TableTableReplicationInfoArgsDict(TypedDict):
|
7396
|
+
source_dataset_id: pulumi.Input[str]
|
7397
|
+
"""
|
7398
|
+
The ID of the source dataset.
|
7399
|
+
"""
|
7400
|
+
source_project_id: pulumi.Input[str]
|
7401
|
+
"""
|
7402
|
+
The ID of the source project.
|
7403
|
+
"""
|
7404
|
+
source_table_id: pulumi.Input[str]
|
7405
|
+
"""
|
7406
|
+
The ID of the source materialized view.
|
7407
|
+
"""
|
7408
|
+
replication_interval_ms: NotRequired[pulumi.Input[int]]
|
7409
|
+
"""
|
7410
|
+
The interval at which the source
|
7411
|
+
materialized view is polled for updates. The default is 300000.
|
7412
|
+
"""
|
7413
|
+
elif False:
|
7414
|
+
TableTableReplicationInfoArgsDict: TypeAlias = Mapping[str, Any]
|
7415
|
+
|
5534
7416
|
@pulumi.input_type
|
5535
7417
|
class TableTableReplicationInfoArgs:
|
5536
7418
|
def __init__(__self__, *,
|
@@ -5601,6 +7483,34 @@ class TableTableReplicationInfoArgs:
|
|
5601
7483
|
pulumi.set(self, "replication_interval_ms", value)
|
5602
7484
|
|
5603
7485
|
|
7486
|
+
if not MYPY:
|
7487
|
+
class TableTimePartitioningArgsDict(TypedDict):
|
7488
|
+
type: pulumi.Input[str]
|
7489
|
+
"""
|
7490
|
+
The supported types are DAY, HOUR, MONTH, and YEAR,
|
7491
|
+
which will generate one partition per day, hour, month, and year, respectively.
|
7492
|
+
"""
|
7493
|
+
expiration_ms: NotRequired[pulumi.Input[int]]
|
7494
|
+
"""
|
7495
|
+
Number of milliseconds for which to keep the
|
7496
|
+
storage for a partition.
|
7497
|
+
"""
|
7498
|
+
field: NotRequired[pulumi.Input[str]]
|
7499
|
+
"""
|
7500
|
+
The field used to determine how to create a time-based
|
7501
|
+
partition. If time-based partitioning is enabled without this value, the
|
7502
|
+
table is partitioned based on the load time.
|
7503
|
+
"""
|
7504
|
+
require_partition_filter: NotRequired[pulumi.Input[bool]]
|
7505
|
+
"""
|
7506
|
+
If set to true, queries over this table
|
7507
|
+
require a partition filter that can be used for partition elimination to be
|
7508
|
+
specified. `require_partition_filter` is deprecated and will be removed in
|
7509
|
+
a future major release. Use the top level field with the same name instead.
|
7510
|
+
"""
|
7511
|
+
elif False:
|
7512
|
+
TableTimePartitioningArgsDict: TypeAlias = Mapping[str, Any]
|
7513
|
+
|
5604
7514
|
@pulumi.input_type
|
5605
7515
|
class TableTimePartitioningArgs:
|
5606
7516
|
def __init__(__self__, *,
|
@@ -5689,6 +7599,20 @@ class TableTimePartitioningArgs:
|
|
5689
7599
|
pulumi.set(self, "require_partition_filter", value)
|
5690
7600
|
|
5691
7601
|
|
7602
|
+
if not MYPY:
|
7603
|
+
class TableViewArgsDict(TypedDict):
|
7604
|
+
query: pulumi.Input[str]
|
7605
|
+
"""
|
7606
|
+
A query that BigQuery executes when the view is referenced.
|
7607
|
+
"""
|
7608
|
+
use_legacy_sql: NotRequired[pulumi.Input[bool]]
|
7609
|
+
"""
|
7610
|
+
Specifies whether to use BigQuery's legacy SQL for this view.
|
7611
|
+
The default value is true. If set to false, the view will use BigQuery's standard SQL.
|
7612
|
+
"""
|
7613
|
+
elif False:
|
7614
|
+
TableViewArgsDict: TypeAlias = Mapping[str, Any]
|
7615
|
+
|
5692
7616
|
@pulumi.input_type
|
5693
7617
|
class TableViewArgs:
|
5694
7618
|
def __init__(__self__, *,
|