pulumi-gcp 7.30.0a1719470057__py3-none-any.whl → 7.30.0a1719555549__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.0a1719555549.dist-info}/METADATA +2 -1
- pulumi_gcp-7.30.0a1719555549.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.0a1719555549.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.30.0a1719470057.dist-info → pulumi_gcp-7.30.0a1719555549.dist-info}/top_level.txt +0 -0
pulumi_gcp/cloudbuild/_inputs.py
CHANGED
@@ -4,50 +4,106 @@
|
|
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
|
'BitbucketServerConfigConnectedRepositoryArgs',
|
19
|
+
'BitbucketServerConfigConnectedRepositoryArgsDict',
|
14
20
|
'BitbucketServerConfigSecretsArgs',
|
21
|
+
'BitbucketServerConfigSecretsArgsDict',
|
15
22
|
'TriggerApprovalConfigArgs',
|
23
|
+
'TriggerApprovalConfigArgsDict',
|
16
24
|
'TriggerBitbucketServerTriggerConfigArgs',
|
25
|
+
'TriggerBitbucketServerTriggerConfigArgsDict',
|
17
26
|
'TriggerBitbucketServerTriggerConfigPullRequestArgs',
|
27
|
+
'TriggerBitbucketServerTriggerConfigPullRequestArgsDict',
|
18
28
|
'TriggerBitbucketServerTriggerConfigPushArgs',
|
29
|
+
'TriggerBitbucketServerTriggerConfigPushArgsDict',
|
19
30
|
'TriggerBuildArgs',
|
31
|
+
'TriggerBuildArgsDict',
|
20
32
|
'TriggerBuildArtifactsArgs',
|
33
|
+
'TriggerBuildArtifactsArgsDict',
|
21
34
|
'TriggerBuildArtifactsMavenArtifactArgs',
|
35
|
+
'TriggerBuildArtifactsMavenArtifactArgsDict',
|
22
36
|
'TriggerBuildArtifactsNpmPackageArgs',
|
37
|
+
'TriggerBuildArtifactsNpmPackageArgsDict',
|
23
38
|
'TriggerBuildArtifactsObjectsArgs',
|
39
|
+
'TriggerBuildArtifactsObjectsArgsDict',
|
24
40
|
'TriggerBuildArtifactsObjectsTimingArgs',
|
41
|
+
'TriggerBuildArtifactsObjectsTimingArgsDict',
|
25
42
|
'TriggerBuildArtifactsPythonPackageArgs',
|
43
|
+
'TriggerBuildArtifactsPythonPackageArgsDict',
|
26
44
|
'TriggerBuildAvailableSecretsArgs',
|
45
|
+
'TriggerBuildAvailableSecretsArgsDict',
|
27
46
|
'TriggerBuildAvailableSecretsSecretManagerArgs',
|
47
|
+
'TriggerBuildAvailableSecretsSecretManagerArgsDict',
|
28
48
|
'TriggerBuildOptionsArgs',
|
49
|
+
'TriggerBuildOptionsArgsDict',
|
29
50
|
'TriggerBuildOptionsVolumeArgs',
|
51
|
+
'TriggerBuildOptionsVolumeArgsDict',
|
30
52
|
'TriggerBuildSecretArgs',
|
53
|
+
'TriggerBuildSecretArgsDict',
|
31
54
|
'TriggerBuildSourceArgs',
|
55
|
+
'TriggerBuildSourceArgsDict',
|
32
56
|
'TriggerBuildSourceRepoSourceArgs',
|
57
|
+
'TriggerBuildSourceRepoSourceArgsDict',
|
33
58
|
'TriggerBuildSourceStorageSourceArgs',
|
59
|
+
'TriggerBuildSourceStorageSourceArgsDict',
|
34
60
|
'TriggerBuildStepArgs',
|
61
|
+
'TriggerBuildStepArgsDict',
|
35
62
|
'TriggerBuildStepVolumeArgs',
|
63
|
+
'TriggerBuildStepVolumeArgsDict',
|
36
64
|
'TriggerGitFileSourceArgs',
|
65
|
+
'TriggerGitFileSourceArgsDict',
|
37
66
|
'TriggerGithubArgs',
|
67
|
+
'TriggerGithubArgsDict',
|
38
68
|
'TriggerGithubPullRequestArgs',
|
69
|
+
'TriggerGithubPullRequestArgsDict',
|
39
70
|
'TriggerGithubPushArgs',
|
71
|
+
'TriggerGithubPushArgsDict',
|
40
72
|
'TriggerPubsubConfigArgs',
|
73
|
+
'TriggerPubsubConfigArgsDict',
|
41
74
|
'TriggerRepositoryEventConfigArgs',
|
75
|
+
'TriggerRepositoryEventConfigArgsDict',
|
42
76
|
'TriggerRepositoryEventConfigPullRequestArgs',
|
77
|
+
'TriggerRepositoryEventConfigPullRequestArgsDict',
|
43
78
|
'TriggerRepositoryEventConfigPushArgs',
|
79
|
+
'TriggerRepositoryEventConfigPushArgsDict',
|
44
80
|
'TriggerSourceToBuildArgs',
|
81
|
+
'TriggerSourceToBuildArgsDict',
|
45
82
|
'TriggerTriggerTemplateArgs',
|
83
|
+
'TriggerTriggerTemplateArgsDict',
|
46
84
|
'TriggerWebhookConfigArgs',
|
85
|
+
'TriggerWebhookConfigArgsDict',
|
47
86
|
'WorkerPoolNetworkConfigArgs',
|
87
|
+
'WorkerPoolNetworkConfigArgsDict',
|
48
88
|
'WorkerPoolWorkerConfigArgs',
|
89
|
+
'WorkerPoolWorkerConfigArgsDict',
|
49
90
|
]
|
50
91
|
|
92
|
+
MYPY = False
|
93
|
+
|
94
|
+
if not MYPY:
|
95
|
+
class BitbucketServerConfigConnectedRepositoryArgsDict(TypedDict):
|
96
|
+
project_key: pulumi.Input[str]
|
97
|
+
"""
|
98
|
+
Identifier for the project storing the repository.
|
99
|
+
"""
|
100
|
+
repo_slug: pulumi.Input[str]
|
101
|
+
"""
|
102
|
+
Identifier for the repository.
|
103
|
+
"""
|
104
|
+
elif False:
|
105
|
+
BitbucketServerConfigConnectedRepositoryArgsDict: TypeAlias = Mapping[str, Any]
|
106
|
+
|
51
107
|
@pulumi.input_type
|
52
108
|
class BitbucketServerConfigConnectedRepositoryArgs:
|
53
109
|
def __init__(__self__, *,
|
@@ -85,6 +141,26 @@ class BitbucketServerConfigConnectedRepositoryArgs:
|
|
85
141
|
pulumi.set(self, "repo_slug", value)
|
86
142
|
|
87
143
|
|
144
|
+
if not MYPY:
|
145
|
+
class BitbucketServerConfigSecretsArgsDict(TypedDict):
|
146
|
+
admin_access_token_version_name: pulumi.Input[str]
|
147
|
+
"""
|
148
|
+
The resource name for the admin access token's secret version.
|
149
|
+
"""
|
150
|
+
read_access_token_version_name: pulumi.Input[str]
|
151
|
+
"""
|
152
|
+
The resource name for the read access token's secret version.
|
153
|
+
"""
|
154
|
+
webhook_secret_version_name: pulumi.Input[str]
|
155
|
+
"""
|
156
|
+
Immutable. The resource name for the webhook secret's secret version. Once this field has been set, it cannot be changed.
|
157
|
+
Changing this field will result in deleting/ recreating the resource.
|
158
|
+
|
159
|
+
- - -
|
160
|
+
"""
|
161
|
+
elif False:
|
162
|
+
BitbucketServerConfigSecretsArgsDict: TypeAlias = Mapping[str, Any]
|
163
|
+
|
88
164
|
@pulumi.input_type
|
89
165
|
class BitbucketServerConfigSecretsArgs:
|
90
166
|
def __init__(__self__, *,
|
@@ -143,6 +219,16 @@ class BitbucketServerConfigSecretsArgs:
|
|
143
219
|
pulumi.set(self, "webhook_secret_version_name", value)
|
144
220
|
|
145
221
|
|
222
|
+
if not MYPY:
|
223
|
+
class TriggerApprovalConfigArgsDict(TypedDict):
|
224
|
+
approval_required: NotRequired[pulumi.Input[bool]]
|
225
|
+
"""
|
226
|
+
Whether or not approval is needed. If this is set on a build, it will become pending when run,
|
227
|
+
and will need to be explicitly approved to start.
|
228
|
+
"""
|
229
|
+
elif False:
|
230
|
+
TriggerApprovalConfigArgsDict: TypeAlias = Mapping[str, Any]
|
231
|
+
|
146
232
|
@pulumi.input_type
|
147
233
|
class TriggerApprovalConfigArgs:
|
148
234
|
def __init__(__self__, *,
|
@@ -168,6 +254,34 @@ class TriggerApprovalConfigArgs:
|
|
168
254
|
pulumi.set(self, "approval_required", value)
|
169
255
|
|
170
256
|
|
257
|
+
if not MYPY:
|
258
|
+
class TriggerBitbucketServerTriggerConfigArgsDict(TypedDict):
|
259
|
+
bitbucket_server_config_resource: pulumi.Input[str]
|
260
|
+
"""
|
261
|
+
The Bitbucket server config resource that this trigger config maps to.
|
262
|
+
"""
|
263
|
+
project_key: pulumi.Input[str]
|
264
|
+
"""
|
265
|
+
Key of the project that the repo is in. For example: The key for https://mybitbucket.server/projects/TEST/repos/test-repo is "TEST".
|
266
|
+
"""
|
267
|
+
repo_slug: pulumi.Input[str]
|
268
|
+
"""
|
269
|
+
Slug of the repository. A repository slug is a URL-friendly version of a repository name, automatically generated by Bitbucket for use in the URL.
|
270
|
+
For example, if the repository name is 'test repo', in the URL it would become 'test-repo' as in https://mybitbucket.server/projects/TEST/repos/test-repo.
|
271
|
+
"""
|
272
|
+
pull_request: NotRequired[pulumi.Input['TriggerBitbucketServerTriggerConfigPullRequestArgsDict']]
|
273
|
+
"""
|
274
|
+
Filter to match changes in pull requests.
|
275
|
+
Structure is documented below.
|
276
|
+
"""
|
277
|
+
push: NotRequired[pulumi.Input['TriggerBitbucketServerTriggerConfigPushArgsDict']]
|
278
|
+
"""
|
279
|
+
Filter to match changes in refs like branches, tags.
|
280
|
+
Structure is documented below.
|
281
|
+
"""
|
282
|
+
elif False:
|
283
|
+
TriggerBitbucketServerTriggerConfigArgsDict: TypeAlias = Mapping[str, Any]
|
284
|
+
|
171
285
|
@pulumi.input_type
|
172
286
|
class TriggerBitbucketServerTriggerConfigArgs:
|
173
287
|
def __init__(__self__, *,
|
@@ -258,6 +372,25 @@ class TriggerBitbucketServerTriggerConfigArgs:
|
|
258
372
|
pulumi.set(self, "push", value)
|
259
373
|
|
260
374
|
|
375
|
+
if not MYPY:
|
376
|
+
class TriggerBitbucketServerTriggerConfigPullRequestArgsDict(TypedDict):
|
377
|
+
branch: pulumi.Input[str]
|
378
|
+
"""
|
379
|
+
Regex of branches to match.
|
380
|
+
The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
|
381
|
+
"""
|
382
|
+
comment_control: NotRequired[pulumi.Input[str]]
|
383
|
+
"""
|
384
|
+
Configure builds to run whether a repository owner or collaborator need to comment /gcbrun.
|
385
|
+
Possible values are: `COMMENTS_DISABLED`, `COMMENTS_ENABLED`, `COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY`.
|
386
|
+
"""
|
387
|
+
invert_regex: NotRequired[pulumi.Input[bool]]
|
388
|
+
"""
|
389
|
+
If true, branches that do NOT match the git_ref will trigger a build.
|
390
|
+
"""
|
391
|
+
elif False:
|
392
|
+
TriggerBitbucketServerTriggerConfigPullRequestArgsDict: TypeAlias = Mapping[str, Any]
|
393
|
+
|
261
394
|
@pulumi.input_type
|
262
395
|
class TriggerBitbucketServerTriggerConfigPullRequestArgs:
|
263
396
|
def __init__(__self__, *,
|
@@ -316,6 +449,23 @@ class TriggerBitbucketServerTriggerConfigPullRequestArgs:
|
|
316
449
|
pulumi.set(self, "invert_regex", value)
|
317
450
|
|
318
451
|
|
452
|
+
if not MYPY:
|
453
|
+
class TriggerBitbucketServerTriggerConfigPushArgsDict(TypedDict):
|
454
|
+
branch: NotRequired[pulumi.Input[str]]
|
455
|
+
"""
|
456
|
+
Regex of branches to match. Specify only one of branch or tag.
|
457
|
+
"""
|
458
|
+
invert_regex: NotRequired[pulumi.Input[bool]]
|
459
|
+
"""
|
460
|
+
When true, only trigger a build if the revision regex does NOT match the gitRef regex.
|
461
|
+
"""
|
462
|
+
tag: NotRequired[pulumi.Input[str]]
|
463
|
+
"""
|
464
|
+
Regex of tags to match. Specify only one of branch or tag.
|
465
|
+
"""
|
466
|
+
elif False:
|
467
|
+
TriggerBitbucketServerTriggerConfigPushArgsDict: TypeAlias = Mapping[str, Any]
|
468
|
+
|
319
469
|
@pulumi.input_type
|
320
470
|
class TriggerBitbucketServerTriggerConfigPushArgs:
|
321
471
|
def __init__(__self__, *,
|
@@ -371,6 +521,77 @@ class TriggerBitbucketServerTriggerConfigPushArgs:
|
|
371
521
|
pulumi.set(self, "tag", value)
|
372
522
|
|
373
523
|
|
524
|
+
if not MYPY:
|
525
|
+
class TriggerBuildArgsDict(TypedDict):
|
526
|
+
steps: pulumi.Input[Sequence[pulumi.Input['TriggerBuildStepArgsDict']]]
|
527
|
+
"""
|
528
|
+
The operations to be performed on the workspace.
|
529
|
+
Structure is documented below.
|
530
|
+
"""
|
531
|
+
artifacts: NotRequired[pulumi.Input['TriggerBuildArtifactsArgsDict']]
|
532
|
+
"""
|
533
|
+
Artifacts produced by the build that should be uploaded upon successful completion of all build steps.
|
534
|
+
Structure is documented below.
|
535
|
+
"""
|
536
|
+
available_secrets: NotRequired[pulumi.Input['TriggerBuildAvailableSecretsArgsDict']]
|
537
|
+
"""
|
538
|
+
Secrets and secret environment variables.
|
539
|
+
Structure is documented below.
|
540
|
+
"""
|
541
|
+
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
542
|
+
"""
|
543
|
+
A list of images to be pushed upon the successful completion of all build steps.
|
544
|
+
The images are pushed using the builder service account's credentials.
|
545
|
+
The digests of the pushed images will be stored in the Build resource's results field.
|
546
|
+
If any of the images fail to be pushed, the build status is marked FAILURE.
|
547
|
+
"""
|
548
|
+
logs_bucket: NotRequired[pulumi.Input[str]]
|
549
|
+
"""
|
550
|
+
Google Cloud Storage bucket where logs should be written.
|
551
|
+
Logs file names will be of the format ${logsBucket}/log-${build_id}.txt.
|
552
|
+
"""
|
553
|
+
options: NotRequired[pulumi.Input['TriggerBuildOptionsArgsDict']]
|
554
|
+
"""
|
555
|
+
Special options for this build.
|
556
|
+
Structure is documented below.
|
557
|
+
"""
|
558
|
+
queue_ttl: NotRequired[pulumi.Input[str]]
|
559
|
+
"""
|
560
|
+
TTL in queue for this build. If provided and the build is enqueued longer than this value,
|
561
|
+
the build will expire and the build status will be EXPIRED.
|
562
|
+
The TTL starts ticking from createTime.
|
563
|
+
A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".
|
564
|
+
"""
|
565
|
+
secrets: NotRequired[pulumi.Input[Sequence[pulumi.Input['TriggerBuildSecretArgsDict']]]]
|
566
|
+
"""
|
567
|
+
Secrets to decrypt using Cloud Key Management Service.
|
568
|
+
Structure is documented below.
|
569
|
+
"""
|
570
|
+
source: NotRequired[pulumi.Input['TriggerBuildSourceArgsDict']]
|
571
|
+
"""
|
572
|
+
The location of the source files to build.
|
573
|
+
One of `storageSource` or `repoSource` must be provided.
|
574
|
+
Structure is documented below.
|
575
|
+
"""
|
576
|
+
substitutions: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
577
|
+
"""
|
578
|
+
Substitutions data for Build resource.
|
579
|
+
"""
|
580
|
+
tags: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
581
|
+
"""
|
582
|
+
Tags for annotation of a Build. These are not docker tags.
|
583
|
+
"""
|
584
|
+
timeout: NotRequired[pulumi.Input[str]]
|
585
|
+
"""
|
586
|
+
Amount of time that this build should be allowed to run, to second granularity.
|
587
|
+
If this amount of time elapses, work on the build will cease and the build status will be TIMEOUT.
|
588
|
+
This timeout must be equal to or greater than the sum of the timeouts for build steps within the build.
|
589
|
+
The expected format is the number of seconds followed by s.
|
590
|
+
Default time is ten minutes (600s).
|
591
|
+
"""
|
592
|
+
elif False:
|
593
|
+
TriggerBuildArgsDict: TypeAlias = Mapping[str, Any]
|
594
|
+
|
374
595
|
@pulumi.input_type
|
375
596
|
class TriggerBuildArgs:
|
376
597
|
def __init__(__self__, *,
|
@@ -605,6 +826,48 @@ class TriggerBuildArgs:
|
|
605
826
|
pulumi.set(self, "timeout", value)
|
606
827
|
|
607
828
|
|
829
|
+
if not MYPY:
|
830
|
+
class TriggerBuildArtifactsArgsDict(TypedDict):
|
831
|
+
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
832
|
+
"""
|
833
|
+
A list of images to be pushed upon the successful completion of all build steps.
|
834
|
+
The images will be pushed using the builder service account's credentials.
|
835
|
+
The digests of the pushed images will be stored in the Build resource's results field.
|
836
|
+
If any of the images fail to be pushed, the build is marked FAILURE.
|
837
|
+
"""
|
838
|
+
maven_artifacts: NotRequired[pulumi.Input[Sequence[pulumi.Input['TriggerBuildArtifactsMavenArtifactArgsDict']]]]
|
839
|
+
"""
|
840
|
+
A Maven artifact to upload to Artifact Registry upon successful completion of all build steps.
|
841
|
+
The location and generation of the uploaded objects will be stored in the Build resource's results field.
|
842
|
+
If any objects fail to be pushed, the build is marked FAILURE.
|
843
|
+
Structure is documented below.
|
844
|
+
"""
|
845
|
+
npm_packages: NotRequired[pulumi.Input[Sequence[pulumi.Input['TriggerBuildArtifactsNpmPackageArgsDict']]]]
|
846
|
+
"""
|
847
|
+
Npm package to upload to Artifact Registry upon successful completion of all build steps.
|
848
|
+
The location and generation of the uploaded objects will be stored in the Build resource's results field.
|
849
|
+
If any objects fail to be pushed, the build is marked FAILURE.
|
850
|
+
Structure is documented below.
|
851
|
+
"""
|
852
|
+
objects: NotRequired[pulumi.Input['TriggerBuildArtifactsObjectsArgsDict']]
|
853
|
+
"""
|
854
|
+
A list of objects to be uploaded to Cloud Storage upon successful completion of all build steps.
|
855
|
+
Files in the workspace matching specified paths globs will be uploaded to the
|
856
|
+
Cloud Storage location using the builder service account's credentials.
|
857
|
+
The location and generation of the uploaded objects will be stored in the Build resource's results field.
|
858
|
+
If any objects fail to be pushed, the build is marked FAILURE.
|
859
|
+
Structure is documented below.
|
860
|
+
"""
|
861
|
+
python_packages: NotRequired[pulumi.Input[Sequence[pulumi.Input['TriggerBuildArtifactsPythonPackageArgsDict']]]]
|
862
|
+
"""
|
863
|
+
Python package to upload to Artifact Registry upon successful completion of all build steps. A package can encapsulate multiple objects to be uploaded to a single repository.
|
864
|
+
The location and generation of the uploaded objects will be stored in the Build resource's results field.
|
865
|
+
If any objects fail to be pushed, the build is marked FAILURE.
|
866
|
+
Structure is documented below.
|
867
|
+
"""
|
868
|
+
elif False:
|
869
|
+
TriggerBuildArtifactsArgsDict: TypeAlias = Mapping[str, Any]
|
870
|
+
|
608
871
|
@pulumi.input_type
|
609
872
|
class TriggerBuildArtifactsArgs:
|
610
873
|
def __init__(__self__, *,
|
@@ -726,6 +989,32 @@ class TriggerBuildArtifactsArgs:
|
|
726
989
|
pulumi.set(self, "python_packages", value)
|
727
990
|
|
728
991
|
|
992
|
+
if not MYPY:
|
993
|
+
class TriggerBuildArtifactsMavenArtifactArgsDict(TypedDict):
|
994
|
+
artifact_id: NotRequired[pulumi.Input[str]]
|
995
|
+
"""
|
996
|
+
Maven artifactId value used when uploading the artifact to Artifact Registry.
|
997
|
+
"""
|
998
|
+
group_id: NotRequired[pulumi.Input[str]]
|
999
|
+
"""
|
1000
|
+
Maven groupId value used when uploading the artifact to Artifact Registry.
|
1001
|
+
"""
|
1002
|
+
path: NotRequired[pulumi.Input[str]]
|
1003
|
+
"""
|
1004
|
+
Path to an artifact in the build's workspace to be uploaded to Artifact Registry. This can be either an absolute path, e.g. /workspace/my-app/target/my-app-1.0.SNAPSHOT.jar or a relative path from /workspace, e.g. my-app/target/my-app-1.0.SNAPSHOT.jar.
|
1005
|
+
"""
|
1006
|
+
repository: NotRequired[pulumi.Input[str]]
|
1007
|
+
"""
|
1008
|
+
Artifact Registry repository, in the form "https://$REGION-maven.pkg.dev/$PROJECT/$REPOSITORY"
|
1009
|
+
Artifact in the workspace specified by path will be uploaded to Artifact Registry with this location as a prefix.
|
1010
|
+
"""
|
1011
|
+
version: NotRequired[pulumi.Input[str]]
|
1012
|
+
"""
|
1013
|
+
Maven version value used when uploading the artifact to Artifact Registry.
|
1014
|
+
"""
|
1015
|
+
elif False:
|
1016
|
+
TriggerBuildArtifactsMavenArtifactArgsDict: TypeAlias = Mapping[str, Any]
|
1017
|
+
|
729
1018
|
@pulumi.input_type
|
730
1019
|
class TriggerBuildArtifactsMavenArtifactArgs:
|
731
1020
|
def __init__(__self__, *,
|
@@ -815,6 +1104,20 @@ class TriggerBuildArtifactsMavenArtifactArgs:
|
|
815
1104
|
pulumi.set(self, "version", value)
|
816
1105
|
|
817
1106
|
|
1107
|
+
if not MYPY:
|
1108
|
+
class TriggerBuildArtifactsNpmPackageArgsDict(TypedDict):
|
1109
|
+
package_path: NotRequired[pulumi.Input[str]]
|
1110
|
+
"""
|
1111
|
+
Path to the package.json. e.g. workspace/path/to/package
|
1112
|
+
"""
|
1113
|
+
repository: NotRequired[pulumi.Input[str]]
|
1114
|
+
"""
|
1115
|
+
Artifact Registry repository, in the form "https://$REGION-npm.pkg.dev/$PROJECT/$REPOSITORY"
|
1116
|
+
Npm package in the workspace specified by path will be zipped and uploaded to Artifact Registry with this location as a prefix.
|
1117
|
+
"""
|
1118
|
+
elif False:
|
1119
|
+
TriggerBuildArtifactsNpmPackageArgsDict: TypeAlias = Mapping[str, Any]
|
1120
|
+
|
818
1121
|
@pulumi.input_type
|
819
1122
|
class TriggerBuildArtifactsNpmPackageArgs:
|
820
1123
|
def __init__(__self__, *,
|
@@ -856,6 +1159,30 @@ class TriggerBuildArtifactsNpmPackageArgs:
|
|
856
1159
|
pulumi.set(self, "repository", value)
|
857
1160
|
|
858
1161
|
|
1162
|
+
if not MYPY:
|
1163
|
+
class TriggerBuildArtifactsObjectsArgsDict(TypedDict):
|
1164
|
+
location: NotRequired[pulumi.Input[str]]
|
1165
|
+
"""
|
1166
|
+
Cloud Storage bucket and optional object path, in the form "gs://bucket/path/to/somewhere/".
|
1167
|
+
Files in the workspace matching any path pattern will be uploaded to Cloud Storage with
|
1168
|
+
this location as a prefix.
|
1169
|
+
"""
|
1170
|
+
paths: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
1171
|
+
"""
|
1172
|
+
Path globs used to match files in the build's workspace.
|
1173
|
+
"""
|
1174
|
+
timings: NotRequired[pulumi.Input[Sequence[pulumi.Input['TriggerBuildArtifactsObjectsTimingArgsDict']]]]
|
1175
|
+
"""
|
1176
|
+
(Output)
|
1177
|
+
Output only. Stores timing information for pushing all artifact objects.
|
1178
|
+
Structure is documented below.
|
1179
|
+
|
1180
|
+
|
1181
|
+
<a name="nested_timing"></a>The `timing` block contains:
|
1182
|
+
"""
|
1183
|
+
elif False:
|
1184
|
+
TriggerBuildArtifactsObjectsArgsDict: TypeAlias = Mapping[str, Any]
|
1185
|
+
|
859
1186
|
@pulumi.input_type
|
860
1187
|
class TriggerBuildArtifactsObjectsArgs:
|
861
1188
|
def __init__(__self__, *,
|
@@ -925,6 +1252,25 @@ class TriggerBuildArtifactsObjectsArgs:
|
|
925
1252
|
pulumi.set(self, "timings", value)
|
926
1253
|
|
927
1254
|
|
1255
|
+
if not MYPY:
|
1256
|
+
class TriggerBuildArtifactsObjectsTimingArgsDict(TypedDict):
|
1257
|
+
end_time: NotRequired[pulumi.Input[str]]
|
1258
|
+
"""
|
1259
|
+
End of time span.
|
1260
|
+
|
1261
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to
|
1262
|
+
nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
|
1263
|
+
"""
|
1264
|
+
start_time: NotRequired[pulumi.Input[str]]
|
1265
|
+
"""
|
1266
|
+
Start of time span.
|
1267
|
+
|
1268
|
+
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to
|
1269
|
+
nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
|
1270
|
+
"""
|
1271
|
+
elif False:
|
1272
|
+
TriggerBuildArtifactsObjectsTimingArgsDict: TypeAlias = Mapping[str, Any]
|
1273
|
+
|
928
1274
|
@pulumi.input_type
|
929
1275
|
class TriggerBuildArtifactsObjectsTimingArgs:
|
930
1276
|
def __init__(__self__, *,
|
@@ -976,6 +1322,20 @@ class TriggerBuildArtifactsObjectsTimingArgs:
|
|
976
1322
|
pulumi.set(self, "start_time", value)
|
977
1323
|
|
978
1324
|
|
1325
|
+
if not MYPY:
|
1326
|
+
class TriggerBuildArtifactsPythonPackageArgsDict(TypedDict):
|
1327
|
+
paths: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
1328
|
+
"""
|
1329
|
+
Path globs used to match files in the build's workspace. For Python/ Twine, this is usually dist/*, and sometimes additionally an .asc file.
|
1330
|
+
"""
|
1331
|
+
repository: NotRequired[pulumi.Input[str]]
|
1332
|
+
"""
|
1333
|
+
Artifact Registry repository, in the form "https://$REGION-python.pkg.dev/$PROJECT/$REPOSITORY"
|
1334
|
+
Files in the workspace matching any path pattern will be uploaded to Artifact Registry with this location as a prefix.
|
1335
|
+
"""
|
1336
|
+
elif False:
|
1337
|
+
TriggerBuildArtifactsPythonPackageArgsDict: TypeAlias = Mapping[str, Any]
|
1338
|
+
|
979
1339
|
@pulumi.input_type
|
980
1340
|
class TriggerBuildArtifactsPythonPackageArgs:
|
981
1341
|
def __init__(__self__, *,
|
@@ -1017,6 +1377,16 @@ class TriggerBuildArtifactsPythonPackageArgs:
|
|
1017
1377
|
pulumi.set(self, "repository", value)
|
1018
1378
|
|
1019
1379
|
|
1380
|
+
if not MYPY:
|
1381
|
+
class TriggerBuildAvailableSecretsArgsDict(TypedDict):
|
1382
|
+
secret_managers: pulumi.Input[Sequence[pulumi.Input['TriggerBuildAvailableSecretsSecretManagerArgsDict']]]
|
1383
|
+
"""
|
1384
|
+
Pairs a secret environment variable with a SecretVersion in Secret Manager.
|
1385
|
+
Structure is documented below.
|
1386
|
+
"""
|
1387
|
+
elif False:
|
1388
|
+
TriggerBuildAvailableSecretsArgsDict: TypeAlias = Mapping[str, Any]
|
1389
|
+
|
1020
1390
|
@pulumi.input_type
|
1021
1391
|
class TriggerBuildAvailableSecretsArgs:
|
1022
1392
|
def __init__(__self__, *,
|
@@ -1041,6 +1411,21 @@ class TriggerBuildAvailableSecretsArgs:
|
|
1041
1411
|
pulumi.set(self, "secret_managers", value)
|
1042
1412
|
|
1043
1413
|
|
1414
|
+
if not MYPY:
|
1415
|
+
class TriggerBuildAvailableSecretsSecretManagerArgsDict(TypedDict):
|
1416
|
+
env: pulumi.Input[str]
|
1417
|
+
"""
|
1418
|
+
Environment variable name to associate with the secret. Secret environment
|
1419
|
+
variables must be unique across all of a build's secrets, and must be used
|
1420
|
+
by at least one build step.
|
1421
|
+
"""
|
1422
|
+
version_name: pulumi.Input[str]
|
1423
|
+
"""
|
1424
|
+
Resource name of the SecretVersion. In format: projects/*/secrets/*/versions/*
|
1425
|
+
"""
|
1426
|
+
elif False:
|
1427
|
+
TriggerBuildAvailableSecretsSecretManagerArgsDict: TypeAlias = Mapping[str, Any]
|
1428
|
+
|
1044
1429
|
@pulumi.input_type
|
1045
1430
|
class TriggerBuildAvailableSecretsSecretManagerArgs:
|
1046
1431
|
def __init__(__self__, *,
|
@@ -1082,6 +1467,83 @@ class TriggerBuildAvailableSecretsSecretManagerArgs:
|
|
1082
1467
|
pulumi.set(self, "version_name", value)
|
1083
1468
|
|
1084
1469
|
|
1470
|
+
if not MYPY:
|
1471
|
+
class TriggerBuildOptionsArgsDict(TypedDict):
|
1472
|
+
disk_size_gb: NotRequired[pulumi.Input[int]]
|
1473
|
+
"""
|
1474
|
+
Requested disk size for the VM that runs the build. Note that this is NOT "disk free";
|
1475
|
+
some of the space will be used by the operating system and build utilities.
|
1476
|
+
Also note that this is the minimum disk size that will be allocated for the build --
|
1477
|
+
the build may run with a larger disk than requested. At present, the maximum disk size
|
1478
|
+
is 1000GB; builds that request more than the maximum are rejected with an error.
|
1479
|
+
"""
|
1480
|
+
dynamic_substitutions: NotRequired[pulumi.Input[bool]]
|
1481
|
+
"""
|
1482
|
+
Option to specify whether or not to apply bash style string operations to the substitutions.
|
1483
|
+
NOTE this is always enabled for triggered builds and cannot be overridden in the build configuration file.
|
1484
|
+
"""
|
1485
|
+
envs: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
1486
|
+
"""
|
1487
|
+
A list of global environment variable definitions that will exist for all build steps
|
1488
|
+
in this build. If a variable is defined in both globally and in a build step,
|
1489
|
+
the variable will use the build step value.
|
1490
|
+
The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".
|
1491
|
+
"""
|
1492
|
+
log_streaming_option: NotRequired[pulumi.Input[str]]
|
1493
|
+
"""
|
1494
|
+
Option to define build log streaming behavior to Google Cloud Storage.
|
1495
|
+
Possible values are: `STREAM_DEFAULT`, `STREAM_ON`, `STREAM_OFF`.
|
1496
|
+
"""
|
1497
|
+
logging: NotRequired[pulumi.Input[str]]
|
1498
|
+
"""
|
1499
|
+
Option to specify the logging mode, which determines if and where build logs are stored.
|
1500
|
+
Possible values are: `LOGGING_UNSPECIFIED`, `LEGACY`, `GCS_ONLY`, `STACKDRIVER_ONLY`, `CLOUD_LOGGING_ONLY`, `NONE`.
|
1501
|
+
"""
|
1502
|
+
machine_type: NotRequired[pulumi.Input[str]]
|
1503
|
+
"""
|
1504
|
+
Compute Engine machine type on which to run the build.
|
1505
|
+
"""
|
1506
|
+
requested_verify_option: NotRequired[pulumi.Input[str]]
|
1507
|
+
"""
|
1508
|
+
Requested verifiability options.
|
1509
|
+
Possible values are: `NOT_VERIFIED`, `VERIFIED`.
|
1510
|
+
"""
|
1511
|
+
secret_envs: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
1512
|
+
"""
|
1513
|
+
A list of global environment variables, which are encrypted using a Cloud Key Management
|
1514
|
+
Service crypto key. These values must be specified in the build's Secret. These variables
|
1515
|
+
will be available to all build steps in this build.
|
1516
|
+
"""
|
1517
|
+
source_provenance_hashes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
1518
|
+
"""
|
1519
|
+
Requested hash for SourceProvenance.
|
1520
|
+
Each value may be one of: `NONE`, `SHA256`, `MD5`.
|
1521
|
+
"""
|
1522
|
+
substitution_option: NotRequired[pulumi.Input[str]]
|
1523
|
+
"""
|
1524
|
+
Option to specify behavior when there is an error in the substitution checks.
|
1525
|
+
NOTE this is always set to ALLOW_LOOSE for triggered builds and cannot be overridden
|
1526
|
+
in the build configuration file.
|
1527
|
+
Possible values are: `MUST_MATCH`, `ALLOW_LOOSE`.
|
1528
|
+
"""
|
1529
|
+
volumes: NotRequired[pulumi.Input[Sequence[pulumi.Input['TriggerBuildOptionsVolumeArgsDict']]]]
|
1530
|
+
"""
|
1531
|
+
Global list of volumes to mount for ALL build steps
|
1532
|
+
Each volume is created as an empty volume prior to starting the build process.
|
1533
|
+
Upon completion of the build, volumes and their contents are discarded. Global
|
1534
|
+
volume names and paths cannot conflict with the volumes defined a build step.
|
1535
|
+
Using a global volume in a build with only one step is not valid as it is indicative
|
1536
|
+
of a build request with an incorrect configuration.
|
1537
|
+
Structure is documented below.
|
1538
|
+
"""
|
1539
|
+
worker_pool: NotRequired[pulumi.Input[str]]
|
1540
|
+
"""
|
1541
|
+
Option to specify a WorkerPool for the build. Format projects/{project}/workerPools/{workerPool}
|
1542
|
+
This field is experimental.
|
1543
|
+
"""
|
1544
|
+
elif False:
|
1545
|
+
TriggerBuildOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
1546
|
+
|
1085
1547
|
@pulumi.input_type
|
1086
1548
|
class TriggerBuildOptionsArgs:
|
1087
1549
|
def __init__(__self__, *,
|
@@ -1329,6 +1791,23 @@ class TriggerBuildOptionsArgs:
|
|
1329
1791
|
pulumi.set(self, "worker_pool", value)
|
1330
1792
|
|
1331
1793
|
|
1794
|
+
if not MYPY:
|
1795
|
+
class TriggerBuildOptionsVolumeArgsDict(TypedDict):
|
1796
|
+
name: NotRequired[pulumi.Input[str]]
|
1797
|
+
"""
|
1798
|
+
Name of the volume to mount.
|
1799
|
+
Volume names must be unique per build step and must be valid names for Docker volumes.
|
1800
|
+
Each named volume must be used by at least two build steps.
|
1801
|
+
"""
|
1802
|
+
path: NotRequired[pulumi.Input[str]]
|
1803
|
+
"""
|
1804
|
+
Path at which to mount the volume.
|
1805
|
+
Paths must be absolute and cannot conflict with other volume paths on the same
|
1806
|
+
build step or with certain reserved volume paths.
|
1807
|
+
"""
|
1808
|
+
elif False:
|
1809
|
+
TriggerBuildOptionsVolumeArgsDict: TypeAlias = Mapping[str, Any]
|
1810
|
+
|
1332
1811
|
@pulumi.input_type
|
1333
1812
|
class TriggerBuildOptionsVolumeArgs:
|
1334
1813
|
def __init__(__self__, *,
|
@@ -1376,6 +1855,22 @@ class TriggerBuildOptionsVolumeArgs:
|
|
1376
1855
|
pulumi.set(self, "path", value)
|
1377
1856
|
|
1378
1857
|
|
1858
|
+
if not MYPY:
|
1859
|
+
class TriggerBuildSecretArgsDict(TypedDict):
|
1860
|
+
kms_key_name: pulumi.Input[str]
|
1861
|
+
"""
|
1862
|
+
Cloud KMS key name to use to decrypt these envs.
|
1863
|
+
"""
|
1864
|
+
secret_env: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
1865
|
+
"""
|
1866
|
+
Map of environment variable name to its encrypted value.
|
1867
|
+
Secret environment variables must be unique across all of a build's secrets,
|
1868
|
+
and must be used by at least one build step. Values can be at most 64 KB in size.
|
1869
|
+
There can be at most 100 secret values across all of a build's secrets.
|
1870
|
+
"""
|
1871
|
+
elif False:
|
1872
|
+
TriggerBuildSecretArgsDict: TypeAlias = Mapping[str, Any]
|
1873
|
+
|
1379
1874
|
@pulumi.input_type
|
1380
1875
|
class TriggerBuildSecretArgs:
|
1381
1876
|
def __init__(__self__, *,
|
@@ -1420,6 +1915,21 @@ class TriggerBuildSecretArgs:
|
|
1420
1915
|
pulumi.set(self, "secret_env", value)
|
1421
1916
|
|
1422
1917
|
|
1918
|
+
if not MYPY:
|
1919
|
+
class TriggerBuildSourceArgsDict(TypedDict):
|
1920
|
+
repo_source: NotRequired[pulumi.Input['TriggerBuildSourceRepoSourceArgsDict']]
|
1921
|
+
"""
|
1922
|
+
Location of the source in a Google Cloud Source Repository.
|
1923
|
+
Structure is documented below.
|
1924
|
+
"""
|
1925
|
+
storage_source: NotRequired[pulumi.Input['TriggerBuildSourceStorageSourceArgsDict']]
|
1926
|
+
"""
|
1927
|
+
Location of the source in an archive file in Google Cloud Storage.
|
1928
|
+
Structure is documented below.
|
1929
|
+
"""
|
1930
|
+
elif False:
|
1931
|
+
TriggerBuildSourceArgsDict: TypeAlias = Mapping[str, Any]
|
1932
|
+
|
1423
1933
|
@pulumi.input_type
|
1424
1934
|
class TriggerBuildSourceArgs:
|
1425
1935
|
def __init__(__self__, *,
|
@@ -1463,6 +1973,50 @@ class TriggerBuildSourceArgs:
|
|
1463
1973
|
pulumi.set(self, "storage_source", value)
|
1464
1974
|
|
1465
1975
|
|
1976
|
+
if not MYPY:
|
1977
|
+
class TriggerBuildSourceRepoSourceArgsDict(TypedDict):
|
1978
|
+
repo_name: pulumi.Input[str]
|
1979
|
+
"""
|
1980
|
+
Name of the Cloud Source Repository.
|
1981
|
+
"""
|
1982
|
+
branch_name: NotRequired[pulumi.Input[str]]
|
1983
|
+
"""
|
1984
|
+
Regex matching branches to build. Exactly one a of branch name, tag, or commit SHA must be provided.
|
1985
|
+
The syntax of the regular expressions accepted is the syntax accepted by RE2 and
|
1986
|
+
described at https://github.com/google/re2/wiki/Syntax
|
1987
|
+
"""
|
1988
|
+
commit_sha: NotRequired[pulumi.Input[str]]
|
1989
|
+
"""
|
1990
|
+
Explicit commit SHA to build. Exactly one a of branch name, tag, or commit SHA must be provided.
|
1991
|
+
"""
|
1992
|
+
dir: NotRequired[pulumi.Input[str]]
|
1993
|
+
"""
|
1994
|
+
Directory, relative to the source root, in which to run the build.
|
1995
|
+
This must be a relative path. If a step's dir is specified and is an absolute path,
|
1996
|
+
this value is ignored for that step's execution.
|
1997
|
+
"""
|
1998
|
+
invert_regex: NotRequired[pulumi.Input[bool]]
|
1999
|
+
"""
|
2000
|
+
Only trigger a build if the revision regex does NOT match the revision regex.
|
2001
|
+
"""
|
2002
|
+
project_id: NotRequired[pulumi.Input[str]]
|
2003
|
+
"""
|
2004
|
+
ID of the project that owns the Cloud Source Repository.
|
2005
|
+
If omitted, the project ID requesting the build is assumed.
|
2006
|
+
"""
|
2007
|
+
substitutions: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
2008
|
+
"""
|
2009
|
+
Substitutions to use in a triggered build. Should only be used with triggers.run
|
2010
|
+
"""
|
2011
|
+
tag_name: NotRequired[pulumi.Input[str]]
|
2012
|
+
"""
|
2013
|
+
Regex matching tags to build. Exactly one a of branch name, tag, or commit SHA must be provided.
|
2014
|
+
The syntax of the regular expressions accepted is the syntax accepted by RE2 and
|
2015
|
+
described at https://github.com/google/re2/wiki/Syntax
|
2016
|
+
"""
|
2017
|
+
elif False:
|
2018
|
+
TriggerBuildSourceRepoSourceArgsDict: TypeAlias = Mapping[str, Any]
|
2019
|
+
|
1466
2020
|
@pulumi.input_type
|
1467
2021
|
class TriggerBuildSourceRepoSourceArgs:
|
1468
2022
|
def __init__(__self__, *,
|
@@ -1611,6 +2165,25 @@ class TriggerBuildSourceRepoSourceArgs:
|
|
1611
2165
|
pulumi.set(self, "tag_name", value)
|
1612
2166
|
|
1613
2167
|
|
2168
|
+
if not MYPY:
|
2169
|
+
class TriggerBuildSourceStorageSourceArgsDict(TypedDict):
|
2170
|
+
bucket: pulumi.Input[str]
|
2171
|
+
"""
|
2172
|
+
Google Cloud Storage bucket containing the source.
|
2173
|
+
"""
|
2174
|
+
object: pulumi.Input[str]
|
2175
|
+
"""
|
2176
|
+
Google Cloud Storage object containing the source.
|
2177
|
+
This object must be a gzipped archive file (.tar.gz) containing source to build.
|
2178
|
+
"""
|
2179
|
+
generation: NotRequired[pulumi.Input[str]]
|
2180
|
+
"""
|
2181
|
+
Google Cloud Storage generation for the object.
|
2182
|
+
If the generation is omitted, the latest generation will be used
|
2183
|
+
"""
|
2184
|
+
elif False:
|
2185
|
+
TriggerBuildSourceStorageSourceArgsDict: TypeAlias = Mapping[str, Any]
|
2186
|
+
|
1614
2187
|
@pulumi.input_type
|
1615
2188
|
class TriggerBuildSourceStorageSourceArgs:
|
1616
2189
|
def __init__(__self__, *,
|
@@ -1633,40 +2206,155 @@ class TriggerBuildSourceStorageSourceArgs:
|
|
1633
2206
|
@pulumi.getter
|
1634
2207
|
def bucket(self) -> pulumi.Input[str]:
|
1635
2208
|
"""
|
1636
|
-
Google Cloud Storage bucket containing the source.
|
2209
|
+
Google Cloud Storage bucket containing the source.
|
2210
|
+
"""
|
2211
|
+
return pulumi.get(self, "bucket")
|
2212
|
+
|
2213
|
+
@bucket.setter
|
2214
|
+
def bucket(self, value: pulumi.Input[str]):
|
2215
|
+
pulumi.set(self, "bucket", value)
|
2216
|
+
|
2217
|
+
@property
|
2218
|
+
@pulumi.getter
|
2219
|
+
def object(self) -> pulumi.Input[str]:
|
2220
|
+
"""
|
2221
|
+
Google Cloud Storage object containing the source.
|
2222
|
+
This object must be a gzipped archive file (.tar.gz) containing source to build.
|
2223
|
+
"""
|
2224
|
+
return pulumi.get(self, "object")
|
2225
|
+
|
2226
|
+
@object.setter
|
2227
|
+
def object(self, value: pulumi.Input[str]):
|
2228
|
+
pulumi.set(self, "object", value)
|
2229
|
+
|
2230
|
+
@property
|
2231
|
+
@pulumi.getter
|
2232
|
+
def generation(self) -> Optional[pulumi.Input[str]]:
|
2233
|
+
"""
|
2234
|
+
Google Cloud Storage generation for the object.
|
2235
|
+
If the generation is omitted, the latest generation will be used
|
2236
|
+
"""
|
2237
|
+
return pulumi.get(self, "generation")
|
2238
|
+
|
2239
|
+
@generation.setter
|
2240
|
+
def generation(self, value: Optional[pulumi.Input[str]]):
|
2241
|
+
pulumi.set(self, "generation", value)
|
2242
|
+
|
2243
|
+
|
2244
|
+
if not MYPY:
|
2245
|
+
class TriggerBuildStepArgsDict(TypedDict):
|
2246
|
+
name: pulumi.Input[str]
|
2247
|
+
"""
|
2248
|
+
The name of the container image that will run this particular build step.
|
2249
|
+
If the image is available in the host's Docker daemon's cache, it will be
|
2250
|
+
run directly. If not, the host will attempt to pull the image first, using
|
2251
|
+
the builder service account's credentials if necessary.
|
2252
|
+
The Docker daemon's cache will already have the latest versions of all of
|
2253
|
+
the officially supported build steps (see https://github.com/GoogleCloudPlatform/cloud-builders
|
2254
|
+
for images and examples).
|
2255
|
+
The Docker daemon will also have cached many of the layers for some popular
|
2256
|
+
images, like "ubuntu", "debian", but they will be refreshed at the time
|
2257
|
+
you attempt to use them.
|
2258
|
+
If you built an image in a previous build step, it will be stored in the
|
2259
|
+
host's Docker daemon's cache and is available to use as the name for a
|
2260
|
+
later build step.
|
2261
|
+
"""
|
2262
|
+
allow_exit_codes: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
|
2263
|
+
"""
|
2264
|
+
Allow this build step to fail without failing the entire build if and
|
2265
|
+
only if the exit code is one of the specified codes.
|
2266
|
+
If `allowFailure` is also specified, this field will take precedence.
|
2267
|
+
"""
|
2268
|
+
allow_failure: NotRequired[pulumi.Input[bool]]
|
2269
|
+
"""
|
2270
|
+
Allow this build step to fail without failing the entire build.
|
2271
|
+
If false, the entire build will fail if this step fails. Otherwise, the
|
2272
|
+
build will succeed, but this step will still have a failure status.
|
2273
|
+
Error information will be reported in the `failureDetail` field.
|
2274
|
+
`allowExitCodes` takes precedence over this field.
|
2275
|
+
"""
|
2276
|
+
args: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
2277
|
+
"""
|
2278
|
+
A list of arguments that will be presented to the step when it is started.
|
2279
|
+
If the image used to run the step's container has an entrypoint, the args
|
2280
|
+
are used as arguments to that entrypoint. If the image does not define an
|
2281
|
+
entrypoint, the first element in args is used as the entrypoint, and the
|
2282
|
+
remainder will be used as arguments.
|
2283
|
+
"""
|
2284
|
+
dir: NotRequired[pulumi.Input[str]]
|
2285
|
+
"""
|
2286
|
+
Working directory to use when running this step's container.
|
2287
|
+
If this value is a relative path, it is relative to the build's working
|
2288
|
+
directory. If this value is absolute, it may be outside the build's working
|
2289
|
+
directory, in which case the contents of the path may not be persisted
|
2290
|
+
across build step executions, unless a `volume` for that path is specified.
|
2291
|
+
If the build specifies a `RepoSource` with `dir` and a step with a
|
2292
|
+
`dir`,
|
2293
|
+
which specifies an absolute path, the `RepoSource` `dir` is ignored
|
2294
|
+
for the step's execution.
|
2295
|
+
"""
|
2296
|
+
entrypoint: NotRequired[pulumi.Input[str]]
|
2297
|
+
"""
|
2298
|
+
Entrypoint to be used instead of the build step image's
|
2299
|
+
default entrypoint.
|
2300
|
+
If unset, the image's default entrypoint is used
|
2301
|
+
"""
|
2302
|
+
envs: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
2303
|
+
"""
|
2304
|
+
A list of environment variable definitions to be used when
|
2305
|
+
running a step.
|
2306
|
+
The elements are of the form "KEY=VALUE" for the environment variable
|
2307
|
+
"KEY" being given the value "VALUE".
|
2308
|
+
"""
|
2309
|
+
id: NotRequired[pulumi.Input[str]]
|
2310
|
+
"""
|
2311
|
+
Unique identifier for this build step, used in `wait_for` to
|
2312
|
+
reference this build step as a dependency.
|
2313
|
+
"""
|
2314
|
+
script: NotRequired[pulumi.Input[str]]
|
2315
|
+
"""
|
2316
|
+
A shell script to be executed in the step.
|
2317
|
+
When script is provided, the user cannot specify the entrypoint or args.
|
2318
|
+
"""
|
2319
|
+
secret_envs: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
2320
|
+
"""
|
2321
|
+
A list of environment variables which are encrypted using
|
2322
|
+
a Cloud Key
|
2323
|
+
Management Service crypto key. These values must be specified in
|
2324
|
+
the build's `Secret`.
|
2325
|
+
"""
|
2326
|
+
timeout: NotRequired[pulumi.Input[str]]
|
2327
|
+
"""
|
2328
|
+
Time limit for executing this build step. If not defined,
|
2329
|
+
the step has no
|
2330
|
+
time limit and will be allowed to continue to run until either it
|
2331
|
+
completes or the build itself times out.
|
2332
|
+
"""
|
2333
|
+
timing: NotRequired[pulumi.Input[str]]
|
1637
2334
|
"""
|
1638
|
-
|
1639
|
-
|
1640
|
-
@bucket.setter
|
1641
|
-
def bucket(self, value: pulumi.Input[str]):
|
1642
|
-
pulumi.set(self, "bucket", value)
|
1643
|
-
|
1644
|
-
@property
|
1645
|
-
@pulumi.getter
|
1646
|
-
def object(self) -> pulumi.Input[str]:
|
2335
|
+
Output only. Stores timing information for executing this
|
2336
|
+
build step.
|
1647
2337
|
"""
|
1648
|
-
|
1649
|
-
This object must be a gzipped archive file (.tar.gz) containing source to build.
|
2338
|
+
volumes: NotRequired[pulumi.Input[Sequence[pulumi.Input['TriggerBuildStepVolumeArgsDict']]]]
|
1650
2339
|
"""
|
1651
|
-
|
1652
|
-
|
1653
|
-
|
1654
|
-
|
1655
|
-
|
1656
|
-
|
1657
|
-
|
1658
|
-
@pulumi.getter
|
1659
|
-
def generation(self) -> Optional[pulumi.Input[str]]:
|
2340
|
+
List of volumes to mount into the build step.
|
2341
|
+
Each volume is created as an empty volume prior to execution of the
|
2342
|
+
build step. Upon completion of the build, volumes and their contents
|
2343
|
+
are discarded.
|
2344
|
+
Using a named volume in only one step is not valid as it is
|
2345
|
+
indicative of a build request with an incorrect configuration.
|
2346
|
+
Structure is documented below.
|
1660
2347
|
"""
|
1661
|
-
|
1662
|
-
If the generation is omitted, the latest generation will be used
|
2348
|
+
wait_fors: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
1663
2349
|
"""
|
1664
|
-
|
1665
|
-
|
1666
|
-
|
1667
|
-
|
1668
|
-
|
1669
|
-
|
2350
|
+
The ID(s) of the step(s) that this build step depends on.
|
2351
|
+
This build step will not start until all the build steps in `wait_for`
|
2352
|
+
have completed successfully. If `wait_for` is empty, this build step
|
2353
|
+
will start when all previous build steps in the `Build.Steps` list
|
2354
|
+
have completed successfully.
|
2355
|
+
"""
|
2356
|
+
elif False:
|
2357
|
+
TriggerBuildStepArgsDict: TypeAlias = Mapping[str, Any]
|
1670
2358
|
|
1671
2359
|
@pulumi.input_type
|
1672
2360
|
class TriggerBuildStepArgs:
|
@@ -2006,6 +2694,23 @@ class TriggerBuildStepArgs:
|
|
2006
2694
|
pulumi.set(self, "wait_fors", value)
|
2007
2695
|
|
2008
2696
|
|
2697
|
+
if not MYPY:
|
2698
|
+
class TriggerBuildStepVolumeArgsDict(TypedDict):
|
2699
|
+
name: pulumi.Input[str]
|
2700
|
+
"""
|
2701
|
+
Name of the volume to mount.
|
2702
|
+
Volume names must be unique per build step and must be valid names for Docker volumes.
|
2703
|
+
Each named volume must be used by at least two build steps.
|
2704
|
+
"""
|
2705
|
+
path: pulumi.Input[str]
|
2706
|
+
"""
|
2707
|
+
Path at which to mount the volume.
|
2708
|
+
Paths must be absolute and cannot conflict with other volume paths on the same
|
2709
|
+
build step or with certain reserved volume paths.
|
2710
|
+
"""
|
2711
|
+
elif False:
|
2712
|
+
TriggerBuildStepVolumeArgsDict: TypeAlias = Mapping[str, Any]
|
2713
|
+
|
2009
2714
|
@pulumi.input_type
|
2010
2715
|
class TriggerBuildStepVolumeArgs:
|
2011
2716
|
def __init__(__self__, *,
|
@@ -2051,6 +2756,47 @@ class TriggerBuildStepVolumeArgs:
|
|
2051
2756
|
pulumi.set(self, "path", value)
|
2052
2757
|
|
2053
2758
|
|
2759
|
+
if not MYPY:
|
2760
|
+
class TriggerGitFileSourceArgsDict(TypedDict):
|
2761
|
+
path: pulumi.Input[str]
|
2762
|
+
"""
|
2763
|
+
The path of the file, with the repo root as the root of the path.
|
2764
|
+
"""
|
2765
|
+
repo_type: pulumi.Input[str]
|
2766
|
+
"""
|
2767
|
+
The type of the repo, since it may not be explicit from the repo field (e.g from a URL).
|
2768
|
+
Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB, BITBUCKET_SERVER
|
2769
|
+
Possible values are: `UNKNOWN`, `CLOUD_SOURCE_REPOSITORIES`, `GITHUB`, `BITBUCKET_SERVER`.
|
2770
|
+
"""
|
2771
|
+
bitbucket_server_config: NotRequired[pulumi.Input[str]]
|
2772
|
+
"""
|
2773
|
+
The full resource name of the bitbucket server config.
|
2774
|
+
Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
|
2775
|
+
"""
|
2776
|
+
github_enterprise_config: NotRequired[pulumi.Input[str]]
|
2777
|
+
"""
|
2778
|
+
The full resource name of the github enterprise config.
|
2779
|
+
Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}. projects/{project}/githubEnterpriseConfigs/{id}.
|
2780
|
+
"""
|
2781
|
+
repository: NotRequired[pulumi.Input[str]]
|
2782
|
+
"""
|
2783
|
+
The fully qualified resource name of the Repo API repository. The fully qualified resource name of the Repo API repository.
|
2784
|
+
If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
|
2785
|
+
"""
|
2786
|
+
revision: NotRequired[pulumi.Input[str]]
|
2787
|
+
"""
|
2788
|
+
The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the
|
2789
|
+
filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions
|
2790
|
+
If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.
|
2791
|
+
"""
|
2792
|
+
uri: NotRequired[pulumi.Input[str]]
|
2793
|
+
"""
|
2794
|
+
The URI of the repo (optional). If unspecified, the repo from which the trigger
|
2795
|
+
invocation originated is assumed to be the repo from which to read the specified path.
|
2796
|
+
"""
|
2797
|
+
elif False:
|
2798
|
+
TriggerGitFileSourceArgsDict: TypeAlias = Mapping[str, Any]
|
2799
|
+
|
2054
2800
|
@pulumi.input_type
|
2055
2801
|
class TriggerGitFileSourceArgs:
|
2056
2802
|
def __init__(__self__, *,
|
@@ -2184,6 +2930,36 @@ class TriggerGitFileSourceArgs:
|
|
2184
2930
|
pulumi.set(self, "uri", value)
|
2185
2931
|
|
2186
2932
|
|
2933
|
+
if not MYPY:
|
2934
|
+
class TriggerGithubArgsDict(TypedDict):
|
2935
|
+
enterprise_config_resource_name: NotRequired[pulumi.Input[str]]
|
2936
|
+
"""
|
2937
|
+
The resource name of the github enterprise config that should be applied to this installation.
|
2938
|
+
For example: "projects/{$projectId}/locations/{$locationId}/githubEnterpriseConfigs/{$configId}"
|
2939
|
+
"""
|
2940
|
+
name: NotRequired[pulumi.Input[str]]
|
2941
|
+
"""
|
2942
|
+
Name of the repository. For example: The name for
|
2943
|
+
https://github.com/googlecloudplatform/cloud-builders is "cloud-builders".
|
2944
|
+
"""
|
2945
|
+
owner: NotRequired[pulumi.Input[str]]
|
2946
|
+
"""
|
2947
|
+
Owner of the repository. For example: The owner for
|
2948
|
+
https://github.com/googlecloudplatform/cloud-builders is "googlecloudplatform".
|
2949
|
+
"""
|
2950
|
+
pull_request: NotRequired[pulumi.Input['TriggerGithubPullRequestArgsDict']]
|
2951
|
+
"""
|
2952
|
+
filter to match changes in pull requests. Specify only one of `pull_request` or `push`.
|
2953
|
+
Structure is documented below.
|
2954
|
+
"""
|
2955
|
+
push: NotRequired[pulumi.Input['TriggerGithubPushArgsDict']]
|
2956
|
+
"""
|
2957
|
+
filter to match changes in refs, like branches or tags. Specify only one of `pull_request` or `push`.
|
2958
|
+
Structure is documented below.
|
2959
|
+
"""
|
2960
|
+
elif False:
|
2961
|
+
TriggerGithubArgsDict: TypeAlias = Mapping[str, Any]
|
2962
|
+
|
2187
2963
|
@pulumi.input_type
|
2188
2964
|
class TriggerGithubArgs:
|
2189
2965
|
def __init__(__self__, *,
|
@@ -2281,6 +3057,25 @@ class TriggerGithubArgs:
|
|
2281
3057
|
pulumi.set(self, "push", value)
|
2282
3058
|
|
2283
3059
|
|
3060
|
+
if not MYPY:
|
3061
|
+
class TriggerGithubPullRequestArgsDict(TypedDict):
|
3062
|
+
branch: pulumi.Input[str]
|
3063
|
+
"""
|
3064
|
+
Regex of branches to match.
|
3065
|
+
The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
|
3066
|
+
"""
|
3067
|
+
comment_control: NotRequired[pulumi.Input[str]]
|
3068
|
+
"""
|
3069
|
+
Configure builds to run whether a repository owner or collaborator need to comment /gcbrun.
|
3070
|
+
Possible values are: `COMMENTS_DISABLED`, `COMMENTS_ENABLED`, `COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY`.
|
3071
|
+
"""
|
3072
|
+
invert_regex: NotRequired[pulumi.Input[bool]]
|
3073
|
+
"""
|
3074
|
+
If true, branches that do NOT match the git_ref will trigger a build.
|
3075
|
+
"""
|
3076
|
+
elif False:
|
3077
|
+
TriggerGithubPullRequestArgsDict: TypeAlias = Mapping[str, Any]
|
3078
|
+
|
2284
3079
|
@pulumi.input_type
|
2285
3080
|
class TriggerGithubPullRequestArgs:
|
2286
3081
|
def __init__(__self__, *,
|
@@ -2339,6 +3134,23 @@ class TriggerGithubPullRequestArgs:
|
|
2339
3134
|
pulumi.set(self, "invert_regex", value)
|
2340
3135
|
|
2341
3136
|
|
3137
|
+
if not MYPY:
|
3138
|
+
class TriggerGithubPushArgsDict(TypedDict):
|
3139
|
+
branch: NotRequired[pulumi.Input[str]]
|
3140
|
+
"""
|
3141
|
+
Regex of branches to match. Specify only one of branch or tag.
|
3142
|
+
"""
|
3143
|
+
invert_regex: NotRequired[pulumi.Input[bool]]
|
3144
|
+
"""
|
3145
|
+
When true, only trigger a build if the revision regex does NOT match the gitRef regex.
|
3146
|
+
"""
|
3147
|
+
tag: NotRequired[pulumi.Input[str]]
|
3148
|
+
"""
|
3149
|
+
Regex of tags to match. Specify only one of branch or tag.
|
3150
|
+
"""
|
3151
|
+
elif False:
|
3152
|
+
TriggerGithubPushArgsDict: TypeAlias = Mapping[str, Any]
|
3153
|
+
|
2342
3154
|
@pulumi.input_type
|
2343
3155
|
class TriggerGithubPushArgs:
|
2344
3156
|
def __init__(__self__, *,
|
@@ -2394,6 +3206,30 @@ class TriggerGithubPushArgs:
|
|
2394
3206
|
pulumi.set(self, "tag", value)
|
2395
3207
|
|
2396
3208
|
|
3209
|
+
if not MYPY:
|
3210
|
+
class TriggerPubsubConfigArgsDict(TypedDict):
|
3211
|
+
topic: pulumi.Input[str]
|
3212
|
+
"""
|
3213
|
+
The name of the topic from which this subscription is receiving messages.
|
3214
|
+
"""
|
3215
|
+
service_account_email: NotRequired[pulumi.Input[str]]
|
3216
|
+
"""
|
3217
|
+
Service account that will make the push request.
|
3218
|
+
"""
|
3219
|
+
state: NotRequired[pulumi.Input[str]]
|
3220
|
+
"""
|
3221
|
+
(Output)
|
3222
|
+
Potential issues with the underlying Pub/Sub subscription configuration.
|
3223
|
+
Only populated on get requests.
|
3224
|
+
"""
|
3225
|
+
subscription: NotRequired[pulumi.Input[str]]
|
3226
|
+
"""
|
3227
|
+
(Output)
|
3228
|
+
Output only. Name of the subscription.
|
3229
|
+
"""
|
3230
|
+
elif False:
|
3231
|
+
TriggerPubsubConfigArgsDict: TypeAlias = Mapping[str, Any]
|
3232
|
+
|
2397
3233
|
@pulumi.input_type
|
2398
3234
|
class TriggerPubsubConfigArgs:
|
2399
3235
|
def __init__(__self__, *,
|
@@ -2470,6 +3306,25 @@ class TriggerPubsubConfigArgs:
|
|
2470
3306
|
pulumi.set(self, "subscription", value)
|
2471
3307
|
|
2472
3308
|
|
3309
|
+
if not MYPY:
|
3310
|
+
class TriggerRepositoryEventConfigArgsDict(TypedDict):
|
3311
|
+
pull_request: NotRequired[pulumi.Input['TriggerRepositoryEventConfigPullRequestArgsDict']]
|
3312
|
+
"""
|
3313
|
+
Contains filter properties for matching Pull Requests.
|
3314
|
+
Structure is documented below.
|
3315
|
+
"""
|
3316
|
+
push: NotRequired[pulumi.Input['TriggerRepositoryEventConfigPushArgsDict']]
|
3317
|
+
"""
|
3318
|
+
Contains filter properties for matching git pushes.
|
3319
|
+
Structure is documented below.
|
3320
|
+
"""
|
3321
|
+
repository: NotRequired[pulumi.Input[str]]
|
3322
|
+
"""
|
3323
|
+
The resource name of the Repo API resource.
|
3324
|
+
"""
|
3325
|
+
elif False:
|
3326
|
+
TriggerRepositoryEventConfigArgsDict: TypeAlias = Mapping[str, Any]
|
3327
|
+
|
2473
3328
|
@pulumi.input_type
|
2474
3329
|
class TriggerRepositoryEventConfigArgs:
|
2475
3330
|
def __init__(__self__, *,
|
@@ -2529,6 +3384,25 @@ class TriggerRepositoryEventConfigArgs:
|
|
2529
3384
|
pulumi.set(self, "repository", value)
|
2530
3385
|
|
2531
3386
|
|
3387
|
+
if not MYPY:
|
3388
|
+
class TriggerRepositoryEventConfigPullRequestArgsDict(TypedDict):
|
3389
|
+
branch: NotRequired[pulumi.Input[str]]
|
3390
|
+
"""
|
3391
|
+
Regex of branches to match.
|
3392
|
+
The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
|
3393
|
+
"""
|
3394
|
+
comment_control: NotRequired[pulumi.Input[str]]
|
3395
|
+
"""
|
3396
|
+
Configure builds to run whether a repository owner or collaborator need to comment /gcbrun.
|
3397
|
+
Possible values are: `COMMENTS_DISABLED`, `COMMENTS_ENABLED`, `COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY`.
|
3398
|
+
"""
|
3399
|
+
invert_regex: NotRequired[pulumi.Input[bool]]
|
3400
|
+
"""
|
3401
|
+
If true, branches that do NOT match the git_ref will trigger a build.
|
3402
|
+
"""
|
3403
|
+
elif False:
|
3404
|
+
TriggerRepositoryEventConfigPullRequestArgsDict: TypeAlias = Mapping[str, Any]
|
3405
|
+
|
2532
3406
|
@pulumi.input_type
|
2533
3407
|
class TriggerRepositoryEventConfigPullRequestArgs:
|
2534
3408
|
def __init__(__self__, *,
|
@@ -2588,6 +3462,23 @@ class TriggerRepositoryEventConfigPullRequestArgs:
|
|
2588
3462
|
pulumi.set(self, "invert_regex", value)
|
2589
3463
|
|
2590
3464
|
|
3465
|
+
if not MYPY:
|
3466
|
+
class TriggerRepositoryEventConfigPushArgsDict(TypedDict):
|
3467
|
+
branch: NotRequired[pulumi.Input[str]]
|
3468
|
+
"""
|
3469
|
+
Regex of branches to match. Specify only one of branch or tag.
|
3470
|
+
"""
|
3471
|
+
invert_regex: NotRequired[pulumi.Input[bool]]
|
3472
|
+
"""
|
3473
|
+
When true, only trigger a build if the revision regex does NOT match the gitRef regex.
|
3474
|
+
"""
|
3475
|
+
tag: NotRequired[pulumi.Input[str]]
|
3476
|
+
"""
|
3477
|
+
Regex of tags to match. Specify only one of branch or tag.
|
3478
|
+
"""
|
3479
|
+
elif False:
|
3480
|
+
TriggerRepositoryEventConfigPushArgsDict: TypeAlias = Mapping[str, Any]
|
3481
|
+
|
2591
3482
|
@pulumi.input_type
|
2592
3483
|
class TriggerRepositoryEventConfigPushArgs:
|
2593
3484
|
def __init__(__self__, *,
|
@@ -2643,6 +3534,40 @@ class TriggerRepositoryEventConfigPushArgs:
|
|
2643
3534
|
pulumi.set(self, "tag", value)
|
2644
3535
|
|
2645
3536
|
|
3537
|
+
if not MYPY:
|
3538
|
+
class TriggerSourceToBuildArgsDict(TypedDict):
|
3539
|
+
ref: pulumi.Input[str]
|
3540
|
+
"""
|
3541
|
+
The branch or tag to use. Must start with "refs/" (required).
|
3542
|
+
"""
|
3543
|
+
repo_type: pulumi.Input[str]
|
3544
|
+
"""
|
3545
|
+
The type of the repo, since it may not be explicit from the repo field (e.g from a URL).
|
3546
|
+
Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB, BITBUCKET_SERVER
|
3547
|
+
Possible values are: `UNKNOWN`, `CLOUD_SOURCE_REPOSITORIES`, `GITHUB`, `BITBUCKET_SERVER`.
|
3548
|
+
"""
|
3549
|
+
bitbucket_server_config: NotRequired[pulumi.Input[str]]
|
3550
|
+
"""
|
3551
|
+
The full resource name of the bitbucket server config.
|
3552
|
+
Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
|
3553
|
+
"""
|
3554
|
+
github_enterprise_config: NotRequired[pulumi.Input[str]]
|
3555
|
+
"""
|
3556
|
+
The full resource name of the github enterprise config.
|
3557
|
+
Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}. projects/{project}/githubEnterpriseConfigs/{id}.
|
3558
|
+
"""
|
3559
|
+
repository: NotRequired[pulumi.Input[str]]
|
3560
|
+
"""
|
3561
|
+
The qualified resource name of the Repo API repository.
|
3562
|
+
Either uri or repository can be specified and is required.
|
3563
|
+
"""
|
3564
|
+
uri: NotRequired[pulumi.Input[str]]
|
3565
|
+
"""
|
3566
|
+
The URI of the repo.
|
3567
|
+
"""
|
3568
|
+
elif False:
|
3569
|
+
TriggerSourceToBuildArgsDict: TypeAlias = Mapping[str, Any]
|
3570
|
+
|
2646
3571
|
@pulumi.input_type
|
2647
3572
|
class TriggerSourceToBuildArgs:
|
2648
3573
|
def __init__(__self__, *,
|
@@ -2754,6 +3679,45 @@ class TriggerSourceToBuildArgs:
|
|
2754
3679
|
pulumi.set(self, "uri", value)
|
2755
3680
|
|
2756
3681
|
|
3682
|
+
if not MYPY:
|
3683
|
+
class TriggerTriggerTemplateArgsDict(TypedDict):
|
3684
|
+
branch_name: NotRequired[pulumi.Input[str]]
|
3685
|
+
"""
|
3686
|
+
Name of the branch to build. Exactly one a of branch name, tag, or commit SHA must be provided.
|
3687
|
+
This field is a regular expression.
|
3688
|
+
"""
|
3689
|
+
commit_sha: NotRequired[pulumi.Input[str]]
|
3690
|
+
"""
|
3691
|
+
Explicit commit SHA to build. Exactly one of a branch name, tag, or commit SHA must be provided.
|
3692
|
+
"""
|
3693
|
+
dir: NotRequired[pulumi.Input[str]]
|
3694
|
+
"""
|
3695
|
+
Directory, relative to the source root, in which to run the build.
|
3696
|
+
This must be a relative path. If a step's dir is specified and
|
3697
|
+
is an absolute path, this value is ignored for that step's
|
3698
|
+
execution.
|
3699
|
+
"""
|
3700
|
+
invert_regex: NotRequired[pulumi.Input[bool]]
|
3701
|
+
"""
|
3702
|
+
Only trigger a build if the revision regex does NOT match the revision regex.
|
3703
|
+
"""
|
3704
|
+
project_id: NotRequired[pulumi.Input[str]]
|
3705
|
+
"""
|
3706
|
+
ID of the project that owns the Cloud Source Repository. If
|
3707
|
+
omitted, the project ID requesting the build is assumed.
|
3708
|
+
"""
|
3709
|
+
repo_name: NotRequired[pulumi.Input[str]]
|
3710
|
+
"""
|
3711
|
+
Name of the Cloud Source Repository. If omitted, the name "default" is assumed.
|
3712
|
+
"""
|
3713
|
+
tag_name: NotRequired[pulumi.Input[str]]
|
3714
|
+
"""
|
3715
|
+
Name of the tag to build. Exactly one of a branch name, tag, or commit SHA must be provided.
|
3716
|
+
This field is a regular expression.
|
3717
|
+
"""
|
3718
|
+
elif False:
|
3719
|
+
TriggerTriggerTemplateArgsDict: TypeAlias = Mapping[str, Any]
|
3720
|
+
|
2757
3721
|
@pulumi.input_type
|
2758
3722
|
class TriggerTriggerTemplateArgs:
|
2759
3723
|
def __init__(__self__, *,
|
@@ -2885,6 +3849,21 @@ class TriggerTriggerTemplateArgs:
|
|
2885
3849
|
pulumi.set(self, "tag_name", value)
|
2886
3850
|
|
2887
3851
|
|
3852
|
+
if not MYPY:
|
3853
|
+
class TriggerWebhookConfigArgsDict(TypedDict):
|
3854
|
+
secret: pulumi.Input[str]
|
3855
|
+
"""
|
3856
|
+
Resource name for the secret required as a URL parameter.
|
3857
|
+
"""
|
3858
|
+
state: NotRequired[pulumi.Input[str]]
|
3859
|
+
"""
|
3860
|
+
(Output)
|
3861
|
+
Potential issues with the underlying Pub/Sub subscription configuration.
|
3862
|
+
Only populated on get requests.
|
3863
|
+
"""
|
3864
|
+
elif False:
|
3865
|
+
TriggerWebhookConfigArgsDict: TypeAlias = Mapping[str, Any]
|
3866
|
+
|
2888
3867
|
@pulumi.input_type
|
2889
3868
|
class TriggerWebhookConfigArgs:
|
2890
3869
|
def __init__(__self__, *,
|
@@ -2927,6 +3906,19 @@ class TriggerWebhookConfigArgs:
|
|
2927
3906
|
pulumi.set(self, "state", value)
|
2928
3907
|
|
2929
3908
|
|
3909
|
+
if not MYPY:
|
3910
|
+
class WorkerPoolNetworkConfigArgsDict(TypedDict):
|
3911
|
+
peered_network: pulumi.Input[str]
|
3912
|
+
"""
|
3913
|
+
Immutable. The network definition that the workers are peered to. If this section is left empty, the workers will be peered to `WorkerPool.project_id` on the service producer network. Must be in the format `projects/{project}/global/networks/{network}`, where `{project}` is a project number, such as `12345`, and `{network}` is the name of a VPC network in the project. See (https://cloud.google.com/cloud-build/docs/custom-workers/set-up-custom-worker-pool-environment#understanding_the_network_configuration_options)
|
3914
|
+
"""
|
3915
|
+
peered_network_ip_range: NotRequired[pulumi.Input[str]]
|
3916
|
+
"""
|
3917
|
+
Immutable. Subnet IP range within the peered network. This is specified in CIDR notation with a slash and the subnet prefix size. You can optionally specify an IP address before the subnet prefix value. e.g. `192.168.0.0/29` would specify an IP range starting at 192.168.0.0 with a prefix size of 29 bits. `/16` would specify a prefix size of 16 bits, with an automatically determined IP within the peered VPC. If unspecified, a value of `/24` will be used.
|
3918
|
+
"""
|
3919
|
+
elif False:
|
3920
|
+
WorkerPoolNetworkConfigArgsDict: TypeAlias = Mapping[str, Any]
|
3921
|
+
|
2930
3922
|
@pulumi.input_type
|
2931
3923
|
class WorkerPoolNetworkConfigArgs:
|
2932
3924
|
def __init__(__self__, *,
|
@@ -2965,6 +3957,23 @@ class WorkerPoolNetworkConfigArgs:
|
|
2965
3957
|
pulumi.set(self, "peered_network_ip_range", value)
|
2966
3958
|
|
2967
3959
|
|
3960
|
+
if not MYPY:
|
3961
|
+
class WorkerPoolWorkerConfigArgsDict(TypedDict):
|
3962
|
+
disk_size_gb: NotRequired[pulumi.Input[int]]
|
3963
|
+
"""
|
3964
|
+
Size of the disk attached to the worker, in GB. See (https://cloud.google.com/cloud-build/docs/custom-workers/worker-pool-config-file). Specify a value of up to 1000. If `0` is specified, Cloud Build will use a standard disk size.
|
3965
|
+
"""
|
3966
|
+
machine_type: NotRequired[pulumi.Input[str]]
|
3967
|
+
"""
|
3968
|
+
Machine type of a worker, such as `n1-standard-1`. See (https://cloud.google.com/cloud-build/docs/custom-workers/worker-pool-config-file). If left blank, Cloud Build will use `n1-standard-1`.
|
3969
|
+
"""
|
3970
|
+
no_external_ip: NotRequired[pulumi.Input[bool]]
|
3971
|
+
"""
|
3972
|
+
If true, workers are created without any public address, which prevents network egress to public IPs.
|
3973
|
+
"""
|
3974
|
+
elif False:
|
3975
|
+
WorkerPoolWorkerConfigArgsDict: TypeAlias = Mapping[str, Any]
|
3976
|
+
|
2968
3977
|
@pulumi.input_type
|
2969
3978
|
class WorkerPoolWorkerConfigArgs:
|
2970
3979
|
def __init__(__self__, *,
|