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/storage/_inputs.py
CHANGED
@@ -4,58 +4,122 @@
|
|
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
|
'BucketAutoclassArgs',
|
19
|
+
'BucketAutoclassArgsDict',
|
14
20
|
'BucketCorArgs',
|
21
|
+
'BucketCorArgsDict',
|
15
22
|
'BucketCustomPlacementConfigArgs',
|
23
|
+
'BucketCustomPlacementConfigArgsDict',
|
16
24
|
'BucketEncryptionArgs',
|
25
|
+
'BucketEncryptionArgsDict',
|
17
26
|
'BucketIAMBindingConditionArgs',
|
27
|
+
'BucketIAMBindingConditionArgsDict',
|
18
28
|
'BucketIAMMemberConditionArgs',
|
29
|
+
'BucketIAMMemberConditionArgsDict',
|
19
30
|
'BucketLifecycleRuleArgs',
|
31
|
+
'BucketLifecycleRuleArgsDict',
|
20
32
|
'BucketLifecycleRuleActionArgs',
|
33
|
+
'BucketLifecycleRuleActionArgsDict',
|
21
34
|
'BucketLifecycleRuleConditionArgs',
|
35
|
+
'BucketLifecycleRuleConditionArgsDict',
|
22
36
|
'BucketLoggingArgs',
|
37
|
+
'BucketLoggingArgsDict',
|
23
38
|
'BucketObjectCustomerEncryptionArgs',
|
39
|
+
'BucketObjectCustomerEncryptionArgsDict',
|
24
40
|
'BucketObjectRetentionArgs',
|
41
|
+
'BucketObjectRetentionArgsDict',
|
25
42
|
'BucketRetentionPolicyArgs',
|
43
|
+
'BucketRetentionPolicyArgsDict',
|
26
44
|
'BucketSoftDeletePolicyArgs',
|
45
|
+
'BucketSoftDeletePolicyArgsDict',
|
27
46
|
'BucketVersioningArgs',
|
47
|
+
'BucketVersioningArgsDict',
|
28
48
|
'BucketWebsiteArgs',
|
49
|
+
'BucketWebsiteArgsDict',
|
29
50
|
'DefaultObjectAccessControlProjectTeamArgs',
|
51
|
+
'DefaultObjectAccessControlProjectTeamArgsDict',
|
30
52
|
'InsightsReportConfigCsvOptionsArgs',
|
53
|
+
'InsightsReportConfigCsvOptionsArgsDict',
|
31
54
|
'InsightsReportConfigFrequencyOptionsArgs',
|
55
|
+
'InsightsReportConfigFrequencyOptionsArgsDict',
|
32
56
|
'InsightsReportConfigFrequencyOptionsEndDateArgs',
|
57
|
+
'InsightsReportConfigFrequencyOptionsEndDateArgsDict',
|
33
58
|
'InsightsReportConfigFrequencyOptionsStartDateArgs',
|
59
|
+
'InsightsReportConfigFrequencyOptionsStartDateArgsDict',
|
34
60
|
'InsightsReportConfigObjectMetadataReportOptionsArgs',
|
61
|
+
'InsightsReportConfigObjectMetadataReportOptionsArgsDict',
|
35
62
|
'InsightsReportConfigObjectMetadataReportOptionsStorageDestinationOptionsArgs',
|
63
|
+
'InsightsReportConfigObjectMetadataReportOptionsStorageDestinationOptionsArgsDict',
|
36
64
|
'InsightsReportConfigObjectMetadataReportOptionsStorageFiltersArgs',
|
65
|
+
'InsightsReportConfigObjectMetadataReportOptionsStorageFiltersArgsDict',
|
37
66
|
'ObjectAccessControlProjectTeamArgs',
|
67
|
+
'ObjectAccessControlProjectTeamArgsDict',
|
38
68
|
'TransferAgentPoolBandwidthLimitArgs',
|
69
|
+
'TransferAgentPoolBandwidthLimitArgsDict',
|
39
70
|
'TransferJobEventStreamArgs',
|
71
|
+
'TransferJobEventStreamArgsDict',
|
40
72
|
'TransferJobNotificationConfigArgs',
|
73
|
+
'TransferJobNotificationConfigArgsDict',
|
41
74
|
'TransferJobScheduleArgs',
|
75
|
+
'TransferJobScheduleArgsDict',
|
42
76
|
'TransferJobScheduleScheduleEndDateArgs',
|
77
|
+
'TransferJobScheduleScheduleEndDateArgsDict',
|
43
78
|
'TransferJobScheduleScheduleStartDateArgs',
|
79
|
+
'TransferJobScheduleScheduleStartDateArgsDict',
|
44
80
|
'TransferJobScheduleStartTimeOfDayArgs',
|
81
|
+
'TransferJobScheduleStartTimeOfDayArgsDict',
|
45
82
|
'TransferJobTransferSpecArgs',
|
83
|
+
'TransferJobTransferSpecArgsDict',
|
46
84
|
'TransferJobTransferSpecAwsS3DataSourceArgs',
|
85
|
+
'TransferJobTransferSpecAwsS3DataSourceArgsDict',
|
47
86
|
'TransferJobTransferSpecAwsS3DataSourceAwsAccessKeyArgs',
|
87
|
+
'TransferJobTransferSpecAwsS3DataSourceAwsAccessKeyArgsDict',
|
48
88
|
'TransferJobTransferSpecAzureBlobStorageDataSourceArgs',
|
89
|
+
'TransferJobTransferSpecAzureBlobStorageDataSourceArgsDict',
|
49
90
|
'TransferJobTransferSpecAzureBlobStorageDataSourceAzureCredentialsArgs',
|
91
|
+
'TransferJobTransferSpecAzureBlobStorageDataSourceAzureCredentialsArgsDict',
|
50
92
|
'TransferJobTransferSpecGcsDataSinkArgs',
|
93
|
+
'TransferJobTransferSpecGcsDataSinkArgsDict',
|
51
94
|
'TransferJobTransferSpecGcsDataSourceArgs',
|
95
|
+
'TransferJobTransferSpecGcsDataSourceArgsDict',
|
52
96
|
'TransferJobTransferSpecHttpDataSourceArgs',
|
97
|
+
'TransferJobTransferSpecHttpDataSourceArgsDict',
|
53
98
|
'TransferJobTransferSpecObjectConditionsArgs',
|
99
|
+
'TransferJobTransferSpecObjectConditionsArgsDict',
|
54
100
|
'TransferJobTransferSpecPosixDataSinkArgs',
|
101
|
+
'TransferJobTransferSpecPosixDataSinkArgsDict',
|
55
102
|
'TransferJobTransferSpecPosixDataSourceArgs',
|
103
|
+
'TransferJobTransferSpecPosixDataSourceArgsDict',
|
56
104
|
'TransferJobTransferSpecTransferOptionsArgs',
|
105
|
+
'TransferJobTransferSpecTransferOptionsArgsDict',
|
57
106
|
]
|
58
107
|
|
108
|
+
MYPY = False
|
109
|
+
|
110
|
+
if not MYPY:
|
111
|
+
class BucketAutoclassArgsDict(TypedDict):
|
112
|
+
enabled: pulumi.Input[bool]
|
113
|
+
"""
|
114
|
+
While set to `true`, autoclass automatically transitions objects in your bucket to appropriate storage classes based on each object's access pattern.
|
115
|
+
"""
|
116
|
+
terminal_storage_class: NotRequired[pulumi.Input[str]]
|
117
|
+
"""
|
118
|
+
The storage class that objects in the bucket eventually transition to if they are not read for a certain length of time. Supported values include: `NEARLINE`, `ARCHIVE`.
|
119
|
+
"""
|
120
|
+
elif False:
|
121
|
+
BucketAutoclassArgsDict: TypeAlias = Mapping[str, Any]
|
122
|
+
|
59
123
|
@pulumi.input_type
|
60
124
|
class BucketAutoclassArgs:
|
61
125
|
def __init__(__self__, *,
|
@@ -94,6 +158,27 @@ class BucketAutoclassArgs:
|
|
94
158
|
pulumi.set(self, "terminal_storage_class", value)
|
95
159
|
|
96
160
|
|
161
|
+
if not MYPY:
|
162
|
+
class BucketCorArgsDict(TypedDict):
|
163
|
+
max_age_seconds: NotRequired[pulumi.Input[int]]
|
164
|
+
"""
|
165
|
+
The value, in seconds, to return in the [Access-Control-Max-Age header](https://www.w3.org/TR/cors/#access-control-max-age-response-header) used in preflight responses.
|
166
|
+
"""
|
167
|
+
methods: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
168
|
+
"""
|
169
|
+
The list of HTTP methods on which to include CORS response headers, (GET, OPTIONS, POST, etc) Note: "*" is permitted in the list of methods, and means "any method".
|
170
|
+
"""
|
171
|
+
origins: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
172
|
+
"""
|
173
|
+
The list of [Origins](https://tools.ietf.org/html/rfc6454) eligible to receive CORS response headers. Note: "*" is permitted in the list of origins, and means "any Origin".
|
174
|
+
"""
|
175
|
+
response_headers: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
176
|
+
"""
|
177
|
+
The list of HTTP headers other than the [simple response headers](https://www.w3.org/TR/cors/#simple-response-header) to give permission for the user-agent to share across domains.
|
178
|
+
"""
|
179
|
+
elif False:
|
180
|
+
BucketCorArgsDict: TypeAlias = Mapping[str, Any]
|
181
|
+
|
97
182
|
@pulumi.input_type
|
98
183
|
class BucketCorArgs:
|
99
184
|
def __init__(__self__, *,
|
@@ -165,6 +250,15 @@ class BucketCorArgs:
|
|
165
250
|
pulumi.set(self, "response_headers", value)
|
166
251
|
|
167
252
|
|
253
|
+
if not MYPY:
|
254
|
+
class BucketCustomPlacementConfigArgsDict(TypedDict):
|
255
|
+
data_locations: pulumi.Input[Sequence[pulumi.Input[str]]]
|
256
|
+
"""
|
257
|
+
The list of individual regions that comprise a dual-region bucket. See [Cloud Storage bucket locations](https://cloud.google.com/storage/docs/dual-regions#availability) for a list of acceptable regions. **Note**: If any of the data_locations changes, it will [recreate the bucket](https://cloud.google.com/storage/docs/locations#key-concepts).
|
258
|
+
"""
|
259
|
+
elif False:
|
260
|
+
BucketCustomPlacementConfigArgsDict: TypeAlias = Mapping[str, Any]
|
261
|
+
|
168
262
|
@pulumi.input_type
|
169
263
|
class BucketCustomPlacementConfigArgs:
|
170
264
|
def __init__(__self__, *,
|
@@ -187,6 +281,28 @@ class BucketCustomPlacementConfigArgs:
|
|
187
281
|
pulumi.set(self, "data_locations", value)
|
188
282
|
|
189
283
|
|
284
|
+
if not MYPY:
|
285
|
+
class BucketEncryptionArgsDict(TypedDict):
|
286
|
+
default_kms_key_name: pulumi.Input[str]
|
287
|
+
"""
|
288
|
+
The `id` of a Cloud KMS key that will be used to encrypt objects inserted into this bucket, if no encryption method is specified.
|
289
|
+
You must pay attention to whether the crypto key is available in the location that this bucket is created in.
|
290
|
+
See [the docs](https://cloud.google.com/storage/docs/encryption/using-customer-managed-keys) for more details.
|
291
|
+
|
292
|
+
> As per [the docs](https://cloud.google.com/storage/docs/encryption/using-customer-managed-keys) for customer-managed encryption keys, the IAM policy for the
|
293
|
+
specified key must permit the [automatic Google Cloud Storage service account](https://cloud.google.com/storage/docs/projects#service-accounts) for the bucket's
|
294
|
+
project to use the specified key for encryption and decryption operations.
|
295
|
+
Although the service account email address follows a well-known format, the service account is created on-demand and may not necessarily exist for your project
|
296
|
+
until a relevant action has occurred which triggers its creation.
|
297
|
+
You should use the [`storage_get_project_service_account`](https://www.terraform.io/docs/providers/google/d/storage_project_service_account.html) data source to obtain the email
|
298
|
+
address for the service account when configuring IAM policy on the Cloud KMS key.
|
299
|
+
This data source calls an API which creates the account if required, ensuring your provider applies cleanly and repeatedly irrespective of the
|
300
|
+
state of the project.
|
301
|
+
You should take care for race conditions when the same provider manages IAM policy on the Cloud KMS crypto key. See the data source page for more details.
|
302
|
+
"""
|
303
|
+
elif False:
|
304
|
+
BucketEncryptionArgsDict: TypeAlias = Mapping[str, Any]
|
305
|
+
|
190
306
|
@pulumi.input_type
|
191
307
|
class BucketEncryptionArgs:
|
192
308
|
def __init__(__self__, *,
|
@@ -235,6 +351,27 @@ class BucketEncryptionArgs:
|
|
235
351
|
pulumi.set(self, "default_kms_key_name", value)
|
236
352
|
|
237
353
|
|
354
|
+
if not MYPY:
|
355
|
+
class BucketIAMBindingConditionArgsDict(TypedDict):
|
356
|
+
expression: pulumi.Input[str]
|
357
|
+
"""
|
358
|
+
Textual representation of an expression in Common Expression Language syntax.
|
359
|
+
"""
|
360
|
+
title: pulumi.Input[str]
|
361
|
+
"""
|
362
|
+
A title for the expression, i.e. a short string describing its purpose.
|
363
|
+
"""
|
364
|
+
description: NotRequired[pulumi.Input[str]]
|
365
|
+
"""
|
366
|
+
An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
|
367
|
+
|
368
|
+
> **Warning:** This provider considers the `role` and condition contents (`title`+`description`+`expression`) as the
|
369
|
+
identifier for the binding. This means that if any part of the condition is changed out-of-band, the provider will
|
370
|
+
consider it to be an entirely different resource and will treat it as such.
|
371
|
+
"""
|
372
|
+
elif False:
|
373
|
+
BucketIAMBindingConditionArgsDict: TypeAlias = Mapping[str, Any]
|
374
|
+
|
238
375
|
@pulumi.input_type
|
239
376
|
class BucketIAMBindingConditionArgs:
|
240
377
|
def __init__(__self__, *,
|
@@ -296,6 +433,27 @@ class BucketIAMBindingConditionArgs:
|
|
296
433
|
pulumi.set(self, "description", value)
|
297
434
|
|
298
435
|
|
436
|
+
if not MYPY:
|
437
|
+
class BucketIAMMemberConditionArgsDict(TypedDict):
|
438
|
+
expression: pulumi.Input[str]
|
439
|
+
"""
|
440
|
+
Textual representation of an expression in Common Expression Language syntax.
|
441
|
+
"""
|
442
|
+
title: pulumi.Input[str]
|
443
|
+
"""
|
444
|
+
A title for the expression, i.e. a short string describing its purpose.
|
445
|
+
"""
|
446
|
+
description: NotRequired[pulumi.Input[str]]
|
447
|
+
"""
|
448
|
+
An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
|
449
|
+
|
450
|
+
> **Warning:** This provider considers the `role` and condition contents (`title`+`description`+`expression`) as the
|
451
|
+
identifier for the binding. This means that if any part of the condition is changed out-of-band, the provider will
|
452
|
+
consider it to be an entirely different resource and will treat it as such.
|
453
|
+
"""
|
454
|
+
elif False:
|
455
|
+
BucketIAMMemberConditionArgsDict: TypeAlias = Mapping[str, Any]
|
456
|
+
|
299
457
|
@pulumi.input_type
|
300
458
|
class BucketIAMMemberConditionArgs:
|
301
459
|
def __init__(__self__, *,
|
@@ -357,6 +515,19 @@ class BucketIAMMemberConditionArgs:
|
|
357
515
|
pulumi.set(self, "description", value)
|
358
516
|
|
359
517
|
|
518
|
+
if not MYPY:
|
519
|
+
class BucketLifecycleRuleArgsDict(TypedDict):
|
520
|
+
action: pulumi.Input['BucketLifecycleRuleActionArgsDict']
|
521
|
+
"""
|
522
|
+
The Lifecycle Rule's action configuration. A single block of this type is supported. Structure is documented below.
|
523
|
+
"""
|
524
|
+
condition: pulumi.Input['BucketLifecycleRuleConditionArgsDict']
|
525
|
+
"""
|
526
|
+
The Lifecycle Rule's condition configuration. A single block of this type is supported. Structure is documented below.
|
527
|
+
"""
|
528
|
+
elif False:
|
529
|
+
BucketLifecycleRuleArgsDict: TypeAlias = Mapping[str, Any]
|
530
|
+
|
360
531
|
@pulumi.input_type
|
361
532
|
class BucketLifecycleRuleArgs:
|
362
533
|
def __init__(__self__, *,
|
@@ -394,6 +565,19 @@ class BucketLifecycleRuleArgs:
|
|
394
565
|
pulumi.set(self, "condition", value)
|
395
566
|
|
396
567
|
|
568
|
+
if not MYPY:
|
569
|
+
class BucketLifecycleRuleActionArgsDict(TypedDict):
|
570
|
+
type: pulumi.Input[str]
|
571
|
+
"""
|
572
|
+
The type of the action of this Lifecycle Rule. Supported values include: `Delete`, `SetStorageClass` and `AbortIncompleteMultipartUpload`.
|
573
|
+
"""
|
574
|
+
storage_class: NotRequired[pulumi.Input[str]]
|
575
|
+
"""
|
576
|
+
The target [Storage Class](https://cloud.google.com/storage/docs/storage-classes) of objects affected by this Lifecycle Rule. Supported values include: `STANDARD`, `MULTI_REGIONAL`, `REGIONAL`, `NEARLINE`, `COLDLINE`, `ARCHIVE`.
|
577
|
+
"""
|
578
|
+
elif False:
|
579
|
+
BucketLifecycleRuleActionArgsDict: TypeAlias = Mapping[str, Any]
|
580
|
+
|
397
581
|
@pulumi.input_type
|
398
582
|
class BucketLifecycleRuleActionArgs:
|
399
583
|
def __init__(__self__, *,
|
@@ -432,6 +616,72 @@ class BucketLifecycleRuleActionArgs:
|
|
432
616
|
pulumi.set(self, "storage_class", value)
|
433
617
|
|
434
618
|
|
619
|
+
if not MYPY:
|
620
|
+
class BucketLifecycleRuleConditionArgsDict(TypedDict):
|
621
|
+
age: NotRequired[pulumi.Input[int]]
|
622
|
+
"""
|
623
|
+
Minimum age of an object in days to satisfy this condition. If not supplied alongside another condition and without setting `no_age` to `true`, a default `age` of 0 will be set.
|
624
|
+
"""
|
625
|
+
created_before: NotRequired[pulumi.Input[str]]
|
626
|
+
"""
|
627
|
+
A date in the RFC 3339 format YYYY-MM-DD. This condition is satisfied when an object is created before midnight of the specified date in UTC.
|
628
|
+
"""
|
629
|
+
custom_time_before: NotRequired[pulumi.Input[str]]
|
630
|
+
"""
|
631
|
+
A date in the RFC 3339 format YYYY-MM-DD. This condition is satisfied when the customTime metadata for the object is set to an earlier date than the date used in this lifecycle condition.
|
632
|
+
"""
|
633
|
+
days_since_custom_time: NotRequired[pulumi.Input[int]]
|
634
|
+
"""
|
635
|
+
Number of days elapsed since the user-specified timestamp set on an object.
|
636
|
+
"""
|
637
|
+
days_since_noncurrent_time: NotRequired[pulumi.Input[int]]
|
638
|
+
"""
|
639
|
+
Number of days elapsed since the noncurrent timestamp of an object. This
|
640
|
+
condition is relevant only for versioned objects.
|
641
|
+
"""
|
642
|
+
matches_prefixes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
643
|
+
"""
|
644
|
+
One or more matching name prefixes to satisfy this condition.
|
645
|
+
"""
|
646
|
+
matches_storage_classes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
647
|
+
"""
|
648
|
+
[Storage Class](https://cloud.google.com/storage/docs/storage-classes) of objects to satisfy this condition. Supported values include: `STANDARD`, `MULTI_REGIONAL`, `REGIONAL`, `NEARLINE`, `COLDLINE`, `ARCHIVE`, `DURABLE_REDUCED_AVAILABILITY`.
|
649
|
+
"""
|
650
|
+
matches_suffixes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
651
|
+
"""
|
652
|
+
One or more matching name suffixes to satisfy this condition.
|
653
|
+
"""
|
654
|
+
no_age: NotRequired[pulumi.Input[bool]]
|
655
|
+
"""
|
656
|
+
While set `true`, `age` value will be omitted from requests. This prevents a default age of `0` from being applied, and if you do not have an `age` value set, setting this to `true` is strongly recommended. When unset and other conditions are set to zero values, this can result in a rule that applies your action to all files in the bucket.
|
657
|
+
"""
|
658
|
+
noncurrent_time_before: NotRequired[pulumi.Input[str]]
|
659
|
+
"""
|
660
|
+
Creation date of an object in RFC 3339 (e.g. 2017-06-13) to satisfy this condition.
|
661
|
+
"""
|
662
|
+
num_newer_versions: NotRequired[pulumi.Input[int]]
|
663
|
+
"""
|
664
|
+
Relevant only for versioned objects. The number of newer versions of an object to satisfy this condition.
|
665
|
+
"""
|
666
|
+
send_days_since_custom_time_if_zero: NotRequired[pulumi.Input[bool]]
|
667
|
+
"""
|
668
|
+
While set true, `days_since_custom_time` value will be sent in the request even for zero value of the field. This field is only useful for setting 0 value to the `days_since_custom_time` field. It can be used alone or together with `days_since_custom_time`.
|
669
|
+
"""
|
670
|
+
send_days_since_noncurrent_time_if_zero: NotRequired[pulumi.Input[bool]]
|
671
|
+
"""
|
672
|
+
While set true, `days_since_noncurrent_time` value will be sent in the request even for zero value of the field. This field is only useful for setting 0 value to the `days_since_noncurrent_time` field. It can be used alone or together with `days_since_noncurrent_time`.
|
673
|
+
"""
|
674
|
+
send_num_newer_versions_if_zero: NotRequired[pulumi.Input[bool]]
|
675
|
+
"""
|
676
|
+
While set true, `num_newer_versions` value will be sent in the request even for zero value of the field. This field is only useful for setting 0 value to the `num_newer_versions` field. It can be used alone or together with `num_newer_versions`.
|
677
|
+
"""
|
678
|
+
with_state: NotRequired[pulumi.Input[str]]
|
679
|
+
"""
|
680
|
+
Match to live and/or archived objects. Unversioned buckets have only live objects. Supported values include: `"LIVE"`, `"ARCHIVED"`, `"ANY"`.
|
681
|
+
"""
|
682
|
+
elif False:
|
683
|
+
BucketLifecycleRuleConditionArgsDict: TypeAlias = Mapping[str, Any]
|
684
|
+
|
435
685
|
@pulumi.input_type
|
436
686
|
class BucketLifecycleRuleConditionArgs:
|
437
687
|
def __init__(__self__, *,
|
@@ -681,6 +931,20 @@ class BucketLifecycleRuleConditionArgs:
|
|
681
931
|
pulumi.set(self, "with_state", value)
|
682
932
|
|
683
933
|
|
934
|
+
if not MYPY:
|
935
|
+
class BucketLoggingArgsDict(TypedDict):
|
936
|
+
log_bucket: pulumi.Input[str]
|
937
|
+
"""
|
938
|
+
The bucket that will receive log objects.
|
939
|
+
"""
|
940
|
+
log_object_prefix: NotRequired[pulumi.Input[str]]
|
941
|
+
"""
|
942
|
+
The object prefix for log objects. If it's not provided,
|
943
|
+
by default GCS sets this to this bucket's name.
|
944
|
+
"""
|
945
|
+
elif False:
|
946
|
+
BucketLoggingArgsDict: TypeAlias = Mapping[str, Any]
|
947
|
+
|
684
948
|
@pulumi.input_type
|
685
949
|
class BucketLoggingArgs:
|
686
950
|
def __init__(__self__, *,
|
@@ -721,6 +985,19 @@ class BucketLoggingArgs:
|
|
721
985
|
pulumi.set(self, "log_object_prefix", value)
|
722
986
|
|
723
987
|
|
988
|
+
if not MYPY:
|
989
|
+
class BucketObjectCustomerEncryptionArgsDict(TypedDict):
|
990
|
+
encryption_key: pulumi.Input[str]
|
991
|
+
"""
|
992
|
+
Base64 encoded Customer-Supplied Encryption Key.
|
993
|
+
"""
|
994
|
+
encryption_algorithm: NotRequired[pulumi.Input[str]]
|
995
|
+
"""
|
996
|
+
Encryption algorithm. Default: AES256
|
997
|
+
"""
|
998
|
+
elif False:
|
999
|
+
BucketObjectCustomerEncryptionArgsDict: TypeAlias = Mapping[str, Any]
|
1000
|
+
|
724
1001
|
@pulumi.input_type
|
725
1002
|
class BucketObjectCustomerEncryptionArgs:
|
726
1003
|
def __init__(__self__, *,
|
@@ -759,6 +1036,21 @@ class BucketObjectCustomerEncryptionArgs:
|
|
759
1036
|
pulumi.set(self, "encryption_algorithm", value)
|
760
1037
|
|
761
1038
|
|
1039
|
+
if not MYPY:
|
1040
|
+
class BucketObjectRetentionArgsDict(TypedDict):
|
1041
|
+
mode: pulumi.Input[str]
|
1042
|
+
"""
|
1043
|
+
The retention policy mode. Either `Locked` or `Unlocked`.
|
1044
|
+
"""
|
1045
|
+
retain_until_time: pulumi.Input[str]
|
1046
|
+
"""
|
1047
|
+
The time to retain the object until in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.
|
1048
|
+
|
1049
|
+
<a name>
|
1050
|
+
"""
|
1051
|
+
elif False:
|
1052
|
+
BucketObjectRetentionArgsDict: TypeAlias = Mapping[str, Any]
|
1053
|
+
|
762
1054
|
@pulumi.input_type
|
763
1055
|
class BucketObjectRetentionArgs:
|
764
1056
|
def __init__(__self__, *,
|
@@ -800,6 +1092,19 @@ class BucketObjectRetentionArgs:
|
|
800
1092
|
pulumi.set(self, "retain_until_time", value)
|
801
1093
|
|
802
1094
|
|
1095
|
+
if not MYPY:
|
1096
|
+
class BucketRetentionPolicyArgsDict(TypedDict):
|
1097
|
+
retention_period: pulumi.Input[int]
|
1098
|
+
"""
|
1099
|
+
The period of time, in seconds, that objects in the bucket must be retained and cannot be deleted, overwritten, or archived. The value must be less than 2,147,483,647 seconds.
|
1100
|
+
"""
|
1101
|
+
is_locked: NotRequired[pulumi.Input[bool]]
|
1102
|
+
"""
|
1103
|
+
If set to `true`, the bucket will be [locked](https://cloud.google.com/storage/docs/using-bucket-lock#lock-bucket) and permanently restrict edits to the bucket's retention policy. Caution: Locking a bucket is an irreversible action.
|
1104
|
+
"""
|
1105
|
+
elif False:
|
1106
|
+
BucketRetentionPolicyArgsDict: TypeAlias = Mapping[str, Any]
|
1107
|
+
|
803
1108
|
@pulumi.input_type
|
804
1109
|
class BucketRetentionPolicyArgs:
|
805
1110
|
def __init__(__self__, *,
|
@@ -838,6 +1143,19 @@ class BucketRetentionPolicyArgs:
|
|
838
1143
|
pulumi.set(self, "is_locked", value)
|
839
1144
|
|
840
1145
|
|
1146
|
+
if not MYPY:
|
1147
|
+
class BucketSoftDeletePolicyArgsDict(TypedDict):
|
1148
|
+
effective_time: NotRequired[pulumi.Input[str]]
|
1149
|
+
"""
|
1150
|
+
Server-determined value that indicates the time from which the policy, or one with a greater retention, was effective. This value is in RFC 3339 format.
|
1151
|
+
"""
|
1152
|
+
retention_duration_seconds: NotRequired[pulumi.Input[int]]
|
1153
|
+
"""
|
1154
|
+
The duration in seconds that soft-deleted objects in the bucket will be retained and cannot be permanently deleted. Default value is 604800. The value must be in between 604800(7 days) and 7776000(90 days). **Note**: To disable the soft delete policy on a bucket, This field must be set to 0.
|
1155
|
+
"""
|
1156
|
+
elif False:
|
1157
|
+
BucketSoftDeletePolicyArgsDict: TypeAlias = Mapping[str, Any]
|
1158
|
+
|
841
1159
|
@pulumi.input_type
|
842
1160
|
class BucketSoftDeletePolicyArgs:
|
843
1161
|
def __init__(__self__, *,
|
@@ -877,6 +1195,15 @@ class BucketSoftDeletePolicyArgs:
|
|
877
1195
|
pulumi.set(self, "retention_duration_seconds", value)
|
878
1196
|
|
879
1197
|
|
1198
|
+
if not MYPY:
|
1199
|
+
class BucketVersioningArgsDict(TypedDict):
|
1200
|
+
enabled: pulumi.Input[bool]
|
1201
|
+
"""
|
1202
|
+
While set to `true`, versioning is fully enabled for this bucket.
|
1203
|
+
"""
|
1204
|
+
elif False:
|
1205
|
+
BucketVersioningArgsDict: TypeAlias = Mapping[str, Any]
|
1206
|
+
|
880
1207
|
@pulumi.input_type
|
881
1208
|
class BucketVersioningArgs:
|
882
1209
|
def __init__(__self__, *,
|
@@ -899,6 +1226,21 @@ class BucketVersioningArgs:
|
|
899
1226
|
pulumi.set(self, "enabled", value)
|
900
1227
|
|
901
1228
|
|
1229
|
+
if not MYPY:
|
1230
|
+
class BucketWebsiteArgsDict(TypedDict):
|
1231
|
+
main_page_suffix: NotRequired[pulumi.Input[str]]
|
1232
|
+
"""
|
1233
|
+
Behaves as the bucket's directory index where
|
1234
|
+
missing objects are treated as potential directories.
|
1235
|
+
"""
|
1236
|
+
not_found_page: NotRequired[pulumi.Input[str]]
|
1237
|
+
"""
|
1238
|
+
The custom object to return when a requested
|
1239
|
+
resource is not found.
|
1240
|
+
"""
|
1241
|
+
elif False:
|
1242
|
+
BucketWebsiteArgsDict: TypeAlias = Mapping[str, Any]
|
1243
|
+
|
902
1244
|
@pulumi.input_type
|
903
1245
|
class BucketWebsiteArgs:
|
904
1246
|
def __init__(__self__, *,
|
@@ -942,6 +1284,20 @@ class BucketWebsiteArgs:
|
|
942
1284
|
pulumi.set(self, "not_found_page", value)
|
943
1285
|
|
944
1286
|
|
1287
|
+
if not MYPY:
|
1288
|
+
class DefaultObjectAccessControlProjectTeamArgsDict(TypedDict):
|
1289
|
+
project_number: NotRequired[pulumi.Input[str]]
|
1290
|
+
"""
|
1291
|
+
The project team associated with the entity
|
1292
|
+
"""
|
1293
|
+
team: NotRequired[pulumi.Input[str]]
|
1294
|
+
"""
|
1295
|
+
The team.
|
1296
|
+
Possible values are: `editors`, `owners`, `viewers`.
|
1297
|
+
"""
|
1298
|
+
elif False:
|
1299
|
+
DefaultObjectAccessControlProjectTeamArgsDict: TypeAlias = Mapping[str, Any]
|
1300
|
+
|
945
1301
|
@pulumi.input_type
|
946
1302
|
class DefaultObjectAccessControlProjectTeamArgs:
|
947
1303
|
def __init__(__self__, *,
|
@@ -983,6 +1339,25 @@ class DefaultObjectAccessControlProjectTeamArgs:
|
|
983
1339
|
pulumi.set(self, "team", value)
|
984
1340
|
|
985
1341
|
|
1342
|
+
if not MYPY:
|
1343
|
+
class InsightsReportConfigCsvOptionsArgsDict(TypedDict):
|
1344
|
+
delimiter: NotRequired[pulumi.Input[str]]
|
1345
|
+
"""
|
1346
|
+
The delimiter used to separate the fields in the inventory report CSV file.
|
1347
|
+
"""
|
1348
|
+
header_required: NotRequired[pulumi.Input[bool]]
|
1349
|
+
"""
|
1350
|
+
The boolean that indicates whether or not headers are included in the inventory report CSV file.
|
1351
|
+
|
1352
|
+
- - -
|
1353
|
+
"""
|
1354
|
+
record_separator: NotRequired[pulumi.Input[str]]
|
1355
|
+
"""
|
1356
|
+
The character used to separate the records in the inventory report CSV file.
|
1357
|
+
"""
|
1358
|
+
elif False:
|
1359
|
+
InsightsReportConfigCsvOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
1360
|
+
|
986
1361
|
@pulumi.input_type
|
987
1362
|
class InsightsReportConfigCsvOptionsArgs:
|
988
1363
|
def __init__(__self__, *,
|
@@ -1042,6 +1417,26 @@ class InsightsReportConfigCsvOptionsArgs:
|
|
1042
1417
|
pulumi.set(self, "record_separator", value)
|
1043
1418
|
|
1044
1419
|
|
1420
|
+
if not MYPY:
|
1421
|
+
class InsightsReportConfigFrequencyOptionsArgsDict(TypedDict):
|
1422
|
+
end_date: pulumi.Input['InsightsReportConfigFrequencyOptionsEndDateArgsDict']
|
1423
|
+
"""
|
1424
|
+
The date to stop generating inventory reports. For example, {"day": 15, "month": 9, "year": 2022}.
|
1425
|
+
Structure is documented below.
|
1426
|
+
"""
|
1427
|
+
frequency: pulumi.Input[str]
|
1428
|
+
"""
|
1429
|
+
The frequency in which inventory reports are generated. Values are DAILY or WEEKLY.
|
1430
|
+
Possible values are: `DAILY`, `WEEKLY`.
|
1431
|
+
"""
|
1432
|
+
start_date: pulumi.Input['InsightsReportConfigFrequencyOptionsStartDateArgsDict']
|
1433
|
+
"""
|
1434
|
+
The date to start generating inventory reports. For example, {"day": 15, "month": 8, "year": 2022}.
|
1435
|
+
Structure is documented below.
|
1436
|
+
"""
|
1437
|
+
elif False:
|
1438
|
+
InsightsReportConfigFrequencyOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
1439
|
+
|
1045
1440
|
@pulumi.input_type
|
1046
1441
|
class InsightsReportConfigFrequencyOptionsArgs:
|
1047
1442
|
def __init__(__self__, *,
|
@@ -1100,6 +1495,23 @@ class InsightsReportConfigFrequencyOptionsArgs:
|
|
1100
1495
|
pulumi.set(self, "start_date", value)
|
1101
1496
|
|
1102
1497
|
|
1498
|
+
if not MYPY:
|
1499
|
+
class InsightsReportConfigFrequencyOptionsEndDateArgsDict(TypedDict):
|
1500
|
+
day: pulumi.Input[int]
|
1501
|
+
"""
|
1502
|
+
The day of the month to stop generating inventory reports.
|
1503
|
+
"""
|
1504
|
+
month: pulumi.Input[int]
|
1505
|
+
"""
|
1506
|
+
The month to stop generating inventory reports.
|
1507
|
+
"""
|
1508
|
+
year: pulumi.Input[int]
|
1509
|
+
"""
|
1510
|
+
The year to stop generating inventory reports
|
1511
|
+
"""
|
1512
|
+
elif False:
|
1513
|
+
InsightsReportConfigFrequencyOptionsEndDateArgsDict: TypeAlias = Mapping[str, Any]
|
1514
|
+
|
1103
1515
|
@pulumi.input_type
|
1104
1516
|
class InsightsReportConfigFrequencyOptionsEndDateArgs:
|
1105
1517
|
def __init__(__self__, *,
|
@@ -1152,6 +1564,23 @@ class InsightsReportConfigFrequencyOptionsEndDateArgs:
|
|
1152
1564
|
pulumi.set(self, "year", value)
|
1153
1565
|
|
1154
1566
|
|
1567
|
+
if not MYPY:
|
1568
|
+
class InsightsReportConfigFrequencyOptionsStartDateArgsDict(TypedDict):
|
1569
|
+
day: pulumi.Input[int]
|
1570
|
+
"""
|
1571
|
+
The day of the month to start generating inventory reports.
|
1572
|
+
"""
|
1573
|
+
month: pulumi.Input[int]
|
1574
|
+
"""
|
1575
|
+
The month to start generating inventory reports.
|
1576
|
+
"""
|
1577
|
+
year: pulumi.Input[int]
|
1578
|
+
"""
|
1579
|
+
The year to start generating inventory reports
|
1580
|
+
"""
|
1581
|
+
elif False:
|
1582
|
+
InsightsReportConfigFrequencyOptionsStartDateArgsDict: TypeAlias = Mapping[str, Any]
|
1583
|
+
|
1155
1584
|
@pulumi.input_type
|
1156
1585
|
class InsightsReportConfigFrequencyOptionsStartDateArgs:
|
1157
1586
|
def __init__(__self__, *,
|
@@ -1204,6 +1633,25 @@ class InsightsReportConfigFrequencyOptionsStartDateArgs:
|
|
1204
1633
|
pulumi.set(self, "year", value)
|
1205
1634
|
|
1206
1635
|
|
1636
|
+
if not MYPY:
|
1637
|
+
class InsightsReportConfigObjectMetadataReportOptionsArgsDict(TypedDict):
|
1638
|
+
metadata_fields: pulumi.Input[Sequence[pulumi.Input[str]]]
|
1639
|
+
"""
|
1640
|
+
The metadata fields included in an inventory report.
|
1641
|
+
"""
|
1642
|
+
storage_destination_options: pulumi.Input['InsightsReportConfigObjectMetadataReportOptionsStorageDestinationOptionsArgsDict']
|
1643
|
+
"""
|
1644
|
+
Options for where the inventory reports are stored.
|
1645
|
+
Structure is documented below.
|
1646
|
+
"""
|
1647
|
+
storage_filters: NotRequired[pulumi.Input['InsightsReportConfigObjectMetadataReportOptionsStorageFiltersArgsDict']]
|
1648
|
+
"""
|
1649
|
+
A nested object resource
|
1650
|
+
Structure is documented below.
|
1651
|
+
"""
|
1652
|
+
elif False:
|
1653
|
+
InsightsReportConfigObjectMetadataReportOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
1654
|
+
|
1207
1655
|
@pulumi.input_type
|
1208
1656
|
class InsightsReportConfigObjectMetadataReportOptionsArgs:
|
1209
1657
|
def __init__(__self__, *,
|
@@ -1261,6 +1709,19 @@ class InsightsReportConfigObjectMetadataReportOptionsArgs:
|
|
1261
1709
|
pulumi.set(self, "storage_filters", value)
|
1262
1710
|
|
1263
1711
|
|
1712
|
+
if not MYPY:
|
1713
|
+
class InsightsReportConfigObjectMetadataReportOptionsStorageDestinationOptionsArgsDict(TypedDict):
|
1714
|
+
bucket: pulumi.Input[str]
|
1715
|
+
"""
|
1716
|
+
The destination bucket that stores the generated inventory reports.
|
1717
|
+
"""
|
1718
|
+
destination_path: NotRequired[pulumi.Input[str]]
|
1719
|
+
"""
|
1720
|
+
The path within the destination bucket to store generated inventory reports.
|
1721
|
+
"""
|
1722
|
+
elif False:
|
1723
|
+
InsightsReportConfigObjectMetadataReportOptionsStorageDestinationOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
1724
|
+
|
1264
1725
|
@pulumi.input_type
|
1265
1726
|
class InsightsReportConfigObjectMetadataReportOptionsStorageDestinationOptionsArgs:
|
1266
1727
|
def __init__(__self__, *,
|
@@ -1299,6 +1760,15 @@ class InsightsReportConfigObjectMetadataReportOptionsStorageDestinationOptionsAr
|
|
1299
1760
|
pulumi.set(self, "destination_path", value)
|
1300
1761
|
|
1301
1762
|
|
1763
|
+
if not MYPY:
|
1764
|
+
class InsightsReportConfigObjectMetadataReportOptionsStorageFiltersArgsDict(TypedDict):
|
1765
|
+
bucket: NotRequired[pulumi.Input[str]]
|
1766
|
+
"""
|
1767
|
+
The filter to use when specifying which bucket to generate inventory reports for.
|
1768
|
+
"""
|
1769
|
+
elif False:
|
1770
|
+
InsightsReportConfigObjectMetadataReportOptionsStorageFiltersArgsDict: TypeAlias = Mapping[str, Any]
|
1771
|
+
|
1302
1772
|
@pulumi.input_type
|
1303
1773
|
class InsightsReportConfigObjectMetadataReportOptionsStorageFiltersArgs:
|
1304
1774
|
def __init__(__self__, *,
|
@@ -1322,6 +1792,20 @@ class InsightsReportConfigObjectMetadataReportOptionsStorageFiltersArgs:
|
|
1322
1792
|
pulumi.set(self, "bucket", value)
|
1323
1793
|
|
1324
1794
|
|
1795
|
+
if not MYPY:
|
1796
|
+
class ObjectAccessControlProjectTeamArgsDict(TypedDict):
|
1797
|
+
project_number: NotRequired[pulumi.Input[str]]
|
1798
|
+
"""
|
1799
|
+
The project team associated with the entity
|
1800
|
+
"""
|
1801
|
+
team: NotRequired[pulumi.Input[str]]
|
1802
|
+
"""
|
1803
|
+
The team.
|
1804
|
+
Possible values are: `editors`, `owners`, `viewers`.
|
1805
|
+
"""
|
1806
|
+
elif False:
|
1807
|
+
ObjectAccessControlProjectTeamArgsDict: TypeAlias = Mapping[str, Any]
|
1808
|
+
|
1325
1809
|
@pulumi.input_type
|
1326
1810
|
class ObjectAccessControlProjectTeamArgs:
|
1327
1811
|
def __init__(__self__, *,
|
@@ -1363,6 +1847,15 @@ class ObjectAccessControlProjectTeamArgs:
|
|
1363
1847
|
pulumi.set(self, "team", value)
|
1364
1848
|
|
1365
1849
|
|
1850
|
+
if not MYPY:
|
1851
|
+
class TransferAgentPoolBandwidthLimitArgsDict(TypedDict):
|
1852
|
+
limit_mbps: pulumi.Input[str]
|
1853
|
+
"""
|
1854
|
+
Bandwidth rate in megabytes per second, distributed across all the agents in the pool.
|
1855
|
+
"""
|
1856
|
+
elif False:
|
1857
|
+
TransferAgentPoolBandwidthLimitArgsDict: TypeAlias = Mapping[str, Any]
|
1858
|
+
|
1366
1859
|
@pulumi.input_type
|
1367
1860
|
class TransferAgentPoolBandwidthLimitArgs:
|
1368
1861
|
def __init__(__self__, *,
|
@@ -1385,6 +1878,23 @@ class TransferAgentPoolBandwidthLimitArgs:
|
|
1385
1878
|
pulumi.set(self, "limit_mbps", value)
|
1386
1879
|
|
1387
1880
|
|
1881
|
+
if not MYPY:
|
1882
|
+
class TransferJobEventStreamArgsDict(TypedDict):
|
1883
|
+
name: pulumi.Input[str]
|
1884
|
+
"""
|
1885
|
+
Specifies a unique name of the resource such as AWS SQS ARN in the form 'arn:aws:sqs:region:account_id:queue_name', or Pub/Sub subscription resource name in the form 'projects/{project}/subscriptions/{sub}'.
|
1886
|
+
"""
|
1887
|
+
event_stream_expiration_time: NotRequired[pulumi.Input[str]]
|
1888
|
+
"""
|
1889
|
+
Specifies the data and time at which Storage Transfer Service stops listening for events from this stream. After this time, any transfers in progress will complete, but no new transfers are initiated.A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
|
1890
|
+
"""
|
1891
|
+
event_stream_start_time: NotRequired[pulumi.Input[str]]
|
1892
|
+
"""
|
1893
|
+
Specifies the date and time that Storage Transfer Service starts listening for events from this stream. If no start time is specified or start time is in the past, Storage Transfer Service starts listening immediately. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
|
1894
|
+
"""
|
1895
|
+
elif False:
|
1896
|
+
TransferJobEventStreamArgsDict: TypeAlias = Mapping[str, Any]
|
1897
|
+
|
1388
1898
|
@pulumi.input_type
|
1389
1899
|
class TransferJobEventStreamArgs:
|
1390
1900
|
def __init__(__self__, *,
|
@@ -1439,6 +1949,23 @@ class TransferJobEventStreamArgs:
|
|
1439
1949
|
pulumi.set(self, "event_stream_start_time", value)
|
1440
1950
|
|
1441
1951
|
|
1952
|
+
if not MYPY:
|
1953
|
+
class TransferJobNotificationConfigArgsDict(TypedDict):
|
1954
|
+
payload_format: pulumi.Input[str]
|
1955
|
+
"""
|
1956
|
+
The desired format of the notification message payloads. One of "NONE" or "JSON".
|
1957
|
+
"""
|
1958
|
+
pubsub_topic: pulumi.Input[str]
|
1959
|
+
"""
|
1960
|
+
The Topic.name of the Pub/Sub topic to which to publish notifications. Must be of the format: projects/{project}/topics/{topic}. Not matching this format results in an INVALID_ARGUMENT error.
|
1961
|
+
"""
|
1962
|
+
event_types: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
1963
|
+
"""
|
1964
|
+
Event types for which a notification is desired. If empty, send notifications for all event types. The valid types are "TRANSFER_OPERATION_SUCCESS", "TRANSFER_OPERATION_FAILED", "TRANSFER_OPERATION_ABORTED".
|
1965
|
+
"""
|
1966
|
+
elif False:
|
1967
|
+
TransferJobNotificationConfigArgsDict: TypeAlias = Mapping[str, Any]
|
1968
|
+
|
1442
1969
|
@pulumi.input_type
|
1443
1970
|
class TransferJobNotificationConfigArgs:
|
1444
1971
|
def __init__(__self__, *,
|
@@ -1492,6 +2019,27 @@ class TransferJobNotificationConfigArgs:
|
|
1492
2019
|
pulumi.set(self, "event_types", value)
|
1493
2020
|
|
1494
2021
|
|
2022
|
+
if not MYPY:
|
2023
|
+
class TransferJobScheduleArgsDict(TypedDict):
|
2024
|
+
schedule_start_date: pulumi.Input['TransferJobScheduleScheduleStartDateArgsDict']
|
2025
|
+
"""
|
2026
|
+
The first day the recurring transfer is scheduled to run. If `schedule_start_date` is in the past, the transfer will run for the first time on the following day. Structure documented below.
|
2027
|
+
"""
|
2028
|
+
repeat_interval: NotRequired[pulumi.Input[str]]
|
2029
|
+
"""
|
2030
|
+
Interval between the start of each scheduled transfer. If unspecified, the default value is 24 hours. This value may not be less than 1 hour. A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".
|
2031
|
+
"""
|
2032
|
+
schedule_end_date: NotRequired[pulumi.Input['TransferJobScheduleScheduleEndDateArgsDict']]
|
2033
|
+
"""
|
2034
|
+
The last day the recurring transfer will be run. If `schedule_end_date` is the same as `schedule_start_date`, the transfer will be executed only once. Structure documented below.
|
2035
|
+
"""
|
2036
|
+
start_time_of_day: NotRequired[pulumi.Input['TransferJobScheduleStartTimeOfDayArgsDict']]
|
2037
|
+
"""
|
2038
|
+
The time in UTC at which the transfer will be scheduled to start in a day. Transfers may start later than this time. If not specified, recurring and one-time transfers that are scheduled to run today will run immediately; recurring transfers that are scheduled to run on a future date will start at approximately midnight UTC on that date. Note that when configuring a transfer with the Cloud Platform Console, the transfer's start time in a day is specified in your local timezone. Structure documented below.
|
2039
|
+
"""
|
2040
|
+
elif False:
|
2041
|
+
TransferJobScheduleArgsDict: TypeAlias = Mapping[str, Any]
|
2042
|
+
|
1495
2043
|
@pulumi.input_type
|
1496
2044
|
class TransferJobScheduleArgs:
|
1497
2045
|
def __init__(__self__, *,
|
@@ -1562,6 +2110,23 @@ class TransferJobScheduleArgs:
|
|
1562
2110
|
pulumi.set(self, "start_time_of_day", value)
|
1563
2111
|
|
1564
2112
|
|
2113
|
+
if not MYPY:
|
2114
|
+
class TransferJobScheduleScheduleEndDateArgsDict(TypedDict):
|
2115
|
+
day: pulumi.Input[int]
|
2116
|
+
"""
|
2117
|
+
Day of month. Must be from 1 to 31 and valid for the year and month.
|
2118
|
+
"""
|
2119
|
+
month: pulumi.Input[int]
|
2120
|
+
"""
|
2121
|
+
Month of year. Must be from 1 to 12.
|
2122
|
+
"""
|
2123
|
+
year: pulumi.Input[int]
|
2124
|
+
"""
|
2125
|
+
Year of date. Must be from 1 to 9999.
|
2126
|
+
"""
|
2127
|
+
elif False:
|
2128
|
+
TransferJobScheduleScheduleEndDateArgsDict: TypeAlias = Mapping[str, Any]
|
2129
|
+
|
1565
2130
|
@pulumi.input_type
|
1566
2131
|
class TransferJobScheduleScheduleEndDateArgs:
|
1567
2132
|
def __init__(__self__, *,
|
@@ -1614,6 +2179,23 @@ class TransferJobScheduleScheduleEndDateArgs:
|
|
1614
2179
|
pulumi.set(self, "year", value)
|
1615
2180
|
|
1616
2181
|
|
2182
|
+
if not MYPY:
|
2183
|
+
class TransferJobScheduleScheduleStartDateArgsDict(TypedDict):
|
2184
|
+
day: pulumi.Input[int]
|
2185
|
+
"""
|
2186
|
+
Day of month. Must be from 1 to 31 and valid for the year and month.
|
2187
|
+
"""
|
2188
|
+
month: pulumi.Input[int]
|
2189
|
+
"""
|
2190
|
+
Month of year. Must be from 1 to 12.
|
2191
|
+
"""
|
2192
|
+
year: pulumi.Input[int]
|
2193
|
+
"""
|
2194
|
+
Year of date. Must be from 1 to 9999.
|
2195
|
+
"""
|
2196
|
+
elif False:
|
2197
|
+
TransferJobScheduleScheduleStartDateArgsDict: TypeAlias = Mapping[str, Any]
|
2198
|
+
|
1617
2199
|
@pulumi.input_type
|
1618
2200
|
class TransferJobScheduleScheduleStartDateArgs:
|
1619
2201
|
def __init__(__self__, *,
|
@@ -1666,6 +2248,27 @@ class TransferJobScheduleScheduleStartDateArgs:
|
|
1666
2248
|
pulumi.set(self, "year", value)
|
1667
2249
|
|
1668
2250
|
|
2251
|
+
if not MYPY:
|
2252
|
+
class TransferJobScheduleStartTimeOfDayArgsDict(TypedDict):
|
2253
|
+
hours: pulumi.Input[int]
|
2254
|
+
"""
|
2255
|
+
Hours of day in 24 hour format. Should be from 0 to 23.
|
2256
|
+
"""
|
2257
|
+
minutes: pulumi.Input[int]
|
2258
|
+
"""
|
2259
|
+
Minutes of hour of day. Must be from 0 to 59.
|
2260
|
+
"""
|
2261
|
+
nanos: pulumi.Input[int]
|
2262
|
+
"""
|
2263
|
+
Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
|
2264
|
+
"""
|
2265
|
+
seconds: pulumi.Input[int]
|
2266
|
+
"""
|
2267
|
+
Seconds of minutes of the time. Must normally be from 0 to 59.
|
2268
|
+
"""
|
2269
|
+
elif False:
|
2270
|
+
TransferJobScheduleStartTimeOfDayArgsDict: TypeAlias = Mapping[str, Any]
|
2271
|
+
|
1669
2272
|
@pulumi.input_type
|
1670
2273
|
class TransferJobScheduleStartTimeOfDayArgs:
|
1671
2274
|
def __init__(__self__, *,
|
@@ -1733,6 +2336,55 @@ class TransferJobScheduleStartTimeOfDayArgs:
|
|
1733
2336
|
pulumi.set(self, "seconds", value)
|
1734
2337
|
|
1735
2338
|
|
2339
|
+
if not MYPY:
|
2340
|
+
class TransferJobTransferSpecArgsDict(TypedDict):
|
2341
|
+
aws_s3_data_source: NotRequired[pulumi.Input['TransferJobTransferSpecAwsS3DataSourceArgsDict']]
|
2342
|
+
"""
|
2343
|
+
An AWS S3 data source. Structure documented below.
|
2344
|
+
"""
|
2345
|
+
azure_blob_storage_data_source: NotRequired[pulumi.Input['TransferJobTransferSpecAzureBlobStorageDataSourceArgsDict']]
|
2346
|
+
"""
|
2347
|
+
An Azure Blob Storage data source. Structure documented below.
|
2348
|
+
"""
|
2349
|
+
gcs_data_sink: NotRequired[pulumi.Input['TransferJobTransferSpecGcsDataSinkArgsDict']]
|
2350
|
+
"""
|
2351
|
+
A Google Cloud Storage data sink. Structure documented below.
|
2352
|
+
"""
|
2353
|
+
gcs_data_source: NotRequired[pulumi.Input['TransferJobTransferSpecGcsDataSourceArgsDict']]
|
2354
|
+
"""
|
2355
|
+
A Google Cloud Storage data source. Structure documented below.
|
2356
|
+
"""
|
2357
|
+
http_data_source: NotRequired[pulumi.Input['TransferJobTransferSpecHttpDataSourceArgsDict']]
|
2358
|
+
"""
|
2359
|
+
A HTTP URL data source. Structure documented below.
|
2360
|
+
"""
|
2361
|
+
object_conditions: NotRequired[pulumi.Input['TransferJobTransferSpecObjectConditionsArgsDict']]
|
2362
|
+
"""
|
2363
|
+
Only objects that satisfy these object conditions are included in the set of data source and data sink objects. Object conditions based on objects' `last_modification_time` do not exclude objects in a data sink. Structure documented below.
|
2364
|
+
"""
|
2365
|
+
posix_data_sink: NotRequired[pulumi.Input['TransferJobTransferSpecPosixDataSinkArgsDict']]
|
2366
|
+
"""
|
2367
|
+
A POSIX data sink. Structure documented below.
|
2368
|
+
"""
|
2369
|
+
posix_data_source: NotRequired[pulumi.Input['TransferJobTransferSpecPosixDataSourceArgsDict']]
|
2370
|
+
"""
|
2371
|
+
A POSIX filesystem data source. Structure documented below.
|
2372
|
+
"""
|
2373
|
+
sink_agent_pool_name: NotRequired[pulumi.Input[str]]
|
2374
|
+
"""
|
2375
|
+
Specifies the agent pool name associated with the posix data sink. When unspecified, the default name is used.
|
2376
|
+
"""
|
2377
|
+
source_agent_pool_name: NotRequired[pulumi.Input[str]]
|
2378
|
+
"""
|
2379
|
+
Specifies the agent pool name associated with the posix data source. When unspecified, the default name is used.
|
2380
|
+
"""
|
2381
|
+
transfer_options: NotRequired[pulumi.Input['TransferJobTransferSpecTransferOptionsArgsDict']]
|
2382
|
+
"""
|
2383
|
+
Characteristics of how to treat files from datasource and sink during job. If the option `delete_objects_unique_in_sink` is true, object conditions based on objects' `last_modification_time` are ignored and do not exclude objects in a data source or a data sink. Structure documented below.
|
2384
|
+
"""
|
2385
|
+
elif False:
|
2386
|
+
TransferJobTransferSpecArgsDict: TypeAlias = Mapping[str, Any]
|
2387
|
+
|
1736
2388
|
@pulumi.input_type
|
1737
2389
|
class TransferJobTransferSpecArgs:
|
1738
2390
|
def __init__(__self__, *,
|
@@ -1916,6 +2568,27 @@ class TransferJobTransferSpecArgs:
|
|
1916
2568
|
pulumi.set(self, "transfer_options", value)
|
1917
2569
|
|
1918
2570
|
|
2571
|
+
if not MYPY:
|
2572
|
+
class TransferJobTransferSpecAwsS3DataSourceArgsDict(TypedDict):
|
2573
|
+
bucket_name: pulumi.Input[str]
|
2574
|
+
"""
|
2575
|
+
S3 Bucket name.
|
2576
|
+
"""
|
2577
|
+
aws_access_key: NotRequired[pulumi.Input['TransferJobTransferSpecAwsS3DataSourceAwsAccessKeyArgsDict']]
|
2578
|
+
"""
|
2579
|
+
AWS credentials block.
|
2580
|
+
"""
|
2581
|
+
path: NotRequired[pulumi.Input[str]]
|
2582
|
+
"""
|
2583
|
+
S3 Bucket path in bucket to transfer.
|
2584
|
+
"""
|
2585
|
+
role_arn: NotRequired[pulumi.Input[str]]
|
2586
|
+
"""
|
2587
|
+
The Amazon Resource Name (ARN) of the role to support temporary credentials via 'AssumeRoleWithWebIdentity'. For more information about ARNs, see [IAM ARNs](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html#identifiers-arns). When a role ARN is provided, Transfer Service fetches temporary credentials for the session using a 'AssumeRoleWithWebIdentity' call for the provided role using the [GoogleServiceAccount][] for this project.
|
2588
|
+
"""
|
2589
|
+
elif False:
|
2590
|
+
TransferJobTransferSpecAwsS3DataSourceArgsDict: TypeAlias = Mapping[str, Any]
|
2591
|
+
|
1919
2592
|
@pulumi.input_type
|
1920
2593
|
class TransferJobTransferSpecAwsS3DataSourceArgs:
|
1921
2594
|
def __init__(__self__, *,
|
@@ -1986,6 +2659,19 @@ class TransferJobTransferSpecAwsS3DataSourceArgs:
|
|
1986
2659
|
pulumi.set(self, "role_arn", value)
|
1987
2660
|
|
1988
2661
|
|
2662
|
+
if not MYPY:
|
2663
|
+
class TransferJobTransferSpecAwsS3DataSourceAwsAccessKeyArgsDict(TypedDict):
|
2664
|
+
access_key_id: pulumi.Input[str]
|
2665
|
+
"""
|
2666
|
+
AWS Key ID.
|
2667
|
+
"""
|
2668
|
+
secret_access_key: pulumi.Input[str]
|
2669
|
+
"""
|
2670
|
+
AWS Secret Access Key.
|
2671
|
+
"""
|
2672
|
+
elif False:
|
2673
|
+
TransferJobTransferSpecAwsS3DataSourceAwsAccessKeyArgsDict: TypeAlias = Mapping[str, Any]
|
2674
|
+
|
1989
2675
|
@pulumi.input_type
|
1990
2676
|
class TransferJobTransferSpecAwsS3DataSourceAwsAccessKeyArgs:
|
1991
2677
|
def __init__(__self__, *,
|
@@ -2023,6 +2709,31 @@ class TransferJobTransferSpecAwsS3DataSourceAwsAccessKeyArgs:
|
|
2023
2709
|
pulumi.set(self, "secret_access_key", value)
|
2024
2710
|
|
2025
2711
|
|
2712
|
+
if not MYPY:
|
2713
|
+
class TransferJobTransferSpecAzureBlobStorageDataSourceArgsDict(TypedDict):
|
2714
|
+
container: pulumi.Input[str]
|
2715
|
+
"""
|
2716
|
+
The container to transfer from the Azure Storage account.`
|
2717
|
+
"""
|
2718
|
+
storage_account: pulumi.Input[str]
|
2719
|
+
"""
|
2720
|
+
The name of the Azure Storage account.
|
2721
|
+
"""
|
2722
|
+
azure_credentials: NotRequired[pulumi.Input['TransferJobTransferSpecAzureBlobStorageDataSourceAzureCredentialsArgsDict']]
|
2723
|
+
"""
|
2724
|
+
Credentials used to authenticate API requests to Azure block.
|
2725
|
+
"""
|
2726
|
+
credentials_secret: NotRequired[pulumi.Input[str]]
|
2727
|
+
"""
|
2728
|
+
Full Resource name of a secret in Secret Manager containing [SAS Credentials in JSON form](https://cloud.google.com/storage-transfer/docs/reference/rest/v1/TransferSpec#azureblobstoragedata:~:text=begin%20with%20a%20%27/%27.-,credentialsSecret,-string). Service Agent for Storage Transfer must have permissions to access secret. If credentials_secret is specified, do not specify azure_credentials.`,
|
2729
|
+
"""
|
2730
|
+
path: NotRequired[pulumi.Input[str]]
|
2731
|
+
"""
|
2732
|
+
Root path to transfer objects. Must be an empty string or full path name that ends with a '/'. This field is treated as an object prefix. As such, it should generally not begin with a '/'.
|
2733
|
+
"""
|
2734
|
+
elif False:
|
2735
|
+
TransferJobTransferSpecAzureBlobStorageDataSourceArgsDict: TypeAlias = Mapping[str, Any]
|
2736
|
+
|
2026
2737
|
@pulumi.input_type
|
2027
2738
|
class TransferJobTransferSpecAzureBlobStorageDataSourceArgs:
|
2028
2739
|
def __init__(__self__, *,
|
@@ -2108,6 +2819,17 @@ class TransferJobTransferSpecAzureBlobStorageDataSourceArgs:
|
|
2108
2819
|
pulumi.set(self, "path", value)
|
2109
2820
|
|
2110
2821
|
|
2822
|
+
if not MYPY:
|
2823
|
+
class TransferJobTransferSpecAzureBlobStorageDataSourceAzureCredentialsArgsDict(TypedDict):
|
2824
|
+
sas_token: pulumi.Input[str]
|
2825
|
+
"""
|
2826
|
+
Azure shared access signature. See [Grant limited access to Azure Storage resources using shared access signatures (SAS)](https://docs.microsoft.com/en-us/azure/storage/common/storage-sas-overview).
|
2827
|
+
|
2828
|
+
<a name="nested_schedule_start_end_date"></a>The `schedule_start_date` and `schedule_end_date` blocks support:
|
2829
|
+
"""
|
2830
|
+
elif False:
|
2831
|
+
TransferJobTransferSpecAzureBlobStorageDataSourceAzureCredentialsArgsDict: TypeAlias = Mapping[str, Any]
|
2832
|
+
|
2111
2833
|
@pulumi.input_type
|
2112
2834
|
class TransferJobTransferSpecAzureBlobStorageDataSourceAzureCredentialsArgs:
|
2113
2835
|
def __init__(__self__, *,
|
@@ -2134,6 +2856,19 @@ class TransferJobTransferSpecAzureBlobStorageDataSourceAzureCredentialsArgs:
|
|
2134
2856
|
pulumi.set(self, "sas_token", value)
|
2135
2857
|
|
2136
2858
|
|
2859
|
+
if not MYPY:
|
2860
|
+
class TransferJobTransferSpecGcsDataSinkArgsDict(TypedDict):
|
2861
|
+
bucket_name: pulumi.Input[str]
|
2862
|
+
"""
|
2863
|
+
Google Cloud Storage bucket name.
|
2864
|
+
"""
|
2865
|
+
path: NotRequired[pulumi.Input[str]]
|
2866
|
+
"""
|
2867
|
+
Root path to transfer objects. Must be an empty string or full path name that ends with a '/'. This field is treated as an object prefix. As such, it should generally not begin with a '/'.
|
2868
|
+
"""
|
2869
|
+
elif False:
|
2870
|
+
TransferJobTransferSpecGcsDataSinkArgsDict: TypeAlias = Mapping[str, Any]
|
2871
|
+
|
2137
2872
|
@pulumi.input_type
|
2138
2873
|
class TransferJobTransferSpecGcsDataSinkArgs:
|
2139
2874
|
def __init__(__self__, *,
|
@@ -2172,6 +2907,19 @@ class TransferJobTransferSpecGcsDataSinkArgs:
|
|
2172
2907
|
pulumi.set(self, "path", value)
|
2173
2908
|
|
2174
2909
|
|
2910
|
+
if not MYPY:
|
2911
|
+
class TransferJobTransferSpecGcsDataSourceArgsDict(TypedDict):
|
2912
|
+
bucket_name: pulumi.Input[str]
|
2913
|
+
"""
|
2914
|
+
Google Cloud Storage bucket name.
|
2915
|
+
"""
|
2916
|
+
path: NotRequired[pulumi.Input[str]]
|
2917
|
+
"""
|
2918
|
+
Root path to transfer objects. Must be an empty string or full path name that ends with a '/'. This field is treated as an object prefix. As such, it should generally not begin with a '/'.
|
2919
|
+
"""
|
2920
|
+
elif False:
|
2921
|
+
TransferJobTransferSpecGcsDataSourceArgsDict: TypeAlias = Mapping[str, Any]
|
2922
|
+
|
2175
2923
|
@pulumi.input_type
|
2176
2924
|
class TransferJobTransferSpecGcsDataSourceArgs:
|
2177
2925
|
def __init__(__self__, *,
|
@@ -2210,6 +2958,15 @@ class TransferJobTransferSpecGcsDataSourceArgs:
|
|
2210
2958
|
pulumi.set(self, "path", value)
|
2211
2959
|
|
2212
2960
|
|
2961
|
+
if not MYPY:
|
2962
|
+
class TransferJobTransferSpecHttpDataSourceArgsDict(TypedDict):
|
2963
|
+
list_url: pulumi.Input[str]
|
2964
|
+
"""
|
2965
|
+
The URL that points to the file that stores the object list entries. This file must allow public access. Currently, only URLs with HTTP and HTTPS schemes are supported.
|
2966
|
+
"""
|
2967
|
+
elif False:
|
2968
|
+
TransferJobTransferSpecHttpDataSourceArgsDict: TypeAlias = Mapping[str, Any]
|
2969
|
+
|
2213
2970
|
@pulumi.input_type
|
2214
2971
|
class TransferJobTransferSpecHttpDataSourceArgs:
|
2215
2972
|
def __init__(__self__, *,
|
@@ -2232,6 +2989,35 @@ class TransferJobTransferSpecHttpDataSourceArgs:
|
|
2232
2989
|
pulumi.set(self, "list_url", value)
|
2233
2990
|
|
2234
2991
|
|
2992
|
+
if not MYPY:
|
2993
|
+
class TransferJobTransferSpecObjectConditionsArgsDict(TypedDict):
|
2994
|
+
exclude_prefixes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
2995
|
+
"""
|
2996
|
+
`exclude_prefixes` must follow the requirements described for `include_prefixes`. See [Requirements](https://cloud.google.com/storage-transfer/docs/reference/rest/v1/TransferSpec#ObjectConditions).
|
2997
|
+
"""
|
2998
|
+
include_prefixes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
2999
|
+
"""
|
3000
|
+
If `include_prefixes` is specified, objects that satisfy the object conditions must have names that start with one of the `include_prefixes` and that do not start with any of the `exclude_prefixes`. If `include_prefixes` is not specified, all objects except those that have names starting with one of the `exclude_prefixes` must satisfy the object conditions. See [Requirements](https://cloud.google.com/storage-transfer/docs/reference/rest/v1/TransferSpec#ObjectConditions).
|
3001
|
+
"""
|
3002
|
+
last_modified_before: NotRequired[pulumi.Input[str]]
|
3003
|
+
"""
|
3004
|
+
If specified, only objects with a "last modification time" before this timestamp and objects that don't have a "last modification time" are transferred. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
|
3005
|
+
"""
|
3006
|
+
last_modified_since: NotRequired[pulumi.Input[str]]
|
3007
|
+
"""
|
3008
|
+
If specified, only objects with a "last modification time" on or after this timestamp and objects that don't have a "last modification time" are transferred. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
|
3009
|
+
"""
|
3010
|
+
max_time_elapsed_since_last_modification: NotRequired[pulumi.Input[str]]
|
3011
|
+
"""
|
3012
|
+
A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".
|
3013
|
+
"""
|
3014
|
+
min_time_elapsed_since_last_modification: NotRequired[pulumi.Input[str]]
|
3015
|
+
"""
|
3016
|
+
A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".
|
3017
|
+
"""
|
3018
|
+
elif False:
|
3019
|
+
TransferJobTransferSpecObjectConditionsArgsDict: TypeAlias = Mapping[str, Any]
|
3020
|
+
|
2235
3021
|
@pulumi.input_type
|
2236
3022
|
class TransferJobTransferSpecObjectConditionsArgs:
|
2237
3023
|
def __init__(__self__, *,
|
@@ -2335,6 +3121,15 @@ class TransferJobTransferSpecObjectConditionsArgs:
|
|
2335
3121
|
pulumi.set(self, "min_time_elapsed_since_last_modification", value)
|
2336
3122
|
|
2337
3123
|
|
3124
|
+
if not MYPY:
|
3125
|
+
class TransferJobTransferSpecPosixDataSinkArgsDict(TypedDict):
|
3126
|
+
root_directory: pulumi.Input[str]
|
3127
|
+
"""
|
3128
|
+
Root directory path to the filesystem.
|
3129
|
+
"""
|
3130
|
+
elif False:
|
3131
|
+
TransferJobTransferSpecPosixDataSinkArgsDict: TypeAlias = Mapping[str, Any]
|
3132
|
+
|
2338
3133
|
@pulumi.input_type
|
2339
3134
|
class TransferJobTransferSpecPosixDataSinkArgs:
|
2340
3135
|
def __init__(__self__, *,
|
@@ -2357,6 +3152,17 @@ class TransferJobTransferSpecPosixDataSinkArgs:
|
|
2357
3152
|
pulumi.set(self, "root_directory", value)
|
2358
3153
|
|
2359
3154
|
|
3155
|
+
if not MYPY:
|
3156
|
+
class TransferJobTransferSpecPosixDataSourceArgsDict(TypedDict):
|
3157
|
+
root_directory: pulumi.Input[str]
|
3158
|
+
"""
|
3159
|
+
Root directory path to the filesystem.
|
3160
|
+
|
3161
|
+
<a name="nested_aws_s3_data_source"></a>The `aws_s3_data_source` block supports:
|
3162
|
+
"""
|
3163
|
+
elif False:
|
3164
|
+
TransferJobTransferSpecPosixDataSourceArgsDict: TypeAlias = Mapping[str, Any]
|
3165
|
+
|
2360
3166
|
@pulumi.input_type
|
2361
3167
|
class TransferJobTransferSpecPosixDataSourceArgs:
|
2362
3168
|
def __init__(__self__, *,
|
@@ -2383,6 +3189,28 @@ class TransferJobTransferSpecPosixDataSourceArgs:
|
|
2383
3189
|
pulumi.set(self, "root_directory", value)
|
2384
3190
|
|
2385
3191
|
|
3192
|
+
if not MYPY:
|
3193
|
+
class TransferJobTransferSpecTransferOptionsArgsDict(TypedDict):
|
3194
|
+
delete_objects_from_source_after_transfer: NotRequired[pulumi.Input[bool]]
|
3195
|
+
"""
|
3196
|
+
Whether objects should be deleted from the source after they are transferred to the sink. Note that this option and `delete_objects_unique_in_sink` are mutually exclusive.
|
3197
|
+
"""
|
3198
|
+
delete_objects_unique_in_sink: NotRequired[pulumi.Input[bool]]
|
3199
|
+
"""
|
3200
|
+
Whether objects that exist only in the sink should be deleted. Note that this option and
|
3201
|
+
`delete_objects_from_source_after_transfer` are mutually exclusive.
|
3202
|
+
"""
|
3203
|
+
overwrite_objects_already_existing_in_sink: NotRequired[pulumi.Input[bool]]
|
3204
|
+
"""
|
3205
|
+
Whether overwriting objects that already exist in the sink is allowed.
|
3206
|
+
"""
|
3207
|
+
overwrite_when: NotRequired[pulumi.Input[str]]
|
3208
|
+
"""
|
3209
|
+
When to overwrite objects that already exist in the sink. If not set, overwrite behavior is determined by `overwrite_objects_already_existing_in_sink`. Possible values: ALWAYS, DIFFERENT, NEVER.
|
3210
|
+
"""
|
3211
|
+
elif False:
|
3212
|
+
TransferJobTransferSpecTransferOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
3213
|
+
|
2386
3214
|
@pulumi.input_type
|
2387
3215
|
class TransferJobTransferSpecTransferOptionsArgs:
|
2388
3216
|
def __init__(__self__, *,
|