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/datastream/_inputs.py
CHANGED
@@ -4,96 +4,212 @@
|
|
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
|
'ConnectionProfileBigqueryProfileArgs',
|
19
|
+
'ConnectionProfileBigqueryProfileArgsDict',
|
14
20
|
'ConnectionProfileForwardSshConnectivityArgs',
|
21
|
+
'ConnectionProfileForwardSshConnectivityArgsDict',
|
15
22
|
'ConnectionProfileGcsProfileArgs',
|
23
|
+
'ConnectionProfileGcsProfileArgsDict',
|
16
24
|
'ConnectionProfileMysqlProfileArgs',
|
25
|
+
'ConnectionProfileMysqlProfileArgsDict',
|
17
26
|
'ConnectionProfileMysqlProfileSslConfigArgs',
|
27
|
+
'ConnectionProfileMysqlProfileSslConfigArgsDict',
|
18
28
|
'ConnectionProfileOracleProfileArgs',
|
29
|
+
'ConnectionProfileOracleProfileArgsDict',
|
19
30
|
'ConnectionProfilePostgresqlProfileArgs',
|
31
|
+
'ConnectionProfilePostgresqlProfileArgsDict',
|
20
32
|
'ConnectionProfilePrivateConnectivityArgs',
|
33
|
+
'ConnectionProfilePrivateConnectivityArgsDict',
|
21
34
|
'ConnectionProfileSqlServerProfileArgs',
|
35
|
+
'ConnectionProfileSqlServerProfileArgsDict',
|
22
36
|
'PrivateConnectionErrorArgs',
|
37
|
+
'PrivateConnectionErrorArgsDict',
|
23
38
|
'PrivateConnectionVpcPeeringConfigArgs',
|
39
|
+
'PrivateConnectionVpcPeeringConfigArgsDict',
|
24
40
|
'StreamBackfillAllArgs',
|
41
|
+
'StreamBackfillAllArgsDict',
|
25
42
|
'StreamBackfillAllMysqlExcludedObjectsArgs',
|
43
|
+
'StreamBackfillAllMysqlExcludedObjectsArgsDict',
|
26
44
|
'StreamBackfillAllMysqlExcludedObjectsMysqlDatabaseArgs',
|
45
|
+
'StreamBackfillAllMysqlExcludedObjectsMysqlDatabaseArgsDict',
|
27
46
|
'StreamBackfillAllMysqlExcludedObjectsMysqlDatabaseMysqlTableArgs',
|
47
|
+
'StreamBackfillAllMysqlExcludedObjectsMysqlDatabaseMysqlTableArgsDict',
|
28
48
|
'StreamBackfillAllMysqlExcludedObjectsMysqlDatabaseMysqlTableMysqlColumnArgs',
|
49
|
+
'StreamBackfillAllMysqlExcludedObjectsMysqlDatabaseMysqlTableMysqlColumnArgsDict',
|
29
50
|
'StreamBackfillAllOracleExcludedObjectsArgs',
|
51
|
+
'StreamBackfillAllOracleExcludedObjectsArgsDict',
|
30
52
|
'StreamBackfillAllOracleExcludedObjectsOracleSchemaArgs',
|
53
|
+
'StreamBackfillAllOracleExcludedObjectsOracleSchemaArgsDict',
|
31
54
|
'StreamBackfillAllOracleExcludedObjectsOracleSchemaOracleTableArgs',
|
55
|
+
'StreamBackfillAllOracleExcludedObjectsOracleSchemaOracleTableArgsDict',
|
32
56
|
'StreamBackfillAllOracleExcludedObjectsOracleSchemaOracleTableOracleColumnArgs',
|
57
|
+
'StreamBackfillAllOracleExcludedObjectsOracleSchemaOracleTableOracleColumnArgsDict',
|
33
58
|
'StreamBackfillAllPostgresqlExcludedObjectsArgs',
|
59
|
+
'StreamBackfillAllPostgresqlExcludedObjectsArgsDict',
|
34
60
|
'StreamBackfillAllPostgresqlExcludedObjectsPostgresqlSchemaArgs',
|
61
|
+
'StreamBackfillAllPostgresqlExcludedObjectsPostgresqlSchemaArgsDict',
|
35
62
|
'StreamBackfillAllPostgresqlExcludedObjectsPostgresqlSchemaPostgresqlTableArgs',
|
63
|
+
'StreamBackfillAllPostgresqlExcludedObjectsPostgresqlSchemaPostgresqlTableArgsDict',
|
36
64
|
'StreamBackfillAllPostgresqlExcludedObjectsPostgresqlSchemaPostgresqlTablePostgresqlColumnArgs',
|
65
|
+
'StreamBackfillAllPostgresqlExcludedObjectsPostgresqlSchemaPostgresqlTablePostgresqlColumnArgsDict',
|
37
66
|
'StreamBackfillAllSqlServerExcludedObjectsArgs',
|
67
|
+
'StreamBackfillAllSqlServerExcludedObjectsArgsDict',
|
38
68
|
'StreamBackfillAllSqlServerExcludedObjectsSchemaArgs',
|
69
|
+
'StreamBackfillAllSqlServerExcludedObjectsSchemaArgsDict',
|
39
70
|
'StreamBackfillAllSqlServerExcludedObjectsSchemaTableArgs',
|
71
|
+
'StreamBackfillAllSqlServerExcludedObjectsSchemaTableArgsDict',
|
40
72
|
'StreamBackfillAllSqlServerExcludedObjectsSchemaTableColumnArgs',
|
73
|
+
'StreamBackfillAllSqlServerExcludedObjectsSchemaTableColumnArgsDict',
|
41
74
|
'StreamBackfillNoneArgs',
|
75
|
+
'StreamBackfillNoneArgsDict',
|
42
76
|
'StreamDestinationConfigArgs',
|
77
|
+
'StreamDestinationConfigArgsDict',
|
43
78
|
'StreamDestinationConfigBigqueryDestinationConfigArgs',
|
79
|
+
'StreamDestinationConfigBigqueryDestinationConfigArgsDict',
|
44
80
|
'StreamDestinationConfigBigqueryDestinationConfigSingleTargetDatasetArgs',
|
81
|
+
'StreamDestinationConfigBigqueryDestinationConfigSingleTargetDatasetArgsDict',
|
45
82
|
'StreamDestinationConfigBigqueryDestinationConfigSourceHierarchyDatasetsArgs',
|
83
|
+
'StreamDestinationConfigBigqueryDestinationConfigSourceHierarchyDatasetsArgsDict',
|
46
84
|
'StreamDestinationConfigBigqueryDestinationConfigSourceHierarchyDatasetsDatasetTemplateArgs',
|
85
|
+
'StreamDestinationConfigBigqueryDestinationConfigSourceHierarchyDatasetsDatasetTemplateArgsDict',
|
47
86
|
'StreamDestinationConfigGcsDestinationConfigArgs',
|
87
|
+
'StreamDestinationConfigGcsDestinationConfigArgsDict',
|
48
88
|
'StreamDestinationConfigGcsDestinationConfigAvroFileFormatArgs',
|
89
|
+
'StreamDestinationConfigGcsDestinationConfigAvroFileFormatArgsDict',
|
49
90
|
'StreamDestinationConfigGcsDestinationConfigJsonFileFormatArgs',
|
91
|
+
'StreamDestinationConfigGcsDestinationConfigJsonFileFormatArgsDict',
|
50
92
|
'StreamSourceConfigArgs',
|
93
|
+
'StreamSourceConfigArgsDict',
|
51
94
|
'StreamSourceConfigMysqlSourceConfigArgs',
|
95
|
+
'StreamSourceConfigMysqlSourceConfigArgsDict',
|
52
96
|
'StreamSourceConfigMysqlSourceConfigExcludeObjectsArgs',
|
97
|
+
'StreamSourceConfigMysqlSourceConfigExcludeObjectsArgsDict',
|
53
98
|
'StreamSourceConfigMysqlSourceConfigExcludeObjectsMysqlDatabaseArgs',
|
99
|
+
'StreamSourceConfigMysqlSourceConfigExcludeObjectsMysqlDatabaseArgsDict',
|
54
100
|
'StreamSourceConfigMysqlSourceConfigExcludeObjectsMysqlDatabaseMysqlTableArgs',
|
101
|
+
'StreamSourceConfigMysqlSourceConfigExcludeObjectsMysqlDatabaseMysqlTableArgsDict',
|
55
102
|
'StreamSourceConfigMysqlSourceConfigExcludeObjectsMysqlDatabaseMysqlTableMysqlColumnArgs',
|
103
|
+
'StreamSourceConfigMysqlSourceConfigExcludeObjectsMysqlDatabaseMysqlTableMysqlColumnArgsDict',
|
56
104
|
'StreamSourceConfigMysqlSourceConfigIncludeObjectsArgs',
|
105
|
+
'StreamSourceConfigMysqlSourceConfigIncludeObjectsArgsDict',
|
57
106
|
'StreamSourceConfigMysqlSourceConfigIncludeObjectsMysqlDatabaseArgs',
|
107
|
+
'StreamSourceConfigMysqlSourceConfigIncludeObjectsMysqlDatabaseArgsDict',
|
58
108
|
'StreamSourceConfigMysqlSourceConfigIncludeObjectsMysqlDatabaseMysqlTableArgs',
|
109
|
+
'StreamSourceConfigMysqlSourceConfigIncludeObjectsMysqlDatabaseMysqlTableArgsDict',
|
59
110
|
'StreamSourceConfigMysqlSourceConfigIncludeObjectsMysqlDatabaseMysqlTableMysqlColumnArgs',
|
111
|
+
'StreamSourceConfigMysqlSourceConfigIncludeObjectsMysqlDatabaseMysqlTableMysqlColumnArgsDict',
|
60
112
|
'StreamSourceConfigOracleSourceConfigArgs',
|
113
|
+
'StreamSourceConfigOracleSourceConfigArgsDict',
|
61
114
|
'StreamSourceConfigOracleSourceConfigDropLargeObjectsArgs',
|
115
|
+
'StreamSourceConfigOracleSourceConfigDropLargeObjectsArgsDict',
|
62
116
|
'StreamSourceConfigOracleSourceConfigExcludeObjectsArgs',
|
117
|
+
'StreamSourceConfigOracleSourceConfigExcludeObjectsArgsDict',
|
63
118
|
'StreamSourceConfigOracleSourceConfigExcludeObjectsOracleSchemaArgs',
|
119
|
+
'StreamSourceConfigOracleSourceConfigExcludeObjectsOracleSchemaArgsDict',
|
64
120
|
'StreamSourceConfigOracleSourceConfigExcludeObjectsOracleSchemaOracleTableArgs',
|
121
|
+
'StreamSourceConfigOracleSourceConfigExcludeObjectsOracleSchemaOracleTableArgsDict',
|
65
122
|
'StreamSourceConfigOracleSourceConfigExcludeObjectsOracleSchemaOracleTableOracleColumnArgs',
|
123
|
+
'StreamSourceConfigOracleSourceConfigExcludeObjectsOracleSchemaOracleTableOracleColumnArgsDict',
|
66
124
|
'StreamSourceConfigOracleSourceConfigIncludeObjectsArgs',
|
125
|
+
'StreamSourceConfigOracleSourceConfigIncludeObjectsArgsDict',
|
67
126
|
'StreamSourceConfigOracleSourceConfigIncludeObjectsOracleSchemaArgs',
|
127
|
+
'StreamSourceConfigOracleSourceConfigIncludeObjectsOracleSchemaArgsDict',
|
68
128
|
'StreamSourceConfigOracleSourceConfigIncludeObjectsOracleSchemaOracleTableArgs',
|
129
|
+
'StreamSourceConfigOracleSourceConfigIncludeObjectsOracleSchemaOracleTableArgsDict',
|
69
130
|
'StreamSourceConfigOracleSourceConfigIncludeObjectsOracleSchemaOracleTableOracleColumnArgs',
|
131
|
+
'StreamSourceConfigOracleSourceConfigIncludeObjectsOracleSchemaOracleTableOracleColumnArgsDict',
|
70
132
|
'StreamSourceConfigOracleSourceConfigStreamLargeObjectsArgs',
|
133
|
+
'StreamSourceConfigOracleSourceConfigStreamLargeObjectsArgsDict',
|
71
134
|
'StreamSourceConfigPostgresqlSourceConfigArgs',
|
135
|
+
'StreamSourceConfigPostgresqlSourceConfigArgsDict',
|
72
136
|
'StreamSourceConfigPostgresqlSourceConfigExcludeObjectsArgs',
|
137
|
+
'StreamSourceConfigPostgresqlSourceConfigExcludeObjectsArgsDict',
|
73
138
|
'StreamSourceConfigPostgresqlSourceConfigExcludeObjectsPostgresqlSchemaArgs',
|
139
|
+
'StreamSourceConfigPostgresqlSourceConfigExcludeObjectsPostgresqlSchemaArgsDict',
|
74
140
|
'StreamSourceConfigPostgresqlSourceConfigExcludeObjectsPostgresqlSchemaPostgresqlTableArgs',
|
141
|
+
'StreamSourceConfigPostgresqlSourceConfigExcludeObjectsPostgresqlSchemaPostgresqlTableArgsDict',
|
75
142
|
'StreamSourceConfigPostgresqlSourceConfigExcludeObjectsPostgresqlSchemaPostgresqlTablePostgresqlColumnArgs',
|
143
|
+
'StreamSourceConfigPostgresqlSourceConfigExcludeObjectsPostgresqlSchemaPostgresqlTablePostgresqlColumnArgsDict',
|
76
144
|
'StreamSourceConfigPostgresqlSourceConfigIncludeObjectsArgs',
|
145
|
+
'StreamSourceConfigPostgresqlSourceConfigIncludeObjectsArgsDict',
|
77
146
|
'StreamSourceConfigPostgresqlSourceConfigIncludeObjectsPostgresqlSchemaArgs',
|
147
|
+
'StreamSourceConfigPostgresqlSourceConfigIncludeObjectsPostgresqlSchemaArgsDict',
|
78
148
|
'StreamSourceConfigPostgresqlSourceConfigIncludeObjectsPostgresqlSchemaPostgresqlTableArgs',
|
149
|
+
'StreamSourceConfigPostgresqlSourceConfigIncludeObjectsPostgresqlSchemaPostgresqlTableArgsDict',
|
79
150
|
'StreamSourceConfigPostgresqlSourceConfigIncludeObjectsPostgresqlSchemaPostgresqlTablePostgresqlColumnArgs',
|
151
|
+
'StreamSourceConfigPostgresqlSourceConfigIncludeObjectsPostgresqlSchemaPostgresqlTablePostgresqlColumnArgsDict',
|
80
152
|
'StreamSourceConfigSqlServerSourceConfigArgs',
|
153
|
+
'StreamSourceConfigSqlServerSourceConfigArgsDict',
|
81
154
|
'StreamSourceConfigSqlServerSourceConfigExcludeObjectsArgs',
|
155
|
+
'StreamSourceConfigSqlServerSourceConfigExcludeObjectsArgsDict',
|
82
156
|
'StreamSourceConfigSqlServerSourceConfigExcludeObjectsSchemaArgs',
|
157
|
+
'StreamSourceConfigSqlServerSourceConfigExcludeObjectsSchemaArgsDict',
|
83
158
|
'StreamSourceConfigSqlServerSourceConfigExcludeObjectsSchemaTableArgs',
|
159
|
+
'StreamSourceConfigSqlServerSourceConfigExcludeObjectsSchemaTableArgsDict',
|
84
160
|
'StreamSourceConfigSqlServerSourceConfigExcludeObjectsSchemaTableColumnArgs',
|
161
|
+
'StreamSourceConfigSqlServerSourceConfigExcludeObjectsSchemaTableColumnArgsDict',
|
85
162
|
'StreamSourceConfigSqlServerSourceConfigIncludeObjectsArgs',
|
163
|
+
'StreamSourceConfigSqlServerSourceConfigIncludeObjectsArgsDict',
|
86
164
|
'StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaArgs',
|
165
|
+
'StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaArgsDict',
|
87
166
|
'StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaTableArgs',
|
167
|
+
'StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaTableArgsDict',
|
88
168
|
'StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaTableColumnArgs',
|
169
|
+
'StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaTableColumnArgsDict',
|
89
170
|
]
|
90
171
|
|
172
|
+
MYPY = False
|
173
|
+
|
174
|
+
if not MYPY:
|
175
|
+
class ConnectionProfileBigqueryProfileArgsDict(TypedDict):
|
176
|
+
pass
|
177
|
+
elif False:
|
178
|
+
ConnectionProfileBigqueryProfileArgsDict: TypeAlias = Mapping[str, Any]
|
179
|
+
|
91
180
|
@pulumi.input_type
|
92
181
|
class ConnectionProfileBigqueryProfileArgs:
|
93
182
|
def __init__(__self__):
|
94
183
|
pass
|
95
184
|
|
96
185
|
|
186
|
+
if not MYPY:
|
187
|
+
class ConnectionProfileForwardSshConnectivityArgsDict(TypedDict):
|
188
|
+
hostname: pulumi.Input[str]
|
189
|
+
"""
|
190
|
+
Hostname for the SSH tunnel.
|
191
|
+
"""
|
192
|
+
username: pulumi.Input[str]
|
193
|
+
"""
|
194
|
+
Username for the SSH tunnel.
|
195
|
+
"""
|
196
|
+
password: NotRequired[pulumi.Input[str]]
|
197
|
+
"""
|
198
|
+
SSH password.
|
199
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
200
|
+
"""
|
201
|
+
port: NotRequired[pulumi.Input[int]]
|
202
|
+
"""
|
203
|
+
Port for the SSH tunnel.
|
204
|
+
"""
|
205
|
+
private_key: NotRequired[pulumi.Input[str]]
|
206
|
+
"""
|
207
|
+
SSH private key.
|
208
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
209
|
+
"""
|
210
|
+
elif False:
|
211
|
+
ConnectionProfileForwardSshConnectivityArgsDict: TypeAlias = Mapping[str, Any]
|
212
|
+
|
97
213
|
@pulumi.input_type
|
98
214
|
class ConnectionProfileForwardSshConnectivityArgs:
|
99
215
|
def __init__(__self__, *,
|
@@ -183,6 +299,19 @@ class ConnectionProfileForwardSshConnectivityArgs:
|
|
183
299
|
pulumi.set(self, "private_key", value)
|
184
300
|
|
185
301
|
|
302
|
+
if not MYPY:
|
303
|
+
class ConnectionProfileGcsProfileArgsDict(TypedDict):
|
304
|
+
bucket: pulumi.Input[str]
|
305
|
+
"""
|
306
|
+
The Cloud Storage bucket name.
|
307
|
+
"""
|
308
|
+
root_path: NotRequired[pulumi.Input[str]]
|
309
|
+
"""
|
310
|
+
The root path inside the Cloud Storage bucket.
|
311
|
+
"""
|
312
|
+
elif False:
|
313
|
+
ConnectionProfileGcsProfileArgsDict: TypeAlias = Mapping[str, Any]
|
314
|
+
|
186
315
|
@pulumi.input_type
|
187
316
|
class ConnectionProfileGcsProfileArgs:
|
188
317
|
def __init__(__self__, *,
|
@@ -221,6 +350,33 @@ class ConnectionProfileGcsProfileArgs:
|
|
221
350
|
pulumi.set(self, "root_path", value)
|
222
351
|
|
223
352
|
|
353
|
+
if not MYPY:
|
354
|
+
class ConnectionProfileMysqlProfileArgsDict(TypedDict):
|
355
|
+
hostname: pulumi.Input[str]
|
356
|
+
"""
|
357
|
+
Hostname for the MySQL connection.
|
358
|
+
"""
|
359
|
+
password: pulumi.Input[str]
|
360
|
+
"""
|
361
|
+
Password for the MySQL connection.
|
362
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
363
|
+
"""
|
364
|
+
username: pulumi.Input[str]
|
365
|
+
"""
|
366
|
+
Username for the MySQL connection.
|
367
|
+
"""
|
368
|
+
port: NotRequired[pulumi.Input[int]]
|
369
|
+
"""
|
370
|
+
Port for the MySQL connection.
|
371
|
+
"""
|
372
|
+
ssl_config: NotRequired[pulumi.Input['ConnectionProfileMysqlProfileSslConfigArgsDict']]
|
373
|
+
"""
|
374
|
+
SSL configuration for the MySQL connection.
|
375
|
+
Structure is documented below.
|
376
|
+
"""
|
377
|
+
elif False:
|
378
|
+
ConnectionProfileMysqlProfileArgsDict: TypeAlias = Mapping[str, Any]
|
379
|
+
|
224
380
|
@pulumi.input_type
|
225
381
|
class ConnectionProfileMysqlProfileArgs:
|
226
382
|
def __init__(__self__, *,
|
@@ -309,6 +465,47 @@ class ConnectionProfileMysqlProfileArgs:
|
|
309
465
|
pulumi.set(self, "ssl_config", value)
|
310
466
|
|
311
467
|
|
468
|
+
if not MYPY:
|
469
|
+
class ConnectionProfileMysqlProfileSslConfigArgsDict(TypedDict):
|
470
|
+
ca_certificate: NotRequired[pulumi.Input[str]]
|
471
|
+
"""
|
472
|
+
PEM-encoded certificate of the CA that signed the source database
|
473
|
+
server's certificate.
|
474
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
475
|
+
"""
|
476
|
+
ca_certificate_set: NotRequired[pulumi.Input[bool]]
|
477
|
+
"""
|
478
|
+
(Output)
|
479
|
+
Indicates whether the clientKey field is set.
|
480
|
+
"""
|
481
|
+
client_certificate: NotRequired[pulumi.Input[str]]
|
482
|
+
"""
|
483
|
+
PEM-encoded certificate that will be used by the replica to
|
484
|
+
authenticate against the source database server. If this field
|
485
|
+
is used then the 'clientKey' and the 'caCertificate' fields are
|
486
|
+
mandatory.
|
487
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
488
|
+
"""
|
489
|
+
client_certificate_set: NotRequired[pulumi.Input[bool]]
|
490
|
+
"""
|
491
|
+
(Output)
|
492
|
+
Indicates whether the clientCertificate field is set.
|
493
|
+
"""
|
494
|
+
client_key: NotRequired[pulumi.Input[str]]
|
495
|
+
"""
|
496
|
+
PEM-encoded private key associated with the Client Certificate.
|
497
|
+
If this field is used then the 'client_certificate' and the
|
498
|
+
'ca_certificate' fields are mandatory.
|
499
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
500
|
+
"""
|
501
|
+
client_key_set: NotRequired[pulumi.Input[bool]]
|
502
|
+
"""
|
503
|
+
(Output)
|
504
|
+
Indicates whether the clientKey field is set.
|
505
|
+
"""
|
506
|
+
elif False:
|
507
|
+
ConnectionProfileMysqlProfileSslConfigArgsDict: TypeAlias = Mapping[str, Any]
|
508
|
+
|
312
509
|
@pulumi.input_type
|
313
510
|
class ConnectionProfileMysqlProfileSslConfigArgs:
|
314
511
|
def __init__(__self__, *,
|
@@ -436,6 +633,36 @@ class ConnectionProfileMysqlProfileSslConfigArgs:
|
|
436
633
|
pulumi.set(self, "client_key_set", value)
|
437
634
|
|
438
635
|
|
636
|
+
if not MYPY:
|
637
|
+
class ConnectionProfileOracleProfileArgsDict(TypedDict):
|
638
|
+
database_service: pulumi.Input[str]
|
639
|
+
"""
|
640
|
+
Database for the Oracle connection.
|
641
|
+
"""
|
642
|
+
hostname: pulumi.Input[str]
|
643
|
+
"""
|
644
|
+
Hostname for the Oracle connection.
|
645
|
+
"""
|
646
|
+
password: pulumi.Input[str]
|
647
|
+
"""
|
648
|
+
Password for the Oracle connection.
|
649
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
650
|
+
"""
|
651
|
+
username: pulumi.Input[str]
|
652
|
+
"""
|
653
|
+
Username for the Oracle connection.
|
654
|
+
"""
|
655
|
+
connection_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
656
|
+
"""
|
657
|
+
Connection string attributes
|
658
|
+
"""
|
659
|
+
port: NotRequired[pulumi.Input[int]]
|
660
|
+
"""
|
661
|
+
Port for the Oracle connection.
|
662
|
+
"""
|
663
|
+
elif False:
|
664
|
+
ConnectionProfileOracleProfileArgsDict: TypeAlias = Mapping[str, Any]
|
665
|
+
|
439
666
|
@pulumi.input_type
|
440
667
|
class ConnectionProfileOracleProfileArgs:
|
441
668
|
def __init__(__self__, *,
|
@@ -537,6 +764,32 @@ class ConnectionProfileOracleProfileArgs:
|
|
537
764
|
pulumi.set(self, "port", value)
|
538
765
|
|
539
766
|
|
767
|
+
if not MYPY:
|
768
|
+
class ConnectionProfilePostgresqlProfileArgsDict(TypedDict):
|
769
|
+
database: pulumi.Input[str]
|
770
|
+
"""
|
771
|
+
Database for the PostgreSQL connection.
|
772
|
+
"""
|
773
|
+
hostname: pulumi.Input[str]
|
774
|
+
"""
|
775
|
+
Hostname for the PostgreSQL connection.
|
776
|
+
"""
|
777
|
+
password: pulumi.Input[str]
|
778
|
+
"""
|
779
|
+
Password for the PostgreSQL connection.
|
780
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
781
|
+
"""
|
782
|
+
username: pulumi.Input[str]
|
783
|
+
"""
|
784
|
+
Username for the PostgreSQL connection.
|
785
|
+
"""
|
786
|
+
port: NotRequired[pulumi.Input[int]]
|
787
|
+
"""
|
788
|
+
Port for the PostgreSQL connection.
|
789
|
+
"""
|
790
|
+
elif False:
|
791
|
+
ConnectionProfilePostgresqlProfileArgsDict: TypeAlias = Mapping[str, Any]
|
792
|
+
|
540
793
|
@pulumi.input_type
|
541
794
|
class ConnectionProfilePostgresqlProfileArgs:
|
542
795
|
def __init__(__self__, *,
|
@@ -622,6 +875,15 @@ class ConnectionProfilePostgresqlProfileArgs:
|
|
622
875
|
pulumi.set(self, "port", value)
|
623
876
|
|
624
877
|
|
878
|
+
if not MYPY:
|
879
|
+
class ConnectionProfilePrivateConnectivityArgsDict(TypedDict):
|
880
|
+
private_connection: pulumi.Input[str]
|
881
|
+
"""
|
882
|
+
A reference to a private connection resource. Format: `projects/{project}/locations/{location}/privateConnections/{name}`
|
883
|
+
"""
|
884
|
+
elif False:
|
885
|
+
ConnectionProfilePrivateConnectivityArgsDict: TypeAlias = Mapping[str, Any]
|
886
|
+
|
625
887
|
@pulumi.input_type
|
626
888
|
class ConnectionProfilePrivateConnectivityArgs:
|
627
889
|
def __init__(__self__, *,
|
@@ -644,6 +906,32 @@ class ConnectionProfilePrivateConnectivityArgs:
|
|
644
906
|
pulumi.set(self, "private_connection", value)
|
645
907
|
|
646
908
|
|
909
|
+
if not MYPY:
|
910
|
+
class ConnectionProfileSqlServerProfileArgsDict(TypedDict):
|
911
|
+
database: pulumi.Input[str]
|
912
|
+
"""
|
913
|
+
Database for the SQL Server connection.
|
914
|
+
"""
|
915
|
+
hostname: pulumi.Input[str]
|
916
|
+
"""
|
917
|
+
Hostname for the SQL Server connection.
|
918
|
+
"""
|
919
|
+
password: pulumi.Input[str]
|
920
|
+
"""
|
921
|
+
Password for the SQL Server connection.
|
922
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
923
|
+
"""
|
924
|
+
username: pulumi.Input[str]
|
925
|
+
"""
|
926
|
+
Username for the SQL Server connection.
|
927
|
+
"""
|
928
|
+
port: NotRequired[pulumi.Input[int]]
|
929
|
+
"""
|
930
|
+
Port for the SQL Server connection.
|
931
|
+
"""
|
932
|
+
elif False:
|
933
|
+
ConnectionProfileSqlServerProfileArgsDict: TypeAlias = Mapping[str, Any]
|
934
|
+
|
647
935
|
@pulumi.input_type
|
648
936
|
class ConnectionProfileSqlServerProfileArgs:
|
649
937
|
def __init__(__self__, *,
|
@@ -729,6 +1017,19 @@ class ConnectionProfileSqlServerProfileArgs:
|
|
729
1017
|
pulumi.set(self, "port", value)
|
730
1018
|
|
731
1019
|
|
1020
|
+
if not MYPY:
|
1021
|
+
class PrivateConnectionErrorArgsDict(TypedDict):
|
1022
|
+
details: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
1023
|
+
"""
|
1024
|
+
A list of messages that carry the error details.
|
1025
|
+
"""
|
1026
|
+
message: NotRequired[pulumi.Input[str]]
|
1027
|
+
"""
|
1028
|
+
A message containing more information about the error that occurred.
|
1029
|
+
"""
|
1030
|
+
elif False:
|
1031
|
+
PrivateConnectionErrorArgsDict: TypeAlias = Mapping[str, Any]
|
1032
|
+
|
732
1033
|
@pulumi.input_type
|
733
1034
|
class PrivateConnectionErrorArgs:
|
734
1035
|
def __init__(__self__, *,
|
@@ -768,6 +1069,22 @@ class PrivateConnectionErrorArgs:
|
|
768
1069
|
pulumi.set(self, "message", value)
|
769
1070
|
|
770
1071
|
|
1072
|
+
if not MYPY:
|
1073
|
+
class PrivateConnectionVpcPeeringConfigArgsDict(TypedDict):
|
1074
|
+
subnet: pulumi.Input[str]
|
1075
|
+
"""
|
1076
|
+
A free subnet for peering. (CIDR of /29)
|
1077
|
+
|
1078
|
+
- - -
|
1079
|
+
"""
|
1080
|
+
vpc: pulumi.Input[str]
|
1081
|
+
"""
|
1082
|
+
Fully qualified name of the VPC that Datastream will peer to.
|
1083
|
+
Format: projects/{project}/global/{networks}/{name}
|
1084
|
+
"""
|
1085
|
+
elif False:
|
1086
|
+
PrivateConnectionVpcPeeringConfigArgsDict: TypeAlias = Mapping[str, Any]
|
1087
|
+
|
771
1088
|
@pulumi.input_type
|
772
1089
|
class PrivateConnectionVpcPeeringConfigArgs:
|
773
1090
|
def __init__(__self__, *,
|
@@ -811,6 +1128,31 @@ class PrivateConnectionVpcPeeringConfigArgs:
|
|
811
1128
|
pulumi.set(self, "vpc", value)
|
812
1129
|
|
813
1130
|
|
1131
|
+
if not MYPY:
|
1132
|
+
class StreamBackfillAllArgsDict(TypedDict):
|
1133
|
+
mysql_excluded_objects: NotRequired[pulumi.Input['StreamBackfillAllMysqlExcludedObjectsArgsDict']]
|
1134
|
+
"""
|
1135
|
+
MySQL data source objects to avoid backfilling.
|
1136
|
+
Structure is documented below.
|
1137
|
+
"""
|
1138
|
+
oracle_excluded_objects: NotRequired[pulumi.Input['StreamBackfillAllOracleExcludedObjectsArgsDict']]
|
1139
|
+
"""
|
1140
|
+
PostgreSQL data source objects to avoid backfilling.
|
1141
|
+
Structure is documented below.
|
1142
|
+
"""
|
1143
|
+
postgresql_excluded_objects: NotRequired[pulumi.Input['StreamBackfillAllPostgresqlExcludedObjectsArgsDict']]
|
1144
|
+
"""
|
1145
|
+
PostgreSQL data source objects to avoid backfilling.
|
1146
|
+
Structure is documented below.
|
1147
|
+
"""
|
1148
|
+
sql_server_excluded_objects: NotRequired[pulumi.Input['StreamBackfillAllSqlServerExcludedObjectsArgsDict']]
|
1149
|
+
"""
|
1150
|
+
SQL Server data source objects to avoid backfilling.
|
1151
|
+
Structure is documented below.
|
1152
|
+
"""
|
1153
|
+
elif False:
|
1154
|
+
StreamBackfillAllArgsDict: TypeAlias = Mapping[str, Any]
|
1155
|
+
|
814
1156
|
@pulumi.input_type
|
815
1157
|
class StreamBackfillAllArgs:
|
816
1158
|
def __init__(__self__, *,
|
@@ -890,6 +1232,16 @@ class StreamBackfillAllArgs:
|
|
890
1232
|
pulumi.set(self, "sql_server_excluded_objects", value)
|
891
1233
|
|
892
1234
|
|
1235
|
+
if not MYPY:
|
1236
|
+
class StreamBackfillAllMysqlExcludedObjectsArgsDict(TypedDict):
|
1237
|
+
mysql_databases: pulumi.Input[Sequence[pulumi.Input['StreamBackfillAllMysqlExcludedObjectsMysqlDatabaseArgsDict']]]
|
1238
|
+
"""
|
1239
|
+
MySQL databases on the server
|
1240
|
+
Structure is documented below.
|
1241
|
+
"""
|
1242
|
+
elif False:
|
1243
|
+
StreamBackfillAllMysqlExcludedObjectsArgsDict: TypeAlias = Mapping[str, Any]
|
1244
|
+
|
893
1245
|
@pulumi.input_type
|
894
1246
|
class StreamBackfillAllMysqlExcludedObjectsArgs:
|
895
1247
|
def __init__(__self__, *,
|
@@ -914,6 +1266,20 @@ class StreamBackfillAllMysqlExcludedObjectsArgs:
|
|
914
1266
|
pulumi.set(self, "mysql_databases", value)
|
915
1267
|
|
916
1268
|
|
1269
|
+
if not MYPY:
|
1270
|
+
class StreamBackfillAllMysqlExcludedObjectsMysqlDatabaseArgsDict(TypedDict):
|
1271
|
+
database: pulumi.Input[str]
|
1272
|
+
"""
|
1273
|
+
Database name.
|
1274
|
+
"""
|
1275
|
+
mysql_tables: NotRequired[pulumi.Input[Sequence[pulumi.Input['StreamBackfillAllMysqlExcludedObjectsMysqlDatabaseMysqlTableArgsDict']]]]
|
1276
|
+
"""
|
1277
|
+
Tables in the database.
|
1278
|
+
Structure is documented below.
|
1279
|
+
"""
|
1280
|
+
elif False:
|
1281
|
+
StreamBackfillAllMysqlExcludedObjectsMysqlDatabaseArgsDict: TypeAlias = Mapping[str, Any]
|
1282
|
+
|
917
1283
|
@pulumi.input_type
|
918
1284
|
class StreamBackfillAllMysqlExcludedObjectsMysqlDatabaseArgs:
|
919
1285
|
def __init__(__self__, *,
|
@@ -954,6 +1320,20 @@ class StreamBackfillAllMysqlExcludedObjectsMysqlDatabaseArgs:
|
|
954
1320
|
pulumi.set(self, "mysql_tables", value)
|
955
1321
|
|
956
1322
|
|
1323
|
+
if not MYPY:
|
1324
|
+
class StreamBackfillAllMysqlExcludedObjectsMysqlDatabaseMysqlTableArgsDict(TypedDict):
|
1325
|
+
table: pulumi.Input[str]
|
1326
|
+
"""
|
1327
|
+
Table name.
|
1328
|
+
"""
|
1329
|
+
mysql_columns: NotRequired[pulumi.Input[Sequence[pulumi.Input['StreamBackfillAllMysqlExcludedObjectsMysqlDatabaseMysqlTableMysqlColumnArgsDict']]]]
|
1330
|
+
"""
|
1331
|
+
MySQL columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
|
1332
|
+
Structure is documented below.
|
1333
|
+
"""
|
1334
|
+
elif False:
|
1335
|
+
StreamBackfillAllMysqlExcludedObjectsMysqlDatabaseMysqlTableArgsDict: TypeAlias = Mapping[str, Any]
|
1336
|
+
|
957
1337
|
@pulumi.input_type
|
958
1338
|
class StreamBackfillAllMysqlExcludedObjectsMysqlDatabaseMysqlTableArgs:
|
959
1339
|
def __init__(__self__, *,
|
@@ -994,6 +1374,41 @@ class StreamBackfillAllMysqlExcludedObjectsMysqlDatabaseMysqlTableArgs:
|
|
994
1374
|
pulumi.set(self, "mysql_columns", value)
|
995
1375
|
|
996
1376
|
|
1377
|
+
if not MYPY:
|
1378
|
+
class StreamBackfillAllMysqlExcludedObjectsMysqlDatabaseMysqlTableMysqlColumnArgsDict(TypedDict):
|
1379
|
+
collation: NotRequired[pulumi.Input[str]]
|
1380
|
+
"""
|
1381
|
+
Column collation.
|
1382
|
+
"""
|
1383
|
+
column: NotRequired[pulumi.Input[str]]
|
1384
|
+
"""
|
1385
|
+
Column name.
|
1386
|
+
"""
|
1387
|
+
data_type: NotRequired[pulumi.Input[str]]
|
1388
|
+
"""
|
1389
|
+
The MySQL data type. Full data types list can be found here:
|
1390
|
+
https://dev.mysql.com/doc/refman/8.0/en/data-types.html
|
1391
|
+
"""
|
1392
|
+
length: NotRequired[pulumi.Input[int]]
|
1393
|
+
"""
|
1394
|
+
(Output)
|
1395
|
+
Column length.
|
1396
|
+
"""
|
1397
|
+
nullable: NotRequired[pulumi.Input[bool]]
|
1398
|
+
"""
|
1399
|
+
Whether or not the column can accept a null value.
|
1400
|
+
"""
|
1401
|
+
ordinal_position: NotRequired[pulumi.Input[int]]
|
1402
|
+
"""
|
1403
|
+
The ordinal position of the column in the table.
|
1404
|
+
"""
|
1405
|
+
primary_key: NotRequired[pulumi.Input[bool]]
|
1406
|
+
"""
|
1407
|
+
Whether or not the column represents a primary key.
|
1408
|
+
"""
|
1409
|
+
elif False:
|
1410
|
+
StreamBackfillAllMysqlExcludedObjectsMysqlDatabaseMysqlTableMysqlColumnArgsDict: TypeAlias = Mapping[str, Any]
|
1411
|
+
|
997
1412
|
@pulumi.input_type
|
998
1413
|
class StreamBackfillAllMysqlExcludedObjectsMysqlDatabaseMysqlTableMysqlColumnArgs:
|
999
1414
|
def __init__(__self__, *,
|
@@ -1117,6 +1532,16 @@ class StreamBackfillAllMysqlExcludedObjectsMysqlDatabaseMysqlTableMysqlColumnArg
|
|
1117
1532
|
pulumi.set(self, "primary_key", value)
|
1118
1533
|
|
1119
1534
|
|
1535
|
+
if not MYPY:
|
1536
|
+
class StreamBackfillAllOracleExcludedObjectsArgsDict(TypedDict):
|
1537
|
+
oracle_schemas: pulumi.Input[Sequence[pulumi.Input['StreamBackfillAllOracleExcludedObjectsOracleSchemaArgsDict']]]
|
1538
|
+
"""
|
1539
|
+
Oracle schemas/databases in the database server
|
1540
|
+
Structure is documented below.
|
1541
|
+
"""
|
1542
|
+
elif False:
|
1543
|
+
StreamBackfillAllOracleExcludedObjectsArgsDict: TypeAlias = Mapping[str, Any]
|
1544
|
+
|
1120
1545
|
@pulumi.input_type
|
1121
1546
|
class StreamBackfillAllOracleExcludedObjectsArgs:
|
1122
1547
|
def __init__(__self__, *,
|
@@ -1141,6 +1566,20 @@ class StreamBackfillAllOracleExcludedObjectsArgs:
|
|
1141
1566
|
pulumi.set(self, "oracle_schemas", value)
|
1142
1567
|
|
1143
1568
|
|
1569
|
+
if not MYPY:
|
1570
|
+
class StreamBackfillAllOracleExcludedObjectsOracleSchemaArgsDict(TypedDict):
|
1571
|
+
schema: pulumi.Input[str]
|
1572
|
+
"""
|
1573
|
+
Schema name.
|
1574
|
+
"""
|
1575
|
+
oracle_tables: NotRequired[pulumi.Input[Sequence[pulumi.Input['StreamBackfillAllOracleExcludedObjectsOracleSchemaOracleTableArgsDict']]]]
|
1576
|
+
"""
|
1577
|
+
Tables in the database.
|
1578
|
+
Structure is documented below.
|
1579
|
+
"""
|
1580
|
+
elif False:
|
1581
|
+
StreamBackfillAllOracleExcludedObjectsOracleSchemaArgsDict: TypeAlias = Mapping[str, Any]
|
1582
|
+
|
1144
1583
|
@pulumi.input_type
|
1145
1584
|
class StreamBackfillAllOracleExcludedObjectsOracleSchemaArgs:
|
1146
1585
|
def __init__(__self__, *,
|
@@ -1181,6 +1620,20 @@ class StreamBackfillAllOracleExcludedObjectsOracleSchemaArgs:
|
|
1181
1620
|
pulumi.set(self, "oracle_tables", value)
|
1182
1621
|
|
1183
1622
|
|
1623
|
+
if not MYPY:
|
1624
|
+
class StreamBackfillAllOracleExcludedObjectsOracleSchemaOracleTableArgsDict(TypedDict):
|
1625
|
+
table: pulumi.Input[str]
|
1626
|
+
"""
|
1627
|
+
Table name.
|
1628
|
+
"""
|
1629
|
+
oracle_columns: NotRequired[pulumi.Input[Sequence[pulumi.Input['StreamBackfillAllOracleExcludedObjectsOracleSchemaOracleTableOracleColumnArgsDict']]]]
|
1630
|
+
"""
|
1631
|
+
Oracle columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
|
1632
|
+
Structure is documented below.
|
1633
|
+
"""
|
1634
|
+
elif False:
|
1635
|
+
StreamBackfillAllOracleExcludedObjectsOracleSchemaOracleTableArgsDict: TypeAlias = Mapping[str, Any]
|
1636
|
+
|
1184
1637
|
@pulumi.input_type
|
1185
1638
|
class StreamBackfillAllOracleExcludedObjectsOracleSchemaOracleTableArgs:
|
1186
1639
|
def __init__(__self__, *,
|
@@ -1221,28 +1674,77 @@ class StreamBackfillAllOracleExcludedObjectsOracleSchemaOracleTableArgs:
|
|
1221
1674
|
pulumi.set(self, "oracle_columns", value)
|
1222
1675
|
|
1223
1676
|
|
1224
|
-
|
1225
|
-
class
|
1226
|
-
|
1227
|
-
column: Optional[pulumi.Input[str]] = None,
|
1228
|
-
data_type: Optional[pulumi.Input[str]] = None,
|
1229
|
-
encoding: Optional[pulumi.Input[str]] = None,
|
1230
|
-
length: Optional[pulumi.Input[int]] = None,
|
1231
|
-
nullable: Optional[pulumi.Input[bool]] = None,
|
1232
|
-
ordinal_position: Optional[pulumi.Input[int]] = None,
|
1233
|
-
precision: Optional[pulumi.Input[int]] = None,
|
1234
|
-
primary_key: Optional[pulumi.Input[bool]] = None,
|
1235
|
-
scale: Optional[pulumi.Input[int]] = None):
|
1677
|
+
if not MYPY:
|
1678
|
+
class StreamBackfillAllOracleExcludedObjectsOracleSchemaOracleTableOracleColumnArgsDict(TypedDict):
|
1679
|
+
column: NotRequired[pulumi.Input[str]]
|
1236
1680
|
"""
|
1237
|
-
|
1238
|
-
|
1239
|
-
|
1240
|
-
|
1241
|
-
|
1242
|
-
|
1243
|
-
|
1244
|
-
:
|
1245
|
-
|
1681
|
+
Column name.
|
1682
|
+
"""
|
1683
|
+
data_type: NotRequired[pulumi.Input[str]]
|
1684
|
+
"""
|
1685
|
+
The Oracle data type. Full data types list can be found here:
|
1686
|
+
https://docs.oracle.com/en/database/oracle/oracle-database/21/sqlrf/Data-Types.html
|
1687
|
+
"""
|
1688
|
+
encoding: NotRequired[pulumi.Input[str]]
|
1689
|
+
"""
|
1690
|
+
(Output)
|
1691
|
+
Column encoding.
|
1692
|
+
"""
|
1693
|
+
length: NotRequired[pulumi.Input[int]]
|
1694
|
+
"""
|
1695
|
+
(Output)
|
1696
|
+
Column length.
|
1697
|
+
"""
|
1698
|
+
nullable: NotRequired[pulumi.Input[bool]]
|
1699
|
+
"""
|
1700
|
+
(Output)
|
1701
|
+
Whether or not the column can accept a null value.
|
1702
|
+
"""
|
1703
|
+
ordinal_position: NotRequired[pulumi.Input[int]]
|
1704
|
+
"""
|
1705
|
+
(Output)
|
1706
|
+
The ordinal position of the column in the table.
|
1707
|
+
"""
|
1708
|
+
precision: NotRequired[pulumi.Input[int]]
|
1709
|
+
"""
|
1710
|
+
(Output)
|
1711
|
+
Column precision.
|
1712
|
+
"""
|
1713
|
+
primary_key: NotRequired[pulumi.Input[bool]]
|
1714
|
+
"""
|
1715
|
+
(Output)
|
1716
|
+
Whether or not the column represents a primary key.
|
1717
|
+
"""
|
1718
|
+
scale: NotRequired[pulumi.Input[int]]
|
1719
|
+
"""
|
1720
|
+
(Output)
|
1721
|
+
Column scale.
|
1722
|
+
"""
|
1723
|
+
elif False:
|
1724
|
+
StreamBackfillAllOracleExcludedObjectsOracleSchemaOracleTableOracleColumnArgsDict: TypeAlias = Mapping[str, Any]
|
1725
|
+
|
1726
|
+
@pulumi.input_type
|
1727
|
+
class StreamBackfillAllOracleExcludedObjectsOracleSchemaOracleTableOracleColumnArgs:
|
1728
|
+
def __init__(__self__, *,
|
1729
|
+
column: Optional[pulumi.Input[str]] = None,
|
1730
|
+
data_type: Optional[pulumi.Input[str]] = None,
|
1731
|
+
encoding: Optional[pulumi.Input[str]] = None,
|
1732
|
+
length: Optional[pulumi.Input[int]] = None,
|
1733
|
+
nullable: Optional[pulumi.Input[bool]] = None,
|
1734
|
+
ordinal_position: Optional[pulumi.Input[int]] = None,
|
1735
|
+
precision: Optional[pulumi.Input[int]] = None,
|
1736
|
+
primary_key: Optional[pulumi.Input[bool]] = None,
|
1737
|
+
scale: Optional[pulumi.Input[int]] = None):
|
1738
|
+
"""
|
1739
|
+
:param pulumi.Input[str] column: Column name.
|
1740
|
+
:param pulumi.Input[str] data_type: The Oracle data type. Full data types list can be found here:
|
1741
|
+
https://docs.oracle.com/en/database/oracle/oracle-database/21/sqlrf/Data-Types.html
|
1742
|
+
:param pulumi.Input[str] encoding: (Output)
|
1743
|
+
Column encoding.
|
1744
|
+
:param pulumi.Input[int] length: (Output)
|
1745
|
+
Column length.
|
1746
|
+
:param pulumi.Input[bool] nullable: (Output)
|
1747
|
+
Whether or not the column can accept a null value.
|
1246
1748
|
:param pulumi.Input[int] ordinal_position: (Output)
|
1247
1749
|
The ordinal position of the column in the table.
|
1248
1750
|
:param pulumi.Input[int] precision: (Output)
|
@@ -1388,6 +1890,16 @@ class StreamBackfillAllOracleExcludedObjectsOracleSchemaOracleTableOracleColumnA
|
|
1388
1890
|
pulumi.set(self, "scale", value)
|
1389
1891
|
|
1390
1892
|
|
1893
|
+
if not MYPY:
|
1894
|
+
class StreamBackfillAllPostgresqlExcludedObjectsArgsDict(TypedDict):
|
1895
|
+
postgresql_schemas: pulumi.Input[Sequence[pulumi.Input['StreamBackfillAllPostgresqlExcludedObjectsPostgresqlSchemaArgsDict']]]
|
1896
|
+
"""
|
1897
|
+
PostgreSQL schemas on the server
|
1898
|
+
Structure is documented below.
|
1899
|
+
"""
|
1900
|
+
elif False:
|
1901
|
+
StreamBackfillAllPostgresqlExcludedObjectsArgsDict: TypeAlias = Mapping[str, Any]
|
1902
|
+
|
1391
1903
|
@pulumi.input_type
|
1392
1904
|
class StreamBackfillAllPostgresqlExcludedObjectsArgs:
|
1393
1905
|
def __init__(__self__, *,
|
@@ -1412,6 +1924,20 @@ class StreamBackfillAllPostgresqlExcludedObjectsArgs:
|
|
1412
1924
|
pulumi.set(self, "postgresql_schemas", value)
|
1413
1925
|
|
1414
1926
|
|
1927
|
+
if not MYPY:
|
1928
|
+
class StreamBackfillAllPostgresqlExcludedObjectsPostgresqlSchemaArgsDict(TypedDict):
|
1929
|
+
schema: pulumi.Input[str]
|
1930
|
+
"""
|
1931
|
+
Database name.
|
1932
|
+
"""
|
1933
|
+
postgresql_tables: NotRequired[pulumi.Input[Sequence[pulumi.Input['StreamBackfillAllPostgresqlExcludedObjectsPostgresqlSchemaPostgresqlTableArgsDict']]]]
|
1934
|
+
"""
|
1935
|
+
Tables in the schema.
|
1936
|
+
Structure is documented below.
|
1937
|
+
"""
|
1938
|
+
elif False:
|
1939
|
+
StreamBackfillAllPostgresqlExcludedObjectsPostgresqlSchemaArgsDict: TypeAlias = Mapping[str, Any]
|
1940
|
+
|
1415
1941
|
@pulumi.input_type
|
1416
1942
|
class StreamBackfillAllPostgresqlExcludedObjectsPostgresqlSchemaArgs:
|
1417
1943
|
def __init__(__self__, *,
|
@@ -1452,6 +1978,20 @@ class StreamBackfillAllPostgresqlExcludedObjectsPostgresqlSchemaArgs:
|
|
1452
1978
|
pulumi.set(self, "postgresql_tables", value)
|
1453
1979
|
|
1454
1980
|
|
1981
|
+
if not MYPY:
|
1982
|
+
class StreamBackfillAllPostgresqlExcludedObjectsPostgresqlSchemaPostgresqlTableArgsDict(TypedDict):
|
1983
|
+
table: pulumi.Input[str]
|
1984
|
+
"""
|
1985
|
+
Table name.
|
1986
|
+
"""
|
1987
|
+
postgresql_columns: NotRequired[pulumi.Input[Sequence[pulumi.Input['StreamBackfillAllPostgresqlExcludedObjectsPostgresqlSchemaPostgresqlTablePostgresqlColumnArgsDict']]]]
|
1988
|
+
"""
|
1989
|
+
PostgreSQL columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
|
1990
|
+
Structure is documented below.
|
1991
|
+
"""
|
1992
|
+
elif False:
|
1993
|
+
StreamBackfillAllPostgresqlExcludedObjectsPostgresqlSchemaPostgresqlTableArgsDict: TypeAlias = Mapping[str, Any]
|
1994
|
+
|
1455
1995
|
@pulumi.input_type
|
1456
1996
|
class StreamBackfillAllPostgresqlExcludedObjectsPostgresqlSchemaPostgresqlTableArgs:
|
1457
1997
|
def __init__(__self__, *,
|
@@ -1492,6 +2032,47 @@ class StreamBackfillAllPostgresqlExcludedObjectsPostgresqlSchemaPostgresqlTableA
|
|
1492
2032
|
pulumi.set(self, "postgresql_columns", value)
|
1493
2033
|
|
1494
2034
|
|
2035
|
+
if not MYPY:
|
2036
|
+
class StreamBackfillAllPostgresqlExcludedObjectsPostgresqlSchemaPostgresqlTablePostgresqlColumnArgsDict(TypedDict):
|
2037
|
+
column: NotRequired[pulumi.Input[str]]
|
2038
|
+
"""
|
2039
|
+
Column name.
|
2040
|
+
"""
|
2041
|
+
data_type: NotRequired[pulumi.Input[str]]
|
2042
|
+
"""
|
2043
|
+
The PostgreSQL data type. Full data types list can be found here:
|
2044
|
+
https://www.postgresql.org/docs/current/datatype.html
|
2045
|
+
"""
|
2046
|
+
length: NotRequired[pulumi.Input[int]]
|
2047
|
+
"""
|
2048
|
+
(Output)
|
2049
|
+
Column length.
|
2050
|
+
"""
|
2051
|
+
nullable: NotRequired[pulumi.Input[bool]]
|
2052
|
+
"""
|
2053
|
+
Whether or not the column can accept a null value.
|
2054
|
+
"""
|
2055
|
+
ordinal_position: NotRequired[pulumi.Input[int]]
|
2056
|
+
"""
|
2057
|
+
The ordinal position of the column in the table.
|
2058
|
+
"""
|
2059
|
+
precision: NotRequired[pulumi.Input[int]]
|
2060
|
+
"""
|
2061
|
+
(Output)
|
2062
|
+
Column precision.
|
2063
|
+
"""
|
2064
|
+
primary_key: NotRequired[pulumi.Input[bool]]
|
2065
|
+
"""
|
2066
|
+
Whether or not the column represents a primary key.
|
2067
|
+
"""
|
2068
|
+
scale: NotRequired[pulumi.Input[int]]
|
2069
|
+
"""
|
2070
|
+
(Output)
|
2071
|
+
Column scale.
|
2072
|
+
"""
|
2073
|
+
elif False:
|
2074
|
+
StreamBackfillAllPostgresqlExcludedObjectsPostgresqlSchemaPostgresqlTablePostgresqlColumnArgsDict: TypeAlias = Mapping[str, Any]
|
2075
|
+
|
1495
2076
|
@pulumi.input_type
|
1496
2077
|
class StreamBackfillAllPostgresqlExcludedObjectsPostgresqlSchemaPostgresqlTablePostgresqlColumnArgs:
|
1497
2078
|
def __init__(__self__, *,
|
@@ -1635,6 +2216,16 @@ class StreamBackfillAllPostgresqlExcludedObjectsPostgresqlSchemaPostgresqlTableP
|
|
1635
2216
|
pulumi.set(self, "scale", value)
|
1636
2217
|
|
1637
2218
|
|
2219
|
+
if not MYPY:
|
2220
|
+
class StreamBackfillAllSqlServerExcludedObjectsArgsDict(TypedDict):
|
2221
|
+
schemas: pulumi.Input[Sequence[pulumi.Input['StreamBackfillAllSqlServerExcludedObjectsSchemaArgsDict']]]
|
2222
|
+
"""
|
2223
|
+
SQL Server schemas/databases in the database server
|
2224
|
+
Structure is documented below.
|
2225
|
+
"""
|
2226
|
+
elif False:
|
2227
|
+
StreamBackfillAllSqlServerExcludedObjectsArgsDict: TypeAlias = Mapping[str, Any]
|
2228
|
+
|
1638
2229
|
@pulumi.input_type
|
1639
2230
|
class StreamBackfillAllSqlServerExcludedObjectsArgs:
|
1640
2231
|
def __init__(__self__, *,
|
@@ -1659,6 +2250,20 @@ class StreamBackfillAllSqlServerExcludedObjectsArgs:
|
|
1659
2250
|
pulumi.set(self, "schemas", value)
|
1660
2251
|
|
1661
2252
|
|
2253
|
+
if not MYPY:
|
2254
|
+
class StreamBackfillAllSqlServerExcludedObjectsSchemaArgsDict(TypedDict):
|
2255
|
+
schema: pulumi.Input[str]
|
2256
|
+
"""
|
2257
|
+
Schema name.
|
2258
|
+
"""
|
2259
|
+
tables: NotRequired[pulumi.Input[Sequence[pulumi.Input['StreamBackfillAllSqlServerExcludedObjectsSchemaTableArgsDict']]]]
|
2260
|
+
"""
|
2261
|
+
Tables in the database.
|
2262
|
+
Structure is documented below.
|
2263
|
+
"""
|
2264
|
+
elif False:
|
2265
|
+
StreamBackfillAllSqlServerExcludedObjectsSchemaArgsDict: TypeAlias = Mapping[str, Any]
|
2266
|
+
|
1662
2267
|
@pulumi.input_type
|
1663
2268
|
class StreamBackfillAllSqlServerExcludedObjectsSchemaArgs:
|
1664
2269
|
def __init__(__self__, *,
|
@@ -1699,6 +2304,20 @@ class StreamBackfillAllSqlServerExcludedObjectsSchemaArgs:
|
|
1699
2304
|
pulumi.set(self, "tables", value)
|
1700
2305
|
|
1701
2306
|
|
2307
|
+
if not MYPY:
|
2308
|
+
class StreamBackfillAllSqlServerExcludedObjectsSchemaTableArgsDict(TypedDict):
|
2309
|
+
table: pulumi.Input[str]
|
2310
|
+
"""
|
2311
|
+
Table name.
|
2312
|
+
"""
|
2313
|
+
columns: NotRequired[pulumi.Input[Sequence[pulumi.Input['StreamBackfillAllSqlServerExcludedObjectsSchemaTableColumnArgsDict']]]]
|
2314
|
+
"""
|
2315
|
+
SQL Server columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
|
2316
|
+
Structure is documented below.
|
2317
|
+
"""
|
2318
|
+
elif False:
|
2319
|
+
StreamBackfillAllSqlServerExcludedObjectsSchemaTableArgsDict: TypeAlias = Mapping[str, Any]
|
2320
|
+
|
1702
2321
|
@pulumi.input_type
|
1703
2322
|
class StreamBackfillAllSqlServerExcludedObjectsSchemaTableArgs:
|
1704
2323
|
def __init__(__self__, *,
|
@@ -1739,6 +2358,50 @@ class StreamBackfillAllSqlServerExcludedObjectsSchemaTableArgs:
|
|
1739
2358
|
pulumi.set(self, "columns", value)
|
1740
2359
|
|
1741
2360
|
|
2361
|
+
if not MYPY:
|
2362
|
+
class StreamBackfillAllSqlServerExcludedObjectsSchemaTableColumnArgsDict(TypedDict):
|
2363
|
+
column: NotRequired[pulumi.Input[str]]
|
2364
|
+
"""
|
2365
|
+
Column name.
|
2366
|
+
"""
|
2367
|
+
data_type: NotRequired[pulumi.Input[str]]
|
2368
|
+
"""
|
2369
|
+
The SQL Server data type. Full data types list can be found here:
|
2370
|
+
https://learn.microsoft.com/en-us/sql/t-sql/data-types/data-types-transact-sql?view=sql-server-ver16
|
2371
|
+
"""
|
2372
|
+
length: NotRequired[pulumi.Input[int]]
|
2373
|
+
"""
|
2374
|
+
(Output)
|
2375
|
+
Column length.
|
2376
|
+
"""
|
2377
|
+
nullable: NotRequired[pulumi.Input[bool]]
|
2378
|
+
"""
|
2379
|
+
(Output)
|
2380
|
+
Whether or not the column can accept a null value.
|
2381
|
+
"""
|
2382
|
+
ordinal_position: NotRequired[pulumi.Input[int]]
|
2383
|
+
"""
|
2384
|
+
(Output)
|
2385
|
+
The ordinal position of the column in the table.
|
2386
|
+
"""
|
2387
|
+
precision: NotRequired[pulumi.Input[int]]
|
2388
|
+
"""
|
2389
|
+
(Output)
|
2390
|
+
Column precision.
|
2391
|
+
"""
|
2392
|
+
primary_key: NotRequired[pulumi.Input[bool]]
|
2393
|
+
"""
|
2394
|
+
(Output)
|
2395
|
+
Whether or not the column represents a primary key.
|
2396
|
+
"""
|
2397
|
+
scale: NotRequired[pulumi.Input[int]]
|
2398
|
+
"""
|
2399
|
+
(Output)
|
2400
|
+
Column scale.
|
2401
|
+
"""
|
2402
|
+
elif False:
|
2403
|
+
StreamBackfillAllSqlServerExcludedObjectsSchemaTableColumnArgsDict: TypeAlias = Mapping[str, Any]
|
2404
|
+
|
1742
2405
|
@pulumi.input_type
|
1743
2406
|
class StreamBackfillAllSqlServerExcludedObjectsSchemaTableColumnArgs:
|
1744
2407
|
def __init__(__self__, *,
|
@@ -1888,12 +2551,37 @@ class StreamBackfillAllSqlServerExcludedObjectsSchemaTableColumnArgs:
|
|
1888
2551
|
pulumi.set(self, "scale", value)
|
1889
2552
|
|
1890
2553
|
|
2554
|
+
if not MYPY:
|
2555
|
+
class StreamBackfillNoneArgsDict(TypedDict):
|
2556
|
+
pass
|
2557
|
+
elif False:
|
2558
|
+
StreamBackfillNoneArgsDict: TypeAlias = Mapping[str, Any]
|
2559
|
+
|
1891
2560
|
@pulumi.input_type
|
1892
2561
|
class StreamBackfillNoneArgs:
|
1893
2562
|
def __init__(__self__):
|
1894
2563
|
pass
|
1895
2564
|
|
1896
2565
|
|
2566
|
+
if not MYPY:
|
2567
|
+
class StreamDestinationConfigArgsDict(TypedDict):
|
2568
|
+
destination_connection_profile: pulumi.Input[str]
|
2569
|
+
"""
|
2570
|
+
Destination connection profile resource. Format: projects/{project}/locations/{location}/connectionProfiles/{name}
|
2571
|
+
"""
|
2572
|
+
bigquery_destination_config: NotRequired[pulumi.Input['StreamDestinationConfigBigqueryDestinationConfigArgsDict']]
|
2573
|
+
"""
|
2574
|
+
A configuration for how data should be loaded to Cloud Storage.
|
2575
|
+
Structure is documented below.
|
2576
|
+
"""
|
2577
|
+
gcs_destination_config: NotRequired[pulumi.Input['StreamDestinationConfigGcsDestinationConfigArgsDict']]
|
2578
|
+
"""
|
2579
|
+
A configuration for how data should be loaded to Cloud Storage.
|
2580
|
+
Structure is documented below.
|
2581
|
+
"""
|
2582
|
+
elif False:
|
2583
|
+
StreamDestinationConfigArgsDict: TypeAlias = Mapping[str, Any]
|
2584
|
+
|
1897
2585
|
@pulumi.input_type
|
1898
2586
|
class StreamDestinationConfigArgs:
|
1899
2587
|
def __init__(__self__, *,
|
@@ -1952,6 +2640,28 @@ class StreamDestinationConfigArgs:
|
|
1952
2640
|
pulumi.set(self, "gcs_destination_config", value)
|
1953
2641
|
|
1954
2642
|
|
2643
|
+
if not MYPY:
|
2644
|
+
class StreamDestinationConfigBigqueryDestinationConfigArgsDict(TypedDict):
|
2645
|
+
data_freshness: NotRequired[pulumi.Input[str]]
|
2646
|
+
"""
|
2647
|
+
The guaranteed data freshness (in seconds) when querying tables created by the stream.
|
2648
|
+
Editing this field will only affect new tables created in the future, but existing tables
|
2649
|
+
will not be impacted. Lower values mean that queries will return fresher data, but may result in higher cost.
|
2650
|
+
A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s". Defaults to 900s.
|
2651
|
+
"""
|
2652
|
+
single_target_dataset: NotRequired[pulumi.Input['StreamDestinationConfigBigqueryDestinationConfigSingleTargetDatasetArgsDict']]
|
2653
|
+
"""
|
2654
|
+
A single target dataset to which all data will be streamed.
|
2655
|
+
Structure is documented below.
|
2656
|
+
"""
|
2657
|
+
source_hierarchy_datasets: NotRequired[pulumi.Input['StreamDestinationConfigBigqueryDestinationConfigSourceHierarchyDatasetsArgsDict']]
|
2658
|
+
"""
|
2659
|
+
Destination datasets are created so that hierarchy of the destination data objects matches the source hierarchy.
|
2660
|
+
Structure is documented below.
|
2661
|
+
"""
|
2662
|
+
elif False:
|
2663
|
+
StreamDestinationConfigBigqueryDestinationConfigArgsDict: TypeAlias = Mapping[str, Any]
|
2664
|
+
|
1955
2665
|
@pulumi.input_type
|
1956
2666
|
class StreamDestinationConfigBigqueryDestinationConfigArgs:
|
1957
2667
|
def __init__(__self__, *,
|
@@ -2017,6 +2727,16 @@ class StreamDestinationConfigBigqueryDestinationConfigArgs:
|
|
2017
2727
|
pulumi.set(self, "source_hierarchy_datasets", value)
|
2018
2728
|
|
2019
2729
|
|
2730
|
+
if not MYPY:
|
2731
|
+
class StreamDestinationConfigBigqueryDestinationConfigSingleTargetDatasetArgsDict(TypedDict):
|
2732
|
+
dataset_id: pulumi.Input[str]
|
2733
|
+
"""
|
2734
|
+
Dataset ID in the format projects/{project}/datasets/{dataset_id} or
|
2735
|
+
{project}:{dataset_id}
|
2736
|
+
"""
|
2737
|
+
elif False:
|
2738
|
+
StreamDestinationConfigBigqueryDestinationConfigSingleTargetDatasetArgsDict: TypeAlias = Mapping[str, Any]
|
2739
|
+
|
2020
2740
|
@pulumi.input_type
|
2021
2741
|
class StreamDestinationConfigBigqueryDestinationConfigSingleTargetDatasetArgs:
|
2022
2742
|
def __init__(__self__, *,
|
@@ -2041,6 +2761,16 @@ class StreamDestinationConfigBigqueryDestinationConfigSingleTargetDatasetArgs:
|
|
2041
2761
|
pulumi.set(self, "dataset_id", value)
|
2042
2762
|
|
2043
2763
|
|
2764
|
+
if not MYPY:
|
2765
|
+
class StreamDestinationConfigBigqueryDestinationConfigSourceHierarchyDatasetsArgsDict(TypedDict):
|
2766
|
+
dataset_template: pulumi.Input['StreamDestinationConfigBigqueryDestinationConfigSourceHierarchyDatasetsDatasetTemplateArgsDict']
|
2767
|
+
"""
|
2768
|
+
Dataset template used for dynamic dataset creation.
|
2769
|
+
Structure is documented below.
|
2770
|
+
"""
|
2771
|
+
elif False:
|
2772
|
+
StreamDestinationConfigBigqueryDestinationConfigSourceHierarchyDatasetsArgsDict: TypeAlias = Mapping[str, Any]
|
2773
|
+
|
2044
2774
|
@pulumi.input_type
|
2045
2775
|
class StreamDestinationConfigBigqueryDestinationConfigSourceHierarchyDatasetsArgs:
|
2046
2776
|
def __init__(__self__, *,
|
@@ -2065,6 +2795,30 @@ class StreamDestinationConfigBigqueryDestinationConfigSourceHierarchyDatasetsArg
|
|
2065
2795
|
pulumi.set(self, "dataset_template", value)
|
2066
2796
|
|
2067
2797
|
|
2798
|
+
if not MYPY:
|
2799
|
+
class StreamDestinationConfigBigqueryDestinationConfigSourceHierarchyDatasetsDatasetTemplateArgsDict(TypedDict):
|
2800
|
+
location: pulumi.Input[str]
|
2801
|
+
"""
|
2802
|
+
The geographic location where the dataset should reside.
|
2803
|
+
See https://cloud.google.com/bigquery/docs/locations for supported locations.
|
2804
|
+
"""
|
2805
|
+
dataset_id_prefix: NotRequired[pulumi.Input[str]]
|
2806
|
+
"""
|
2807
|
+
If supplied, every created dataset will have its name prefixed by the provided value.
|
2808
|
+
The prefix and name will be separated by an underscore. i.e. _.
|
2809
|
+
"""
|
2810
|
+
kms_key_name: NotRequired[pulumi.Input[str]]
|
2811
|
+
"""
|
2812
|
+
Describes the Cloud KMS encryption key that will be used to protect destination BigQuery
|
2813
|
+
table. The BigQuery Service Account associated with your project requires access to this
|
2814
|
+
encryption key. i.e. projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{cryptoKey}.
|
2815
|
+
See https://cloud.google.com/bigquery/docs/customer-managed-encryption for more information.
|
2816
|
+
|
2817
|
+
- - -
|
2818
|
+
"""
|
2819
|
+
elif False:
|
2820
|
+
StreamDestinationConfigBigqueryDestinationConfigSourceHierarchyDatasetsDatasetTemplateArgsDict: TypeAlias = Mapping[str, Any]
|
2821
|
+
|
2068
2822
|
@pulumi.input_type
|
2069
2823
|
class StreamDestinationConfigBigqueryDestinationConfigSourceHierarchyDatasetsDatasetTemplateArgs:
|
2070
2824
|
def __init__(__self__, *,
|
@@ -2133,6 +2887,33 @@ class StreamDestinationConfigBigqueryDestinationConfigSourceHierarchyDatasetsDat
|
|
2133
2887
|
pulumi.set(self, "kms_key_name", value)
|
2134
2888
|
|
2135
2889
|
|
2890
|
+
if not MYPY:
|
2891
|
+
class StreamDestinationConfigGcsDestinationConfigArgsDict(TypedDict):
|
2892
|
+
avro_file_format: NotRequired[pulumi.Input['StreamDestinationConfigGcsDestinationConfigAvroFileFormatArgsDict']]
|
2893
|
+
"""
|
2894
|
+
AVRO file format configuration.
|
2895
|
+
"""
|
2896
|
+
file_rotation_interval: NotRequired[pulumi.Input[str]]
|
2897
|
+
"""
|
2898
|
+
The maximum duration for which new events are added before a file is closed and a new file is created.
|
2899
|
+
A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s". Defaults to 900s.
|
2900
|
+
"""
|
2901
|
+
file_rotation_mb: NotRequired[pulumi.Input[int]]
|
2902
|
+
"""
|
2903
|
+
The maximum file size to be saved in the bucket.
|
2904
|
+
"""
|
2905
|
+
json_file_format: NotRequired[pulumi.Input['StreamDestinationConfigGcsDestinationConfigJsonFileFormatArgsDict']]
|
2906
|
+
"""
|
2907
|
+
JSON file format configuration.
|
2908
|
+
Structure is documented below.
|
2909
|
+
"""
|
2910
|
+
path: NotRequired[pulumi.Input[str]]
|
2911
|
+
"""
|
2912
|
+
Path inside the Cloud Storage bucket to write data to.
|
2913
|
+
"""
|
2914
|
+
elif False:
|
2915
|
+
StreamDestinationConfigGcsDestinationConfigArgsDict: TypeAlias = Mapping[str, Any]
|
2916
|
+
|
2136
2917
|
@pulumi.input_type
|
2137
2918
|
class StreamDestinationConfigGcsDestinationConfigArgs:
|
2138
2919
|
def __init__(__self__, *,
|
@@ -2224,12 +3005,33 @@ class StreamDestinationConfigGcsDestinationConfigArgs:
|
|
2224
3005
|
pulumi.set(self, "path", value)
|
2225
3006
|
|
2226
3007
|
|
3008
|
+
if not MYPY:
|
3009
|
+
class StreamDestinationConfigGcsDestinationConfigAvroFileFormatArgsDict(TypedDict):
|
3010
|
+
pass
|
3011
|
+
elif False:
|
3012
|
+
StreamDestinationConfigGcsDestinationConfigAvroFileFormatArgsDict: TypeAlias = Mapping[str, Any]
|
3013
|
+
|
2227
3014
|
@pulumi.input_type
|
2228
3015
|
class StreamDestinationConfigGcsDestinationConfigAvroFileFormatArgs:
|
2229
3016
|
def __init__(__self__):
|
2230
3017
|
pass
|
2231
3018
|
|
2232
3019
|
|
3020
|
+
if not MYPY:
|
3021
|
+
class StreamDestinationConfigGcsDestinationConfigJsonFileFormatArgsDict(TypedDict):
|
3022
|
+
compression: NotRequired[pulumi.Input[str]]
|
3023
|
+
"""
|
3024
|
+
Compression of the loaded JSON file.
|
3025
|
+
Possible values are: `NO_COMPRESSION`, `GZIP`.
|
3026
|
+
"""
|
3027
|
+
schema_file_format: NotRequired[pulumi.Input[str]]
|
3028
|
+
"""
|
3029
|
+
The schema file format along JSON data files.
|
3030
|
+
Possible values are: `NO_SCHEMA_FILE`, `AVRO_SCHEMA_FILE`.
|
3031
|
+
"""
|
3032
|
+
elif False:
|
3033
|
+
StreamDestinationConfigGcsDestinationConfigJsonFileFormatArgsDict: TypeAlias = Mapping[str, Any]
|
3034
|
+
|
2233
3035
|
@pulumi.input_type
|
2234
3036
|
class StreamDestinationConfigGcsDestinationConfigJsonFileFormatArgs:
|
2235
3037
|
def __init__(__self__, *,
|
@@ -2266,12 +3068,41 @@ class StreamDestinationConfigGcsDestinationConfigJsonFileFormatArgs:
|
|
2266
3068
|
The schema file format along JSON data files.
|
2267
3069
|
Possible values are: `NO_SCHEMA_FILE`, `AVRO_SCHEMA_FILE`.
|
2268
3070
|
"""
|
2269
|
-
return pulumi.get(self, "schema_file_format")
|
2270
|
-
|
2271
|
-
@schema_file_format.setter
|
2272
|
-
def schema_file_format(self, value: Optional[pulumi.Input[str]]):
|
2273
|
-
pulumi.set(self, "schema_file_format", value)
|
2274
|
-
|
3071
|
+
return pulumi.get(self, "schema_file_format")
|
3072
|
+
|
3073
|
+
@schema_file_format.setter
|
3074
|
+
def schema_file_format(self, value: Optional[pulumi.Input[str]]):
|
3075
|
+
pulumi.set(self, "schema_file_format", value)
|
3076
|
+
|
3077
|
+
|
3078
|
+
if not MYPY:
|
3079
|
+
class StreamSourceConfigArgsDict(TypedDict):
|
3080
|
+
source_connection_profile: pulumi.Input[str]
|
3081
|
+
"""
|
3082
|
+
Source connection profile resource. Format: projects/{project}/locations/{location}/connectionProfiles/{name}
|
3083
|
+
"""
|
3084
|
+
mysql_source_config: NotRequired[pulumi.Input['StreamSourceConfigMysqlSourceConfigArgsDict']]
|
3085
|
+
"""
|
3086
|
+
MySQL data source configuration.
|
3087
|
+
Structure is documented below.
|
3088
|
+
"""
|
3089
|
+
oracle_source_config: NotRequired[pulumi.Input['StreamSourceConfigOracleSourceConfigArgsDict']]
|
3090
|
+
"""
|
3091
|
+
MySQL data source configuration.
|
3092
|
+
Structure is documented below.
|
3093
|
+
"""
|
3094
|
+
postgresql_source_config: NotRequired[pulumi.Input['StreamSourceConfigPostgresqlSourceConfigArgsDict']]
|
3095
|
+
"""
|
3096
|
+
PostgreSQL data source configuration.
|
3097
|
+
Structure is documented below.
|
3098
|
+
"""
|
3099
|
+
sql_server_source_config: NotRequired[pulumi.Input['StreamSourceConfigSqlServerSourceConfigArgsDict']]
|
3100
|
+
"""
|
3101
|
+
SQL Server data source configuration.
|
3102
|
+
Structure is documented below.
|
3103
|
+
"""
|
3104
|
+
elif False:
|
3105
|
+
StreamSourceConfigArgsDict: TypeAlias = Mapping[str, Any]
|
2275
3106
|
|
2276
3107
|
@pulumi.input_type
|
2277
3108
|
class StreamSourceConfigArgs:
|
@@ -2367,6 +3198,31 @@ class StreamSourceConfigArgs:
|
|
2367
3198
|
pulumi.set(self, "sql_server_source_config", value)
|
2368
3199
|
|
2369
3200
|
|
3201
|
+
if not MYPY:
|
3202
|
+
class StreamSourceConfigMysqlSourceConfigArgsDict(TypedDict):
|
3203
|
+
exclude_objects: NotRequired[pulumi.Input['StreamSourceConfigMysqlSourceConfigExcludeObjectsArgsDict']]
|
3204
|
+
"""
|
3205
|
+
MySQL objects to exclude from the stream.
|
3206
|
+
Structure is documented below.
|
3207
|
+
"""
|
3208
|
+
include_objects: NotRequired[pulumi.Input['StreamSourceConfigMysqlSourceConfigIncludeObjectsArgsDict']]
|
3209
|
+
"""
|
3210
|
+
MySQL objects to retrieve from the source.
|
3211
|
+
Structure is documented below.
|
3212
|
+
"""
|
3213
|
+
max_concurrent_backfill_tasks: NotRequired[pulumi.Input[int]]
|
3214
|
+
"""
|
3215
|
+
Maximum number of concurrent backfill tasks. The number should be non negative.
|
3216
|
+
If not set (or set to 0), the system's default value will be used.
|
3217
|
+
"""
|
3218
|
+
max_concurrent_cdc_tasks: NotRequired[pulumi.Input[int]]
|
3219
|
+
"""
|
3220
|
+
Maximum number of concurrent CDC tasks. The number should be non negative.
|
3221
|
+
If not set (or set to 0), the system's default value will be used.
|
3222
|
+
"""
|
3223
|
+
elif False:
|
3224
|
+
StreamSourceConfigMysqlSourceConfigArgsDict: TypeAlias = Mapping[str, Any]
|
3225
|
+
|
2370
3226
|
@pulumi.input_type
|
2371
3227
|
class StreamSourceConfigMysqlSourceConfigArgs:
|
2372
3228
|
def __init__(__self__, *,
|
@@ -2446,6 +3302,16 @@ class StreamSourceConfigMysqlSourceConfigArgs:
|
|
2446
3302
|
pulumi.set(self, "max_concurrent_cdc_tasks", value)
|
2447
3303
|
|
2448
3304
|
|
3305
|
+
if not MYPY:
|
3306
|
+
class StreamSourceConfigMysqlSourceConfigExcludeObjectsArgsDict(TypedDict):
|
3307
|
+
mysql_databases: pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigMysqlSourceConfigExcludeObjectsMysqlDatabaseArgsDict']]]
|
3308
|
+
"""
|
3309
|
+
MySQL databases on the server
|
3310
|
+
Structure is documented below.
|
3311
|
+
"""
|
3312
|
+
elif False:
|
3313
|
+
StreamSourceConfigMysqlSourceConfigExcludeObjectsArgsDict: TypeAlias = Mapping[str, Any]
|
3314
|
+
|
2449
3315
|
@pulumi.input_type
|
2450
3316
|
class StreamSourceConfigMysqlSourceConfigExcludeObjectsArgs:
|
2451
3317
|
def __init__(__self__, *,
|
@@ -2470,6 +3336,20 @@ class StreamSourceConfigMysqlSourceConfigExcludeObjectsArgs:
|
|
2470
3336
|
pulumi.set(self, "mysql_databases", value)
|
2471
3337
|
|
2472
3338
|
|
3339
|
+
if not MYPY:
|
3340
|
+
class StreamSourceConfigMysqlSourceConfigExcludeObjectsMysqlDatabaseArgsDict(TypedDict):
|
3341
|
+
database: pulumi.Input[str]
|
3342
|
+
"""
|
3343
|
+
Database name.
|
3344
|
+
"""
|
3345
|
+
mysql_tables: NotRequired[pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigMysqlSourceConfigExcludeObjectsMysqlDatabaseMysqlTableArgsDict']]]]
|
3346
|
+
"""
|
3347
|
+
Tables in the database.
|
3348
|
+
Structure is documented below.
|
3349
|
+
"""
|
3350
|
+
elif False:
|
3351
|
+
StreamSourceConfigMysqlSourceConfigExcludeObjectsMysqlDatabaseArgsDict: TypeAlias = Mapping[str, Any]
|
3352
|
+
|
2473
3353
|
@pulumi.input_type
|
2474
3354
|
class StreamSourceConfigMysqlSourceConfigExcludeObjectsMysqlDatabaseArgs:
|
2475
3355
|
def __init__(__self__, *,
|
@@ -2510,6 +3390,20 @@ class StreamSourceConfigMysqlSourceConfigExcludeObjectsMysqlDatabaseArgs:
|
|
2510
3390
|
pulumi.set(self, "mysql_tables", value)
|
2511
3391
|
|
2512
3392
|
|
3393
|
+
if not MYPY:
|
3394
|
+
class StreamSourceConfigMysqlSourceConfigExcludeObjectsMysqlDatabaseMysqlTableArgsDict(TypedDict):
|
3395
|
+
table: pulumi.Input[str]
|
3396
|
+
"""
|
3397
|
+
Table name.
|
3398
|
+
"""
|
3399
|
+
mysql_columns: NotRequired[pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigMysqlSourceConfigExcludeObjectsMysqlDatabaseMysqlTableMysqlColumnArgsDict']]]]
|
3400
|
+
"""
|
3401
|
+
MySQL columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
|
3402
|
+
Structure is documented below.
|
3403
|
+
"""
|
3404
|
+
elif False:
|
3405
|
+
StreamSourceConfigMysqlSourceConfigExcludeObjectsMysqlDatabaseMysqlTableArgsDict: TypeAlias = Mapping[str, Any]
|
3406
|
+
|
2513
3407
|
@pulumi.input_type
|
2514
3408
|
class StreamSourceConfigMysqlSourceConfigExcludeObjectsMysqlDatabaseMysqlTableArgs:
|
2515
3409
|
def __init__(__self__, *,
|
@@ -2550,6 +3444,41 @@ class StreamSourceConfigMysqlSourceConfigExcludeObjectsMysqlDatabaseMysqlTableAr
|
|
2550
3444
|
pulumi.set(self, "mysql_columns", value)
|
2551
3445
|
|
2552
3446
|
|
3447
|
+
if not MYPY:
|
3448
|
+
class StreamSourceConfigMysqlSourceConfigExcludeObjectsMysqlDatabaseMysqlTableMysqlColumnArgsDict(TypedDict):
|
3449
|
+
collation: NotRequired[pulumi.Input[str]]
|
3450
|
+
"""
|
3451
|
+
Column collation.
|
3452
|
+
"""
|
3453
|
+
column: NotRequired[pulumi.Input[str]]
|
3454
|
+
"""
|
3455
|
+
Column name.
|
3456
|
+
"""
|
3457
|
+
data_type: NotRequired[pulumi.Input[str]]
|
3458
|
+
"""
|
3459
|
+
The MySQL data type. Full data types list can be found here:
|
3460
|
+
https://dev.mysql.com/doc/refman/8.0/en/data-types.html
|
3461
|
+
"""
|
3462
|
+
length: NotRequired[pulumi.Input[int]]
|
3463
|
+
"""
|
3464
|
+
(Output)
|
3465
|
+
Column length.
|
3466
|
+
"""
|
3467
|
+
nullable: NotRequired[pulumi.Input[bool]]
|
3468
|
+
"""
|
3469
|
+
Whether or not the column can accept a null value.
|
3470
|
+
"""
|
3471
|
+
ordinal_position: NotRequired[pulumi.Input[int]]
|
3472
|
+
"""
|
3473
|
+
The ordinal position of the column in the table.
|
3474
|
+
"""
|
3475
|
+
primary_key: NotRequired[pulumi.Input[bool]]
|
3476
|
+
"""
|
3477
|
+
Whether or not the column represents a primary key.
|
3478
|
+
"""
|
3479
|
+
elif False:
|
3480
|
+
StreamSourceConfigMysqlSourceConfigExcludeObjectsMysqlDatabaseMysqlTableMysqlColumnArgsDict: TypeAlias = Mapping[str, Any]
|
3481
|
+
|
2553
3482
|
@pulumi.input_type
|
2554
3483
|
class StreamSourceConfigMysqlSourceConfigExcludeObjectsMysqlDatabaseMysqlTableMysqlColumnArgs:
|
2555
3484
|
def __init__(__self__, *,
|
@@ -2673,6 +3602,16 @@ class StreamSourceConfigMysqlSourceConfigExcludeObjectsMysqlDatabaseMysqlTableMy
|
|
2673
3602
|
pulumi.set(self, "primary_key", value)
|
2674
3603
|
|
2675
3604
|
|
3605
|
+
if not MYPY:
|
3606
|
+
class StreamSourceConfigMysqlSourceConfigIncludeObjectsArgsDict(TypedDict):
|
3607
|
+
mysql_databases: pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigMysqlSourceConfigIncludeObjectsMysqlDatabaseArgsDict']]]
|
3608
|
+
"""
|
3609
|
+
MySQL databases on the server
|
3610
|
+
Structure is documented below.
|
3611
|
+
"""
|
3612
|
+
elif False:
|
3613
|
+
StreamSourceConfigMysqlSourceConfigIncludeObjectsArgsDict: TypeAlias = Mapping[str, Any]
|
3614
|
+
|
2676
3615
|
@pulumi.input_type
|
2677
3616
|
class StreamSourceConfigMysqlSourceConfigIncludeObjectsArgs:
|
2678
3617
|
def __init__(__self__, *,
|
@@ -2697,6 +3636,20 @@ class StreamSourceConfigMysqlSourceConfigIncludeObjectsArgs:
|
|
2697
3636
|
pulumi.set(self, "mysql_databases", value)
|
2698
3637
|
|
2699
3638
|
|
3639
|
+
if not MYPY:
|
3640
|
+
class StreamSourceConfigMysqlSourceConfigIncludeObjectsMysqlDatabaseArgsDict(TypedDict):
|
3641
|
+
database: pulumi.Input[str]
|
3642
|
+
"""
|
3643
|
+
Database name.
|
3644
|
+
"""
|
3645
|
+
mysql_tables: NotRequired[pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigMysqlSourceConfigIncludeObjectsMysqlDatabaseMysqlTableArgsDict']]]]
|
3646
|
+
"""
|
3647
|
+
Tables in the database.
|
3648
|
+
Structure is documented below.
|
3649
|
+
"""
|
3650
|
+
elif False:
|
3651
|
+
StreamSourceConfigMysqlSourceConfigIncludeObjectsMysqlDatabaseArgsDict: TypeAlias = Mapping[str, Any]
|
3652
|
+
|
2700
3653
|
@pulumi.input_type
|
2701
3654
|
class StreamSourceConfigMysqlSourceConfigIncludeObjectsMysqlDatabaseArgs:
|
2702
3655
|
def __init__(__self__, *,
|
@@ -2737,6 +3690,20 @@ class StreamSourceConfigMysqlSourceConfigIncludeObjectsMysqlDatabaseArgs:
|
|
2737
3690
|
pulumi.set(self, "mysql_tables", value)
|
2738
3691
|
|
2739
3692
|
|
3693
|
+
if not MYPY:
|
3694
|
+
class StreamSourceConfigMysqlSourceConfigIncludeObjectsMysqlDatabaseMysqlTableArgsDict(TypedDict):
|
3695
|
+
table: pulumi.Input[str]
|
3696
|
+
"""
|
3697
|
+
Table name.
|
3698
|
+
"""
|
3699
|
+
mysql_columns: NotRequired[pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigMysqlSourceConfigIncludeObjectsMysqlDatabaseMysqlTableMysqlColumnArgsDict']]]]
|
3700
|
+
"""
|
3701
|
+
MySQL columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
|
3702
|
+
Structure is documented below.
|
3703
|
+
"""
|
3704
|
+
elif False:
|
3705
|
+
StreamSourceConfigMysqlSourceConfigIncludeObjectsMysqlDatabaseMysqlTableArgsDict: TypeAlias = Mapping[str, Any]
|
3706
|
+
|
2740
3707
|
@pulumi.input_type
|
2741
3708
|
class StreamSourceConfigMysqlSourceConfigIncludeObjectsMysqlDatabaseMysqlTableArgs:
|
2742
3709
|
def __init__(__self__, *,
|
@@ -2777,6 +3744,41 @@ class StreamSourceConfigMysqlSourceConfigIncludeObjectsMysqlDatabaseMysqlTableAr
|
|
2777
3744
|
pulumi.set(self, "mysql_columns", value)
|
2778
3745
|
|
2779
3746
|
|
3747
|
+
if not MYPY:
|
3748
|
+
class StreamSourceConfigMysqlSourceConfigIncludeObjectsMysqlDatabaseMysqlTableMysqlColumnArgsDict(TypedDict):
|
3749
|
+
collation: NotRequired[pulumi.Input[str]]
|
3750
|
+
"""
|
3751
|
+
Column collation.
|
3752
|
+
"""
|
3753
|
+
column: NotRequired[pulumi.Input[str]]
|
3754
|
+
"""
|
3755
|
+
Column name.
|
3756
|
+
"""
|
3757
|
+
data_type: NotRequired[pulumi.Input[str]]
|
3758
|
+
"""
|
3759
|
+
The MySQL data type. Full data types list can be found here:
|
3760
|
+
https://dev.mysql.com/doc/refman/8.0/en/data-types.html
|
3761
|
+
"""
|
3762
|
+
length: NotRequired[pulumi.Input[int]]
|
3763
|
+
"""
|
3764
|
+
(Output)
|
3765
|
+
Column length.
|
3766
|
+
"""
|
3767
|
+
nullable: NotRequired[pulumi.Input[bool]]
|
3768
|
+
"""
|
3769
|
+
Whether or not the column can accept a null value.
|
3770
|
+
"""
|
3771
|
+
ordinal_position: NotRequired[pulumi.Input[int]]
|
3772
|
+
"""
|
3773
|
+
The ordinal position of the column in the table.
|
3774
|
+
"""
|
3775
|
+
primary_key: NotRequired[pulumi.Input[bool]]
|
3776
|
+
"""
|
3777
|
+
Whether or not the column represents a primary key.
|
3778
|
+
"""
|
3779
|
+
elif False:
|
3780
|
+
StreamSourceConfigMysqlSourceConfigIncludeObjectsMysqlDatabaseMysqlTableMysqlColumnArgsDict: TypeAlias = Mapping[str, Any]
|
3781
|
+
|
2780
3782
|
@pulumi.input_type
|
2781
3783
|
class StreamSourceConfigMysqlSourceConfigIncludeObjectsMysqlDatabaseMysqlTableMysqlColumnArgs:
|
2782
3784
|
def __init__(__self__, *,
|
@@ -2900,6 +3902,39 @@ class StreamSourceConfigMysqlSourceConfigIncludeObjectsMysqlDatabaseMysqlTableMy
|
|
2900
3902
|
pulumi.set(self, "primary_key", value)
|
2901
3903
|
|
2902
3904
|
|
3905
|
+
if not MYPY:
|
3906
|
+
class StreamSourceConfigOracleSourceConfigArgsDict(TypedDict):
|
3907
|
+
drop_large_objects: NotRequired[pulumi.Input['StreamSourceConfigOracleSourceConfigDropLargeObjectsArgsDict']]
|
3908
|
+
"""
|
3909
|
+
Configuration to drop large object values.
|
3910
|
+
"""
|
3911
|
+
exclude_objects: NotRequired[pulumi.Input['StreamSourceConfigOracleSourceConfigExcludeObjectsArgsDict']]
|
3912
|
+
"""
|
3913
|
+
Oracle objects to exclude from the stream.
|
3914
|
+
Structure is documented below.
|
3915
|
+
"""
|
3916
|
+
include_objects: NotRequired[pulumi.Input['StreamSourceConfigOracleSourceConfigIncludeObjectsArgsDict']]
|
3917
|
+
"""
|
3918
|
+
Oracle objects to retrieve from the source.
|
3919
|
+
Structure is documented below.
|
3920
|
+
"""
|
3921
|
+
max_concurrent_backfill_tasks: NotRequired[pulumi.Input[int]]
|
3922
|
+
"""
|
3923
|
+
Maximum number of concurrent backfill tasks. The number should be non negative.
|
3924
|
+
If not set (or set to 0), the system's default value will be used.
|
3925
|
+
"""
|
3926
|
+
max_concurrent_cdc_tasks: NotRequired[pulumi.Input[int]]
|
3927
|
+
"""
|
3928
|
+
Maximum number of concurrent CDC tasks. The number should be non negative.
|
3929
|
+
If not set (or set to 0), the system's default value will be used.
|
3930
|
+
"""
|
3931
|
+
stream_large_objects: NotRequired[pulumi.Input['StreamSourceConfigOracleSourceConfigStreamLargeObjectsArgsDict']]
|
3932
|
+
"""
|
3933
|
+
Configuration to drop large object values.
|
3934
|
+
"""
|
3935
|
+
elif False:
|
3936
|
+
StreamSourceConfigOracleSourceConfigArgsDict: TypeAlias = Mapping[str, Any]
|
3937
|
+
|
2903
3938
|
@pulumi.input_type
|
2904
3939
|
class StreamSourceConfigOracleSourceConfigArgs:
|
2905
3940
|
def __init__(__self__, *,
|
@@ -3011,12 +4046,28 @@ class StreamSourceConfigOracleSourceConfigArgs:
|
|
3011
4046
|
pulumi.set(self, "stream_large_objects", value)
|
3012
4047
|
|
3013
4048
|
|
4049
|
+
if not MYPY:
|
4050
|
+
class StreamSourceConfigOracleSourceConfigDropLargeObjectsArgsDict(TypedDict):
|
4051
|
+
pass
|
4052
|
+
elif False:
|
4053
|
+
StreamSourceConfigOracleSourceConfigDropLargeObjectsArgsDict: TypeAlias = Mapping[str, Any]
|
4054
|
+
|
3014
4055
|
@pulumi.input_type
|
3015
4056
|
class StreamSourceConfigOracleSourceConfigDropLargeObjectsArgs:
|
3016
4057
|
def __init__(__self__):
|
3017
4058
|
pass
|
3018
4059
|
|
3019
4060
|
|
4061
|
+
if not MYPY:
|
4062
|
+
class StreamSourceConfigOracleSourceConfigExcludeObjectsArgsDict(TypedDict):
|
4063
|
+
oracle_schemas: pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigOracleSourceConfigExcludeObjectsOracleSchemaArgsDict']]]
|
4064
|
+
"""
|
4065
|
+
Oracle schemas/databases in the database server
|
4066
|
+
Structure is documented below.
|
4067
|
+
"""
|
4068
|
+
elif False:
|
4069
|
+
StreamSourceConfigOracleSourceConfigExcludeObjectsArgsDict: TypeAlias = Mapping[str, Any]
|
4070
|
+
|
3020
4071
|
@pulumi.input_type
|
3021
4072
|
class StreamSourceConfigOracleSourceConfigExcludeObjectsArgs:
|
3022
4073
|
def __init__(__self__, *,
|
@@ -3041,6 +4092,20 @@ class StreamSourceConfigOracleSourceConfigExcludeObjectsArgs:
|
|
3041
4092
|
pulumi.set(self, "oracle_schemas", value)
|
3042
4093
|
|
3043
4094
|
|
4095
|
+
if not MYPY:
|
4096
|
+
class StreamSourceConfigOracleSourceConfigExcludeObjectsOracleSchemaArgsDict(TypedDict):
|
4097
|
+
schema: pulumi.Input[str]
|
4098
|
+
"""
|
4099
|
+
Schema name.
|
4100
|
+
"""
|
4101
|
+
oracle_tables: NotRequired[pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigOracleSourceConfigExcludeObjectsOracleSchemaOracleTableArgsDict']]]]
|
4102
|
+
"""
|
4103
|
+
Tables in the database.
|
4104
|
+
Structure is documented below.
|
4105
|
+
"""
|
4106
|
+
elif False:
|
4107
|
+
StreamSourceConfigOracleSourceConfigExcludeObjectsOracleSchemaArgsDict: TypeAlias = Mapping[str, Any]
|
4108
|
+
|
3044
4109
|
@pulumi.input_type
|
3045
4110
|
class StreamSourceConfigOracleSourceConfigExcludeObjectsOracleSchemaArgs:
|
3046
4111
|
def __init__(__self__, *,
|
@@ -3081,6 +4146,20 @@ class StreamSourceConfigOracleSourceConfigExcludeObjectsOracleSchemaArgs:
|
|
3081
4146
|
pulumi.set(self, "oracle_tables", value)
|
3082
4147
|
|
3083
4148
|
|
4149
|
+
if not MYPY:
|
4150
|
+
class StreamSourceConfigOracleSourceConfigExcludeObjectsOracleSchemaOracleTableArgsDict(TypedDict):
|
4151
|
+
table: pulumi.Input[str]
|
4152
|
+
"""
|
4153
|
+
Table name.
|
4154
|
+
"""
|
4155
|
+
oracle_columns: NotRequired[pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigOracleSourceConfigExcludeObjectsOracleSchemaOracleTableOracleColumnArgsDict']]]]
|
4156
|
+
"""
|
4157
|
+
Oracle columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
|
4158
|
+
Structure is documented below.
|
4159
|
+
"""
|
4160
|
+
elif False:
|
4161
|
+
StreamSourceConfigOracleSourceConfigExcludeObjectsOracleSchemaOracleTableArgsDict: TypeAlias = Mapping[str, Any]
|
4162
|
+
|
3084
4163
|
@pulumi.input_type
|
3085
4164
|
class StreamSourceConfigOracleSourceConfigExcludeObjectsOracleSchemaOracleTableArgs:
|
3086
4165
|
def __init__(__self__, *,
|
@@ -3121,6 +4200,55 @@ class StreamSourceConfigOracleSourceConfigExcludeObjectsOracleSchemaOracleTableA
|
|
3121
4200
|
pulumi.set(self, "oracle_columns", value)
|
3122
4201
|
|
3123
4202
|
|
4203
|
+
if not MYPY:
|
4204
|
+
class StreamSourceConfigOracleSourceConfigExcludeObjectsOracleSchemaOracleTableOracleColumnArgsDict(TypedDict):
|
4205
|
+
column: NotRequired[pulumi.Input[str]]
|
4206
|
+
"""
|
4207
|
+
Column name.
|
4208
|
+
"""
|
4209
|
+
data_type: NotRequired[pulumi.Input[str]]
|
4210
|
+
"""
|
4211
|
+
The Oracle data type. Full data types list can be found here:
|
4212
|
+
https://docs.oracle.com/en/database/oracle/oracle-database/21/sqlrf/Data-Types.html
|
4213
|
+
"""
|
4214
|
+
encoding: NotRequired[pulumi.Input[str]]
|
4215
|
+
"""
|
4216
|
+
(Output)
|
4217
|
+
Column encoding.
|
4218
|
+
"""
|
4219
|
+
length: NotRequired[pulumi.Input[int]]
|
4220
|
+
"""
|
4221
|
+
(Output)
|
4222
|
+
Column length.
|
4223
|
+
"""
|
4224
|
+
nullable: NotRequired[pulumi.Input[bool]]
|
4225
|
+
"""
|
4226
|
+
(Output)
|
4227
|
+
Whether or not the column can accept a null value.
|
4228
|
+
"""
|
4229
|
+
ordinal_position: NotRequired[pulumi.Input[int]]
|
4230
|
+
"""
|
4231
|
+
(Output)
|
4232
|
+
The ordinal position of the column in the table.
|
4233
|
+
"""
|
4234
|
+
precision: NotRequired[pulumi.Input[int]]
|
4235
|
+
"""
|
4236
|
+
(Output)
|
4237
|
+
Column precision.
|
4238
|
+
"""
|
4239
|
+
primary_key: NotRequired[pulumi.Input[bool]]
|
4240
|
+
"""
|
4241
|
+
(Output)
|
4242
|
+
Whether or not the column represents a primary key.
|
4243
|
+
"""
|
4244
|
+
scale: NotRequired[pulumi.Input[int]]
|
4245
|
+
"""
|
4246
|
+
(Output)
|
4247
|
+
Column scale.
|
4248
|
+
"""
|
4249
|
+
elif False:
|
4250
|
+
StreamSourceConfigOracleSourceConfigExcludeObjectsOracleSchemaOracleTableOracleColumnArgsDict: TypeAlias = Mapping[str, Any]
|
4251
|
+
|
3124
4252
|
@pulumi.input_type
|
3125
4253
|
class StreamSourceConfigOracleSourceConfigExcludeObjectsOracleSchemaOracleTableOracleColumnArgs:
|
3126
4254
|
def __init__(__self__, *,
|
@@ -3288,6 +4416,16 @@ class StreamSourceConfigOracleSourceConfigExcludeObjectsOracleSchemaOracleTableO
|
|
3288
4416
|
pulumi.set(self, "scale", value)
|
3289
4417
|
|
3290
4418
|
|
4419
|
+
if not MYPY:
|
4420
|
+
class StreamSourceConfigOracleSourceConfigIncludeObjectsArgsDict(TypedDict):
|
4421
|
+
oracle_schemas: pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigOracleSourceConfigIncludeObjectsOracleSchemaArgsDict']]]
|
4422
|
+
"""
|
4423
|
+
Oracle schemas/databases in the database server
|
4424
|
+
Structure is documented below.
|
4425
|
+
"""
|
4426
|
+
elif False:
|
4427
|
+
StreamSourceConfigOracleSourceConfigIncludeObjectsArgsDict: TypeAlias = Mapping[str, Any]
|
4428
|
+
|
3291
4429
|
@pulumi.input_type
|
3292
4430
|
class StreamSourceConfigOracleSourceConfigIncludeObjectsArgs:
|
3293
4431
|
def __init__(__self__, *,
|
@@ -3312,6 +4450,20 @@ class StreamSourceConfigOracleSourceConfigIncludeObjectsArgs:
|
|
3312
4450
|
pulumi.set(self, "oracle_schemas", value)
|
3313
4451
|
|
3314
4452
|
|
4453
|
+
if not MYPY:
|
4454
|
+
class StreamSourceConfigOracleSourceConfigIncludeObjectsOracleSchemaArgsDict(TypedDict):
|
4455
|
+
schema: pulumi.Input[str]
|
4456
|
+
"""
|
4457
|
+
Schema name.
|
4458
|
+
"""
|
4459
|
+
oracle_tables: NotRequired[pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigOracleSourceConfigIncludeObjectsOracleSchemaOracleTableArgsDict']]]]
|
4460
|
+
"""
|
4461
|
+
Tables in the database.
|
4462
|
+
Structure is documented below.
|
4463
|
+
"""
|
4464
|
+
elif False:
|
4465
|
+
StreamSourceConfigOracleSourceConfigIncludeObjectsOracleSchemaArgsDict: TypeAlias = Mapping[str, Any]
|
4466
|
+
|
3315
4467
|
@pulumi.input_type
|
3316
4468
|
class StreamSourceConfigOracleSourceConfigIncludeObjectsOracleSchemaArgs:
|
3317
4469
|
def __init__(__self__, *,
|
@@ -3352,6 +4504,20 @@ class StreamSourceConfigOracleSourceConfigIncludeObjectsOracleSchemaArgs:
|
|
3352
4504
|
pulumi.set(self, "oracle_tables", value)
|
3353
4505
|
|
3354
4506
|
|
4507
|
+
if not MYPY:
|
4508
|
+
class StreamSourceConfigOracleSourceConfigIncludeObjectsOracleSchemaOracleTableArgsDict(TypedDict):
|
4509
|
+
table: pulumi.Input[str]
|
4510
|
+
"""
|
4511
|
+
Table name.
|
4512
|
+
"""
|
4513
|
+
oracle_columns: NotRequired[pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigOracleSourceConfigIncludeObjectsOracleSchemaOracleTableOracleColumnArgsDict']]]]
|
4514
|
+
"""
|
4515
|
+
Oracle columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
|
4516
|
+
Structure is documented below.
|
4517
|
+
"""
|
4518
|
+
elif False:
|
4519
|
+
StreamSourceConfigOracleSourceConfigIncludeObjectsOracleSchemaOracleTableArgsDict: TypeAlias = Mapping[str, Any]
|
4520
|
+
|
3355
4521
|
@pulumi.input_type
|
3356
4522
|
class StreamSourceConfigOracleSourceConfigIncludeObjectsOracleSchemaOracleTableArgs:
|
3357
4523
|
def __init__(__self__, *,
|
@@ -3382,15 +4548,64 @@ class StreamSourceConfigOracleSourceConfigIncludeObjectsOracleSchemaOracleTableA
|
|
3382
4548
|
@pulumi.getter(name="oracleColumns")
|
3383
4549
|
def oracle_columns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigOracleSourceConfigIncludeObjectsOracleSchemaOracleTableOracleColumnArgs']]]]:
|
3384
4550
|
"""
|
3385
|
-
Oracle columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
|
3386
|
-
Structure is documented below.
|
4551
|
+
Oracle columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
|
4552
|
+
Structure is documented below.
|
4553
|
+
"""
|
4554
|
+
return pulumi.get(self, "oracle_columns")
|
4555
|
+
|
4556
|
+
@oracle_columns.setter
|
4557
|
+
def oracle_columns(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigOracleSourceConfigIncludeObjectsOracleSchemaOracleTableOracleColumnArgs']]]]):
|
4558
|
+
pulumi.set(self, "oracle_columns", value)
|
4559
|
+
|
4560
|
+
|
4561
|
+
if not MYPY:
|
4562
|
+
class StreamSourceConfigOracleSourceConfigIncludeObjectsOracleSchemaOracleTableOracleColumnArgsDict(TypedDict):
|
4563
|
+
column: NotRequired[pulumi.Input[str]]
|
4564
|
+
"""
|
4565
|
+
Column name.
|
4566
|
+
"""
|
4567
|
+
data_type: NotRequired[pulumi.Input[str]]
|
4568
|
+
"""
|
4569
|
+
The Oracle data type. Full data types list can be found here:
|
4570
|
+
https://docs.oracle.com/en/database/oracle/oracle-database/21/sqlrf/Data-Types.html
|
4571
|
+
"""
|
4572
|
+
encoding: NotRequired[pulumi.Input[str]]
|
4573
|
+
"""
|
4574
|
+
(Output)
|
4575
|
+
Column encoding.
|
4576
|
+
"""
|
4577
|
+
length: NotRequired[pulumi.Input[int]]
|
4578
|
+
"""
|
4579
|
+
(Output)
|
4580
|
+
Column length.
|
4581
|
+
"""
|
4582
|
+
nullable: NotRequired[pulumi.Input[bool]]
|
4583
|
+
"""
|
4584
|
+
(Output)
|
4585
|
+
Whether or not the column can accept a null value.
|
4586
|
+
"""
|
4587
|
+
ordinal_position: NotRequired[pulumi.Input[int]]
|
4588
|
+
"""
|
4589
|
+
(Output)
|
4590
|
+
The ordinal position of the column in the table.
|
4591
|
+
"""
|
4592
|
+
precision: NotRequired[pulumi.Input[int]]
|
4593
|
+
"""
|
4594
|
+
(Output)
|
4595
|
+
Column precision.
|
4596
|
+
"""
|
4597
|
+
primary_key: NotRequired[pulumi.Input[bool]]
|
4598
|
+
"""
|
4599
|
+
(Output)
|
4600
|
+
Whether or not the column represents a primary key.
|
4601
|
+
"""
|
4602
|
+
scale: NotRequired[pulumi.Input[int]]
|
3387
4603
|
"""
|
3388
|
-
|
3389
|
-
|
3390
|
-
|
3391
|
-
|
3392
|
-
|
3393
|
-
|
4604
|
+
(Output)
|
4605
|
+
Column scale.
|
4606
|
+
"""
|
4607
|
+
elif False:
|
4608
|
+
StreamSourceConfigOracleSourceConfigIncludeObjectsOracleSchemaOracleTableOracleColumnArgsDict: TypeAlias = Mapping[str, Any]
|
3394
4609
|
|
3395
4610
|
@pulumi.input_type
|
3396
4611
|
class StreamSourceConfigOracleSourceConfigIncludeObjectsOracleSchemaOracleTableOracleColumnArgs:
|
@@ -3559,12 +4774,48 @@ class StreamSourceConfigOracleSourceConfigIncludeObjectsOracleSchemaOracleTableO
|
|
3559
4774
|
pulumi.set(self, "scale", value)
|
3560
4775
|
|
3561
4776
|
|
4777
|
+
if not MYPY:
|
4778
|
+
class StreamSourceConfigOracleSourceConfigStreamLargeObjectsArgsDict(TypedDict):
|
4779
|
+
pass
|
4780
|
+
elif False:
|
4781
|
+
StreamSourceConfigOracleSourceConfigStreamLargeObjectsArgsDict: TypeAlias = Mapping[str, Any]
|
4782
|
+
|
3562
4783
|
@pulumi.input_type
|
3563
4784
|
class StreamSourceConfigOracleSourceConfigStreamLargeObjectsArgs:
|
3564
4785
|
def __init__(__self__):
|
3565
4786
|
pass
|
3566
4787
|
|
3567
4788
|
|
4789
|
+
if not MYPY:
|
4790
|
+
class StreamSourceConfigPostgresqlSourceConfigArgsDict(TypedDict):
|
4791
|
+
publication: pulumi.Input[str]
|
4792
|
+
"""
|
4793
|
+
The name of the publication that includes the set of all tables
|
4794
|
+
that are defined in the stream's include_objects.
|
4795
|
+
"""
|
4796
|
+
replication_slot: pulumi.Input[str]
|
4797
|
+
"""
|
4798
|
+
The name of the logical replication slot that's configured with
|
4799
|
+
the pgoutput plugin.
|
4800
|
+
"""
|
4801
|
+
exclude_objects: NotRequired[pulumi.Input['StreamSourceConfigPostgresqlSourceConfigExcludeObjectsArgsDict']]
|
4802
|
+
"""
|
4803
|
+
PostgreSQL objects to exclude from the stream.
|
4804
|
+
Structure is documented below.
|
4805
|
+
"""
|
4806
|
+
include_objects: NotRequired[pulumi.Input['StreamSourceConfigPostgresqlSourceConfigIncludeObjectsArgsDict']]
|
4807
|
+
"""
|
4808
|
+
PostgreSQL objects to retrieve from the source.
|
4809
|
+
Structure is documented below.
|
4810
|
+
"""
|
4811
|
+
max_concurrent_backfill_tasks: NotRequired[pulumi.Input[int]]
|
4812
|
+
"""
|
4813
|
+
Maximum number of concurrent backfill tasks. The number should be non
|
4814
|
+
negative. If not set (or set to 0), the system's default value will be used.
|
4815
|
+
"""
|
4816
|
+
elif False:
|
4817
|
+
StreamSourceConfigPostgresqlSourceConfigArgsDict: TypeAlias = Mapping[str, Any]
|
4818
|
+
|
3568
4819
|
@pulumi.input_type
|
3569
4820
|
class StreamSourceConfigPostgresqlSourceConfigArgs:
|
3570
4821
|
def __init__(__self__, *,
|
@@ -3660,6 +4911,16 @@ class StreamSourceConfigPostgresqlSourceConfigArgs:
|
|
3660
4911
|
pulumi.set(self, "max_concurrent_backfill_tasks", value)
|
3661
4912
|
|
3662
4913
|
|
4914
|
+
if not MYPY:
|
4915
|
+
class StreamSourceConfigPostgresqlSourceConfigExcludeObjectsArgsDict(TypedDict):
|
4916
|
+
postgresql_schemas: pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigPostgresqlSourceConfigExcludeObjectsPostgresqlSchemaArgsDict']]]
|
4917
|
+
"""
|
4918
|
+
PostgreSQL schemas on the server
|
4919
|
+
Structure is documented below.
|
4920
|
+
"""
|
4921
|
+
elif False:
|
4922
|
+
StreamSourceConfigPostgresqlSourceConfigExcludeObjectsArgsDict: TypeAlias = Mapping[str, Any]
|
4923
|
+
|
3663
4924
|
@pulumi.input_type
|
3664
4925
|
class StreamSourceConfigPostgresqlSourceConfigExcludeObjectsArgs:
|
3665
4926
|
def __init__(__self__, *,
|
@@ -3684,6 +4945,20 @@ class StreamSourceConfigPostgresqlSourceConfigExcludeObjectsArgs:
|
|
3684
4945
|
pulumi.set(self, "postgresql_schemas", value)
|
3685
4946
|
|
3686
4947
|
|
4948
|
+
if not MYPY:
|
4949
|
+
class StreamSourceConfigPostgresqlSourceConfigExcludeObjectsPostgresqlSchemaArgsDict(TypedDict):
|
4950
|
+
schema: pulumi.Input[str]
|
4951
|
+
"""
|
4952
|
+
Database name.
|
4953
|
+
"""
|
4954
|
+
postgresql_tables: NotRequired[pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigPostgresqlSourceConfigExcludeObjectsPostgresqlSchemaPostgresqlTableArgsDict']]]]
|
4955
|
+
"""
|
4956
|
+
Tables in the schema.
|
4957
|
+
Structure is documented below.
|
4958
|
+
"""
|
4959
|
+
elif False:
|
4960
|
+
StreamSourceConfigPostgresqlSourceConfigExcludeObjectsPostgresqlSchemaArgsDict: TypeAlias = Mapping[str, Any]
|
4961
|
+
|
3687
4962
|
@pulumi.input_type
|
3688
4963
|
class StreamSourceConfigPostgresqlSourceConfigExcludeObjectsPostgresqlSchemaArgs:
|
3689
4964
|
def __init__(__self__, *,
|
@@ -3724,6 +4999,20 @@ class StreamSourceConfigPostgresqlSourceConfigExcludeObjectsPostgresqlSchemaArgs
|
|
3724
4999
|
pulumi.set(self, "postgresql_tables", value)
|
3725
5000
|
|
3726
5001
|
|
5002
|
+
if not MYPY:
|
5003
|
+
class StreamSourceConfigPostgresqlSourceConfigExcludeObjectsPostgresqlSchemaPostgresqlTableArgsDict(TypedDict):
|
5004
|
+
table: pulumi.Input[str]
|
5005
|
+
"""
|
5006
|
+
Table name.
|
5007
|
+
"""
|
5008
|
+
postgresql_columns: NotRequired[pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigPostgresqlSourceConfigExcludeObjectsPostgresqlSchemaPostgresqlTablePostgresqlColumnArgsDict']]]]
|
5009
|
+
"""
|
5010
|
+
PostgreSQL columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
|
5011
|
+
Structure is documented below.
|
5012
|
+
"""
|
5013
|
+
elif False:
|
5014
|
+
StreamSourceConfigPostgresqlSourceConfigExcludeObjectsPostgresqlSchemaPostgresqlTableArgsDict: TypeAlias = Mapping[str, Any]
|
5015
|
+
|
3727
5016
|
@pulumi.input_type
|
3728
5017
|
class StreamSourceConfigPostgresqlSourceConfigExcludeObjectsPostgresqlSchemaPostgresqlTableArgs:
|
3729
5018
|
def __init__(__self__, *,
|
@@ -3764,6 +5053,47 @@ class StreamSourceConfigPostgresqlSourceConfigExcludeObjectsPostgresqlSchemaPost
|
|
3764
5053
|
pulumi.set(self, "postgresql_columns", value)
|
3765
5054
|
|
3766
5055
|
|
5056
|
+
if not MYPY:
|
5057
|
+
class StreamSourceConfigPostgresqlSourceConfigExcludeObjectsPostgresqlSchemaPostgresqlTablePostgresqlColumnArgsDict(TypedDict):
|
5058
|
+
column: NotRequired[pulumi.Input[str]]
|
5059
|
+
"""
|
5060
|
+
Column name.
|
5061
|
+
"""
|
5062
|
+
data_type: NotRequired[pulumi.Input[str]]
|
5063
|
+
"""
|
5064
|
+
The PostgreSQL data type. Full data types list can be found here:
|
5065
|
+
https://www.postgresql.org/docs/current/datatype.html
|
5066
|
+
"""
|
5067
|
+
length: NotRequired[pulumi.Input[int]]
|
5068
|
+
"""
|
5069
|
+
(Output)
|
5070
|
+
Column length.
|
5071
|
+
"""
|
5072
|
+
nullable: NotRequired[pulumi.Input[bool]]
|
5073
|
+
"""
|
5074
|
+
Whether or not the column can accept a null value.
|
5075
|
+
"""
|
5076
|
+
ordinal_position: NotRequired[pulumi.Input[int]]
|
5077
|
+
"""
|
5078
|
+
The ordinal position of the column in the table.
|
5079
|
+
"""
|
5080
|
+
precision: NotRequired[pulumi.Input[int]]
|
5081
|
+
"""
|
5082
|
+
(Output)
|
5083
|
+
Column precision.
|
5084
|
+
"""
|
5085
|
+
primary_key: NotRequired[pulumi.Input[bool]]
|
5086
|
+
"""
|
5087
|
+
Whether or not the column represents a primary key.
|
5088
|
+
"""
|
5089
|
+
scale: NotRequired[pulumi.Input[int]]
|
5090
|
+
"""
|
5091
|
+
(Output)
|
5092
|
+
Column scale.
|
5093
|
+
"""
|
5094
|
+
elif False:
|
5095
|
+
StreamSourceConfigPostgresqlSourceConfigExcludeObjectsPostgresqlSchemaPostgresqlTablePostgresqlColumnArgsDict: TypeAlias = Mapping[str, Any]
|
5096
|
+
|
3767
5097
|
@pulumi.input_type
|
3768
5098
|
class StreamSourceConfigPostgresqlSourceConfigExcludeObjectsPostgresqlSchemaPostgresqlTablePostgresqlColumnArgs:
|
3769
5099
|
def __init__(__self__, *,
|
@@ -3907,6 +5237,16 @@ class StreamSourceConfigPostgresqlSourceConfigExcludeObjectsPostgresqlSchemaPost
|
|
3907
5237
|
pulumi.set(self, "scale", value)
|
3908
5238
|
|
3909
5239
|
|
5240
|
+
if not MYPY:
|
5241
|
+
class StreamSourceConfigPostgresqlSourceConfigIncludeObjectsArgsDict(TypedDict):
|
5242
|
+
postgresql_schemas: pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigPostgresqlSourceConfigIncludeObjectsPostgresqlSchemaArgsDict']]]
|
5243
|
+
"""
|
5244
|
+
PostgreSQL schemas on the server
|
5245
|
+
Structure is documented below.
|
5246
|
+
"""
|
5247
|
+
elif False:
|
5248
|
+
StreamSourceConfigPostgresqlSourceConfigIncludeObjectsArgsDict: TypeAlias = Mapping[str, Any]
|
5249
|
+
|
3910
5250
|
@pulumi.input_type
|
3911
5251
|
class StreamSourceConfigPostgresqlSourceConfigIncludeObjectsArgs:
|
3912
5252
|
def __init__(__self__, *,
|
@@ -3931,6 +5271,20 @@ class StreamSourceConfigPostgresqlSourceConfigIncludeObjectsArgs:
|
|
3931
5271
|
pulumi.set(self, "postgresql_schemas", value)
|
3932
5272
|
|
3933
5273
|
|
5274
|
+
if not MYPY:
|
5275
|
+
class StreamSourceConfigPostgresqlSourceConfigIncludeObjectsPostgresqlSchemaArgsDict(TypedDict):
|
5276
|
+
schema: pulumi.Input[str]
|
5277
|
+
"""
|
5278
|
+
Database name.
|
5279
|
+
"""
|
5280
|
+
postgresql_tables: NotRequired[pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigPostgresqlSourceConfigIncludeObjectsPostgresqlSchemaPostgresqlTableArgsDict']]]]
|
5281
|
+
"""
|
5282
|
+
Tables in the schema.
|
5283
|
+
Structure is documented below.
|
5284
|
+
"""
|
5285
|
+
elif False:
|
5286
|
+
StreamSourceConfigPostgresqlSourceConfigIncludeObjectsPostgresqlSchemaArgsDict: TypeAlias = Mapping[str, Any]
|
5287
|
+
|
3934
5288
|
@pulumi.input_type
|
3935
5289
|
class StreamSourceConfigPostgresqlSourceConfigIncludeObjectsPostgresqlSchemaArgs:
|
3936
5290
|
def __init__(__self__, *,
|
@@ -3971,6 +5325,20 @@ class StreamSourceConfigPostgresqlSourceConfigIncludeObjectsPostgresqlSchemaArgs
|
|
3971
5325
|
pulumi.set(self, "postgresql_tables", value)
|
3972
5326
|
|
3973
5327
|
|
5328
|
+
if not MYPY:
|
5329
|
+
class StreamSourceConfigPostgresqlSourceConfigIncludeObjectsPostgresqlSchemaPostgresqlTableArgsDict(TypedDict):
|
5330
|
+
table: pulumi.Input[str]
|
5331
|
+
"""
|
5332
|
+
Table name.
|
5333
|
+
"""
|
5334
|
+
postgresql_columns: NotRequired[pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigPostgresqlSourceConfigIncludeObjectsPostgresqlSchemaPostgresqlTablePostgresqlColumnArgsDict']]]]
|
5335
|
+
"""
|
5336
|
+
PostgreSQL columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
|
5337
|
+
Structure is documented below.
|
5338
|
+
"""
|
5339
|
+
elif False:
|
5340
|
+
StreamSourceConfigPostgresqlSourceConfigIncludeObjectsPostgresqlSchemaPostgresqlTableArgsDict: TypeAlias = Mapping[str, Any]
|
5341
|
+
|
3974
5342
|
@pulumi.input_type
|
3975
5343
|
class StreamSourceConfigPostgresqlSourceConfigIncludeObjectsPostgresqlSchemaPostgresqlTableArgs:
|
3976
5344
|
def __init__(__self__, *,
|
@@ -4011,6 +5379,47 @@ class StreamSourceConfigPostgresqlSourceConfigIncludeObjectsPostgresqlSchemaPost
|
|
4011
5379
|
pulumi.set(self, "postgresql_columns", value)
|
4012
5380
|
|
4013
5381
|
|
5382
|
+
if not MYPY:
|
5383
|
+
class StreamSourceConfigPostgresqlSourceConfigIncludeObjectsPostgresqlSchemaPostgresqlTablePostgresqlColumnArgsDict(TypedDict):
|
5384
|
+
column: NotRequired[pulumi.Input[str]]
|
5385
|
+
"""
|
5386
|
+
Column name.
|
5387
|
+
"""
|
5388
|
+
data_type: NotRequired[pulumi.Input[str]]
|
5389
|
+
"""
|
5390
|
+
The PostgreSQL data type. Full data types list can be found here:
|
5391
|
+
https://www.postgresql.org/docs/current/datatype.html
|
5392
|
+
"""
|
5393
|
+
length: NotRequired[pulumi.Input[int]]
|
5394
|
+
"""
|
5395
|
+
(Output)
|
5396
|
+
Column length.
|
5397
|
+
"""
|
5398
|
+
nullable: NotRequired[pulumi.Input[bool]]
|
5399
|
+
"""
|
5400
|
+
Whether or not the column can accept a null value.
|
5401
|
+
"""
|
5402
|
+
ordinal_position: NotRequired[pulumi.Input[int]]
|
5403
|
+
"""
|
5404
|
+
The ordinal position of the column in the table.
|
5405
|
+
"""
|
5406
|
+
precision: NotRequired[pulumi.Input[int]]
|
5407
|
+
"""
|
5408
|
+
(Output)
|
5409
|
+
Column precision.
|
5410
|
+
"""
|
5411
|
+
primary_key: NotRequired[pulumi.Input[bool]]
|
5412
|
+
"""
|
5413
|
+
Whether or not the column represents a primary key.
|
5414
|
+
"""
|
5415
|
+
scale: NotRequired[pulumi.Input[int]]
|
5416
|
+
"""
|
5417
|
+
(Output)
|
5418
|
+
Column scale.
|
5419
|
+
"""
|
5420
|
+
elif False:
|
5421
|
+
StreamSourceConfigPostgresqlSourceConfigIncludeObjectsPostgresqlSchemaPostgresqlTablePostgresqlColumnArgsDict: TypeAlias = Mapping[str, Any]
|
5422
|
+
|
4014
5423
|
@pulumi.input_type
|
4015
5424
|
class StreamSourceConfigPostgresqlSourceConfigIncludeObjectsPostgresqlSchemaPostgresqlTablePostgresqlColumnArgs:
|
4016
5425
|
def __init__(__self__, *,
|
@@ -4154,6 +5563,29 @@ class StreamSourceConfigPostgresqlSourceConfigIncludeObjectsPostgresqlSchemaPost
|
|
4154
5563
|
pulumi.set(self, "scale", value)
|
4155
5564
|
|
4156
5565
|
|
5566
|
+
if not MYPY:
|
5567
|
+
class StreamSourceConfigSqlServerSourceConfigArgsDict(TypedDict):
|
5568
|
+
exclude_objects: NotRequired[pulumi.Input['StreamSourceConfigSqlServerSourceConfigExcludeObjectsArgsDict']]
|
5569
|
+
"""
|
5570
|
+
SQL Server objects to exclude from the stream.
|
5571
|
+
Structure is documented below.
|
5572
|
+
"""
|
5573
|
+
include_objects: NotRequired[pulumi.Input['StreamSourceConfigSqlServerSourceConfigIncludeObjectsArgsDict']]
|
5574
|
+
"""
|
5575
|
+
SQL Server objects to retrieve from the source.
|
5576
|
+
Structure is documented below.
|
5577
|
+
"""
|
5578
|
+
max_concurrent_backfill_tasks: NotRequired[pulumi.Input[int]]
|
5579
|
+
"""
|
5580
|
+
Max concurrent backfill tasks.
|
5581
|
+
"""
|
5582
|
+
max_concurrent_cdc_tasks: NotRequired[pulumi.Input[int]]
|
5583
|
+
"""
|
5584
|
+
Max concurrent CDC tasks.
|
5585
|
+
"""
|
5586
|
+
elif False:
|
5587
|
+
StreamSourceConfigSqlServerSourceConfigArgsDict: TypeAlias = Mapping[str, Any]
|
5588
|
+
|
4157
5589
|
@pulumi.input_type
|
4158
5590
|
class StreamSourceConfigSqlServerSourceConfigArgs:
|
4159
5591
|
def __init__(__self__, *,
|
@@ -4229,6 +5661,16 @@ class StreamSourceConfigSqlServerSourceConfigArgs:
|
|
4229
5661
|
pulumi.set(self, "max_concurrent_cdc_tasks", value)
|
4230
5662
|
|
4231
5663
|
|
5664
|
+
if not MYPY:
|
5665
|
+
class StreamSourceConfigSqlServerSourceConfigExcludeObjectsArgsDict(TypedDict):
|
5666
|
+
schemas: pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigSqlServerSourceConfigExcludeObjectsSchemaArgsDict']]]
|
5667
|
+
"""
|
5668
|
+
SQL Server schemas/databases in the database server
|
5669
|
+
Structure is documented below.
|
5670
|
+
"""
|
5671
|
+
elif False:
|
5672
|
+
StreamSourceConfigSqlServerSourceConfigExcludeObjectsArgsDict: TypeAlias = Mapping[str, Any]
|
5673
|
+
|
4232
5674
|
@pulumi.input_type
|
4233
5675
|
class StreamSourceConfigSqlServerSourceConfigExcludeObjectsArgs:
|
4234
5676
|
def __init__(__self__, *,
|
@@ -4253,6 +5695,20 @@ class StreamSourceConfigSqlServerSourceConfigExcludeObjectsArgs:
|
|
4253
5695
|
pulumi.set(self, "schemas", value)
|
4254
5696
|
|
4255
5697
|
|
5698
|
+
if not MYPY:
|
5699
|
+
class StreamSourceConfigSqlServerSourceConfigExcludeObjectsSchemaArgsDict(TypedDict):
|
5700
|
+
schema: pulumi.Input[str]
|
5701
|
+
"""
|
5702
|
+
Schema name.
|
5703
|
+
"""
|
5704
|
+
tables: NotRequired[pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigSqlServerSourceConfigExcludeObjectsSchemaTableArgsDict']]]]
|
5705
|
+
"""
|
5706
|
+
Tables in the database.
|
5707
|
+
Structure is documented below.
|
5708
|
+
"""
|
5709
|
+
elif False:
|
5710
|
+
StreamSourceConfigSqlServerSourceConfigExcludeObjectsSchemaArgsDict: TypeAlias = Mapping[str, Any]
|
5711
|
+
|
4256
5712
|
@pulumi.input_type
|
4257
5713
|
class StreamSourceConfigSqlServerSourceConfigExcludeObjectsSchemaArgs:
|
4258
5714
|
def __init__(__self__, *,
|
@@ -4293,6 +5749,20 @@ class StreamSourceConfigSqlServerSourceConfigExcludeObjectsSchemaArgs:
|
|
4293
5749
|
pulumi.set(self, "tables", value)
|
4294
5750
|
|
4295
5751
|
|
5752
|
+
if not MYPY:
|
5753
|
+
class StreamSourceConfigSqlServerSourceConfigExcludeObjectsSchemaTableArgsDict(TypedDict):
|
5754
|
+
table: pulumi.Input[str]
|
5755
|
+
"""
|
5756
|
+
Table name.
|
5757
|
+
"""
|
5758
|
+
columns: NotRequired[pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigSqlServerSourceConfigExcludeObjectsSchemaTableColumnArgsDict']]]]
|
5759
|
+
"""
|
5760
|
+
SQL Server columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
|
5761
|
+
Structure is documented below.
|
5762
|
+
"""
|
5763
|
+
elif False:
|
5764
|
+
StreamSourceConfigSqlServerSourceConfigExcludeObjectsSchemaTableArgsDict: TypeAlias = Mapping[str, Any]
|
5765
|
+
|
4296
5766
|
@pulumi.input_type
|
4297
5767
|
class StreamSourceConfigSqlServerSourceConfigExcludeObjectsSchemaTableArgs:
|
4298
5768
|
def __init__(__self__, *,
|
@@ -4333,6 +5803,50 @@ class StreamSourceConfigSqlServerSourceConfigExcludeObjectsSchemaTableArgs:
|
|
4333
5803
|
pulumi.set(self, "columns", value)
|
4334
5804
|
|
4335
5805
|
|
5806
|
+
if not MYPY:
|
5807
|
+
class StreamSourceConfigSqlServerSourceConfigExcludeObjectsSchemaTableColumnArgsDict(TypedDict):
|
5808
|
+
column: NotRequired[pulumi.Input[str]]
|
5809
|
+
"""
|
5810
|
+
Column name.
|
5811
|
+
"""
|
5812
|
+
data_type: NotRequired[pulumi.Input[str]]
|
5813
|
+
"""
|
5814
|
+
The SQL Server data type. Full data types list can be found here:
|
5815
|
+
https://learn.microsoft.com/en-us/sql/t-sql/data-types/data-types-transact-sql?view=sql-server-ver16
|
5816
|
+
"""
|
5817
|
+
length: NotRequired[pulumi.Input[int]]
|
5818
|
+
"""
|
5819
|
+
(Output)
|
5820
|
+
Column length.
|
5821
|
+
"""
|
5822
|
+
nullable: NotRequired[pulumi.Input[bool]]
|
5823
|
+
"""
|
5824
|
+
(Output)
|
5825
|
+
Whether or not the column can accept a null value.
|
5826
|
+
"""
|
5827
|
+
ordinal_position: NotRequired[pulumi.Input[int]]
|
5828
|
+
"""
|
5829
|
+
(Output)
|
5830
|
+
The ordinal position of the column in the table.
|
5831
|
+
"""
|
5832
|
+
precision: NotRequired[pulumi.Input[int]]
|
5833
|
+
"""
|
5834
|
+
(Output)
|
5835
|
+
Column precision.
|
5836
|
+
"""
|
5837
|
+
primary_key: NotRequired[pulumi.Input[bool]]
|
5838
|
+
"""
|
5839
|
+
(Output)
|
5840
|
+
Whether or not the column represents a primary key.
|
5841
|
+
"""
|
5842
|
+
scale: NotRequired[pulumi.Input[int]]
|
5843
|
+
"""
|
5844
|
+
(Output)
|
5845
|
+
Column scale.
|
5846
|
+
"""
|
5847
|
+
elif False:
|
5848
|
+
StreamSourceConfigSqlServerSourceConfigExcludeObjectsSchemaTableColumnArgsDict: TypeAlias = Mapping[str, Any]
|
5849
|
+
|
4336
5850
|
@pulumi.input_type
|
4337
5851
|
class StreamSourceConfigSqlServerSourceConfigExcludeObjectsSchemaTableColumnArgs:
|
4338
5852
|
def __init__(__self__, *,
|
@@ -4482,6 +5996,16 @@ class StreamSourceConfigSqlServerSourceConfigExcludeObjectsSchemaTableColumnArgs
|
|
4482
5996
|
pulumi.set(self, "scale", value)
|
4483
5997
|
|
4484
5998
|
|
5999
|
+
if not MYPY:
|
6000
|
+
class StreamSourceConfigSqlServerSourceConfigIncludeObjectsArgsDict(TypedDict):
|
6001
|
+
schemas: pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaArgsDict']]]
|
6002
|
+
"""
|
6003
|
+
SQL Server schemas/databases in the database server
|
6004
|
+
Structure is documented below.
|
6005
|
+
"""
|
6006
|
+
elif False:
|
6007
|
+
StreamSourceConfigSqlServerSourceConfigIncludeObjectsArgsDict: TypeAlias = Mapping[str, Any]
|
6008
|
+
|
4485
6009
|
@pulumi.input_type
|
4486
6010
|
class StreamSourceConfigSqlServerSourceConfigIncludeObjectsArgs:
|
4487
6011
|
def __init__(__self__, *,
|
@@ -4506,6 +6030,20 @@ class StreamSourceConfigSqlServerSourceConfigIncludeObjectsArgs:
|
|
4506
6030
|
pulumi.set(self, "schemas", value)
|
4507
6031
|
|
4508
6032
|
|
6033
|
+
if not MYPY:
|
6034
|
+
class StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaArgsDict(TypedDict):
|
6035
|
+
schema: pulumi.Input[str]
|
6036
|
+
"""
|
6037
|
+
Schema name.
|
6038
|
+
"""
|
6039
|
+
tables: NotRequired[pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaTableArgsDict']]]]
|
6040
|
+
"""
|
6041
|
+
Tables in the database.
|
6042
|
+
Structure is documented below.
|
6043
|
+
"""
|
6044
|
+
elif False:
|
6045
|
+
StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaArgsDict: TypeAlias = Mapping[str, Any]
|
6046
|
+
|
4509
6047
|
@pulumi.input_type
|
4510
6048
|
class StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaArgs:
|
4511
6049
|
def __init__(__self__, *,
|
@@ -4546,6 +6084,20 @@ class StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaArgs:
|
|
4546
6084
|
pulumi.set(self, "tables", value)
|
4547
6085
|
|
4548
6086
|
|
6087
|
+
if not MYPY:
|
6088
|
+
class StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaTableArgsDict(TypedDict):
|
6089
|
+
table: pulumi.Input[str]
|
6090
|
+
"""
|
6091
|
+
Table name.
|
6092
|
+
"""
|
6093
|
+
columns: NotRequired[pulumi.Input[Sequence[pulumi.Input['StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaTableColumnArgsDict']]]]
|
6094
|
+
"""
|
6095
|
+
SQL Server columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
|
6096
|
+
Structure is documented below.
|
6097
|
+
"""
|
6098
|
+
elif False:
|
6099
|
+
StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaTableArgsDict: TypeAlias = Mapping[str, Any]
|
6100
|
+
|
4549
6101
|
@pulumi.input_type
|
4550
6102
|
class StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaTableArgs:
|
4551
6103
|
def __init__(__self__, *,
|
@@ -4586,6 +6138,50 @@ class StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaTableArgs:
|
|
4586
6138
|
pulumi.set(self, "columns", value)
|
4587
6139
|
|
4588
6140
|
|
6141
|
+
if not MYPY:
|
6142
|
+
class StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaTableColumnArgsDict(TypedDict):
|
6143
|
+
column: NotRequired[pulumi.Input[str]]
|
6144
|
+
"""
|
6145
|
+
Column name.
|
6146
|
+
"""
|
6147
|
+
data_type: NotRequired[pulumi.Input[str]]
|
6148
|
+
"""
|
6149
|
+
The SQL Server data type. Full data types list can be found here:
|
6150
|
+
https://learn.microsoft.com/en-us/sql/t-sql/data-types/data-types-transact-sql?view=sql-server-ver16
|
6151
|
+
"""
|
6152
|
+
length: NotRequired[pulumi.Input[int]]
|
6153
|
+
"""
|
6154
|
+
(Output)
|
6155
|
+
Column length.
|
6156
|
+
"""
|
6157
|
+
nullable: NotRequired[pulumi.Input[bool]]
|
6158
|
+
"""
|
6159
|
+
(Output)
|
6160
|
+
Whether or not the column can accept a null value.
|
6161
|
+
"""
|
6162
|
+
ordinal_position: NotRequired[pulumi.Input[int]]
|
6163
|
+
"""
|
6164
|
+
(Output)
|
6165
|
+
The ordinal position of the column in the table.
|
6166
|
+
"""
|
6167
|
+
precision: NotRequired[pulumi.Input[int]]
|
6168
|
+
"""
|
6169
|
+
(Output)
|
6170
|
+
Column precision.
|
6171
|
+
"""
|
6172
|
+
primary_key: NotRequired[pulumi.Input[bool]]
|
6173
|
+
"""
|
6174
|
+
(Output)
|
6175
|
+
Whether or not the column represents a primary key.
|
6176
|
+
"""
|
6177
|
+
scale: NotRequired[pulumi.Input[int]]
|
6178
|
+
"""
|
6179
|
+
(Output)
|
6180
|
+
Column scale.
|
6181
|
+
"""
|
6182
|
+
elif False:
|
6183
|
+
StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaTableColumnArgsDict: TypeAlias = Mapping[str, Any]
|
6184
|
+
|
4589
6185
|
@pulumi.input_type
|
4590
6186
|
class StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaTableColumnArgs:
|
4591
6187
|
def __init__(__self__, *,
|