pulumi-gcp 7.30.0a1719470057__py3-none-any.whl → 7.30.0a1719513455__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/_inputs.py +15 -0
- pulumi_gcp/accessapproval/get_folder_service_account.py +5 -0
- pulumi_gcp/accessapproval/get_organization_service_account.py +5 -0
- pulumi_gcp/accessapproval/get_project_service_account.py +5 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +2066 -6
- pulumi_gcp/accesscontextmanager/access_level.py +37 -32
- pulumi_gcp/accesscontextmanager/access_level_condition.py +53 -48
- pulumi_gcp/accesscontextmanager/access_levels.py +70 -65
- pulumi_gcp/accesscontextmanager/access_policy.py +5 -0
- pulumi_gcp/accesscontextmanager/access_policy_iam_binding.py +24 -19
- pulumi_gcp/accesscontextmanager/access_policy_iam_member.py +24 -19
- pulumi_gcp/accesscontextmanager/access_policy_iam_policy.py +21 -16
- pulumi_gcp/accesscontextmanager/authorized_orgs_desc.py +5 -0
- pulumi_gcp/accesscontextmanager/egress_policy.py +5 -0
- pulumi_gcp/accesscontextmanager/gcp_user_access_binding.py +33 -28
- pulumi_gcp/accesscontextmanager/get_access_policy_iam_policy.py +5 -0
- pulumi_gcp/accesscontextmanager/ingress_policy.py +5 -0
- pulumi_gcp/accesscontextmanager/outputs.py +5 -0
- pulumi_gcp/accesscontextmanager/service_perimeter.py +201 -196
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_resource.py +11 -6
- pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +15 -10
- pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +15 -10
- pulumi_gcp/accesscontextmanager/service_perimeter_resource.py +11 -6
- pulumi_gcp/accesscontextmanager/service_perimeters.py +60 -55
- pulumi_gcp/activedirectory/domain.py +5 -0
- pulumi_gcp/activedirectory/domain_trust.py +5 -0
- pulumi_gcp/activedirectory/peering.py +5 -0
- pulumi_gcp/alloydb/_inputs.py +535 -0
- pulumi_gcp/alloydb/backup.py +26 -21
- pulumi_gcp/alloydb/cluster.py +177 -172
- pulumi_gcp/alloydb/get_locations.py +5 -0
- pulumi_gcp/alloydb/get_supported_database_flags.py +5 -0
- pulumi_gcp/alloydb/instance.py +77 -72
- pulumi_gcp/alloydb/outputs.py +5 -0
- pulumi_gcp/alloydb/user.py +17 -12
- pulumi_gcp/apigateway/_inputs.py +168 -0
- pulumi_gcp/apigateway/api.py +5 -0
- pulumi_gcp/apigateway/api_config.py +25 -20
- pulumi_gcp/apigateway/api_config_iam_binding.py +24 -19
- pulumi_gcp/apigateway/api_config_iam_member.py +24 -19
- pulumi_gcp/apigateway/api_config_iam_policy.py +21 -16
- pulumi_gcp/apigateway/api_iam_binding.py +24 -19
- pulumi_gcp/apigateway/api_iam_member.py +24 -19
- pulumi_gcp/apigateway/api_iam_policy.py +21 -16
- pulumi_gcp/apigateway/gateway.py +5 -0
- pulumi_gcp/apigateway/gateway_iam_binding.py +24 -19
- pulumi_gcp/apigateway/gateway_iam_member.py +24 -19
- pulumi_gcp/apigateway/gateway_iam_policy.py +21 -16
- pulumi_gcp/apigateway/get_api_config_iam_policy.py +5 -0
- pulumi_gcp/apigateway/get_api_iam_policy.py +5 -0
- pulumi_gcp/apigateway/get_gateway_iam_policy.py +5 -0
- pulumi_gcp/apigateway/outputs.py +5 -0
- pulumi_gcp/apigee/_inputs.py +508 -0
- pulumi_gcp/apigee/addons_config.py +60 -55
- pulumi_gcp/apigee/endpoint_attachment.py +5 -0
- pulumi_gcp/apigee/env_group.py +5 -0
- pulumi_gcp/apigee/env_group_attachment.py +5 -0
- pulumi_gcp/apigee/env_keystore.py +5 -0
- pulumi_gcp/apigee/env_references.py +5 -0
- pulumi_gcp/apigee/environment.py +10 -5
- pulumi_gcp/apigee/environment_iam_binding.py +24 -19
- pulumi_gcp/apigee/environment_iam_member.py +24 -19
- pulumi_gcp/apigee/environment_iam_policy.py +21 -16
- pulumi_gcp/apigee/flowhook.py +5 -0
- pulumi_gcp/apigee/get_environment_iam_policy.py +5 -0
- pulumi_gcp/apigee/instance.py +5 -0
- pulumi_gcp/apigee/instance_attachment.py +5 -0
- pulumi_gcp/apigee/keystores_aliases_key_cert_file.py +10 -5
- pulumi_gcp/apigee/keystores_aliases_pkcs12.py +7 -2
- pulumi_gcp/apigee/keystores_aliases_self_signed_cert.py +31 -26
- pulumi_gcp/apigee/nat_address.py +5 -0
- pulumi_gcp/apigee/organization.py +10 -5
- pulumi_gcp/apigee/outputs.py +5 -0
- pulumi_gcp/apigee/sharedflow.py +7 -2
- pulumi_gcp/apigee/sharedflow_deployment.py +5 -0
- pulumi_gcp/apigee/sync_authorization.py +5 -0
- pulumi_gcp/apigee/target_server.py +10 -5
- pulumi_gcp/appengine/_inputs.py +990 -7
- pulumi_gcp/appengine/application.py +17 -12
- pulumi_gcp/appengine/application_url_dispatch_rules.py +46 -41
- pulumi_gcp/appengine/domain_mapping.py +18 -13
- pulumi_gcp/appengine/engine_split_traffic.py +50 -45
- pulumi_gcp/appengine/firewall_rule.py +5 -0
- pulumi_gcp/appengine/flexible_app_version.py +130 -125
- pulumi_gcp/appengine/get_default_service_account.py +5 -0
- pulumi_gcp/appengine/outputs.py +5 -0
- pulumi_gcp/appengine/service_network_settings.py +32 -27
- pulumi_gcp/appengine/standard_app_version.py +109 -104
- pulumi_gcp/apphub/_inputs.py +370 -0
- pulumi_gcp/apphub/application.py +67 -62
- pulumi_gcp/apphub/get_application.py +5 -0
- pulumi_gcp/apphub/get_discovered_service.py +5 -0
- pulumi_gcp/apphub/get_discovered_workload.py +5 -0
- pulumi_gcp/apphub/outputs.py +5 -0
- pulumi_gcp/apphub/service.py +78 -73
- pulumi_gcp/apphub/service_project_attachment.py +5 -0
- pulumi_gcp/apphub/workload.py +14 -9
- pulumi_gcp/applicationintegration/_inputs.py +324 -0
- pulumi_gcp/applicationintegration/auth_config.py +29 -24
- pulumi_gcp/applicationintegration/client.py +24 -19
- pulumi_gcp/applicationintegration/outputs.py +5 -0
- pulumi_gcp/artifactregistry/_inputs.py +392 -0
- pulumi_gcp/artifactregistry/get_docker_image.py +5 -0
- pulumi_gcp/artifactregistry/get_repository.py +5 -0
- pulumi_gcp/artifactregistry/get_repository_iam_policy.py +5 -0
- pulumi_gcp/artifactregistry/outputs.py +5 -0
- pulumi_gcp/artifactregistry/repository.py +338 -333
- pulumi_gcp/artifactregistry/repository_iam_binding.py +24 -19
- pulumi_gcp/artifactregistry/repository_iam_member.py +24 -19
- pulumi_gcp/artifactregistry/repository_iam_policy.py +21 -16
- pulumi_gcp/artifactregistry/vpcsc_config.py +5 -0
- pulumi_gcp/assuredworkloads/_inputs.py +117 -0
- pulumi_gcp/assuredworkloads/outputs.py +5 -0
- pulumi_gcp/assuredworkloads/workload.py +86 -81
- pulumi_gcp/backupdisasterrecovery/_inputs.py +41 -0
- pulumi_gcp/backupdisasterrecovery/get_management_server.py +5 -0
- pulumi_gcp/backupdisasterrecovery/management_server.py +20 -15
- pulumi_gcp/backupdisasterrecovery/outputs.py +5 -0
- pulumi_gcp/beyondcorp/_inputs.py +86 -0
- pulumi_gcp/beyondcorp/app_connection.py +57 -52
- pulumi_gcp/beyondcorp/app_connector.py +30 -25
- pulumi_gcp/beyondcorp/app_gateway.py +7 -2
- pulumi_gcp/beyondcorp/get_app_connection.py +5 -0
- pulumi_gcp/beyondcorp/get_app_connector.py +5 -0
- pulumi_gcp/beyondcorp/get_app_gateway.py +5 -0
- pulumi_gcp/beyondcorp/outputs.py +5 -0
- pulumi_gcp/biglake/_inputs.py +64 -0
- pulumi_gcp/biglake/catalog.py +5 -0
- pulumi_gcp/biglake/database.py +18 -13
- pulumi_gcp/biglake/outputs.py +5 -0
- pulumi_gcp/biglake/table.py +36 -31
- pulumi_gcp/bigquery/_inputs.py +1930 -6
- pulumi_gcp/bigquery/app_profile.py +133 -128
- pulumi_gcp/bigquery/bi_reservation.py +10 -5
- pulumi_gcp/bigquery/capacity_commitment.py +5 -0
- pulumi_gcp/bigquery/connection.py +181 -176
- pulumi_gcp/bigquery/connection_iam_binding.py +24 -19
- pulumi_gcp/bigquery/connection_iam_member.py +24 -19
- pulumi_gcp/bigquery/connection_iam_policy.py +21 -16
- pulumi_gcp/bigquery/data_transfer_config.py +20 -15
- pulumi_gcp/bigquery/dataset.py +132 -127
- pulumi_gcp/bigquery/dataset_access.py +72 -67
- pulumi_gcp/bigquery/dataset_iam_binding.py +24 -19
- pulumi_gcp/bigquery/dataset_iam_member.py +24 -19
- pulumi_gcp/bigquery/dataset_iam_policy.py +21 -16
- pulumi_gcp/bigquery/get_connection_iam_policy.py +5 -0
- pulumi_gcp/bigquery/get_dataset.py +5 -0
- pulumi_gcp/bigquery/get_dataset_iam_policy.py +5 -0
- pulumi_gcp/bigquery/get_default_service_account.py +5 -0
- pulumi_gcp/bigquery/get_table_iam_policy.py +5 -0
- pulumi_gcp/bigquery/iam_binding.py +102 -97
- pulumi_gcp/bigquery/iam_member.py +102 -97
- pulumi_gcp/bigquery/iam_policy.py +97 -92
- pulumi_gcp/bigquery/job.py +229 -224
- pulumi_gcp/bigquery/outputs.py +5 -0
- pulumi_gcp/bigquery/reservation.py +16 -11
- pulumi_gcp/bigquery/reservation_assignment.py +5 -0
- pulumi_gcp/bigquery/routine.py +114 -109
- pulumi_gcp/bigquery/table.py +67 -62
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +97 -0
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +5 -0
- pulumi_gcp/bigqueryanalyticshub/data_exchange_iam_binding.py +24 -19
- pulumi_gcp/bigqueryanalyticshub/data_exchange_iam_member.py +24 -19
- pulumi_gcp/bigqueryanalyticshub/data_exchange_iam_policy.py +21 -16
- pulumi_gcp/bigqueryanalyticshub/get_data_exchange_iam_policy.py +5 -0
- pulumi_gcp/bigqueryanalyticshub/get_listing_iam_policy.py +5 -0
- pulumi_gcp/bigqueryanalyticshub/listing.py +45 -40
- pulumi_gcp/bigqueryanalyticshub/listing_iam_binding.py +24 -19
- pulumi_gcp/bigqueryanalyticshub/listing_iam_member.py +24 -19
- pulumi_gcp/bigqueryanalyticshub/listing_iam_policy.py +21 -16
- pulumi_gcp/bigqueryanalyticshub/outputs.py +5 -0
- pulumi_gcp/bigquerydatapolicy/_inputs.py +40 -0
- pulumi_gcp/bigquerydatapolicy/data_policy.py +24 -19
- pulumi_gcp/bigquerydatapolicy/data_policy_iam_binding.py +24 -19
- pulumi_gcp/bigquerydatapolicy/data_policy_iam_member.py +24 -19
- pulumi_gcp/bigquerydatapolicy/data_policy_iam_policy.py +21 -16
- pulumi_gcp/bigquerydatapolicy/get_iam_policy.py +5 -0
- pulumi_gcp/bigquerydatapolicy/outputs.py +5 -0
- pulumi_gcp/bigtable/_inputs.py +202 -0
- pulumi_gcp/bigtable/authorized_view.py +10 -5
- pulumi_gcp/bigtable/gc_policy.py +45 -40
- pulumi_gcp/bigtable/get_instance_iam_policy.py +5 -0
- pulumi_gcp/bigtable/get_table_iam_policy.py +5 -0
- pulumi_gcp/bigtable/instance.py +52 -47
- pulumi_gcp/bigtable/instance_iam_binding.py +24 -19
- pulumi_gcp/bigtable/instance_iam_member.py +24 -19
- pulumi_gcp/bigtable/instance_iam_policy.py +21 -16
- pulumi_gcp/bigtable/outputs.py +5 -0
- pulumi_gcp/bigtable/table.py +39 -34
- pulumi_gcp/bigtable/table_iam_binding.py +24 -19
- pulumi_gcp/bigtable/table_iam_member.py +24 -19
- pulumi_gcp/bigtable/table_iam_policy.py +21 -16
- pulumi_gcp/billing/_inputs.py +257 -0
- pulumi_gcp/billing/account_iam_binding.py +24 -19
- pulumi_gcp/billing/account_iam_member.py +24 -19
- pulumi_gcp/billing/account_iam_policy.py +21 -16
- pulumi_gcp/billing/budget.py +225 -220
- pulumi_gcp/billing/get_account_iam_policy.py +5 -0
- pulumi_gcp/billing/outputs.py +5 -0
- pulumi_gcp/billing/project_info.py +5 -0
- pulumi_gcp/billing/sub_account.py +5 -0
- pulumi_gcp/binaryauthorization/_inputs.py +199 -0
- pulumi_gcp/binaryauthorization/attestor.py +68 -63
- pulumi_gcp/binaryauthorization/attestor_iam_binding.py +24 -19
- pulumi_gcp/binaryauthorization/attestor_iam_member.py +24 -19
- pulumi_gcp/binaryauthorization/attestor_iam_policy.py +21 -16
- pulumi_gcp/binaryauthorization/get_attestor_iam_policy.py +5 -0
- pulumi_gcp/binaryauthorization/outputs.py +5 -0
- pulumi_gcp/binaryauthorization/policy.py +88 -83
- pulumi_gcp/blockchainnodeengine/_inputs.py +131 -0
- pulumi_gcp/blockchainnodeengine/blockchain_nodes.py +62 -57
- pulumi_gcp/blockchainnodeengine/outputs.py +5 -0
- pulumi_gcp/certificateauthority/_inputs.py +2157 -36
- pulumi_gcp/certificateauthority/authority.py +398 -393
- pulumi_gcp/certificateauthority/ca_pool.py +189 -184
- pulumi_gcp/certificateauthority/ca_pool_iam_binding.py +102 -97
- pulumi_gcp/certificateauthority/ca_pool_iam_member.py +102 -97
- pulumi_gcp/certificateauthority/ca_pool_iam_policy.py +97 -92
- pulumi_gcp/certificateauthority/certificate.py +636 -631
- pulumi_gcp/certificateauthority/certificate_template.py +134 -129
- pulumi_gcp/certificateauthority/certificate_template_iam_binding.py +102 -97
- pulumi_gcp/certificateauthority/certificate_template_iam_member.py +102 -97
- pulumi_gcp/certificateauthority/certificate_template_iam_policy.py +97 -92
- pulumi_gcp/certificateauthority/get_authority.py +5 -0
- pulumi_gcp/certificateauthority/get_ca_pool_iam_policy.py +5 -0
- pulumi_gcp/certificateauthority/get_certificate_template_iam_policy.py +5 -0
- pulumi_gcp/certificateauthority/outputs.py +5 -0
- pulumi_gcp/certificatemanager/_inputs.py +256 -0
- pulumi_gcp/certificatemanager/certificate.py +203 -198
- pulumi_gcp/certificatemanager/certificate_issuance_config.py +76 -71
- pulumi_gcp/certificatemanager/certificate_map.py +7 -2
- pulumi_gcp/certificatemanager/certificate_map_entry.py +13 -8
- pulumi_gcp/certificatemanager/dns_authorization.py +7 -2
- pulumi_gcp/certificatemanager/get_certificate_map.py +5 -0
- pulumi_gcp/certificatemanager/outputs.py +5 -0
- pulumi_gcp/certificatemanager/trust_config.py +26 -21
- pulumi_gcp/cloudasset/_inputs.py +151 -0
- pulumi_gcp/cloudasset/folder_feed.py +35 -30
- pulumi_gcp/cloudasset/get_resources_search_all.py +5 -0
- pulumi_gcp/cloudasset/get_search_all_resources.py +5 -0
- pulumi_gcp/cloudasset/organization_feed.py +35 -30
- pulumi_gcp/cloudasset/outputs.py +5 -0
- pulumi_gcp/cloudasset/project_feed.py +35 -30
- pulumi_gcp/cloudbuild/_inputs.py +1038 -29
- pulumi_gcp/cloudbuild/bitbucket_server_config.py +61 -56
- pulumi_gcp/cloudbuild/get_trigger.py +5 -0
- pulumi_gcp/cloudbuild/outputs.py +5 -0
- pulumi_gcp/cloudbuild/trigger.py +733 -728
- pulumi_gcp/cloudbuild/worker_pool.py +43 -38
- pulumi_gcp/cloudbuildv2/_inputs.py +335 -0
- pulumi_gcp/cloudbuildv2/connection.py +106 -101
- pulumi_gcp/cloudbuildv2/connection_iam_binding.py +24 -19
- pulumi_gcp/cloudbuildv2/connection_iam_member.py +24 -19
- pulumi_gcp/cloudbuildv2/connection_iam_policy.py +21 -16
- pulumi_gcp/cloudbuildv2/get_connection_iam_policy.py +5 -0
- pulumi_gcp/cloudbuildv2/outputs.py +5 -0
- pulumi_gcp/cloudbuildv2/repository.py +67 -62
- pulumi_gcp/clouddeploy/_inputs.py +700 -0
- pulumi_gcp/clouddeploy/automation.py +101 -96
- pulumi_gcp/clouddeploy/custom_target_type.py +88 -83
- pulumi_gcp/clouddeploy/custom_target_type_iam_binding.py +8 -3
- pulumi_gcp/clouddeploy/custom_target_type_iam_member.py +8 -3
- pulumi_gcp/clouddeploy/custom_target_type_iam_policy.py +5 -0
- pulumi_gcp/clouddeploy/delivery_pipeline.py +162 -157
- pulumi_gcp/clouddeploy/delivery_pipeline_iam_binding.py +8 -3
- pulumi_gcp/clouddeploy/delivery_pipeline_iam_member.py +8 -3
- pulumi_gcp/clouddeploy/delivery_pipeline_iam_policy.py +5 -0
- pulumi_gcp/clouddeploy/get_custom_target_type_iam_policy.py +5 -0
- pulumi_gcp/clouddeploy/get_delivery_pipeline_iam_policy.py +5 -0
- pulumi_gcp/clouddeploy/get_target_iam_policy.py +5 -0
- pulumi_gcp/clouddeploy/outputs.py +5 -0
- pulumi_gcp/clouddeploy/target.py +69 -64
- pulumi_gcp/clouddeploy/target_iam_binding.py +8 -3
- pulumi_gcp/clouddeploy/target_iam_member.py +8 -3
- pulumi_gcp/clouddeploy/target_iam_policy.py +5 -0
- pulumi_gcp/clouddomains/_inputs.py +372 -0
- pulumi_gcp/clouddomains/outputs.py +5 -0
- pulumi_gcp/clouddomains/registration.py +121 -116
- pulumi_gcp/cloudfunctions/_inputs.py +132 -0
- pulumi_gcp/cloudfunctions/function.py +25 -20
- pulumi_gcp/cloudfunctions/function_iam_binding.py +24 -19
- pulumi_gcp/cloudfunctions/function_iam_member.py +24 -19
- pulumi_gcp/cloudfunctions/function_iam_policy.py +21 -16
- pulumi_gcp/cloudfunctions/get_function.py +5 -0
- pulumi_gcp/cloudfunctions/get_function_iam_policy.py +5 -0
- pulumi_gcp/cloudfunctions/outputs.py +5 -0
- pulumi_gcp/cloudfunctionsv2/_inputs.py +357 -0
- pulumi_gcp/cloudfunctionsv2/function.py +514 -509
- pulumi_gcp/cloudfunctionsv2/function_iam_binding.py +24 -19
- pulumi_gcp/cloudfunctionsv2/function_iam_member.py +24 -19
- pulumi_gcp/cloudfunctionsv2/function_iam_policy.py +21 -16
- pulumi_gcp/cloudfunctionsv2/get_function.py +5 -0
- pulumi_gcp/cloudfunctionsv2/get_function_iam_policy.py +5 -0
- pulumi_gcp/cloudfunctionsv2/outputs.py +5 -0
- pulumi_gcp/cloudidentity/_inputs.py +161 -0
- pulumi_gcp/cloudidentity/get_group_lookup.py +9 -4
- pulumi_gcp/cloudidentity/get_group_memberships.py +5 -0
- pulumi_gcp/cloudidentity/get_groups.py +5 -0
- pulumi_gcp/cloudidentity/group.py +18 -13
- pulumi_gcp/cloudidentity/group_membership.py +68 -63
- pulumi_gcp/cloudidentity/outputs.py +5 -0
- pulumi_gcp/cloudids/endpoint.py +5 -0
- pulumi_gcp/cloudquota/_inputs.py +44 -0
- pulumi_gcp/cloudquota/get_s_quota_info.py +5 -0
- pulumi_gcp/cloudquota/get_s_quota_infos.py +5 -0
- pulumi_gcp/cloudquota/outputs.py +5 -0
- pulumi_gcp/cloudquota/s_quota_preference.py +16 -11
- pulumi_gcp/cloudrun/_inputs.py +1165 -15
- pulumi_gcp/cloudrun/domain_mapping.py +49 -44
- pulumi_gcp/cloudrun/get_locations.py +5 -0
- pulumi_gcp/cloudrun/get_service.py +5 -0
- pulumi_gcp/cloudrun/get_service_iam_policy.py +5 -0
- pulumi_gcp/cloudrun/iam_binding.py +24 -19
- pulumi_gcp/cloudrun/iam_member.py +24 -19
- pulumi_gcp/cloudrun/iam_policy.py +21 -16
- pulumi_gcp/cloudrun/outputs.py +5 -0
- pulumi_gcp/cloudrun/service.py +270 -265
- pulumi_gcp/cloudrunv2/_inputs.py +1338 -5
- pulumi_gcp/cloudrunv2/get_job.py +5 -0
- pulumi_gcp/cloudrunv2/get_job_iam_policy.py +5 -0
- pulumi_gcp/cloudrunv2/get_service.py +5 -0
- pulumi_gcp/cloudrunv2/get_service_iam_policy.py +5 -0
- pulumi_gcp/cloudrunv2/job.py +287 -282
- pulumi_gcp/cloudrunv2/job_iam_binding.py +24 -19
- pulumi_gcp/cloudrunv2/job_iam_member.py +24 -19
- pulumi_gcp/cloudrunv2/job_iam_policy.py +21 -16
- pulumi_gcp/cloudrunv2/outputs.py +5 -0
- pulumi_gcp/cloudrunv2/service.py +437 -432
- pulumi_gcp/cloudrunv2/service_iam_binding.py +24 -19
- pulumi_gcp/cloudrunv2/service_iam_member.py +24 -19
- pulumi_gcp/cloudrunv2/service_iam_policy.py +21 -16
- pulumi_gcp/cloudscheduler/_inputs.py +193 -0
- pulumi_gcp/cloudscheduler/job.py +127 -122
- pulumi_gcp/cloudscheduler/outputs.py +5 -0
- pulumi_gcp/cloudtasks/_inputs.py +134 -0
- pulumi_gcp/cloudtasks/get_queue_iam_policy.py +5 -0
- pulumi_gcp/cloudtasks/outputs.py +5 -0
- pulumi_gcp/cloudtasks/queue.py +63 -58
- pulumi_gcp/cloudtasks/queue_iam_binding.py +24 -19
- pulumi_gcp/cloudtasks/queue_iam_member.py +24 -19
- pulumi_gcp/cloudtasks/queue_iam_policy.py +21 -16
- pulumi_gcp/composer/_inputs.py +566 -0
- pulumi_gcp/composer/environment.py +15 -10
- pulumi_gcp/composer/get_environment.py +5 -0
- pulumi_gcp/composer/get_image_versions.py +15 -10
- pulumi_gcp/composer/get_user_workloads_config_map.py +15 -10
- pulumi_gcp/composer/get_user_workloads_secret.py +15 -10
- pulumi_gcp/composer/outputs.py +5 -0
- pulumi_gcp/composer/user_workloads_config_map.py +15 -10
- pulumi_gcp/composer/user_workloads_secret.py +15 -10
- pulumi_gcp/compute/_inputs.py +13512 -145
- pulumi_gcp/compute/address.py +27 -22
- pulumi_gcp/compute/attached_disk.py +21 -16
- pulumi_gcp/compute/autoscaler.py +98 -93
- pulumi_gcp/compute/backend_bucket.py +30 -25
- pulumi_gcp/compute/backend_bucket_iam_binding.py +8 -3
- pulumi_gcp/compute/backend_bucket_iam_member.py +8 -3
- pulumi_gcp/compute/backend_bucket_iam_policy.py +5 -0
- pulumi_gcp/compute/backend_bucket_signed_url_key.py +5 -0
- pulumi_gcp/compute/backend_service.py +204 -199
- pulumi_gcp/compute/backend_service_iam_binding.py +10 -5
- pulumi_gcp/compute/backend_service_iam_member.py +10 -5
- pulumi_gcp/compute/backend_service_iam_policy.py +5 -0
- pulumi_gcp/compute/backend_service_signed_url_key.py +35 -30
- pulumi_gcp/compute/ca_external_account_key.py +5 -0
- pulumi_gcp/compute/disk.py +54 -49
- pulumi_gcp/compute/disk_async_replication.py +10 -5
- pulumi_gcp/compute/disk_iam_binding.py +24 -19
- pulumi_gcp/compute/disk_iam_member.py +24 -19
- pulumi_gcp/compute/disk_iam_policy.py +21 -16
- pulumi_gcp/compute/disk_resource_policy_attachment.py +21 -16
- pulumi_gcp/compute/external_vpn_gateway.py +24 -19
- pulumi_gcp/compute/firewall.py +42 -37
- pulumi_gcp/compute/firewall_policy.py +5 -0
- pulumi_gcp/compute/firewall_policy_association.py +5 -0
- pulumi_gcp/compute/firewall_policy_rule.py +44 -39
- pulumi_gcp/compute/forwarding_rule.py +248 -243
- pulumi_gcp/compute/get_address.py +5 -0
- pulumi_gcp/compute/get_addresses.py +5 -0
- pulumi_gcp/compute/get_backend_bucket.py +5 -0
- pulumi_gcp/compute/get_backend_bucket_iam_policy.py +5 -0
- pulumi_gcp/compute/get_backend_service.py +5 -0
- pulumi_gcp/compute/get_backend_service_iam_policy.py +5 -0
- pulumi_gcp/compute/get_certificate.py +5 -0
- pulumi_gcp/compute/get_default_service_account.py +5 -0
- pulumi_gcp/compute/get_disk.py +13 -8
- pulumi_gcp/compute/get_disk_iam_policy.py +5 -0
- pulumi_gcp/compute/get_forwarding_rule.py +5 -0
- pulumi_gcp/compute/get_forwarding_rules.py +5 -0
- pulumi_gcp/compute/get_global_address.py +5 -0
- pulumi_gcp/compute/get_global_forwarding_rule.py +5 -0
- pulumi_gcp/compute/get_hc_vpn_gateway.py +5 -0
- pulumi_gcp/compute/get_health_check.py +5 -0
- pulumi_gcp/compute/get_image.py +15 -10
- pulumi_gcp/compute/get_image_iam_policy.py +5 -0
- pulumi_gcp/compute/get_instance.py +5 -0
- pulumi_gcp/compute/get_instance_group.py +5 -0
- pulumi_gcp/compute/get_instance_group_manager.py +5 -0
- pulumi_gcp/compute/get_instance_iam_policy.py +5 -0
- pulumi_gcp/compute/get_instance_serial_port.py +29 -24
- pulumi_gcp/compute/get_instance_template.py +5 -0
- pulumi_gcp/compute/get_lbip_ranges.py +5 -0
- pulumi_gcp/compute/get_machine_image_iam_policy.py +5 -0
- pulumi_gcp/compute/get_machine_types.py +5 -0
- pulumi_gcp/compute/get_netblock_ip_ranges.py +5 -0
- pulumi_gcp/compute/get_network.py +5 -0
- pulumi_gcp/compute/get_network_endpoint_group.py +5 -0
- pulumi_gcp/compute/get_network_peering.py +5 -0
- pulumi_gcp/compute/get_networks.py +5 -0
- pulumi_gcp/compute/get_node_types.py +5 -0
- pulumi_gcp/compute/get_region_backend_service_iam_policy.py +5 -0
- pulumi_gcp/compute/get_region_disk.py +5 -0
- pulumi_gcp/compute/get_region_disk_iam_policy.py +5 -0
- pulumi_gcp/compute/get_region_instance_group.py +5 -0
- pulumi_gcp/compute/get_region_instance_template.py +5 -0
- pulumi_gcp/compute/get_region_network_endpoint_group.py +5 -0
- pulumi_gcp/compute/get_region_ssl_certificate.py +5 -0
- pulumi_gcp/compute/get_regions.py +5 -0
- pulumi_gcp/compute/get_reservation.py +5 -0
- pulumi_gcp/compute/get_resource_policy.py +5 -0
- pulumi_gcp/compute/get_router.py +5 -0
- pulumi_gcp/compute/get_router_nat.py +5 -0
- pulumi_gcp/compute/get_router_status.py +5 -0
- pulumi_gcp/compute/get_security_policy.py +5 -0
- pulumi_gcp/compute/get_snapshot.py +5 -0
- pulumi_gcp/compute/get_snapshot_iam_policy.py +5 -0
- pulumi_gcp/compute/get_ssl_policy.py +5 -0
- pulumi_gcp/compute/get_subnetwork.py +5 -0
- pulumi_gcp/compute/get_subnetwork_iam_policy.py +5 -0
- pulumi_gcp/compute/get_subnetworks.py +5 -0
- pulumi_gcp/compute/get_vpn_gateway.py +5 -0
- pulumi_gcp/compute/get_zones.py +5 -0
- pulumi_gcp/compute/global_address.py +5 -0
- pulumi_gcp/compute/global_forwarding_rule.py +211 -206
- pulumi_gcp/compute/global_network_endpoint.py +5 -0
- pulumi_gcp/compute/global_network_endpoint_group.py +5 -0
- pulumi_gcp/compute/ha_vpn_gateway.py +32 -27
- pulumi_gcp/compute/health_check.py +174 -169
- pulumi_gcp/compute/http_health_check.py +5 -0
- pulumi_gcp/compute/https_health_check.py +5 -0
- pulumi_gcp/compute/image.py +50 -45
- pulumi_gcp/compute/image_iam_binding.py +102 -97
- pulumi_gcp/compute/image_iam_member.py +102 -97
- pulumi_gcp/compute/image_iam_policy.py +97 -92
- pulumi_gcp/compute/instance.py +104 -99
- pulumi_gcp/compute/instance_from_machine_image.py +61 -56
- pulumi_gcp/compute/instance_from_template.py +88 -83
- pulumi_gcp/compute/instance_group.py +26 -21
- pulumi_gcp/compute/instance_group_manager.py +138 -133
- pulumi_gcp/compute/instance_group_membership.py +21 -16
- pulumi_gcp/compute/instance_group_named_port.py +13 -8
- pulumi_gcp/compute/instance_iam_binding.py +102 -97
- pulumi_gcp/compute/instance_iam_member.py +102 -97
- pulumi_gcp/compute/instance_iam_policy.py +97 -92
- pulumi_gcp/compute/instance_settings.py +16 -11
- pulumi_gcp/compute/instance_template.py +147 -142
- pulumi_gcp/compute/interconnect.py +14 -9
- pulumi_gcp/compute/interconnect_attachment.py +19 -14
- pulumi_gcp/compute/machine_image.py +48 -43
- pulumi_gcp/compute/machine_image_iam_binding.py +102 -97
- pulumi_gcp/compute/machine_image_iam_member.py +102 -97
- pulumi_gcp/compute/machine_image_iam_policy.py +97 -92
- pulumi_gcp/compute/managed_ssl_certificate.py +40 -35
- pulumi_gcp/compute/manged_ssl_certificate.py +40 -35
- pulumi_gcp/compute/network.py +5 -0
- pulumi_gcp/compute/network_attachment.py +29 -24
- pulumi_gcp/compute/network_edge_security_service.py +5 -0
- pulumi_gcp/compute/network_endpoint.py +23 -18
- pulumi_gcp/compute/network_endpoint_group.py +5 -0
- pulumi_gcp/compute/network_endpoint_list.py +66 -61
- pulumi_gcp/compute/network_firewall_policy.py +5 -0
- pulumi_gcp/compute/network_firewall_policy_association.py +5 -0
- pulumi_gcp/compute/network_firewall_policy_rule.py +41 -36
- pulumi_gcp/compute/network_peering.py +5 -0
- pulumi_gcp/compute/network_peering_routes_config.py +41 -36
- pulumi_gcp/compute/node_group.py +50 -45
- pulumi_gcp/compute/node_template.py +21 -16
- pulumi_gcp/compute/organization_security_policy.py +5 -0
- pulumi_gcp/compute/organization_security_policy_association.py +31 -26
- pulumi_gcp/compute/organization_security_policy_rule.py +36 -31
- pulumi_gcp/compute/outputs.py +5 -0
- pulumi_gcp/compute/packet_mirroring.py +83 -78
- pulumi_gcp/compute/per_instance_config.py +56 -51
- pulumi_gcp/compute/project_cloud_armor_tier.py +5 -0
- pulumi_gcp/compute/project_default_network_tier.py +5 -0
- pulumi_gcp/compute/project_metadata.py +5 -0
- pulumi_gcp/compute/project_metadata_item.py +5 -0
- pulumi_gcp/compute/public_advertised_prefix.py +5 -0
- pulumi_gcp/compute/public_delegated_prefix.py +5 -0
- pulumi_gcp/compute/region_autoscaler.py +60 -55
- pulumi_gcp/compute/region_backend_service.py +203 -198
- pulumi_gcp/compute/region_backend_service_iam_binding.py +10 -5
- pulumi_gcp/compute/region_backend_service_iam_member.py +10 -5
- pulumi_gcp/compute/region_backend_service_iam_policy.py +5 -0
- pulumi_gcp/compute/region_commitment.py +47 -42
- pulumi_gcp/compute/region_disk.py +49 -44
- pulumi_gcp/compute/region_disk_iam_binding.py +24 -19
- pulumi_gcp/compute/region_disk_iam_member.py +24 -19
- pulumi_gcp/compute/region_disk_iam_policy.py +21 -16
- pulumi_gcp/compute/region_disk_resource_policy_attachment.py +21 -16
- pulumi_gcp/compute/region_health_check.py +174 -169
- pulumi_gcp/compute/region_instance_group_manager.py +134 -129
- pulumi_gcp/compute/region_instance_template.py +55 -50
- pulumi_gcp/compute/region_network_endpoint.py +23 -18
- pulumi_gcp/compute/region_network_endpoint_group.py +135 -130
- pulumi_gcp/compute/region_network_firewall_policy.py +5 -0
- pulumi_gcp/compute/region_network_firewall_policy_association.py +5 -0
- pulumi_gcp/compute/region_network_firewall_policy_rule.py +41 -36
- pulumi_gcp/compute/region_per_instance_config.py +66 -61
- pulumi_gcp/compute/region_security_policy.py +49 -44
- pulumi_gcp/compute/region_security_policy_rule.py +161 -156
- pulumi_gcp/compute/region_ssl_certificate.py +5 -0
- pulumi_gcp/compute/region_ssl_policy.py +5 -0
- pulumi_gcp/compute/region_target_http_proxy.py +43 -38
- pulumi_gcp/compute/region_target_https_proxy.py +97 -92
- pulumi_gcp/compute/region_target_tcp_proxy.py +11 -6
- pulumi_gcp/compute/region_url_map.py +824 -819
- pulumi_gcp/compute/reservation.py +29 -24
- pulumi_gcp/compute/resource_policy.py +153 -148
- pulumi_gcp/compute/route.py +17 -12
- pulumi_gcp/compute/router.py +40 -35
- pulumi_gcp/compute/router_interface.py +5 -0
- pulumi_gcp/compute/router_nat.py +98 -93
- pulumi_gcp/compute/router_peer.py +78 -73
- pulumi_gcp/compute/router_status.py +5 -0
- pulumi_gcp/compute/security_policy.py +201 -196
- pulumi_gcp/compute/security_policy_rule.py +80 -75
- pulumi_gcp/compute/security_scan_config.py +15 -10
- pulumi_gcp/compute/service_attachment.py +60 -55
- pulumi_gcp/compute/shared_vpc_host_project.py +5 -0
- pulumi_gcp/compute/shared_vpc_service_project.py +5 -0
- pulumi_gcp/compute/snapshot.py +15 -10
- pulumi_gcp/compute/snapshot_iam_binding.py +24 -19
- pulumi_gcp/compute/snapshot_iam_member.py +24 -19
- pulumi_gcp/compute/snapshot_iam_policy.py +21 -16
- pulumi_gcp/compute/ssl_certificate.py +5 -0
- pulumi_gcp/compute/ssl_policy.py +5 -0
- pulumi_gcp/compute/subnetwork.py +33 -28
- pulumi_gcp/compute/subnetwork_iam_binding.py +102 -97
- pulumi_gcp/compute/subnetwork_iam_member.py +102 -97
- pulumi_gcp/compute/subnetwork_iam_policy.py +97 -92
- pulumi_gcp/compute/target_grpc_proxy.py +129 -124
- pulumi_gcp/compute/target_http_proxy.py +61 -56
- pulumi_gcp/compute/target_https_proxy.py +133 -128
- pulumi_gcp/compute/target_instance.py +63 -58
- pulumi_gcp/compute/target_pool.py +5 -0
- pulumi_gcp/compute/target_ssl_proxy.py +11 -6
- pulumi_gcp/compute/target_tcp_proxy.py +11 -6
- pulumi_gcp/compute/url_map.py +731 -726
- pulumi_gcp/compute/vpn_gateway.py +5 -0
- pulumi_gcp/compute/vpn_tunnel.py +5 -0
- pulumi_gcp/config/__init__.pyi +5 -0
- pulumi_gcp/config/outputs.py +5 -0
- pulumi_gcp/config/vars.py +5 -0
- pulumi_gcp/container/_inputs.py +5502 -823
- pulumi_gcp/container/attached_cluster.py +128 -123
- pulumi_gcp/container/aws_cluster.py +359 -354
- pulumi_gcp/container/aws_node_pool.py +554 -549
- pulumi_gcp/container/azure_client.py +5 -0
- pulumi_gcp/container/azure_cluster.py +133 -128
- pulumi_gcp/container/azure_node_pool.py +115 -110
- pulumi_gcp/container/cluster.py +224 -219
- pulumi_gcp/container/get_attached_install_manifest.py +5 -0
- pulumi_gcp/container/get_attached_versions.py +5 -0
- pulumi_gcp/container/get_aws_versions.py +5 -0
- pulumi_gcp/container/get_azure_versions.py +5 -0
- pulumi_gcp/container/get_cluster.py +5 -0
- pulumi_gcp/container/get_engine_versions.py +5 -0
- pulumi_gcp/container/get_registry_image.py +5 -0
- pulumi_gcp/container/get_registry_repository.py +5 -0
- pulumi_gcp/container/node_pool.py +78 -73
- pulumi_gcp/container/outputs.py +5 -0
- pulumi_gcp/container/registry.py +5 -0
- pulumi_gcp/containeranalysis/_inputs.py +121 -0
- pulumi_gcp/containeranalysis/get_note_iam_policy.py +5 -0
- pulumi_gcp/containeranalysis/note.py +49 -44
- pulumi_gcp/containeranalysis/note_iam_binding.py +24 -19
- pulumi_gcp/containeranalysis/note_iam_member.py +24 -19
- pulumi_gcp/containeranalysis/note_iam_policy.py +21 -16
- pulumi_gcp/containeranalysis/occurence.py +10 -5
- pulumi_gcp/containeranalysis/outputs.py +5 -0
- pulumi_gcp/databasemigrationservice/_inputs.py +578 -0
- pulumi_gcp/databasemigrationservice/connection_profile.py +188 -183
- pulumi_gcp/databasemigrationservice/outputs.py +5 -0
- pulumi_gcp/databasemigrationservice/private_connection.py +20 -15
- pulumi_gcp/datacatalog/_inputs.py +318 -0
- pulumi_gcp/datacatalog/entry.py +20 -15
- pulumi_gcp/datacatalog/entry_group.py +5 -0
- pulumi_gcp/datacatalog/entry_group_iam_binding.py +24 -19
- pulumi_gcp/datacatalog/entry_group_iam_member.py +24 -19
- pulumi_gcp/datacatalog/entry_group_iam_policy.py +21 -16
- pulumi_gcp/datacatalog/get_entry_group_iam_policy.py +5 -0
- pulumi_gcp/datacatalog/get_policy_tag_iam_policy.py +5 -0
- pulumi_gcp/datacatalog/get_tag_template_iam_policy.py +5 -0
- pulumi_gcp/datacatalog/get_taxonomy_iam_policy.py +5 -0
- pulumi_gcp/datacatalog/outputs.py +5 -0
- pulumi_gcp/datacatalog/policy_tag.py +5 -0
- pulumi_gcp/datacatalog/policy_tag_iam_binding.py +24 -19
- pulumi_gcp/datacatalog/policy_tag_iam_member.py +24 -19
- pulumi_gcp/datacatalog/policy_tag_iam_policy.py +21 -16
- pulumi_gcp/datacatalog/tag.py +264 -259
- pulumi_gcp/datacatalog/tag_template.py +76 -71
- pulumi_gcp/datacatalog/tag_template_iam_binding.py +24 -19
- pulumi_gcp/datacatalog/tag_template_iam_member.py +24 -19
- pulumi_gcp/datacatalog/tag_template_iam_policy.py +21 -16
- pulumi_gcp/datacatalog/taxonomy.py +5 -0
- pulumi_gcp/datacatalog/taxonomy_iam_binding.py +24 -19
- pulumi_gcp/datacatalog/taxonomy_iam_member.py +24 -19
- pulumi_gcp/datacatalog/taxonomy_iam_policy.py +21 -16
- pulumi_gcp/dataflow/_inputs.py +316 -0
- pulumi_gcp/dataflow/flex_template_job.py +5 -0
- pulumi_gcp/dataflow/job.py +5 -0
- pulumi_gcp/dataflow/outputs.py +5 -0
- pulumi_gcp/dataflow/pipeline.py +75 -70
- pulumi_gcp/dataform/_inputs.py +251 -0
- pulumi_gcp/dataform/get_repository_iam_policy.py +5 -0
- pulumi_gcp/dataform/outputs.py +5 -0
- pulumi_gcp/dataform/repository.py +41 -36
- pulumi_gcp/dataform/repository_iam_binding.py +8 -3
- pulumi_gcp/dataform/repository_iam_member.py +8 -3
- pulumi_gcp/dataform/repository_iam_policy.py +5 -0
- pulumi_gcp/dataform/repository_release_config.py +58 -53
- pulumi_gcp/dataform/repository_workflow_config.py +94 -89
- pulumi_gcp/datafusion/_inputs.py +64 -0
- pulumi_gcp/datafusion/get_instance_iam_policy.py +5 -0
- pulumi_gcp/datafusion/instance.py +55 -50
- pulumi_gcp/datafusion/outputs.py +5 -0
- pulumi_gcp/dataloss/_inputs.py +6566 -114
- pulumi_gcp/dataloss/outputs.py +5 -0
- pulumi_gcp/dataloss/prevention_deidentify_template.py +226 -221
- pulumi_gcp/dataloss/prevention_discovery_config.py +22 -17
- pulumi_gcp/dataloss/prevention_inspect_template.py +442 -437
- pulumi_gcp/dataloss/prevention_job_trigger.py +701 -696
- pulumi_gcp/dataloss/prevention_stored_info_type.py +62 -57
- pulumi_gcp/dataplex/_inputs.py +1212 -6
- pulumi_gcp/dataplex/aspect_type.py +5 -0
- pulumi_gcp/dataplex/aspect_type_iam_binding.py +24 -19
- pulumi_gcp/dataplex/aspect_type_iam_member.py +24 -19
- pulumi_gcp/dataplex/aspect_type_iam_policy.py +21 -16
- pulumi_gcp/dataplex/asset.py +47 -42
- pulumi_gcp/dataplex/asset_iam_binding.py +24 -19
- pulumi_gcp/dataplex/asset_iam_member.py +24 -19
- pulumi_gcp/dataplex/asset_iam_policy.py +21 -16
- pulumi_gcp/dataplex/datascan.py +289 -284
- pulumi_gcp/dataplex/datascan_iam_binding.py +24 -19
- pulumi_gcp/dataplex/datascan_iam_member.py +24 -19
- pulumi_gcp/dataplex/datascan_iam_policy.py +21 -16
- pulumi_gcp/dataplex/entry_group.py +5 -0
- pulumi_gcp/dataplex/entry_group_iam_binding.py +24 -19
- pulumi_gcp/dataplex/entry_group_iam_member.py +24 -19
- pulumi_gcp/dataplex/entry_group_iam_policy.py +21 -16
- pulumi_gcp/dataplex/entry_type.py +16 -11
- pulumi_gcp/dataplex/entry_type_iam_binding.py +24 -19
- pulumi_gcp/dataplex/entry_type_iam_member.py +24 -19
- pulumi_gcp/dataplex/entry_type_iam_policy.py +21 -16
- pulumi_gcp/dataplex/get_aspect_type_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_asset_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_datascan_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_entry_group_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_entry_type_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_lake_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_task_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_zone_iam_policy.py +5 -0
- pulumi_gcp/dataplex/lake.py +14 -9
- pulumi_gcp/dataplex/lake_iam_binding.py +24 -19
- pulumi_gcp/dataplex/lake_iam_member.py +24 -19
- pulumi_gcp/dataplex/lake_iam_policy.py +21 -16
- pulumi_gcp/dataplex/outputs.py +5 -0
- pulumi_gcp/dataplex/task.py +173 -168
- pulumi_gcp/dataplex/task_iam_binding.py +24 -19
- pulumi_gcp/dataplex/task_iam_member.py +24 -19
- pulumi_gcp/dataplex/task_iam_policy.py +21 -16
- pulumi_gcp/dataplex/zone.py +29 -24
- pulumi_gcp/dataplex/zone_iam_binding.py +24 -19
- pulumi_gcp/dataplex/zone_iam_member.py +24 -19
- pulumi_gcp/dataplex/zone_iam_policy.py +21 -16
- pulumi_gcp/dataproc/_inputs.py +3214 -39
- pulumi_gcp/dataproc/autoscaling_policy.py +50 -45
- pulumi_gcp/dataproc/autoscaling_policy_iam_binding.py +24 -19
- pulumi_gcp/dataproc/autoscaling_policy_iam_member.py +24 -19
- pulumi_gcp/dataproc/autoscaling_policy_iam_policy.py +21 -16
- pulumi_gcp/dataproc/cluster.py +109 -104
- pulumi_gcp/dataproc/cluster_iam_binding.py +24 -19
- pulumi_gcp/dataproc/cluster_iam_member.py +24 -19
- pulumi_gcp/dataproc/cluster_iam_policy.py +21 -16
- pulumi_gcp/dataproc/get_autoscaling_policy_iam_policy.py +5 -0
- pulumi_gcp/dataproc/get_cluster_iam_policy.py +5 -0
- pulumi_gcp/dataproc/get_job_iam_policy.py +5 -0
- pulumi_gcp/dataproc/get_metastore_federation_iam_policy.py +5 -0
- pulumi_gcp/dataproc/get_metastore_service.py +5 -0
- pulumi_gcp/dataproc/get_metastore_service_iam_policy.py +5 -0
- pulumi_gcp/dataproc/job.py +95 -90
- pulumi_gcp/dataproc/job_iam_binding.py +24 -19
- pulumi_gcp/dataproc/job_iam_member.py +24 -19
- pulumi_gcp/dataproc/job_iam_policy.py +21 -16
- pulumi_gcp/dataproc/metastore_federation.py +56 -51
- pulumi_gcp/dataproc/metastore_federation_iam_binding.py +24 -19
- pulumi_gcp/dataproc/metastore_federation_iam_member.py +24 -19
- pulumi_gcp/dataproc/metastore_federation_iam_policy.py +21 -16
- pulumi_gcp/dataproc/metastore_service.py +239 -234
- pulumi_gcp/dataproc/metastore_service_iam_binding.py +24 -19
- pulumi_gcp/dataproc/metastore_service_iam_member.py +24 -19
- pulumi_gcp/dataproc/metastore_service_iam_policy.py +21 -16
- pulumi_gcp/dataproc/outputs.py +5 -0
- pulumi_gcp/dataproc/workflow_template.py +112 -107
- pulumi_gcp/datastore/_inputs.py +22 -0
- pulumi_gcp/datastore/data_store_index.py +26 -21
- pulumi_gcp/datastore/outputs.py +5 -0
- pulumi_gcp/datastream/_inputs.py +1631 -35
- pulumi_gcp/datastream/connection_profile.py +251 -246
- pulumi_gcp/datastream/get_static_ips.py +5 -0
- pulumi_gcp/datastream/outputs.py +5 -0
- pulumi_gcp/datastream/private_connection.py +20 -15
- pulumi_gcp/datastream/stream.py +777 -772
- pulumi_gcp/deploymentmanager/_inputs.py +66 -0
- pulumi_gcp/deploymentmanager/deployment.py +33 -28
- pulumi_gcp/deploymentmanager/outputs.py +5 -0
- pulumi_gcp/diagflow/_inputs.py +2590 -41
- pulumi_gcp/diagflow/agent.py +5 -0
- pulumi_gcp/diagflow/cx_agent.py +75 -70
- pulumi_gcp/diagflow/cx_entity_type.py +37 -32
- pulumi_gcp/diagflow/cx_environment.py +22 -17
- pulumi_gcp/diagflow/cx_flow.py +455 -450
- pulumi_gcp/diagflow/cx_intent.py +55 -50
- pulumi_gcp/diagflow/cx_page.py +718 -713
- pulumi_gcp/diagflow/cx_security_settings.py +69 -64
- pulumi_gcp/diagflow/cx_test_case.py +197 -192
- pulumi_gcp/diagflow/cx_version.py +13 -8
- pulumi_gcp/diagflow/cx_webhook.py +27 -22
- pulumi_gcp/diagflow/entity_type.py +26 -21
- pulumi_gcp/diagflow/fulfillment.py +27 -22
- pulumi_gcp/diagflow/intent.py +7 -2
- pulumi_gcp/diagflow/outputs.py +5 -0
- pulumi_gcp/discoveryengine/_inputs.py +183 -0
- pulumi_gcp/discoveryengine/chat_engine.py +37 -32
- pulumi_gcp/discoveryengine/data_store.py +32 -27
- pulumi_gcp/discoveryengine/outputs.py +5 -0
- pulumi_gcp/discoveryengine/search_engine.py +17 -12
- pulumi_gcp/dns/_inputs.py +589 -0
- pulumi_gcp/dns/dns_managed_zone_iam_binding.py +24 -19
- pulumi_gcp/dns/dns_managed_zone_iam_member.py +24 -19
- pulumi_gcp/dns/dns_managed_zone_iam_policy.py +21 -16
- pulumi_gcp/dns/get_keys.py +13 -8
- pulumi_gcp/dns/get_managed_zone.py +5 -0
- pulumi_gcp/dns/get_managed_zone_iam_policy.py +5 -0
- pulumi_gcp/dns/get_managed_zones.py +5 -0
- pulumi_gcp/dns/get_record_set.py +5 -0
- pulumi_gcp/dns/managed_zone.py +183 -178
- pulumi_gcp/dns/outputs.py +5 -0
- pulumi_gcp/dns/policy.py +47 -42
- pulumi_gcp/dns/record_set.py +100 -95
- pulumi_gcp/dns/response_policy.py +81 -76
- pulumi_gcp/dns/response_policy_rule.py +38 -33
- pulumi_gcp/edgecontainer/_inputs.py +464 -0
- pulumi_gcp/edgecontainer/cluster.py +152 -147
- pulumi_gcp/edgecontainer/node_pool.py +109 -104
- pulumi_gcp/edgecontainer/outputs.py +5 -0
- pulumi_gcp/edgecontainer/vpn_connection.py +36 -31
- pulumi_gcp/edgenetwork/network.py +5 -0
- pulumi_gcp/edgenetwork/subnet.py +5 -0
- pulumi_gcp/endpoints/_inputs.py +101 -0
- pulumi_gcp/endpoints/consumers_iam_binding.py +8 -3
- pulumi_gcp/endpoints/consumers_iam_member.py +8 -3
- pulumi_gcp/endpoints/consumers_iam_policy.py +5 -0
- pulumi_gcp/endpoints/get_service_consumers_iam_policy.py +5 -0
- pulumi_gcp/endpoints/get_service_iam_policy.py +5 -0
- pulumi_gcp/endpoints/outputs.py +5 -0
- pulumi_gcp/endpoints/service.py +9 -4
- pulumi_gcp/endpoints/service_iam_binding.py +24 -19
- pulumi_gcp/endpoints/service_iam_member.py +24 -19
- pulumi_gcp/endpoints/service_iam_policy.py +21 -16
- pulumi_gcp/essentialcontacts/_inputs.py +313 -0
- pulumi_gcp/essentialcontacts/contact.py +5 -0
- pulumi_gcp/essentialcontacts/document_ai_processor.py +5 -0
- pulumi_gcp/essentialcontacts/document_ai_processor_default_version.py +5 -0
- pulumi_gcp/essentialcontacts/document_ai_warehouse_document_schema.py +40 -35
- pulumi_gcp/essentialcontacts/document_ai_warehouse_location.py +5 -0
- pulumi_gcp/essentialcontacts/outputs.py +5 -0
- pulumi_gcp/eventarc/_inputs.py +145 -0
- pulumi_gcp/eventarc/channel.py +5 -0
- pulumi_gcp/eventarc/google_channel_config.py +5 -0
- pulumi_gcp/eventarc/outputs.py +5 -0
- pulumi_gcp/eventarc/trigger.py +78 -73
- pulumi_gcp/filestore/_inputs.py +108 -0
- pulumi_gcp/filestore/backup.py +23 -18
- pulumi_gcp/filestore/get_instance.py +5 -0
- pulumi_gcp/filestore/instance.py +107 -102
- pulumi_gcp/filestore/outputs.py +5 -0
- pulumi_gcp/filestore/snapshot.py +37 -32
- pulumi_gcp/firebase/_inputs.py +511 -0
- pulumi_gcp/firebase/android_app.py +21 -16
- pulumi_gcp/firebase/app_check_app_attest_config.py +5 -0
- pulumi_gcp/firebase/app_check_debug_token.py +5 -0
- pulumi_gcp/firebase/app_check_device_check_config.py +5 -0
- pulumi_gcp/firebase/app_check_play_integrity_config.py +5 -0
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +5 -0
- pulumi_gcp/firebase/app_check_recaptcha_v3_config.py +5 -0
- pulumi_gcp/firebase/app_check_service_config.py +5 -0
- pulumi_gcp/firebase/apple_app.py +15 -10
- pulumi_gcp/firebase/database_instance.py +5 -0
- pulumi_gcp/firebase/extensions_instance.py +30 -25
- pulumi_gcp/firebase/get_android_app.py +5 -0
- pulumi_gcp/firebase/get_android_app_config.py +5 -0
- pulumi_gcp/firebase/get_apple_app.py +5 -0
- pulumi_gcp/firebase/get_apple_app_config.py +5 -0
- pulumi_gcp/firebase/get_hosting_channel.py +5 -0
- pulumi_gcp/firebase/get_web_app.py +5 -0
- pulumi_gcp/firebase/get_web_app_config.py +5 -0
- pulumi_gcp/firebase/hosting_channel.py +5 -0
- pulumi_gcp/firebase/hosting_custom_domain.py +39 -34
- pulumi_gcp/firebase/hosting_release.py +33 -28
- pulumi_gcp/firebase/hosting_site.py +5 -0
- pulumi_gcp/firebase/hosting_version.py +76 -71
- pulumi_gcp/firebase/outputs.py +5 -0
- pulumi_gcp/firebase/project.py +5 -0
- pulumi_gcp/firebase/storage_bucket.py +5 -0
- pulumi_gcp/firebase/web_app.py +15 -10
- pulumi_gcp/firebaserules/_inputs.py +51 -0
- pulumi_gcp/firebaserules/outputs.py +5 -0
- pulumi_gcp/firebaserules/release.py +5 -0
- pulumi_gcp/firebaserules/ruleset.py +40 -35
- pulumi_gcp/firestore/_inputs.py +154 -0
- pulumi_gcp/firestore/backup_schedule.py +23 -18
- pulumi_gcp/firestore/database.py +22 -17
- pulumi_gcp/firestore/document.py +5 -0
- pulumi_gcp/firestore/field.py +63 -58
- pulumi_gcp/firestore/index.py +72 -67
- pulumi_gcp/firestore/outputs.py +5 -0
- pulumi_gcp/folder/_inputs.py +165 -0
- pulumi_gcp/folder/access_approval_settings.py +28 -23
- pulumi_gcp/folder/get_iam_policy.py +5 -0
- pulumi_gcp/folder/get_organization_policy.py +5 -0
- pulumi_gcp/folder/iam_audit_config.py +130 -125
- pulumi_gcp/folder/iam_binding.py +8 -3
- pulumi_gcp/folder/iam_member.py +130 -125
- pulumi_gcp/folder/iam_policy.py +125 -120
- pulumi_gcp/folder/organization_policy.py +54 -49
- pulumi_gcp/folder/outputs.py +5 -0
- pulumi_gcp/gkebackup/_inputs.py +694 -0
- pulumi_gcp/gkebackup/backup_plan.py +436 -431
- pulumi_gcp/gkebackup/backup_plan_iam_binding.py +24 -19
- pulumi_gcp/gkebackup/backup_plan_iam_member.py +24 -19
- pulumi_gcp/gkebackup/backup_plan_iam_policy.py +21 -16
- pulumi_gcp/gkebackup/get_backup_plan_iam_policy.py +5 -0
- pulumi_gcp/gkebackup/get_restore_plan_iam_policy.py +5 -0
- pulumi_gcp/gkebackup/outputs.py +5 -0
- pulumi_gcp/gkebackup/restore_plan.py +580 -575
- pulumi_gcp/gkebackup/restore_plan_iam_binding.py +578 -573
- pulumi_gcp/gkebackup/restore_plan_iam_member.py +578 -573
- pulumi_gcp/gkebackup/restore_plan_iam_policy.py +575 -570
- pulumi_gcp/gkehub/_inputs.py +1204 -6
- pulumi_gcp/gkehub/feature.py +319 -314
- pulumi_gcp/gkehub/feature_iam_binding.py +24 -19
- pulumi_gcp/gkehub/feature_iam_member.py +24 -19
- pulumi_gcp/gkehub/feature_iam_policy.py +21 -16
- pulumi_gcp/gkehub/feature_membership.py +184 -179
- pulumi_gcp/gkehub/fleet.py +24 -19
- pulumi_gcp/gkehub/get_feature_iam_policy.py +5 -0
- pulumi_gcp/gkehub/get_membership_iam_policy.py +5 -0
- pulumi_gcp/gkehub/get_scope_iam_policy.py +5 -0
- pulumi_gcp/gkehub/membership.py +57 -52
- pulumi_gcp/gkehub/membership_binding.py +17 -12
- pulumi_gcp/gkehub/membership_iam_binding.py +24 -19
- pulumi_gcp/gkehub/membership_iam_member.py +24 -19
- pulumi_gcp/gkehub/membership_iam_policy.py +21 -16
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +28 -23
- pulumi_gcp/gkehub/namespace.py +7 -2
- pulumi_gcp/gkehub/outputs.py +5 -0
- pulumi_gcp/gkehub/scope.py +7 -2
- pulumi_gcp/gkehub/scope_iam_binding.py +24 -19
- pulumi_gcp/gkehub/scope_iam_member.py +24 -19
- pulumi_gcp/gkehub/scope_iam_policy.py +21 -16
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +18 -13
- pulumi_gcp/gkeonprem/_inputs.py +2318 -18
- pulumi_gcp/gkeonprem/bare_metal_admin_cluster.py +335 -330
- pulumi_gcp/gkeonprem/bare_metal_cluster.py +528 -523
- pulumi_gcp/gkeonprem/bare_metal_node_pool.py +262 -257
- pulumi_gcp/gkeonprem/outputs.py +5 -0
- pulumi_gcp/gkeonprem/v_mware_cluster.py +399 -394
- pulumi_gcp/gkeonprem/v_mware_node_pool.py +89 -84
- pulumi_gcp/healthcare/_inputs.py +316 -0
- pulumi_gcp/healthcare/consent_store.py +5 -0
- pulumi_gcp/healthcare/consent_store_iam_binding.py +24 -19
- pulumi_gcp/healthcare/consent_store_iam_member.py +24 -19
- pulumi_gcp/healthcare/consent_store_iam_policy.py +21 -16
- pulumi_gcp/healthcare/dataset.py +5 -0
- pulumi_gcp/healthcare/dataset_iam_binding.py +24 -19
- pulumi_gcp/healthcare/dataset_iam_member.py +24 -19
- pulumi_gcp/healthcare/dataset_iam_policy.py +21 -16
- pulumi_gcp/healthcare/dicom_store.py +39 -34
- pulumi_gcp/healthcare/dicom_store_iam_binding.py +24 -19
- pulumi_gcp/healthcare/dicom_store_iam_member.py +24 -19
- pulumi_gcp/healthcare/dicom_store_iam_policy.py +21 -16
- pulumi_gcp/healthcare/fhir_store.py +62 -57
- pulumi_gcp/healthcare/fhir_store_iam_binding.py +24 -19
- pulumi_gcp/healthcare/fhir_store_iam_member.py +24 -19
- pulumi_gcp/healthcare/fhir_store_iam_policy.py +21 -16
- pulumi_gcp/healthcare/get_consent_store_iam_policy.py +5 -0
- pulumi_gcp/healthcare/get_dataset_iam_policy.py +5 -0
- pulumi_gcp/healthcare/get_dicom_store_iam_policy.py +5 -0
- pulumi_gcp/healthcare/get_fhir_store_iam_policy.py +5 -0
- pulumi_gcp/healthcare/get_hl7_v2_store_iam_policy.py +5 -0
- pulumi_gcp/healthcare/hl7_store.py +46 -41
- pulumi_gcp/healthcare/hl7_store_iam_binding.py +24 -19
- pulumi_gcp/healthcare/hl7_store_iam_member.py +24 -19
- pulumi_gcp/healthcare/hl7_store_iam_policy.py +21 -16
- pulumi_gcp/healthcare/outputs.py +5 -0
- pulumi_gcp/iam/_inputs.py +433 -0
- pulumi_gcp/iam/access_boundary_policy.py +54 -49
- pulumi_gcp/iam/deny_policy.py +56 -51
- pulumi_gcp/iam/get_rule.py +5 -0
- pulumi_gcp/iam/get_testable_permissions.py +5 -0
- pulumi_gcp/iam/get_workload_identity_pool.py +5 -0
- pulumi_gcp/iam/get_workload_identity_pool_provider.py +5 -0
- pulumi_gcp/iam/outputs.py +5 -0
- pulumi_gcp/iam/workforce_pool.py +22 -17
- pulumi_gcp/iam/workforce_pool_provider.py +184 -179
- pulumi_gcp/iam/workload_identity_pool.py +5 -0
- pulumi_gcp/iam/workload_identity_pool_provider.py +68 -63
- pulumi_gcp/iap/_inputs.py +411 -0
- pulumi_gcp/iap/app_engine_service_iam_binding.py +102 -97
- pulumi_gcp/iap/app_engine_service_iam_member.py +102 -97
- pulumi_gcp/iap/app_engine_service_iam_policy.py +97 -92
- pulumi_gcp/iap/app_engine_version_iam_binding.py +102 -97
- pulumi_gcp/iap/app_engine_version_iam_member.py +102 -97
- pulumi_gcp/iap/app_engine_version_iam_policy.py +97 -92
- pulumi_gcp/iap/brand.py +5 -0
- pulumi_gcp/iap/client.py +5 -0
- pulumi_gcp/iap/get_app_engine_service_iam_policy.py +5 -0
- pulumi_gcp/iap/get_app_engine_version_iam_policy.py +5 -0
- pulumi_gcp/iap/get_client.py +5 -0
- pulumi_gcp/iap/get_tunnel_dest_group_iam_policy.py +5 -0
- pulumi_gcp/iap/get_tunnel_iam_policy.py +5 -0
- pulumi_gcp/iap/get_tunnel_instance_iam_policy.py +5 -0
- pulumi_gcp/iap/get_web_backend_service_iam_policy.py +5 -0
- pulumi_gcp/iap/get_web_iam_policy.py +5 -0
- pulumi_gcp/iap/get_web_region_backend_service_iam_policy.py +5 -0
- pulumi_gcp/iap/get_web_type_app_engine_iam_policy.py +5 -0
- pulumi_gcp/iap/get_web_type_compute_iam_policy.py +5 -0
- pulumi_gcp/iap/outputs.py +5 -0
- pulumi_gcp/iap/tunnel_dest_group.py +5 -0
- pulumi_gcp/iap/tunnel_dest_group_iam_binding.py +102 -97
- pulumi_gcp/iap/tunnel_dest_group_iam_member.py +102 -97
- pulumi_gcp/iap/tunnel_dest_group_iam_policy.py +97 -92
- pulumi_gcp/iap/tunnel_iam_binding.py +102 -97
- pulumi_gcp/iap/tunnel_iam_member.py +102 -97
- pulumi_gcp/iap/tunnel_iam_policy.py +97 -92
- pulumi_gcp/iap/tunnel_instance_iam_binding.py +102 -97
- pulumi_gcp/iap/tunnel_instance_iam_member.py +102 -97
- pulumi_gcp/iap/tunnel_instance_iam_policy.py +97 -92
- pulumi_gcp/iap/web_backend_service_iam_binding.py +102 -97
- pulumi_gcp/iap/web_backend_service_iam_member.py +102 -97
- pulumi_gcp/iap/web_backend_service_iam_policy.py +97 -92
- pulumi_gcp/iap/web_iam_binding.py +102 -97
- pulumi_gcp/iap/web_iam_member.py +102 -97
- pulumi_gcp/iap/web_iam_policy.py +97 -92
- pulumi_gcp/iap/web_region_backend_service_iam_binding.py +102 -97
- pulumi_gcp/iap/web_region_backend_service_iam_member.py +102 -97
- pulumi_gcp/iap/web_region_backend_service_iam_policy.py +97 -92
- pulumi_gcp/iap/web_type_app_enging_iam_binding.py +102 -97
- pulumi_gcp/iap/web_type_app_enging_iam_member.py +102 -97
- pulumi_gcp/iap/web_type_app_enging_iam_policy.py +97 -92
- pulumi_gcp/iap/web_type_compute_iam_binding.py +102 -97
- pulumi_gcp/iap/web_type_compute_iam_member.py +102 -97
- pulumi_gcp/iap/web_type_compute_iam_policy.py +97 -92
- pulumi_gcp/identityplatform/_inputs.py +576 -0
- pulumi_gcp/identityplatform/config.py +119 -114
- pulumi_gcp/identityplatform/default_supported_idp_config.py +5 -0
- pulumi_gcp/identityplatform/inbound_saml_config.py +39 -34
- pulumi_gcp/identityplatform/oauth_idp_config.py +5 -0
- pulumi_gcp/identityplatform/outputs.py +5 -0
- pulumi_gcp/identityplatform/project_default_config.py +38 -33
- pulumi_gcp/identityplatform/tenant.py +5 -0
- pulumi_gcp/identityplatform/tenant_default_supported_idp_config.py +5 -0
- pulumi_gcp/identityplatform/tenant_inbound_saml_config.py +39 -34
- pulumi_gcp/identityplatform/tenant_oauth_idp_config.py +5 -0
- pulumi_gcp/integrationconnectors/_inputs.py +868 -0
- pulumi_gcp/integrationconnectors/connection.py +465 -460
- pulumi_gcp/integrationconnectors/endpoint_attachment.py +5 -0
- pulumi_gcp/integrationconnectors/managed_zone.py +15 -10
- pulumi_gcp/integrationconnectors/outputs.py +5 -0
- pulumi_gcp/kms/_inputs.py +303 -0
- pulumi_gcp/kms/autokey_config.py +5 -0
- pulumi_gcp/kms/crypto_key.py +18 -13
- pulumi_gcp/kms/crypto_key_iam_binding.py +56 -51
- pulumi_gcp/kms/crypto_key_iam_member.py +56 -51
- pulumi_gcp/kms/crypto_key_iam_policy.py +51 -46
- pulumi_gcp/kms/crypto_key_version.py +12 -7
- pulumi_gcp/kms/ekm_connection.py +24 -19
- pulumi_gcp/kms/get_crypto_key_iam_policy.py +5 -0
- pulumi_gcp/kms/get_key_ring_iam_policy.py +5 -0
- pulumi_gcp/kms/get_kms_crypto_key.py +5 -0
- pulumi_gcp/kms/get_kms_crypto_key_version.py +5 -0
- pulumi_gcp/kms/get_kms_key_ring.py +5 -0
- pulumi_gcp/kms/get_kms_secret.py +11 -6
- pulumi_gcp/kms/get_kms_secret_asymmetric.py +17 -12
- pulumi_gcp/kms/get_kms_secret_ciphertext.py +23 -18
- pulumi_gcp/kms/key_handle.py +5 -0
- pulumi_gcp/kms/key_ring.py +5 -0
- pulumi_gcp/kms/key_ring_iam_binding.py +102 -97
- pulumi_gcp/kms/key_ring_iam_member.py +102 -97
- pulumi_gcp/kms/key_ring_iam_policy.py +97 -92
- pulumi_gcp/kms/key_ring_import_job.py +9 -4
- pulumi_gcp/kms/outputs.py +5 -0
- pulumi_gcp/kms/secret_ciphertext.py +23 -18
- pulumi_gcp/logging/_inputs.py +520 -0
- pulumi_gcp/logging/billing_account_bucket_config.py +15 -10
- pulumi_gcp/logging/billing_account_exclusion.py +5 -0
- pulumi_gcp/logging/billing_account_sink.py +15 -10
- pulumi_gcp/logging/folder_bucket_config.py +15 -10
- pulumi_gcp/logging/folder_exclusion.py +5 -0
- pulumi_gcp/logging/folder_settings.py +5 -0
- pulumi_gcp/logging/folder_sink.py +15 -10
- pulumi_gcp/logging/get_folder_settings.py +5 -0
- pulumi_gcp/logging/get_log_view_iam_policy.py +5 -0
- pulumi_gcp/logging/get_organization_settings.py +5 -0
- pulumi_gcp/logging/get_project_cmek_settings.py +5 -0
- pulumi_gcp/logging/get_project_settings.py +5 -0
- pulumi_gcp/logging/get_sink.py +5 -0
- pulumi_gcp/logging/linked_dataset.py +10 -5
- pulumi_gcp/logging/log_view.py +5 -0
- pulumi_gcp/logging/log_view_iam_binding.py +10 -5
- pulumi_gcp/logging/log_view_iam_member.py +10 -5
- pulumi_gcp/logging/log_view_iam_policy.py +5 -0
- pulumi_gcp/logging/metric.py +97 -92
- pulumi_gcp/logging/organization_bucket_config.py +15 -10
- pulumi_gcp/logging/organization_exclusion.py +5 -0
- pulumi_gcp/logging/organization_settings.py +5 -0
- pulumi_gcp/logging/organization_sink.py +15 -10
- pulumi_gcp/logging/outputs.py +5 -0
- pulumi_gcp/logging/project_bucket_config.py +21 -16
- pulumi_gcp/logging/project_exclusion.py +5 -0
- pulumi_gcp/logging/project_sink.py +15 -10
- pulumi_gcp/looker/_inputs.py +211 -0
- pulumi_gcp/looker/instance.py +204 -199
- pulumi_gcp/looker/outputs.py +5 -0
- pulumi_gcp/managedkafka/_inputs.py +69 -0
- pulumi_gcp/managedkafka/cluster.py +72 -67
- pulumi_gcp/managedkafka/outputs.py +5 -0
- pulumi_gcp/managedkafka/topic.py +27 -22
- pulumi_gcp/memcache/_inputs.py +184 -0
- pulumi_gcp/memcache/instance.py +56 -51
- pulumi_gcp/memcache/outputs.py +5 -0
- pulumi_gcp/migrationcenter/_inputs.py +182 -0
- pulumi_gcp/migrationcenter/group.py +5 -0
- pulumi_gcp/migrationcenter/outputs.py +5 -0
- pulumi_gcp/migrationcenter/preference_set.py +82 -77
- pulumi_gcp/ml/_inputs.py +17 -0
- pulumi_gcp/ml/engine_model.py +10 -5
- pulumi_gcp/ml/outputs.py +5 -0
- pulumi_gcp/monitoring/_inputs.py +1651 -12
- pulumi_gcp/monitoring/alert_policy.py +128 -123
- pulumi_gcp/monitoring/custom_service.py +16 -11
- pulumi_gcp/monitoring/dashboard.py +5 -0
- pulumi_gcp/monitoring/generic_service.py +20 -15
- pulumi_gcp/monitoring/get_app_engine_service.py +21 -16
- pulumi_gcp/monitoring/get_cluster_istio_service.py +5 -0
- pulumi_gcp/monitoring/get_istio_canonical_service.py +5 -0
- pulumi_gcp/monitoring/get_mesh_istio_service.py +5 -0
- pulumi_gcp/monitoring/get_notification_channel.py +29 -24
- pulumi_gcp/monitoring/get_secret_version.py +5 -0
- pulumi_gcp/monitoring/get_uptime_check_i_ps.py +5 -0
- pulumi_gcp/monitoring/group.py +5 -0
- pulumi_gcp/monitoring/metric_descriptor.py +49 -44
- pulumi_gcp/monitoring/monitored_project.py +5 -0
- pulumi_gcp/monitoring/notification_channel.py +16 -11
- pulumi_gcp/monitoring/outputs.py +5 -0
- pulumi_gcp/monitoring/slo.py +120 -115
- pulumi_gcp/monitoring/uptime_check_config.py +241 -236
- pulumi_gcp/netapp/_inputs.py +311 -0
- pulumi_gcp/netapp/active_directory.py +5 -0
- pulumi_gcp/netapp/backup.py +11 -6
- pulumi_gcp/netapp/backup_policy.py +5 -0
- pulumi_gcp/netapp/backup_vault.py +5 -0
- pulumi_gcp/netapp/kmsconfig.py +5 -0
- pulumi_gcp/netapp/outputs.py +5 -0
- pulumi_gcp/netapp/storage_pool.py +5 -0
- pulumi_gcp/netapp/volume.py +27 -22
- pulumi_gcp/netapp/volume_replication.py +24 -19
- pulumi_gcp/netapp/volume_snapshot.py +5 -0
- pulumi_gcp/networkconnectivity/_inputs.py +253 -0
- pulumi_gcp/networkconnectivity/hub.py +7 -2
- pulumi_gcp/networkconnectivity/internal_range.py +5 -0
- pulumi_gcp/networkconnectivity/outputs.py +5 -0
- pulumi_gcp/networkconnectivity/policy_based_route.py +46 -41
- pulumi_gcp/networkconnectivity/regional_endpoint.py +5 -0
- pulumi_gcp/networkconnectivity/service_connection_policy.py +20 -15
- pulumi_gcp/networkconnectivity/spoke.py +71 -66
- pulumi_gcp/networkmanagement/_inputs.py +87 -0
- pulumi_gcp/networkmanagement/connectivity_test.py +85 -80
- pulumi_gcp/networkmanagement/outputs.py +5 -0
- pulumi_gcp/networksecurity/_inputs.py +321 -0
- pulumi_gcp/networksecurity/address_group.py +5 -0
- pulumi_gcp/networksecurity/address_group_iam_binding.py +8 -3
- pulumi_gcp/networksecurity/address_group_iam_member.py +8 -3
- pulumi_gcp/networksecurity/address_group_iam_policy.py +5 -0
- pulumi_gcp/networksecurity/authorization_policy.py +52 -47
- pulumi_gcp/networksecurity/client_tls_policy.py +45 -40
- pulumi_gcp/networksecurity/firewall_endpoint.py +5 -0
- pulumi_gcp/networksecurity/firewall_endpoint_association.py +5 -0
- pulumi_gcp/networksecurity/gateway_security_policy.py +91 -86
- pulumi_gcp/networksecurity/gateway_security_policy_rule.py +5 -0
- pulumi_gcp/networksecurity/get_address_group_iam_policy.py +5 -0
- pulumi_gcp/networksecurity/outputs.py +5 -0
- pulumi_gcp/networksecurity/security_profile.py +40 -35
- pulumi_gcp/networksecurity/security_profile_group.py +5 -0
- pulumi_gcp/networksecurity/server_tls_policy.py +101 -96
- pulumi_gcp/networksecurity/tls_inspection_policy.py +193 -188
- pulumi_gcp/networksecurity/url_list.py +5 -0
- pulumi_gcp/networkservices/_inputs.py +1781 -29
- pulumi_gcp/networkservices/edge_cache_keyset.py +51 -46
- pulumi_gcp/networkservices/edge_cache_origin.py +89 -84
- pulumi_gcp/networkservices/edge_cache_service.py +567 -562
- pulumi_gcp/networkservices/endpoint_policy.py +55 -50
- pulumi_gcp/networkservices/gateway.py +21 -16
- pulumi_gcp/networkservices/grpc_route.py +146 -141
- pulumi_gcp/networkservices/http_route.py +294 -289
- pulumi_gcp/networkservices/lb_route_extension.py +10 -5
- pulumi_gcp/networkservices/lb_traffic_extension.py +10 -5
- pulumi_gcp/networkservices/mesh.py +5 -0
- pulumi_gcp/networkservices/outputs.py +5 -0
- pulumi_gcp/networkservices/service_binding.py +5 -0
- pulumi_gcp/networkservices/service_lb_policies.py +27 -22
- pulumi_gcp/networkservices/tcp_route.py +106 -101
- pulumi_gcp/networkservices/tls_route.py +82 -77
- pulumi_gcp/notebooks/_inputs.py +615 -0
- pulumi_gcp/notebooks/environment.py +21 -16
- pulumi_gcp/notebooks/get_instance_iam_policy.py +5 -0
- pulumi_gcp/notebooks/get_runtime_iam_policy.py +5 -0
- pulumi_gcp/notebooks/instance.py +78 -73
- pulumi_gcp/notebooks/instance_iam_binding.py +24 -19
- pulumi_gcp/notebooks/instance_iam_member.py +24 -19
- pulumi_gcp/notebooks/instance_iam_policy.py +21 -16
- pulumi_gcp/notebooks/location.py +5 -0
- pulumi_gcp/notebooks/outputs.py +5 -0
- pulumi_gcp/notebooks/runtime.py +222 -217
- pulumi_gcp/notebooks/runtime_iam_binding.py +24 -19
- pulumi_gcp/notebooks/runtime_iam_member.py +24 -19
- pulumi_gcp/notebooks/runtime_iam_policy.py +21 -16
- pulumi_gcp/organizations/_inputs.py +231 -0
- pulumi_gcp/organizations/access_approval_settings.py +36 -31
- pulumi_gcp/organizations/folder.py +5 -0
- pulumi_gcp/organizations/get_active_folder.py +5 -0
- pulumi_gcp/organizations/get_billing_account.py +5 -0
- pulumi_gcp/organizations/get_client_config.py +5 -0
- pulumi_gcp/organizations/get_client_open_id_user_info.py +5 -0
- pulumi_gcp/organizations/get_folder.py +5 -0
- pulumi_gcp/organizations/get_folders.py +5 -0
- pulumi_gcp/organizations/get_iam_policy.py +13 -8
- pulumi_gcp/organizations/get_organization.py +5 -0
- pulumi_gcp/organizations/get_project.py +5 -0
- pulumi_gcp/organizations/iam_audit_config.py +18 -13
- pulumi_gcp/organizations/iam_binding.py +8 -3
- pulumi_gcp/organizations/iam_custom_role.py +5 -0
- pulumi_gcp/organizations/iam_member.py +130 -125
- pulumi_gcp/organizations/iam_policy.py +125 -120
- pulumi_gcp/organizations/outputs.py +5 -0
- pulumi_gcp/organizations/policy.py +54 -49
- pulumi_gcp/organizations/project.py +5 -0
- pulumi_gcp/orgpolicy/_inputs.py +183 -0
- pulumi_gcp/orgpolicy/custom_constraint.py +15 -10
- pulumi_gcp/orgpolicy/outputs.py +5 -0
- pulumi_gcp/orgpolicy/policy.py +103 -98
- pulumi_gcp/osconfig/_inputs.py +2235 -30
- pulumi_gcp/osconfig/guest_policies.py +171 -166
- pulumi_gcp/osconfig/os_policy_assignment.py +158 -153
- pulumi_gcp/osconfig/outputs.py +5 -0
- pulumi_gcp/osconfig/patch_deployment.py +326 -321
- pulumi_gcp/oslogin/ssh_public_key.py +5 -0
- pulumi_gcp/parallelstore/instance.py +5 -0
- pulumi_gcp/privilegedaccessmanager/_inputs.py +170 -0
- pulumi_gcp/privilegedaccessmanager/entitlement.py +94 -89
- pulumi_gcp/privilegedaccessmanager/outputs.py +5 -0
- pulumi_gcp/projects/_inputs.py +262 -0
- pulumi_gcp/projects/access_approval_settings.py +30 -25
- pulumi_gcp/projects/api_key.py +88 -83
- pulumi_gcp/projects/default_service_accounts.py +5 -0
- pulumi_gcp/projects/get_iam_policy.py +5 -0
- pulumi_gcp/projects/get_organization_policy.py +5 -0
- pulumi_gcp/projects/get_project.py +5 -0
- pulumi_gcp/projects/get_project_service.py +5 -0
- pulumi_gcp/projects/iam_audit_config.py +130 -125
- pulumi_gcp/projects/iam_binding.py +130 -125
- pulumi_gcp/projects/iam_custom_role.py +5 -0
- pulumi_gcp/projects/iam_member.py +130 -125
- pulumi_gcp/projects/iam_member_remove.py +5 -0
- pulumi_gcp/projects/iam_policy.py +125 -120
- pulumi_gcp/projects/organization_policy.py +54 -49
- pulumi_gcp/projects/outputs.py +5 -0
- pulumi_gcp/projects/service.py +5 -0
- pulumi_gcp/projects/service_identity.py +5 -0
- pulumi_gcp/projects/usage_export_bucket.py +5 -0
- pulumi_gcp/provider.py +7 -2
- pulumi_gcp/pubsub/_inputs.py +438 -0
- pulumi_gcp/pubsub/get_schema_iam_policy.py +5 -0
- pulumi_gcp/pubsub/get_subscription.py +5 -0
- pulumi_gcp/pubsub/get_subscription_iam_policy.py +5 -0
- pulumi_gcp/pubsub/get_topic.py +5 -0
- pulumi_gcp/pubsub/get_topic_iam_policy.py +5 -0
- pulumi_gcp/pubsub/lite_reservation.py +5 -0
- pulumi_gcp/pubsub/lite_subscription.py +36 -31
- pulumi_gcp/pubsub/lite_topic.py +46 -41
- pulumi_gcp/pubsub/outputs.py +5 -0
- pulumi_gcp/pubsub/schema.py +13 -8
- pulumi_gcp/pubsub/schema_iam_binding.py +24 -19
- pulumi_gcp/pubsub/schema_iam_member.py +24 -19
- pulumi_gcp/pubsub/schema_iam_policy.py +21 -16
- pulumi_gcp/pubsub/subscription.py +141 -136
- pulumi_gcp/pubsub/subscription_iam_binding.py +24 -19
- pulumi_gcp/pubsub/subscription_iam_member.py +24 -19
- pulumi_gcp/pubsub/subscription_iam_policy.py +21 -16
- pulumi_gcp/pubsub/topic.py +50 -45
- pulumi_gcp/pubsub/topic_iam_binding.py +24 -19
- pulumi_gcp/pubsub/topic_iam_member.py +24 -19
- pulumi_gcp/pubsub/topic_iam_policy.py +21 -16
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/recaptcha/_inputs.py +89 -0
- pulumi_gcp/recaptcha/enterprise_key.py +132 -127
- pulumi_gcp/recaptcha/outputs.py +5 -0
- pulumi_gcp/redis/_inputs.py +321 -0
- pulumi_gcp/redis/cluster.py +59 -54
- pulumi_gcp/redis/get_instance.py +5 -0
- pulumi_gcp/redis/instance.py +51 -46
- pulumi_gcp/redis/outputs.py +5 -0
- pulumi_gcp/resourcemanager/lien.py +5 -0
- pulumi_gcp/runtimeconfig/_inputs.py +25 -0
- pulumi_gcp/runtimeconfig/config.py +5 -0
- pulumi_gcp/runtimeconfig/config_iam_binding.py +8 -3
- pulumi_gcp/runtimeconfig/config_iam_member.py +8 -3
- pulumi_gcp/runtimeconfig/config_iam_policy.py +5 -0
- pulumi_gcp/runtimeconfig/get_config.py +5 -0
- pulumi_gcp/runtimeconfig/get_config_iam_policy.py +5 -0
- pulumi_gcp/runtimeconfig/get_variable.py +5 -0
- pulumi_gcp/runtimeconfig/outputs.py +5 -0
- pulumi_gcp/runtimeconfig/variable.py +5 -0
- pulumi_gcp/secretmanager/_inputs.py +143 -0
- pulumi_gcp/secretmanager/get_secret.py +5 -0
- pulumi_gcp/secretmanager/get_secret_iam_policy.py +5 -0
- pulumi_gcp/secretmanager/get_secret_version.py +5 -0
- pulumi_gcp/secretmanager/get_secret_version_access.py +5 -0
- pulumi_gcp/secretmanager/get_secrets.py +5 -0
- pulumi_gcp/secretmanager/outputs.py +5 -0
- pulumi_gcp/secretmanager/secret.py +68 -63
- pulumi_gcp/secretmanager/secret_iam_binding.py +102 -97
- pulumi_gcp/secretmanager/secret_iam_member.py +102 -97
- pulumi_gcp/secretmanager/secret_iam_policy.py +97 -92
- pulumi_gcp/secretmanager/secret_version.py +53 -48
- pulumi_gcp/securesourcemanager/_inputs.py +75 -0
- pulumi_gcp/securesourcemanager/get_instance_iam_policy.py +5 -0
- pulumi_gcp/securesourcemanager/instance.py +78 -73
- pulumi_gcp/securesourcemanager/instance_iam_binding.py +8 -3
- pulumi_gcp/securesourcemanager/instance_iam_member.py +8 -3
- pulumi_gcp/securesourcemanager/instance_iam_policy.py +5 -0
- pulumi_gcp/securesourcemanager/outputs.py +5 -0
- pulumi_gcp/securitycenter/_inputs.py +860 -7
- pulumi_gcp/securitycenter/event_threat_detection_custom_module.py +5 -0
- pulumi_gcp/securitycenter/folder_custom_module.py +82 -77
- pulumi_gcp/securitycenter/get_source_iam_policy.py +5 -0
- pulumi_gcp/securitycenter/instance_iam_binding.py +38 -33
- pulumi_gcp/securitycenter/instance_iam_member.py +38 -33
- pulumi_gcp/securitycenter/instance_iam_policy.py +35 -30
- pulumi_gcp/securitycenter/management_folder_security_health_analytics_custom_module.py +82 -77
- pulumi_gcp/securitycenter/management_organization_event_threat_detection_custom_module.py +5 -0
- pulumi_gcp/securitycenter/management_organization_security_health_analytics_custom_module.py +82 -77
- pulumi_gcp/securitycenter/management_project_security_health_analytics_custom_module.py +82 -77
- pulumi_gcp/securitycenter/mute_config.py +5 -0
- pulumi_gcp/securitycenter/notification_config.py +16 -11
- pulumi_gcp/securitycenter/organization_custom_module.py +82 -77
- pulumi_gcp/securitycenter/outputs.py +5 -0
- pulumi_gcp/securitycenter/project_custom_module.py +82 -77
- pulumi_gcp/securitycenter/source.py +5 -0
- pulumi_gcp/securitycenter/source_iam_binding.py +8 -3
- pulumi_gcp/securitycenter/source_iam_member.py +8 -3
- pulumi_gcp/securitycenter/source_iam_policy.py +5 -0
- pulumi_gcp/securityposture/_inputs.py +457 -0
- pulumi_gcp/securityposture/outputs.py +5 -0
- pulumi_gcp/securityposture/posture.py +186 -181
- pulumi_gcp/securityposture/posture_deployment.py +35 -30
- pulumi_gcp/serviceaccount/_inputs.py +51 -0
- pulumi_gcp/serviceaccount/account.py +5 -0
- pulumi_gcp/serviceaccount/get_account.py +5 -0
- pulumi_gcp/serviceaccount/get_account_access_token.py +5 -0
- pulumi_gcp/serviceaccount/get_account_id_token.py +5 -0
- pulumi_gcp/serviceaccount/get_account_jwt.py +5 -0
- pulumi_gcp/serviceaccount/get_account_key.py +5 -0
- pulumi_gcp/serviceaccount/get_iam_policy.py +5 -0
- pulumi_gcp/serviceaccount/iam_binding.py +66 -61
- pulumi_gcp/serviceaccount/iam_member.py +66 -61
- pulumi_gcp/serviceaccount/iam_policy.py +61 -56
- pulumi_gcp/serviceaccount/key.py +5 -0
- pulumi_gcp/serviceaccount/outputs.py +5 -0
- pulumi_gcp/servicedirectory/_inputs.py +43 -0
- pulumi_gcp/servicedirectory/endpoint.py +5 -0
- pulumi_gcp/servicedirectory/get_namespace_iam_policy.py +5 -0
- pulumi_gcp/servicedirectory/get_service_iam_policy.py +5 -0
- pulumi_gcp/servicedirectory/namespace.py +5 -0
- pulumi_gcp/servicedirectory/namespace_iam_binding.py +24 -19
- pulumi_gcp/servicedirectory/namespace_iam_member.py +24 -19
- pulumi_gcp/servicedirectory/namespace_iam_policy.py +21 -16
- pulumi_gcp/servicedirectory/outputs.py +5 -0
- pulumi_gcp/servicedirectory/service.py +5 -0
- pulumi_gcp/servicedirectory/service_iam_binding.py +24 -19
- pulumi_gcp/servicedirectory/service_iam_member.py +24 -19
- pulumi_gcp/servicedirectory/service_iam_policy.py +21 -16
- pulumi_gcp/servicenetworking/connection.py +5 -0
- pulumi_gcp/servicenetworking/get_peered_dns_domain.py +5 -0
- pulumi_gcp/servicenetworking/peered_dns_domain.py +5 -0
- pulumi_gcp/servicenetworking/vpc_service_controls.py +5 -0
- pulumi_gcp/serviceusage/consumer_quota_override.py +5 -0
- pulumi_gcp/sourcerepo/_inputs.py +49 -0
- pulumi_gcp/sourcerepo/get_repository.py +5 -0
- pulumi_gcp/sourcerepo/get_repository_iam_policy.py +5 -0
- pulumi_gcp/sourcerepo/outputs.py +5 -0
- pulumi_gcp/sourcerepo/repository.py +20 -15
- pulumi_gcp/sourcerepo/repository_iam_binding.py +24 -19
- pulumi_gcp/sourcerepo/repository_iam_member.py +24 -19
- pulumi_gcp/sourcerepo/repository_iam_policy.py +21 -16
- pulumi_gcp/spanner/_inputs.py +157 -0
- pulumi_gcp/spanner/database.py +10 -5
- pulumi_gcp/spanner/database_iam_binding.py +102 -97
- pulumi_gcp/spanner/database_iam_member.py +102 -97
- pulumi_gcp/spanner/database_iam_policy.py +97 -92
- pulumi_gcp/spanner/get_database_iam_policy.py +5 -0
- pulumi_gcp/spanner/get_instance.py +5 -0
- pulumi_gcp/spanner/get_instance_iam_policy.py +5 -0
- pulumi_gcp/spanner/instance.py +30 -25
- pulumi_gcp/spanner/instance_config.py +10 -5
- pulumi_gcp/spanner/instance_iam_binding.py +24 -19
- pulumi_gcp/spanner/instance_iam_member.py +24 -19
- pulumi_gcp/spanner/instance_iam_policy.py +21 -16
- pulumi_gcp/spanner/outputs.py +5 -0
- pulumi_gcp/sql/_inputs.py +616 -0
- pulumi_gcp/sql/database.py +17 -12
- pulumi_gcp/sql/database_instance.py +93 -88
- pulumi_gcp/sql/get_backup_run.py +5 -0
- pulumi_gcp/sql/get_ca_certs.py +5 -0
- pulumi_gcp/sql/get_database.py +5 -0
- pulumi_gcp/sql/get_database_instance.py +5 -0
- pulumi_gcp/sql/get_database_instance_latest_recovery_time.py +5 -0
- pulumi_gcp/sql/get_database_instances.py +5 -0
- pulumi_gcp/sql/get_databases.py +5 -0
- pulumi_gcp/sql/get_tiers.py +5 -0
- pulumi_gcp/sql/outputs.py +5 -0
- pulumi_gcp/sql/source_representation_instance.py +5 -0
- pulumi_gcp/sql/ssl_cert.py +11 -6
- pulumi_gcp/sql/user.py +43 -38
- pulumi_gcp/storage/_inputs.py +828 -0
- pulumi_gcp/storage/bucket.py +125 -120
- pulumi_gcp/storage/bucket_access_control.py +5 -0
- pulumi_gcp/storage/bucket_acl.py +5 -0
- pulumi_gcp/storage/bucket_iam_binding.py +102 -97
- pulumi_gcp/storage/bucket_iam_member.py +102 -97
- pulumi_gcp/storage/bucket_iam_policy.py +97 -92
- pulumi_gcp/storage/bucket_object.py +15 -10
- pulumi_gcp/storage/default_object_access_control.py +7 -2
- pulumi_gcp/storage/default_object_acl.py +5 -0
- pulumi_gcp/storage/get_bucket.py +5 -0
- pulumi_gcp/storage/get_bucket_iam_policy.py +5 -0
- pulumi_gcp/storage/get_bucket_object.py +5 -0
- pulumi_gcp/storage/get_bucket_object_content.py +5 -0
- pulumi_gcp/storage/get_bucket_objects.py +5 -0
- pulumi_gcp/storage/get_buckets.py +5 -0
- pulumi_gcp/storage/get_object_signed_url.py +5 -0
- pulumi_gcp/storage/get_project_service_account.py +11 -6
- pulumi_gcp/storage/get_transfer_project_service_account.py +5 -0
- pulumi_gcp/storage/get_transfer_project_servie_account.py +5 -0
- pulumi_gcp/storage/hmac_key.py +5 -0
- pulumi_gcp/storage/insights_report_config.py +76 -71
- pulumi_gcp/storage/notification.py +5 -0
- pulumi_gcp/storage/object_access_control.py +7 -2
- pulumi_gcp/storage/object_acl.py +5 -0
- pulumi_gcp/storage/outputs.py +5 -0
- pulumi_gcp/storage/transfer_agent_pool.py +16 -11
- pulumi_gcp/storage/transfer_job.py +113 -108
- pulumi_gcp/tags/_inputs.py +43 -0
- pulumi_gcp/tags/get_tag_key.py +5 -0
- pulumi_gcp/tags/get_tag_key_iam_policy.py +5 -0
- pulumi_gcp/tags/get_tag_keys.py +5 -0
- pulumi_gcp/tags/get_tag_value.py +5 -0
- pulumi_gcp/tags/get_tag_value_iam_policy.py +5 -0
- pulumi_gcp/tags/get_tag_values.py +5 -0
- pulumi_gcp/tags/location_tag_binding.py +5 -0
- pulumi_gcp/tags/outputs.py +5 -0
- pulumi_gcp/tags/tag_binding.py +5 -0
- pulumi_gcp/tags/tag_key.py +5 -0
- pulumi_gcp/tags/tag_key_iam_binding.py +24 -19
- pulumi_gcp/tags/tag_key_iam_member.py +24 -19
- pulumi_gcp/tags/tag_key_iam_policy.py +21 -16
- pulumi_gcp/tags/tag_value.py +5 -0
- pulumi_gcp/tags/tag_value_iam_binding.py +24 -19
- pulumi_gcp/tags/tag_value_iam_member.py +24 -19
- pulumi_gcp/tags/tag_value_iam_policy.py +21 -16
- pulumi_gcp/tpu/_inputs.py +194 -0
- pulumi_gcp/tpu/get_tensorflow_versions.py +5 -0
- pulumi_gcp/tpu/get_v2_accelerator_types.py +5 -0
- pulumi_gcp/tpu/get_v2_runtime_versions.py +5 -0
- pulumi_gcp/tpu/node.py +18 -13
- pulumi_gcp/tpu/outputs.py +5 -0
- pulumi_gcp/tpu/v2_vm.py +87 -82
- pulumi_gcp/vertex/_inputs.py +841 -0
- pulumi_gcp/vertex/ai_dataset.py +10 -5
- pulumi_gcp/vertex/ai_deployment_resource_pool.py +36 -31
- pulumi_gcp/vertex/ai_endpoint.py +18 -13
- pulumi_gcp/vertex/ai_endpoint_iam_binding.py +8 -3
- pulumi_gcp/vertex/ai_endpoint_iam_member.py +8 -3
- pulumi_gcp/vertex/ai_endpoint_iam_policy.py +5 -0
- pulumi_gcp/vertex/ai_feature_group.py +22 -17
- pulumi_gcp/vertex/ai_feature_group_feature.py +17 -12
- pulumi_gcp/vertex/ai_feature_online_store.py +73 -68
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +151 -146
- pulumi_gcp/vertex/ai_feature_store.py +57 -52
- pulumi_gcp/vertex/ai_feature_store_entity_type.py +92 -87
- pulumi_gcp/vertex/ai_feature_store_entity_type_feature.py +41 -36
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_binding.py +8 -3
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_member.py +8 -3
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_policy.py +5 -0
- pulumi_gcp/vertex/ai_feature_store_iam_binding.py +8 -3
- pulumi_gcp/vertex/ai_feature_store_iam_member.py +8 -3
- pulumi_gcp/vertex/ai_feature_store_iam_policy.py +5 -0
- pulumi_gcp/vertex/ai_index.py +68 -63
- pulumi_gcp/vertex/ai_index_endpoint.py +18 -13
- pulumi_gcp/vertex/ai_metadata_store.py +12 -7
- pulumi_gcp/vertex/ai_tensorboard.py +16 -11
- pulumi_gcp/vertex/get_ai_endpoint_iam_policy.py +5 -0
- pulumi_gcp/vertex/get_ai_featurestore_entitytype_iam_policy.py +5 -0
- pulumi_gcp/vertex/get_ai_featurestore_iam_policy.py +5 -0
- pulumi_gcp/vertex/get_ai_index.py +5 -0
- pulumi_gcp/vertex/outputs.py +5 -0
- pulumi_gcp/vmwareengine/_inputs.py +290 -0
- pulumi_gcp/vmwareengine/cluster.py +74 -69
- pulumi_gcp/vmwareengine/external_access_rule.py +61 -56
- pulumi_gcp/vmwareengine/external_address.py +27 -22
- pulumi_gcp/vmwareengine/get_cluster.py +5 -0
- pulumi_gcp/vmwareengine/get_external_access_rule.py +5 -0
- pulumi_gcp/vmwareengine/get_external_address.py +5 -0
- pulumi_gcp/vmwareengine/get_network.py +5 -0
- pulumi_gcp/vmwareengine/get_network_peering.py +5 -0
- pulumi_gcp/vmwareengine/get_network_policy.py +5 -0
- pulumi_gcp/vmwareengine/get_nsx_credentials.py +5 -0
- pulumi_gcp/vmwareengine/get_private_cloud.py +5 -0
- pulumi_gcp/vmwareengine/get_subnet.py +5 -0
- pulumi_gcp/vmwareengine/get_vcenter_credentials.py +5 -0
- pulumi_gcp/vmwareengine/network.py +7 -2
- pulumi_gcp/vmwareengine/network_peering.py +5 -0
- pulumi_gcp/vmwareengine/network_policy.py +27 -22
- pulumi_gcp/vmwareengine/outputs.py +5 -0
- pulumi_gcp/vmwareengine/private_cloud.py +67 -62
- pulumi_gcp/vmwareengine/subnet.py +29 -24
- pulumi_gcp/vpcaccess/_inputs.py +22 -0
- pulumi_gcp/vpcaccess/connector.py +16 -11
- pulumi_gcp/vpcaccess/get_connector.py +5 -0
- pulumi_gcp/vpcaccess/outputs.py +5 -0
- pulumi_gcp/workbench/_inputs.py +319 -0
- pulumi_gcp/workbench/get_instance_iam_policy.py +5 -0
- pulumi_gcp/workbench/instance.py +144 -139
- pulumi_gcp/workbench/instance_iam_binding.py +8 -3
- pulumi_gcp/workbench/instance_iam_member.py +8 -3
- pulumi_gcp/workbench/instance_iam_policy.py +5 -0
- pulumi_gcp/workbench/outputs.py +5 -0
- pulumi_gcp/workflows/workflow.py +5 -0
- pulumi_gcp/workstations/_inputs.py +433 -0
- pulumi_gcp/workstations/get_workstation_config_iam_policy.py +5 -0
- pulumi_gcp/workstations/get_workstation_iam_policy.py +5 -0
- pulumi_gcp/workstations/outputs.py +5 -0
- pulumi_gcp/workstations/workstation.py +19 -14
- pulumi_gcp/workstations/workstation_cluster.py +35 -30
- pulumi_gcp/workstations/workstation_config.py +251 -246
- pulumi_gcp/workstations/workstation_config_iam_binding.py +8 -3
- pulumi_gcp/workstations/workstation_config_iam_member.py +8 -3
- pulumi_gcp/workstations/workstation_config_iam_policy.py +5 -0
- pulumi_gcp/workstations/workstation_iam_binding.py +8 -3
- pulumi_gcp/workstations/workstation_iam_member.py +8 -3
- pulumi_gcp/workstations/workstation_iam_policy.py +5 -0
- {pulumi_gcp-7.30.0a1719470057.dist-info → pulumi_gcp-7.30.0a1719513455.dist-info}/METADATA +2 -1
- pulumi_gcp-7.30.0a1719513455.dist-info/RECORD +1600 -0
- pulumi_gcp-7.30.0a1719470057.dist-info/RECORD +0 -1600
- {pulumi_gcp-7.30.0a1719470057.dist-info → pulumi_gcp-7.30.0a1719513455.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.30.0a1719470057.dist-info → pulumi_gcp-7.30.0a1719513455.dist-info}/top_level.txt +0 -0
pulumi_gcp/monitoring/_inputs.py
CHANGED
@@ -4,71 +4,156 @@
|
|
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
|
'AlertPolicyAlertStrategyArgs',
|
19
|
+
'AlertPolicyAlertStrategyArgsDict',
|
14
20
|
'AlertPolicyAlertStrategyNotificationChannelStrategyArgs',
|
21
|
+
'AlertPolicyAlertStrategyNotificationChannelStrategyArgsDict',
|
15
22
|
'AlertPolicyAlertStrategyNotificationRateLimitArgs',
|
23
|
+
'AlertPolicyAlertStrategyNotificationRateLimitArgsDict',
|
16
24
|
'AlertPolicyConditionArgs',
|
25
|
+
'AlertPolicyConditionArgsDict',
|
17
26
|
'AlertPolicyConditionConditionAbsentArgs',
|
27
|
+
'AlertPolicyConditionConditionAbsentArgsDict',
|
18
28
|
'AlertPolicyConditionConditionAbsentAggregationArgs',
|
29
|
+
'AlertPolicyConditionConditionAbsentAggregationArgsDict',
|
19
30
|
'AlertPolicyConditionConditionAbsentTriggerArgs',
|
31
|
+
'AlertPolicyConditionConditionAbsentTriggerArgsDict',
|
20
32
|
'AlertPolicyConditionConditionMatchedLogArgs',
|
33
|
+
'AlertPolicyConditionConditionMatchedLogArgsDict',
|
21
34
|
'AlertPolicyConditionConditionMonitoringQueryLanguageArgs',
|
35
|
+
'AlertPolicyConditionConditionMonitoringQueryLanguageArgsDict',
|
22
36
|
'AlertPolicyConditionConditionMonitoringQueryLanguageTriggerArgs',
|
37
|
+
'AlertPolicyConditionConditionMonitoringQueryLanguageTriggerArgsDict',
|
23
38
|
'AlertPolicyConditionConditionPrometheusQueryLanguageArgs',
|
39
|
+
'AlertPolicyConditionConditionPrometheusQueryLanguageArgsDict',
|
24
40
|
'AlertPolicyConditionConditionThresholdArgs',
|
41
|
+
'AlertPolicyConditionConditionThresholdArgsDict',
|
25
42
|
'AlertPolicyConditionConditionThresholdAggregationArgs',
|
43
|
+
'AlertPolicyConditionConditionThresholdAggregationArgsDict',
|
26
44
|
'AlertPolicyConditionConditionThresholdDenominatorAggregationArgs',
|
45
|
+
'AlertPolicyConditionConditionThresholdDenominatorAggregationArgsDict',
|
27
46
|
'AlertPolicyConditionConditionThresholdForecastOptionsArgs',
|
47
|
+
'AlertPolicyConditionConditionThresholdForecastOptionsArgsDict',
|
28
48
|
'AlertPolicyConditionConditionThresholdTriggerArgs',
|
49
|
+
'AlertPolicyConditionConditionThresholdTriggerArgsDict',
|
29
50
|
'AlertPolicyCreationRecordArgs',
|
51
|
+
'AlertPolicyCreationRecordArgsDict',
|
30
52
|
'AlertPolicyDocumentationArgs',
|
53
|
+
'AlertPolicyDocumentationArgsDict',
|
31
54
|
'CustomServiceTelemetryArgs',
|
55
|
+
'CustomServiceTelemetryArgsDict',
|
32
56
|
'GenericServiceBasicServiceArgs',
|
57
|
+
'GenericServiceBasicServiceArgsDict',
|
33
58
|
'GenericServiceTelemetryArgs',
|
59
|
+
'GenericServiceTelemetryArgsDict',
|
34
60
|
'MetricDescriptorLabelArgs',
|
61
|
+
'MetricDescriptorLabelArgsDict',
|
35
62
|
'MetricDescriptorMetadataArgs',
|
63
|
+
'MetricDescriptorMetadataArgsDict',
|
36
64
|
'NotificationChannelSensitiveLabelsArgs',
|
65
|
+
'NotificationChannelSensitiveLabelsArgsDict',
|
37
66
|
'SloBasicSliArgs',
|
67
|
+
'SloBasicSliArgsDict',
|
38
68
|
'SloBasicSliAvailabilityArgs',
|
69
|
+
'SloBasicSliAvailabilityArgsDict',
|
39
70
|
'SloBasicSliLatencyArgs',
|
71
|
+
'SloBasicSliLatencyArgsDict',
|
40
72
|
'SloRequestBasedSliArgs',
|
73
|
+
'SloRequestBasedSliArgsDict',
|
41
74
|
'SloRequestBasedSliDistributionCutArgs',
|
75
|
+
'SloRequestBasedSliDistributionCutArgsDict',
|
42
76
|
'SloRequestBasedSliDistributionCutRangeArgs',
|
77
|
+
'SloRequestBasedSliDistributionCutRangeArgsDict',
|
43
78
|
'SloRequestBasedSliGoodTotalRatioArgs',
|
79
|
+
'SloRequestBasedSliGoodTotalRatioArgsDict',
|
44
80
|
'SloWindowsBasedSliArgs',
|
81
|
+
'SloWindowsBasedSliArgsDict',
|
45
82
|
'SloWindowsBasedSliGoodTotalRatioThresholdArgs',
|
83
|
+
'SloWindowsBasedSliGoodTotalRatioThresholdArgsDict',
|
46
84
|
'SloWindowsBasedSliGoodTotalRatioThresholdBasicSliPerformanceArgs',
|
85
|
+
'SloWindowsBasedSliGoodTotalRatioThresholdBasicSliPerformanceArgsDict',
|
47
86
|
'SloWindowsBasedSliGoodTotalRatioThresholdBasicSliPerformanceAvailabilityArgs',
|
87
|
+
'SloWindowsBasedSliGoodTotalRatioThresholdBasicSliPerformanceAvailabilityArgsDict',
|
48
88
|
'SloWindowsBasedSliGoodTotalRatioThresholdBasicSliPerformanceLatencyArgs',
|
89
|
+
'SloWindowsBasedSliGoodTotalRatioThresholdBasicSliPerformanceLatencyArgsDict',
|
49
90
|
'SloWindowsBasedSliGoodTotalRatioThresholdPerformanceArgs',
|
91
|
+
'SloWindowsBasedSliGoodTotalRatioThresholdPerformanceArgsDict',
|
50
92
|
'SloWindowsBasedSliGoodTotalRatioThresholdPerformanceDistributionCutArgs',
|
93
|
+
'SloWindowsBasedSliGoodTotalRatioThresholdPerformanceDistributionCutArgsDict',
|
51
94
|
'SloWindowsBasedSliGoodTotalRatioThresholdPerformanceDistributionCutRangeArgs',
|
95
|
+
'SloWindowsBasedSliGoodTotalRatioThresholdPerformanceDistributionCutRangeArgsDict',
|
52
96
|
'SloWindowsBasedSliGoodTotalRatioThresholdPerformanceGoodTotalRatioArgs',
|
97
|
+
'SloWindowsBasedSliGoodTotalRatioThresholdPerformanceGoodTotalRatioArgsDict',
|
53
98
|
'SloWindowsBasedSliMetricMeanInRangeArgs',
|
99
|
+
'SloWindowsBasedSliMetricMeanInRangeArgsDict',
|
54
100
|
'SloWindowsBasedSliMetricMeanInRangeRangeArgs',
|
101
|
+
'SloWindowsBasedSliMetricMeanInRangeRangeArgsDict',
|
55
102
|
'SloWindowsBasedSliMetricSumInRangeArgs',
|
103
|
+
'SloWindowsBasedSliMetricSumInRangeArgsDict',
|
56
104
|
'SloWindowsBasedSliMetricSumInRangeRangeArgs',
|
105
|
+
'SloWindowsBasedSliMetricSumInRangeRangeArgsDict',
|
57
106
|
'UptimeCheckConfigContentMatcherArgs',
|
107
|
+
'UptimeCheckConfigContentMatcherArgsDict',
|
58
108
|
'UptimeCheckConfigContentMatcherJsonPathMatcherArgs',
|
109
|
+
'UptimeCheckConfigContentMatcherJsonPathMatcherArgsDict',
|
59
110
|
'UptimeCheckConfigHttpCheckArgs',
|
111
|
+
'UptimeCheckConfigHttpCheckArgsDict',
|
60
112
|
'UptimeCheckConfigHttpCheckAcceptedResponseStatusCodeArgs',
|
113
|
+
'UptimeCheckConfigHttpCheckAcceptedResponseStatusCodeArgsDict',
|
61
114
|
'UptimeCheckConfigHttpCheckAuthInfoArgs',
|
115
|
+
'UptimeCheckConfigHttpCheckAuthInfoArgsDict',
|
62
116
|
'UptimeCheckConfigHttpCheckPingConfigArgs',
|
117
|
+
'UptimeCheckConfigHttpCheckPingConfigArgsDict',
|
63
118
|
'UptimeCheckConfigHttpCheckServiceAgentAuthenticationArgs',
|
119
|
+
'UptimeCheckConfigHttpCheckServiceAgentAuthenticationArgsDict',
|
64
120
|
'UptimeCheckConfigMonitoredResourceArgs',
|
121
|
+
'UptimeCheckConfigMonitoredResourceArgsDict',
|
65
122
|
'UptimeCheckConfigResourceGroupArgs',
|
123
|
+
'UptimeCheckConfigResourceGroupArgsDict',
|
66
124
|
'UptimeCheckConfigSyntheticMonitorArgs',
|
125
|
+
'UptimeCheckConfigSyntheticMonitorArgsDict',
|
67
126
|
'UptimeCheckConfigSyntheticMonitorCloudFunctionV2Args',
|
127
|
+
'UptimeCheckConfigSyntheticMonitorCloudFunctionV2ArgsDict',
|
68
128
|
'UptimeCheckConfigTcpCheckArgs',
|
129
|
+
'UptimeCheckConfigTcpCheckArgsDict',
|
69
130
|
'UptimeCheckConfigTcpCheckPingConfigArgs',
|
131
|
+
'UptimeCheckConfigTcpCheckPingConfigArgsDict',
|
70
132
|
]
|
71
133
|
|
134
|
+
MYPY = False
|
135
|
+
|
136
|
+
if not MYPY:
|
137
|
+
class AlertPolicyAlertStrategyArgsDict(TypedDict):
|
138
|
+
auto_close: NotRequired[pulumi.Input[str]]
|
139
|
+
"""
|
140
|
+
If an alert policy that was active has no data for this long, any open incidents will close.
|
141
|
+
"""
|
142
|
+
notification_channel_strategies: NotRequired[pulumi.Input[Sequence[pulumi.Input['AlertPolicyAlertStrategyNotificationChannelStrategyArgsDict']]]]
|
143
|
+
"""
|
144
|
+
Control over how the notification channels in `notification_channels`
|
145
|
+
are notified when this alert fires, on a per-channel basis.
|
146
|
+
Structure is documented below.
|
147
|
+
"""
|
148
|
+
notification_rate_limit: NotRequired[pulumi.Input['AlertPolicyAlertStrategyNotificationRateLimitArgsDict']]
|
149
|
+
"""
|
150
|
+
Required for alert policies with a LogMatch condition.
|
151
|
+
This limit is not implemented for alert policies that are not log-based.
|
152
|
+
Structure is documented below.
|
153
|
+
"""
|
154
|
+
elif False:
|
155
|
+
AlertPolicyAlertStrategyArgsDict: TypeAlias = Mapping[str, Any]
|
156
|
+
|
72
157
|
@pulumi.input_type
|
73
158
|
class AlertPolicyAlertStrategyArgs:
|
74
159
|
def __init__(__self__, *,
|
@@ -132,6 +217,22 @@ class AlertPolicyAlertStrategyArgs:
|
|
132
217
|
pulumi.set(self, "notification_rate_limit", value)
|
133
218
|
|
134
219
|
|
220
|
+
if not MYPY:
|
221
|
+
class AlertPolicyAlertStrategyNotificationChannelStrategyArgsDict(TypedDict):
|
222
|
+
notification_channel_names: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
223
|
+
"""
|
224
|
+
The notification channels that these settings apply to. Each of these
|
225
|
+
correspond to the name field in one of the NotificationChannel objects
|
226
|
+
referenced in the notification_channels field of this AlertPolicy. The format is
|
227
|
+
`projects/[PROJECT_ID_OR_NUMBER]/notificationChannels/[CHANNEL_ID]`
|
228
|
+
"""
|
229
|
+
renotify_interval: NotRequired[pulumi.Input[str]]
|
230
|
+
"""
|
231
|
+
The frequency at which to send reminder notifications for open incidents.
|
232
|
+
"""
|
233
|
+
elif False:
|
234
|
+
AlertPolicyAlertStrategyNotificationChannelStrategyArgsDict: TypeAlias = Mapping[str, Any]
|
235
|
+
|
135
236
|
@pulumi.input_type
|
136
237
|
class AlertPolicyAlertStrategyNotificationChannelStrategyArgs:
|
137
238
|
def __init__(__self__, *,
|
@@ -177,6 +278,16 @@ class AlertPolicyAlertStrategyNotificationChannelStrategyArgs:
|
|
177
278
|
pulumi.set(self, "renotify_interval", value)
|
178
279
|
|
179
280
|
|
281
|
+
if not MYPY:
|
282
|
+
class AlertPolicyAlertStrategyNotificationRateLimitArgsDict(TypedDict):
|
283
|
+
period: NotRequired[pulumi.Input[str]]
|
284
|
+
"""
|
285
|
+
Not more than one notification per period.
|
286
|
+
A duration in seconds with up to nine fractional digits, terminated by 's'. Example "60.5s".
|
287
|
+
"""
|
288
|
+
elif False:
|
289
|
+
AlertPolicyAlertStrategyNotificationRateLimitArgsDict: TypeAlias = Mapping[str, Any]
|
290
|
+
|
180
291
|
@pulumi.input_type
|
181
292
|
class AlertPolicyAlertStrategyNotificationRateLimitArgs:
|
182
293
|
def __init__(__self__, *,
|
@@ -202,6 +313,60 @@ class AlertPolicyAlertStrategyNotificationRateLimitArgs:
|
|
202
313
|
pulumi.set(self, "period", value)
|
203
314
|
|
204
315
|
|
316
|
+
if not MYPY:
|
317
|
+
class AlertPolicyConditionArgsDict(TypedDict):
|
318
|
+
display_name: pulumi.Input[str]
|
319
|
+
"""
|
320
|
+
A short name or phrase used to identify the
|
321
|
+
condition in dashboards, notifications, and
|
322
|
+
incidents. To avoid confusion, don't use the same
|
323
|
+
display name for multiple conditions in the same
|
324
|
+
policy.
|
325
|
+
"""
|
326
|
+
condition_absent: NotRequired[pulumi.Input['AlertPolicyConditionConditionAbsentArgsDict']]
|
327
|
+
"""
|
328
|
+
A condition that checks that a time series
|
329
|
+
continues to receive new data points.
|
330
|
+
Structure is documented below.
|
331
|
+
"""
|
332
|
+
condition_matched_log: NotRequired[pulumi.Input['AlertPolicyConditionConditionMatchedLogArgsDict']]
|
333
|
+
"""
|
334
|
+
A condition that checks for log messages matching given constraints.
|
335
|
+
If set, no other conditions can be present.
|
336
|
+
Structure is documented below.
|
337
|
+
"""
|
338
|
+
condition_monitoring_query_language: NotRequired[pulumi.Input['AlertPolicyConditionConditionMonitoringQueryLanguageArgsDict']]
|
339
|
+
"""
|
340
|
+
A Monitoring Query Language query that outputs a boolean stream
|
341
|
+
Structure is documented below.
|
342
|
+
"""
|
343
|
+
condition_prometheus_query_language: NotRequired[pulumi.Input['AlertPolicyConditionConditionPrometheusQueryLanguageArgsDict']]
|
344
|
+
"""
|
345
|
+
A condition type that allows alert policies to be defined using
|
346
|
+
Prometheus Query Language (PromQL).
|
347
|
+
The PrometheusQueryLanguageCondition message contains information
|
348
|
+
from a Prometheus alerting rule and its associated rule group.
|
349
|
+
Structure is documented below.
|
350
|
+
"""
|
351
|
+
condition_threshold: NotRequired[pulumi.Input['AlertPolicyConditionConditionThresholdArgsDict']]
|
352
|
+
"""
|
353
|
+
A condition that compares a time series against a
|
354
|
+
threshold.
|
355
|
+
Structure is documented below.
|
356
|
+
"""
|
357
|
+
name: NotRequired[pulumi.Input[str]]
|
358
|
+
"""
|
359
|
+
(Output)
|
360
|
+
The unique resource name for this condition.
|
361
|
+
Its syntax is:
|
362
|
+
projects/[PROJECT_ID]/alertPolicies/[POLICY_ID]/conditions/[CONDITION_ID]
|
363
|
+
[CONDITION_ID] is assigned by Stackdriver Monitoring when
|
364
|
+
the condition is created as part of a new or updated alerting
|
365
|
+
policy.
|
366
|
+
"""
|
367
|
+
elif False:
|
368
|
+
AlertPolicyConditionArgsDict: TypeAlias = Mapping[str, Any]
|
369
|
+
|
205
370
|
@pulumi.input_type
|
206
371
|
class AlertPolicyConditionArgs:
|
207
372
|
def __init__(__self__, *,
|
@@ -362,6 +527,57 @@ class AlertPolicyConditionArgs:
|
|
362
527
|
pulumi.set(self, "name", value)
|
363
528
|
|
364
529
|
|
530
|
+
if not MYPY:
|
531
|
+
class AlertPolicyConditionConditionAbsentArgsDict(TypedDict):
|
532
|
+
duration: pulumi.Input[str]
|
533
|
+
"""
|
534
|
+
The amount of time that a time series must
|
535
|
+
fail to report new data to be considered
|
536
|
+
failing. Currently, only values that are a
|
537
|
+
multiple of a minute--e.g. 60s, 120s, or 300s
|
538
|
+
--are supported.
|
539
|
+
"""
|
540
|
+
aggregations: NotRequired[pulumi.Input[Sequence[pulumi.Input['AlertPolicyConditionConditionAbsentAggregationArgsDict']]]]
|
541
|
+
"""
|
542
|
+
Specifies the alignment of data points in
|
543
|
+
individual time series as well as how to
|
544
|
+
combine the retrieved time series together
|
545
|
+
(such as when aggregating multiple streams
|
546
|
+
on each resource to a single stream for each
|
547
|
+
resource or when aggregating streams across
|
548
|
+
all members of a group of resources).
|
549
|
+
Multiple aggregations are applied in the
|
550
|
+
order specified.
|
551
|
+
Structure is documented below.
|
552
|
+
"""
|
553
|
+
filter: NotRequired[pulumi.Input[str]]
|
554
|
+
"""
|
555
|
+
A filter that identifies which time series
|
556
|
+
should be compared with the threshold.The
|
557
|
+
filter is similar to the one that is
|
558
|
+
specified in the
|
559
|
+
MetricService.ListTimeSeries request (that
|
560
|
+
call is useful to verify the time series
|
561
|
+
that will be retrieved / processed) and must
|
562
|
+
specify the metric type and optionally may
|
563
|
+
contain restrictions on resource type,
|
564
|
+
resource labels, and metric labels. This
|
565
|
+
field may not exceed 2048 Unicode characters
|
566
|
+
in length.
|
567
|
+
"""
|
568
|
+
trigger: NotRequired[pulumi.Input['AlertPolicyConditionConditionAbsentTriggerArgsDict']]
|
569
|
+
"""
|
570
|
+
The number/percent of time series for which
|
571
|
+
the comparison must hold in order for the
|
572
|
+
condition to trigger. If unspecified, then
|
573
|
+
the condition will trigger if the comparison
|
574
|
+
is true for any of the time series that have
|
575
|
+
been identified by filter and aggregations.
|
576
|
+
Structure is documented below.
|
577
|
+
"""
|
578
|
+
elif False:
|
579
|
+
AlertPolicyConditionConditionAbsentArgsDict: TypeAlias = Mapping[str, Any]
|
580
|
+
|
365
581
|
@pulumi.input_type
|
366
582
|
class AlertPolicyConditionConditionAbsentArgs:
|
367
583
|
def __init__(__self__, *,
|
@@ -492,6 +708,98 @@ class AlertPolicyConditionConditionAbsentArgs:
|
|
492
708
|
pulumi.set(self, "trigger", value)
|
493
709
|
|
494
710
|
|
711
|
+
if not MYPY:
|
712
|
+
class AlertPolicyConditionConditionAbsentAggregationArgsDict(TypedDict):
|
713
|
+
alignment_period: NotRequired[pulumi.Input[str]]
|
714
|
+
"""
|
715
|
+
The alignment period for per-time
|
716
|
+
series alignment. If present,
|
717
|
+
alignmentPeriod must be at least
|
718
|
+
60 seconds. After per-time series
|
719
|
+
alignment, each time series will
|
720
|
+
contain data points only on the
|
721
|
+
period boundaries. If
|
722
|
+
perSeriesAligner is not specified
|
723
|
+
or equals ALIGN_NONE, then this
|
724
|
+
field is ignored. If
|
725
|
+
perSeriesAligner is specified and
|
726
|
+
does not equal ALIGN_NONE, then
|
727
|
+
this field must be defined;
|
728
|
+
otherwise an error is returned.
|
729
|
+
"""
|
730
|
+
cross_series_reducer: NotRequired[pulumi.Input[str]]
|
731
|
+
"""
|
732
|
+
The approach to be used to combine
|
733
|
+
time series. Not all reducer
|
734
|
+
functions may be applied to all
|
735
|
+
time series, depending on the
|
736
|
+
metric type and the value type of
|
737
|
+
the original time series.
|
738
|
+
Reduction may change the metric
|
739
|
+
type of value type of the time
|
740
|
+
series.Time series data must be
|
741
|
+
aligned in order to perform cross-
|
742
|
+
time series reduction. If
|
743
|
+
crossSeriesReducer is specified,
|
744
|
+
then perSeriesAligner must be
|
745
|
+
specified and not equal ALIGN_NONE
|
746
|
+
and alignmentPeriod must be
|
747
|
+
specified; otherwise, an error is
|
748
|
+
returned.
|
749
|
+
Possible values are: `REDUCE_NONE`, `REDUCE_MEAN`, `REDUCE_MIN`, `REDUCE_MAX`, `REDUCE_SUM`, `REDUCE_STDDEV`, `REDUCE_COUNT`, `REDUCE_COUNT_TRUE`, `REDUCE_COUNT_FALSE`, `REDUCE_FRACTION_TRUE`, `REDUCE_PERCENTILE_99`, `REDUCE_PERCENTILE_95`, `REDUCE_PERCENTILE_50`, `REDUCE_PERCENTILE_05`.
|
750
|
+
"""
|
751
|
+
group_by_fields: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
752
|
+
"""
|
753
|
+
The set of fields to preserve when
|
754
|
+
crossSeriesReducer is specified.
|
755
|
+
The groupByFields determine how
|
756
|
+
the time series are partitioned
|
757
|
+
into subsets prior to applying the
|
758
|
+
aggregation function. Each subset
|
759
|
+
contains time series that have the
|
760
|
+
same value for each of the
|
761
|
+
grouping fields. Each individual
|
762
|
+
time series is a member of exactly
|
763
|
+
one subset. The crossSeriesReducer
|
764
|
+
is applied to each subset of time
|
765
|
+
series. It is not possible to
|
766
|
+
reduce across different resource
|
767
|
+
types, so this field implicitly
|
768
|
+
contains resource.type. Fields not
|
769
|
+
specified in groupByFields are
|
770
|
+
aggregated away. If groupByFields
|
771
|
+
is not specified and all the time
|
772
|
+
series have the same resource
|
773
|
+
type, then the time series are
|
774
|
+
aggregated into a single output
|
775
|
+
time series. If crossSeriesReducer
|
776
|
+
is not defined, this field is
|
777
|
+
ignored.
|
778
|
+
"""
|
779
|
+
per_series_aligner: NotRequired[pulumi.Input[str]]
|
780
|
+
"""
|
781
|
+
The approach to be used to align
|
782
|
+
individual time series. Not all
|
783
|
+
alignment functions may be applied
|
784
|
+
to all time series, depending on
|
785
|
+
the metric type and value type of
|
786
|
+
the original time series.
|
787
|
+
Alignment may change the metric
|
788
|
+
type or the value type of the time
|
789
|
+
series.Time series data must be
|
790
|
+
aligned in order to perform cross-
|
791
|
+
time series reduction. If
|
792
|
+
crossSeriesReducer is specified,
|
793
|
+
then perSeriesAligner must be
|
794
|
+
specified and not equal ALIGN_NONE
|
795
|
+
and alignmentPeriod must be
|
796
|
+
specified; otherwise, an error is
|
797
|
+
returned.
|
798
|
+
Possible values are: `ALIGN_NONE`, `ALIGN_DELTA`, `ALIGN_RATE`, `ALIGN_INTERPOLATE`, `ALIGN_NEXT_OLDER`, `ALIGN_MIN`, `ALIGN_MAX`, `ALIGN_MEAN`, `ALIGN_COUNT`, `ALIGN_SUM`, `ALIGN_STDDEV`, `ALIGN_COUNT_TRUE`, `ALIGN_COUNT_FALSE`, `ALIGN_FRACTION_TRUE`, `ALIGN_PERCENTILE_99`, `ALIGN_PERCENTILE_95`, `ALIGN_PERCENTILE_50`, `ALIGN_PERCENTILE_05`, `ALIGN_PERCENT_CHANGE`.
|
799
|
+
"""
|
800
|
+
elif False:
|
801
|
+
AlertPolicyConditionConditionAbsentAggregationArgsDict: TypeAlias = Mapping[str, Any]
|
802
|
+
|
495
803
|
@pulumi.input_type
|
496
804
|
class AlertPolicyConditionConditionAbsentAggregationArgs:
|
497
805
|
def __init__(__self__, *,
|
@@ -705,6 +1013,23 @@ class AlertPolicyConditionConditionAbsentAggregationArgs:
|
|
705
1013
|
pulumi.set(self, "per_series_aligner", value)
|
706
1014
|
|
707
1015
|
|
1016
|
+
if not MYPY:
|
1017
|
+
class AlertPolicyConditionConditionAbsentTriggerArgsDict(TypedDict):
|
1018
|
+
count: NotRequired[pulumi.Input[int]]
|
1019
|
+
"""
|
1020
|
+
The absolute number of time series
|
1021
|
+
that must fail the predicate for the
|
1022
|
+
condition to be triggered.
|
1023
|
+
"""
|
1024
|
+
percent: NotRequired[pulumi.Input[float]]
|
1025
|
+
"""
|
1026
|
+
The percentage of time series that
|
1027
|
+
must fail the predicate for the
|
1028
|
+
condition to be triggered.
|
1029
|
+
"""
|
1030
|
+
elif False:
|
1031
|
+
AlertPolicyConditionConditionAbsentTriggerArgsDict: TypeAlias = Mapping[str, Any]
|
1032
|
+
|
708
1033
|
@pulumi.input_type
|
709
1034
|
class AlertPolicyConditionConditionAbsentTriggerArgs:
|
710
1035
|
def __init__(__self__, *,
|
@@ -752,6 +1077,25 @@ class AlertPolicyConditionConditionAbsentTriggerArgs:
|
|
752
1077
|
pulumi.set(self, "percent", value)
|
753
1078
|
|
754
1079
|
|
1080
|
+
if not MYPY:
|
1081
|
+
class AlertPolicyConditionConditionMatchedLogArgsDict(TypedDict):
|
1082
|
+
filter: pulumi.Input[str]
|
1083
|
+
"""
|
1084
|
+
A logs-based filter.
|
1085
|
+
"""
|
1086
|
+
label_extractors: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
1087
|
+
"""
|
1088
|
+
A map from a label key to an extractor expression, which is used to
|
1089
|
+
extract the value for this label key. Each entry in this map is
|
1090
|
+
a specification for how data should be extracted from log entries that
|
1091
|
+
match filter. Each combination of extracted values is treated as
|
1092
|
+
a separate rule for the purposes of triggering notifications.
|
1093
|
+
Label keys and corresponding values can be used in notifications
|
1094
|
+
generated by this condition.
|
1095
|
+
"""
|
1096
|
+
elif False:
|
1097
|
+
AlertPolicyConditionConditionMatchedLogArgsDict: TypeAlias = Mapping[str, Any]
|
1098
|
+
|
755
1099
|
@pulumi.input_type
|
756
1100
|
class AlertPolicyConditionConditionMatchedLogArgs:
|
757
1101
|
def __init__(__self__, *,
|
@@ -802,6 +1146,52 @@ class AlertPolicyConditionConditionMatchedLogArgs:
|
|
802
1146
|
pulumi.set(self, "label_extractors", value)
|
803
1147
|
|
804
1148
|
|
1149
|
+
if not MYPY:
|
1150
|
+
class AlertPolicyConditionConditionMonitoringQueryLanguageArgsDict(TypedDict):
|
1151
|
+
duration: pulumi.Input[str]
|
1152
|
+
"""
|
1153
|
+
The amount of time that a time series must
|
1154
|
+
violate the threshold to be considered
|
1155
|
+
failing. Currently, only values that are a
|
1156
|
+
multiple of a minute--e.g., 0, 60, 120, or
|
1157
|
+
300 seconds--are supported. If an invalid
|
1158
|
+
value is given, an error will be returned.
|
1159
|
+
When choosing a duration, it is useful to
|
1160
|
+
keep in mind the frequency of the underlying
|
1161
|
+
time series data (which may also be affected
|
1162
|
+
by any alignments specified in the
|
1163
|
+
aggregations field); a good duration is long
|
1164
|
+
enough so that a single outlier does not
|
1165
|
+
generate spurious alerts, but short enough
|
1166
|
+
that unhealthy states are detected and
|
1167
|
+
alerted on quickly.
|
1168
|
+
"""
|
1169
|
+
query: pulumi.Input[str]
|
1170
|
+
"""
|
1171
|
+
Monitoring Query Language query that outputs a boolean stream.
|
1172
|
+
"""
|
1173
|
+
evaluation_missing_data: NotRequired[pulumi.Input[str]]
|
1174
|
+
"""
|
1175
|
+
A condition control that determines how
|
1176
|
+
metric-threshold conditions are evaluated when
|
1177
|
+
data stops arriving.
|
1178
|
+
Possible values are: `EVALUATION_MISSING_DATA_INACTIVE`, `EVALUATION_MISSING_DATA_ACTIVE`, `EVALUATION_MISSING_DATA_NO_OP`.
|
1179
|
+
"""
|
1180
|
+
trigger: NotRequired[pulumi.Input['AlertPolicyConditionConditionMonitoringQueryLanguageTriggerArgsDict']]
|
1181
|
+
"""
|
1182
|
+
The number/percent of time series for which
|
1183
|
+
the comparison must hold in order for the
|
1184
|
+
condition to trigger. If unspecified, then
|
1185
|
+
the condition will trigger if the comparison
|
1186
|
+
is true for any of the time series that have
|
1187
|
+
been identified by filter and aggregations,
|
1188
|
+
or by the ratio, if denominator_filter and
|
1189
|
+
denominator_aggregations are specified.
|
1190
|
+
Structure is documented below.
|
1191
|
+
"""
|
1192
|
+
elif False:
|
1193
|
+
AlertPolicyConditionConditionMonitoringQueryLanguageArgsDict: TypeAlias = Mapping[str, Any]
|
1194
|
+
|
805
1195
|
@pulumi.input_type
|
806
1196
|
class AlertPolicyConditionConditionMonitoringQueryLanguageArgs:
|
807
1197
|
def __init__(__self__, *,
|
@@ -921,6 +1311,23 @@ class AlertPolicyConditionConditionMonitoringQueryLanguageArgs:
|
|
921
1311
|
pulumi.set(self, "trigger", value)
|
922
1312
|
|
923
1313
|
|
1314
|
+
if not MYPY:
|
1315
|
+
class AlertPolicyConditionConditionMonitoringQueryLanguageTriggerArgsDict(TypedDict):
|
1316
|
+
count: NotRequired[pulumi.Input[int]]
|
1317
|
+
"""
|
1318
|
+
The absolute number of time series
|
1319
|
+
that must fail the predicate for the
|
1320
|
+
condition to be triggered.
|
1321
|
+
"""
|
1322
|
+
percent: NotRequired[pulumi.Input[float]]
|
1323
|
+
"""
|
1324
|
+
The percentage of time series that
|
1325
|
+
must fail the predicate for the
|
1326
|
+
condition to be triggered.
|
1327
|
+
"""
|
1328
|
+
elif False:
|
1329
|
+
AlertPolicyConditionConditionMonitoringQueryLanguageTriggerArgsDict: TypeAlias = Mapping[str, Any]
|
1330
|
+
|
924
1331
|
@pulumi.input_type
|
925
1332
|
class AlertPolicyConditionConditionMonitoringQueryLanguageTriggerArgs:
|
926
1333
|
def __init__(__self__, *,
|
@@ -968,6 +1375,65 @@ class AlertPolicyConditionConditionMonitoringQueryLanguageTriggerArgs:
|
|
968
1375
|
pulumi.set(self, "percent", value)
|
969
1376
|
|
970
1377
|
|
1378
|
+
if not MYPY:
|
1379
|
+
class AlertPolicyConditionConditionPrometheusQueryLanguageArgsDict(TypedDict):
|
1380
|
+
query: pulumi.Input[str]
|
1381
|
+
"""
|
1382
|
+
The PromQL expression to evaluate. Every evaluation cycle this
|
1383
|
+
expression is evaluated at the current time, and all resultant time
|
1384
|
+
series become pending/firing alerts. This field must not be empty.
|
1385
|
+
"""
|
1386
|
+
alert_rule: NotRequired[pulumi.Input[str]]
|
1387
|
+
"""
|
1388
|
+
The alerting rule name of this alert in the corresponding Prometheus
|
1389
|
+
configuration file.
|
1390
|
+
Some external tools may require this field to be populated correctly
|
1391
|
+
in order to refer to the original Prometheus configuration file.
|
1392
|
+
The rule group name and the alert name are necessary to update the
|
1393
|
+
relevant AlertPolicies in case the definition of the rule group changes
|
1394
|
+
in the future.
|
1395
|
+
This field is optional. If this field is not empty, then it must be a
|
1396
|
+
valid Prometheus label name.
|
1397
|
+
|
1398
|
+
- - -
|
1399
|
+
"""
|
1400
|
+
duration: NotRequired[pulumi.Input[str]]
|
1401
|
+
"""
|
1402
|
+
Alerts are considered firing once their PromQL expression evaluated
|
1403
|
+
to be "true" for this long. Alerts whose PromQL expression was not
|
1404
|
+
evaluated to be "true" for long enough are considered pending. The
|
1405
|
+
default value is zero. Must be zero or positive.
|
1406
|
+
"""
|
1407
|
+
evaluation_interval: NotRequired[pulumi.Input[str]]
|
1408
|
+
"""
|
1409
|
+
How often this rule should be evaluated. Must be a positive multiple
|
1410
|
+
of 30 seconds or missing. The default value is 30 seconds. If this
|
1411
|
+
PrometheusQueryLanguageCondition was generated from a Prometheus
|
1412
|
+
alerting rule, then this value should be taken from the enclosing
|
1413
|
+
rule group.
|
1414
|
+
"""
|
1415
|
+
labels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
1416
|
+
"""
|
1417
|
+
Labels to add to or overwrite in the PromQL query result. Label names
|
1418
|
+
must be valid.
|
1419
|
+
Label values can be templatized by using variables. The only available
|
1420
|
+
variable names are the names of the labels in the PromQL result, including
|
1421
|
+
"__name__" and "value". "labels" may be empty. This field is intended to be
|
1422
|
+
used for organizing and identifying the AlertPolicy
|
1423
|
+
"""
|
1424
|
+
rule_group: NotRequired[pulumi.Input[str]]
|
1425
|
+
"""
|
1426
|
+
The rule group name of this alert in the corresponding Prometheus
|
1427
|
+
configuration file.
|
1428
|
+
Some external tools may require this field to be populated correctly
|
1429
|
+
in order to refer to the original Prometheus configuration file.
|
1430
|
+
The rule group name and the alert name are necessary to update the
|
1431
|
+
relevant AlertPolicies in case the definition of the rule group changes
|
1432
|
+
in the future. This field is optional.
|
1433
|
+
"""
|
1434
|
+
elif False:
|
1435
|
+
AlertPolicyConditionConditionPrometheusQueryLanguageArgsDict: TypeAlias = Mapping[str, Any]
|
1436
|
+
|
971
1437
|
@pulumi.input_type
|
972
1438
|
class AlertPolicyConditionConditionPrometheusQueryLanguageArgs:
|
973
1439
|
def __init__(__self__, *,
|
@@ -1123,12 +1589,151 @@ class AlertPolicyConditionConditionPrometheusQueryLanguageArgs:
|
|
1123
1589
|
relevant AlertPolicies in case the definition of the rule group changes
|
1124
1590
|
in the future. This field is optional.
|
1125
1591
|
"""
|
1126
|
-
return pulumi.get(self, "rule_group")
|
1127
|
-
|
1128
|
-
@rule_group.setter
|
1129
|
-
def rule_group(self, value: Optional[pulumi.Input[str]]):
|
1130
|
-
pulumi.set(self, "rule_group", value)
|
1131
|
-
|
1592
|
+
return pulumi.get(self, "rule_group")
|
1593
|
+
|
1594
|
+
@rule_group.setter
|
1595
|
+
def rule_group(self, value: Optional[pulumi.Input[str]]):
|
1596
|
+
pulumi.set(self, "rule_group", value)
|
1597
|
+
|
1598
|
+
|
1599
|
+
if not MYPY:
|
1600
|
+
class AlertPolicyConditionConditionThresholdArgsDict(TypedDict):
|
1601
|
+
comparison: pulumi.Input[str]
|
1602
|
+
"""
|
1603
|
+
The comparison to apply between the time
|
1604
|
+
series (indicated by filter and aggregation)
|
1605
|
+
and the threshold (indicated by
|
1606
|
+
threshold_value). The comparison is applied
|
1607
|
+
on each time series, with the time series on
|
1608
|
+
the left-hand side and the threshold on the
|
1609
|
+
right-hand side. Only COMPARISON_LT and
|
1610
|
+
COMPARISON_GT are supported currently.
|
1611
|
+
Possible values are: `COMPARISON_GT`, `COMPARISON_GE`, `COMPARISON_LT`, `COMPARISON_LE`, `COMPARISON_EQ`, `COMPARISON_NE`.
|
1612
|
+
"""
|
1613
|
+
duration: pulumi.Input[str]
|
1614
|
+
"""
|
1615
|
+
The amount of time that a time series must
|
1616
|
+
violate the threshold to be considered
|
1617
|
+
failing. Currently, only values that are a
|
1618
|
+
multiple of a minute--e.g., 0, 60, 120, or
|
1619
|
+
300 seconds--are supported. If an invalid
|
1620
|
+
value is given, an error will be returned.
|
1621
|
+
When choosing a duration, it is useful to
|
1622
|
+
keep in mind the frequency of the underlying
|
1623
|
+
time series data (which may also be affected
|
1624
|
+
by any alignments specified in the
|
1625
|
+
aggregations field); a good duration is long
|
1626
|
+
enough so that a single outlier does not
|
1627
|
+
generate spurious alerts, but short enough
|
1628
|
+
that unhealthy states are detected and
|
1629
|
+
alerted on quickly.
|
1630
|
+
"""
|
1631
|
+
aggregations: NotRequired[pulumi.Input[Sequence[pulumi.Input['AlertPolicyConditionConditionThresholdAggregationArgsDict']]]]
|
1632
|
+
"""
|
1633
|
+
Specifies the alignment of data points in
|
1634
|
+
individual time series as well as how to
|
1635
|
+
combine the retrieved time series together
|
1636
|
+
(such as when aggregating multiple streams
|
1637
|
+
on each resource to a single stream for each
|
1638
|
+
resource or when aggregating streams across
|
1639
|
+
all members of a group of resources).
|
1640
|
+
Multiple aggregations are applied in the
|
1641
|
+
order specified.This field is similar to the
|
1642
|
+
one in the MetricService.ListTimeSeries
|
1643
|
+
request. It is advisable to use the
|
1644
|
+
ListTimeSeries method when debugging this
|
1645
|
+
field.
|
1646
|
+
Structure is documented below.
|
1647
|
+
"""
|
1648
|
+
denominator_aggregations: NotRequired[pulumi.Input[Sequence[pulumi.Input['AlertPolicyConditionConditionThresholdDenominatorAggregationArgsDict']]]]
|
1649
|
+
"""
|
1650
|
+
Specifies the alignment of data points in
|
1651
|
+
individual time series selected by
|
1652
|
+
denominatorFilter as well as how to combine
|
1653
|
+
the retrieved time series together (such as
|
1654
|
+
when aggregating multiple streams on each
|
1655
|
+
resource to a single stream for each
|
1656
|
+
resource or when aggregating streams across
|
1657
|
+
all members of a group of resources).When
|
1658
|
+
computing ratios, the aggregations and
|
1659
|
+
denominator_aggregations fields must use the
|
1660
|
+
same alignment period and produce time
|
1661
|
+
series that have the same periodicity and
|
1662
|
+
labels.This field is similar to the one in
|
1663
|
+
the MetricService.ListTimeSeries request. It
|
1664
|
+
is advisable to use the ListTimeSeries
|
1665
|
+
method when debugging this field.
|
1666
|
+
Structure is documented below.
|
1667
|
+
"""
|
1668
|
+
denominator_filter: NotRequired[pulumi.Input[str]]
|
1669
|
+
"""
|
1670
|
+
A filter that identifies a time series that
|
1671
|
+
should be used as the denominator of a ratio
|
1672
|
+
that will be compared with the threshold. If
|
1673
|
+
a denominator_filter is specified, the time
|
1674
|
+
series specified by the filter field will be
|
1675
|
+
used as the numerator.The filter is similar
|
1676
|
+
to the one that is specified in the
|
1677
|
+
MetricService.ListTimeSeries request (that
|
1678
|
+
call is useful to verify the time series
|
1679
|
+
that will be retrieved / processed) and must
|
1680
|
+
specify the metric type and optionally may
|
1681
|
+
contain restrictions on resource type,
|
1682
|
+
resource labels, and metric labels. This
|
1683
|
+
field may not exceed 2048 Unicode characters
|
1684
|
+
in length.
|
1685
|
+
"""
|
1686
|
+
evaluation_missing_data: NotRequired[pulumi.Input[str]]
|
1687
|
+
"""
|
1688
|
+
A condition control that determines how
|
1689
|
+
metric-threshold conditions are evaluated when
|
1690
|
+
data stops arriving.
|
1691
|
+
Possible values are: `EVALUATION_MISSING_DATA_INACTIVE`, `EVALUATION_MISSING_DATA_ACTIVE`, `EVALUATION_MISSING_DATA_NO_OP`.
|
1692
|
+
"""
|
1693
|
+
filter: NotRequired[pulumi.Input[str]]
|
1694
|
+
"""
|
1695
|
+
A filter that identifies which time series
|
1696
|
+
should be compared with the threshold.The
|
1697
|
+
filter is similar to the one that is
|
1698
|
+
specified in the
|
1699
|
+
MetricService.ListTimeSeries request (that
|
1700
|
+
call is useful to verify the time series
|
1701
|
+
that will be retrieved / processed) and must
|
1702
|
+
specify the metric type and optionally may
|
1703
|
+
contain restrictions on resource type,
|
1704
|
+
resource labels, and metric labels. This
|
1705
|
+
field may not exceed 2048 Unicode characters
|
1706
|
+
in length.
|
1707
|
+
"""
|
1708
|
+
forecast_options: NotRequired[pulumi.Input['AlertPolicyConditionConditionThresholdForecastOptionsArgsDict']]
|
1709
|
+
"""
|
1710
|
+
When this field is present, the `MetricThreshold`
|
1711
|
+
condition forecasts whether the time series is
|
1712
|
+
predicted to violate the threshold within the
|
1713
|
+
`forecastHorizon`. When this field is not set, the
|
1714
|
+
`MetricThreshold` tests the current value of the
|
1715
|
+
timeseries against the threshold.
|
1716
|
+
Structure is documented below.
|
1717
|
+
"""
|
1718
|
+
threshold_value: NotRequired[pulumi.Input[float]]
|
1719
|
+
"""
|
1720
|
+
A value against which to compare the time
|
1721
|
+
series.
|
1722
|
+
"""
|
1723
|
+
trigger: NotRequired[pulumi.Input['AlertPolicyConditionConditionThresholdTriggerArgsDict']]
|
1724
|
+
"""
|
1725
|
+
The number/percent of time series for which
|
1726
|
+
the comparison must hold in order for the
|
1727
|
+
condition to trigger. If unspecified, then
|
1728
|
+
the condition will trigger if the comparison
|
1729
|
+
is true for any of the time series that have
|
1730
|
+
been identified by filter and aggregations,
|
1731
|
+
or by the ratio, if denominator_filter and
|
1732
|
+
denominator_aggregations are specified.
|
1733
|
+
Structure is documented below.
|
1734
|
+
"""
|
1735
|
+
elif False:
|
1736
|
+
AlertPolicyConditionConditionThresholdArgsDict: TypeAlias = Mapping[str, Any]
|
1132
1737
|
|
1133
1738
|
@pulumi.input_type
|
1134
1739
|
class AlertPolicyConditionConditionThresholdArgs:
|
@@ -1483,6 +2088,98 @@ class AlertPolicyConditionConditionThresholdArgs:
|
|
1483
2088
|
pulumi.set(self, "trigger", value)
|
1484
2089
|
|
1485
2090
|
|
2091
|
+
if not MYPY:
|
2092
|
+
class AlertPolicyConditionConditionThresholdAggregationArgsDict(TypedDict):
|
2093
|
+
alignment_period: NotRequired[pulumi.Input[str]]
|
2094
|
+
"""
|
2095
|
+
The alignment period for per-time
|
2096
|
+
series alignment. If present,
|
2097
|
+
alignmentPeriod must be at least
|
2098
|
+
60 seconds. After per-time series
|
2099
|
+
alignment, each time series will
|
2100
|
+
contain data points only on the
|
2101
|
+
period boundaries. If
|
2102
|
+
perSeriesAligner is not specified
|
2103
|
+
or equals ALIGN_NONE, then this
|
2104
|
+
field is ignored. If
|
2105
|
+
perSeriesAligner is specified and
|
2106
|
+
does not equal ALIGN_NONE, then
|
2107
|
+
this field must be defined;
|
2108
|
+
otherwise an error is returned.
|
2109
|
+
"""
|
2110
|
+
cross_series_reducer: NotRequired[pulumi.Input[str]]
|
2111
|
+
"""
|
2112
|
+
The approach to be used to combine
|
2113
|
+
time series. Not all reducer
|
2114
|
+
functions may be applied to all
|
2115
|
+
time series, depending on the
|
2116
|
+
metric type and the value type of
|
2117
|
+
the original time series.
|
2118
|
+
Reduction may change the metric
|
2119
|
+
type of value type of the time
|
2120
|
+
series.Time series data must be
|
2121
|
+
aligned in order to perform cross-
|
2122
|
+
time series reduction. If
|
2123
|
+
crossSeriesReducer is specified,
|
2124
|
+
then perSeriesAligner must be
|
2125
|
+
specified and not equal ALIGN_NONE
|
2126
|
+
and alignmentPeriod must be
|
2127
|
+
specified; otherwise, an error is
|
2128
|
+
returned.
|
2129
|
+
Possible values are: `REDUCE_NONE`, `REDUCE_MEAN`, `REDUCE_MIN`, `REDUCE_MAX`, `REDUCE_SUM`, `REDUCE_STDDEV`, `REDUCE_COUNT`, `REDUCE_COUNT_TRUE`, `REDUCE_COUNT_FALSE`, `REDUCE_FRACTION_TRUE`, `REDUCE_PERCENTILE_99`, `REDUCE_PERCENTILE_95`, `REDUCE_PERCENTILE_50`, `REDUCE_PERCENTILE_05`.
|
2130
|
+
"""
|
2131
|
+
group_by_fields: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
2132
|
+
"""
|
2133
|
+
The set of fields to preserve when
|
2134
|
+
crossSeriesReducer is specified.
|
2135
|
+
The groupByFields determine how
|
2136
|
+
the time series are partitioned
|
2137
|
+
into subsets prior to applying the
|
2138
|
+
aggregation function. Each subset
|
2139
|
+
contains time series that have the
|
2140
|
+
same value for each of the
|
2141
|
+
grouping fields. Each individual
|
2142
|
+
time series is a member of exactly
|
2143
|
+
one subset. The crossSeriesReducer
|
2144
|
+
is applied to each subset of time
|
2145
|
+
series. It is not possible to
|
2146
|
+
reduce across different resource
|
2147
|
+
types, so this field implicitly
|
2148
|
+
contains resource.type. Fields not
|
2149
|
+
specified in groupByFields are
|
2150
|
+
aggregated away. If groupByFields
|
2151
|
+
is not specified and all the time
|
2152
|
+
series have the same resource
|
2153
|
+
type, then the time series are
|
2154
|
+
aggregated into a single output
|
2155
|
+
time series. If crossSeriesReducer
|
2156
|
+
is not defined, this field is
|
2157
|
+
ignored.
|
2158
|
+
"""
|
2159
|
+
per_series_aligner: NotRequired[pulumi.Input[str]]
|
2160
|
+
"""
|
2161
|
+
The approach to be used to align
|
2162
|
+
individual time series. Not all
|
2163
|
+
alignment functions may be applied
|
2164
|
+
to all time series, depending on
|
2165
|
+
the metric type and value type of
|
2166
|
+
the original time series.
|
2167
|
+
Alignment may change the metric
|
2168
|
+
type or the value type of the time
|
2169
|
+
series.Time series data must be
|
2170
|
+
aligned in order to perform cross-
|
2171
|
+
time series reduction. If
|
2172
|
+
crossSeriesReducer is specified,
|
2173
|
+
then perSeriesAligner must be
|
2174
|
+
specified and not equal ALIGN_NONE
|
2175
|
+
and alignmentPeriod must be
|
2176
|
+
specified; otherwise, an error is
|
2177
|
+
returned.
|
2178
|
+
Possible values are: `ALIGN_NONE`, `ALIGN_DELTA`, `ALIGN_RATE`, `ALIGN_INTERPOLATE`, `ALIGN_NEXT_OLDER`, `ALIGN_MIN`, `ALIGN_MAX`, `ALIGN_MEAN`, `ALIGN_COUNT`, `ALIGN_SUM`, `ALIGN_STDDEV`, `ALIGN_COUNT_TRUE`, `ALIGN_COUNT_FALSE`, `ALIGN_FRACTION_TRUE`, `ALIGN_PERCENTILE_99`, `ALIGN_PERCENTILE_95`, `ALIGN_PERCENTILE_50`, `ALIGN_PERCENTILE_05`, `ALIGN_PERCENT_CHANGE`.
|
2179
|
+
"""
|
2180
|
+
elif False:
|
2181
|
+
AlertPolicyConditionConditionThresholdAggregationArgsDict: TypeAlias = Mapping[str, Any]
|
2182
|
+
|
1486
2183
|
@pulumi.input_type
|
1487
2184
|
class AlertPolicyConditionConditionThresholdAggregationArgs:
|
1488
2185
|
def __init__(__self__, *,
|
@@ -1696,6 +2393,98 @@ class AlertPolicyConditionConditionThresholdAggregationArgs:
|
|
1696
2393
|
pulumi.set(self, "per_series_aligner", value)
|
1697
2394
|
|
1698
2395
|
|
2396
|
+
if not MYPY:
|
2397
|
+
class AlertPolicyConditionConditionThresholdDenominatorAggregationArgsDict(TypedDict):
|
2398
|
+
alignment_period: NotRequired[pulumi.Input[str]]
|
2399
|
+
"""
|
2400
|
+
The alignment period for per-time
|
2401
|
+
series alignment. If present,
|
2402
|
+
alignmentPeriod must be at least
|
2403
|
+
60 seconds. After per-time series
|
2404
|
+
alignment, each time series will
|
2405
|
+
contain data points only on the
|
2406
|
+
period boundaries. If
|
2407
|
+
perSeriesAligner is not specified
|
2408
|
+
or equals ALIGN_NONE, then this
|
2409
|
+
field is ignored. If
|
2410
|
+
perSeriesAligner is specified and
|
2411
|
+
does not equal ALIGN_NONE, then
|
2412
|
+
this field must be defined;
|
2413
|
+
otherwise an error is returned.
|
2414
|
+
"""
|
2415
|
+
cross_series_reducer: NotRequired[pulumi.Input[str]]
|
2416
|
+
"""
|
2417
|
+
The approach to be used to combine
|
2418
|
+
time series. Not all reducer
|
2419
|
+
functions may be applied to all
|
2420
|
+
time series, depending on the
|
2421
|
+
metric type and the value type of
|
2422
|
+
the original time series.
|
2423
|
+
Reduction may change the metric
|
2424
|
+
type of value type of the time
|
2425
|
+
series.Time series data must be
|
2426
|
+
aligned in order to perform cross-
|
2427
|
+
time series reduction. If
|
2428
|
+
crossSeriesReducer is specified,
|
2429
|
+
then perSeriesAligner must be
|
2430
|
+
specified and not equal ALIGN_NONE
|
2431
|
+
and alignmentPeriod must be
|
2432
|
+
specified; otherwise, an error is
|
2433
|
+
returned.
|
2434
|
+
Possible values are: `REDUCE_NONE`, `REDUCE_MEAN`, `REDUCE_MIN`, `REDUCE_MAX`, `REDUCE_SUM`, `REDUCE_STDDEV`, `REDUCE_COUNT`, `REDUCE_COUNT_TRUE`, `REDUCE_COUNT_FALSE`, `REDUCE_FRACTION_TRUE`, `REDUCE_PERCENTILE_99`, `REDUCE_PERCENTILE_95`, `REDUCE_PERCENTILE_50`, `REDUCE_PERCENTILE_05`.
|
2435
|
+
"""
|
2436
|
+
group_by_fields: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
2437
|
+
"""
|
2438
|
+
The set of fields to preserve when
|
2439
|
+
crossSeriesReducer is specified.
|
2440
|
+
The groupByFields determine how
|
2441
|
+
the time series are partitioned
|
2442
|
+
into subsets prior to applying the
|
2443
|
+
aggregation function. Each subset
|
2444
|
+
contains time series that have the
|
2445
|
+
same value for each of the
|
2446
|
+
grouping fields. Each individual
|
2447
|
+
time series is a member of exactly
|
2448
|
+
one subset. The crossSeriesReducer
|
2449
|
+
is applied to each subset of time
|
2450
|
+
series. It is not possible to
|
2451
|
+
reduce across different resource
|
2452
|
+
types, so this field implicitly
|
2453
|
+
contains resource.type. Fields not
|
2454
|
+
specified in groupByFields are
|
2455
|
+
aggregated away. If groupByFields
|
2456
|
+
is not specified and all the time
|
2457
|
+
series have the same resource
|
2458
|
+
type, then the time series are
|
2459
|
+
aggregated into a single output
|
2460
|
+
time series. If crossSeriesReducer
|
2461
|
+
is not defined, this field is
|
2462
|
+
ignored.
|
2463
|
+
"""
|
2464
|
+
per_series_aligner: NotRequired[pulumi.Input[str]]
|
2465
|
+
"""
|
2466
|
+
The approach to be used to align
|
2467
|
+
individual time series. Not all
|
2468
|
+
alignment functions may be applied
|
2469
|
+
to all time series, depending on
|
2470
|
+
the metric type and value type of
|
2471
|
+
the original time series.
|
2472
|
+
Alignment may change the metric
|
2473
|
+
type or the value type of the time
|
2474
|
+
series.Time series data must be
|
2475
|
+
aligned in order to perform cross-
|
2476
|
+
time series reduction. If
|
2477
|
+
crossSeriesReducer is specified,
|
2478
|
+
then perSeriesAligner must be
|
2479
|
+
specified and not equal ALIGN_NONE
|
2480
|
+
and alignmentPeriod must be
|
2481
|
+
specified; otherwise, an error is
|
2482
|
+
returned.
|
2483
|
+
Possible values are: `ALIGN_NONE`, `ALIGN_DELTA`, `ALIGN_RATE`, `ALIGN_INTERPOLATE`, `ALIGN_NEXT_OLDER`, `ALIGN_MIN`, `ALIGN_MAX`, `ALIGN_MEAN`, `ALIGN_COUNT`, `ALIGN_SUM`, `ALIGN_STDDEV`, `ALIGN_COUNT_TRUE`, `ALIGN_COUNT_FALSE`, `ALIGN_FRACTION_TRUE`, `ALIGN_PERCENTILE_99`, `ALIGN_PERCENTILE_95`, `ALIGN_PERCENTILE_50`, `ALIGN_PERCENTILE_05`, `ALIGN_PERCENT_CHANGE`.
|
2484
|
+
"""
|
2485
|
+
elif False:
|
2486
|
+
AlertPolicyConditionConditionThresholdDenominatorAggregationArgsDict: TypeAlias = Mapping[str, Any]
|
2487
|
+
|
1699
2488
|
@pulumi.input_type
|
1700
2489
|
class AlertPolicyConditionConditionThresholdDenominatorAggregationArgs:
|
1701
2490
|
def __init__(__self__, *,
|
@@ -1909,6 +2698,20 @@ class AlertPolicyConditionConditionThresholdDenominatorAggregationArgs:
|
|
1909
2698
|
pulumi.set(self, "per_series_aligner", value)
|
1910
2699
|
|
1911
2700
|
|
2701
|
+
if not MYPY:
|
2702
|
+
class AlertPolicyConditionConditionThresholdForecastOptionsArgsDict(TypedDict):
|
2703
|
+
forecast_horizon: pulumi.Input[str]
|
2704
|
+
"""
|
2705
|
+
The length of time into the future to forecast
|
2706
|
+
whether a timeseries will violate the threshold.
|
2707
|
+
If the predicted value is found to violate the
|
2708
|
+
threshold, and the violation is observed in all
|
2709
|
+
forecasts made for the Configured `duration`,
|
2710
|
+
then the timeseries is considered to be failing.
|
2711
|
+
"""
|
2712
|
+
elif False:
|
2713
|
+
AlertPolicyConditionConditionThresholdForecastOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
2714
|
+
|
1912
2715
|
@pulumi.input_type
|
1913
2716
|
class AlertPolicyConditionConditionThresholdForecastOptionsArgs:
|
1914
2717
|
def __init__(__self__, *,
|
@@ -1941,6 +2744,23 @@ class AlertPolicyConditionConditionThresholdForecastOptionsArgs:
|
|
1941
2744
|
pulumi.set(self, "forecast_horizon", value)
|
1942
2745
|
|
1943
2746
|
|
2747
|
+
if not MYPY:
|
2748
|
+
class AlertPolicyConditionConditionThresholdTriggerArgsDict(TypedDict):
|
2749
|
+
count: NotRequired[pulumi.Input[int]]
|
2750
|
+
"""
|
2751
|
+
The absolute number of time series
|
2752
|
+
that must fail the predicate for the
|
2753
|
+
condition to be triggered.
|
2754
|
+
"""
|
2755
|
+
percent: NotRequired[pulumi.Input[float]]
|
2756
|
+
"""
|
2757
|
+
The percentage of time series that
|
2758
|
+
must fail the predicate for the
|
2759
|
+
condition to be triggered.
|
2760
|
+
"""
|
2761
|
+
elif False:
|
2762
|
+
AlertPolicyConditionConditionThresholdTriggerArgsDict: TypeAlias = Mapping[str, Any]
|
2763
|
+
|
1944
2764
|
@pulumi.input_type
|
1945
2765
|
class AlertPolicyConditionConditionThresholdTriggerArgs:
|
1946
2766
|
def __init__(__self__, *,
|
@@ -1988,6 +2808,21 @@ class AlertPolicyConditionConditionThresholdTriggerArgs:
|
|
1988
2808
|
pulumi.set(self, "percent", value)
|
1989
2809
|
|
1990
2810
|
|
2811
|
+
if not MYPY:
|
2812
|
+
class AlertPolicyCreationRecordArgsDict(TypedDict):
|
2813
|
+
mutate_time: NotRequired[pulumi.Input[str]]
|
2814
|
+
"""
|
2815
|
+
(Output)
|
2816
|
+
When the change occurred.
|
2817
|
+
"""
|
2818
|
+
mutated_by: NotRequired[pulumi.Input[str]]
|
2819
|
+
"""
|
2820
|
+
(Output)
|
2821
|
+
The email address of the user making the change.
|
2822
|
+
"""
|
2823
|
+
elif False:
|
2824
|
+
AlertPolicyCreationRecordArgsDict: TypeAlias = Mapping[str, Any]
|
2825
|
+
|
1991
2826
|
@pulumi.input_type
|
1992
2827
|
class AlertPolicyCreationRecordArgs:
|
1993
2828
|
def __init__(__self__, *,
|
@@ -2031,6 +2866,30 @@ class AlertPolicyCreationRecordArgs:
|
|
2031
2866
|
pulumi.set(self, "mutated_by", value)
|
2032
2867
|
|
2033
2868
|
|
2869
|
+
if not MYPY:
|
2870
|
+
class AlertPolicyDocumentationArgsDict(TypedDict):
|
2871
|
+
content: NotRequired[pulumi.Input[str]]
|
2872
|
+
"""
|
2873
|
+
The text of the documentation, interpreted according to mimeType.
|
2874
|
+
The content may not exceed 8,192 Unicode characters and may not
|
2875
|
+
exceed more than 10,240 bytes when encoded in UTF-8 format,
|
2876
|
+
whichever is smaller.
|
2877
|
+
"""
|
2878
|
+
mime_type: NotRequired[pulumi.Input[str]]
|
2879
|
+
"""
|
2880
|
+
The format of the content field. Presently, only the value
|
2881
|
+
"text/markdown" is supported.
|
2882
|
+
"""
|
2883
|
+
subject: NotRequired[pulumi.Input[str]]
|
2884
|
+
"""
|
2885
|
+
The subject line of the notification. The subject line may not
|
2886
|
+
exceed 10,240 bytes. In notifications generated by this policy the contents
|
2887
|
+
of the subject line after variable expansion will be truncated to 255 bytes
|
2888
|
+
or shorter at the latest UTF-8 character boundary.
|
2889
|
+
"""
|
2890
|
+
elif False:
|
2891
|
+
AlertPolicyDocumentationArgsDict: TypeAlias = Mapping[str, Any]
|
2892
|
+
|
2034
2893
|
@pulumi.input_type
|
2035
2894
|
class AlertPolicyDocumentationArgs:
|
2036
2895
|
def __init__(__self__, *,
|
@@ -2100,6 +2959,17 @@ class AlertPolicyDocumentationArgs:
|
|
2100
2959
|
pulumi.set(self, "subject", value)
|
2101
2960
|
|
2102
2961
|
|
2962
|
+
if not MYPY:
|
2963
|
+
class CustomServiceTelemetryArgsDict(TypedDict):
|
2964
|
+
resource_name: NotRequired[pulumi.Input[str]]
|
2965
|
+
"""
|
2966
|
+
The full name of the resource that defines this service.
|
2967
|
+
Formatted as described in
|
2968
|
+
https://cloud.google.com/apis/design/resource_names.
|
2969
|
+
"""
|
2970
|
+
elif False:
|
2971
|
+
CustomServiceTelemetryArgsDict: TypeAlias = Mapping[str, Any]
|
2972
|
+
|
2103
2973
|
@pulumi.input_type
|
2104
2974
|
class CustomServiceTelemetryArgs:
|
2105
2975
|
def __init__(__self__, *,
|
@@ -2127,6 +2997,21 @@ class CustomServiceTelemetryArgs:
|
|
2127
2997
|
pulumi.set(self, "resource_name", value)
|
2128
2998
|
|
2129
2999
|
|
3000
|
+
if not MYPY:
|
3001
|
+
class GenericServiceBasicServiceArgsDict(TypedDict):
|
3002
|
+
service_labels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
3003
|
+
"""
|
3004
|
+
Labels that specify the resource that emits the monitoring data
|
3005
|
+
which is used for SLO reporting of this `Service`.
|
3006
|
+
"""
|
3007
|
+
service_type: NotRequired[pulumi.Input[str]]
|
3008
|
+
"""
|
3009
|
+
The type of service that this basic service defines, e.g.
|
3010
|
+
APP_ENGINE service type
|
3011
|
+
"""
|
3012
|
+
elif False:
|
3013
|
+
GenericServiceBasicServiceArgsDict: TypeAlias = Mapping[str, Any]
|
3014
|
+
|
2130
3015
|
@pulumi.input_type
|
2131
3016
|
class GenericServiceBasicServiceArgs:
|
2132
3017
|
def __init__(__self__, *,
|
@@ -2170,6 +3055,17 @@ class GenericServiceBasicServiceArgs:
|
|
2170
3055
|
pulumi.set(self, "service_type", value)
|
2171
3056
|
|
2172
3057
|
|
3058
|
+
if not MYPY:
|
3059
|
+
class GenericServiceTelemetryArgsDict(TypedDict):
|
3060
|
+
resource_name: NotRequired[pulumi.Input[str]]
|
3061
|
+
"""
|
3062
|
+
The full name of the resource that defines this service.
|
3063
|
+
Formatted as described in
|
3064
|
+
https://cloud.google.com/apis/design/resource_names.
|
3065
|
+
"""
|
3066
|
+
elif False:
|
3067
|
+
GenericServiceTelemetryArgsDict: TypeAlias = Mapping[str, Any]
|
3068
|
+
|
2173
3069
|
@pulumi.input_type
|
2174
3070
|
class GenericServiceTelemetryArgs:
|
2175
3071
|
def __init__(__self__, *,
|
@@ -2197,6 +3093,25 @@ class GenericServiceTelemetryArgs:
|
|
2197
3093
|
pulumi.set(self, "resource_name", value)
|
2198
3094
|
|
2199
3095
|
|
3096
|
+
if not MYPY:
|
3097
|
+
class MetricDescriptorLabelArgsDict(TypedDict):
|
3098
|
+
key: pulumi.Input[str]
|
3099
|
+
"""
|
3100
|
+
The key for this label. The key must not exceed 100 characters. The first character of the key must be an upper- or lower-case letter, the remaining characters must be letters, digits or underscores, and the key must match the regular expression [a-zA-Z][a-zA-Z0-9_]*
|
3101
|
+
"""
|
3102
|
+
description: NotRequired[pulumi.Input[str]]
|
3103
|
+
"""
|
3104
|
+
A human-readable description for the label.
|
3105
|
+
"""
|
3106
|
+
value_type: NotRequired[pulumi.Input[str]]
|
3107
|
+
"""
|
3108
|
+
The type of data that can be assigned to the label.
|
3109
|
+
Default value is `STRING`.
|
3110
|
+
Possible values are: `STRING`, `BOOL`, `INT64`.
|
3111
|
+
"""
|
3112
|
+
elif False:
|
3113
|
+
MetricDescriptorLabelArgsDict: TypeAlias = Mapping[str, Any]
|
3114
|
+
|
2200
3115
|
@pulumi.input_type
|
2201
3116
|
class MetricDescriptorLabelArgs:
|
2202
3117
|
def __init__(__self__, *,
|
@@ -2255,6 +3170,19 @@ class MetricDescriptorLabelArgs:
|
|
2255
3170
|
pulumi.set(self, "value_type", value)
|
2256
3171
|
|
2257
3172
|
|
3173
|
+
if not MYPY:
|
3174
|
+
class MetricDescriptorMetadataArgsDict(TypedDict):
|
3175
|
+
ingest_delay: NotRequired[pulumi.Input[str]]
|
3176
|
+
"""
|
3177
|
+
The delay of data points caused by ingestion. Data points older than this age are guaranteed to be ingested and available to be read, excluding data loss due to errors. In `[duration format](https://developers.google.com/protocol-buffers/docs/reference/google.protobuf?&_ga=2.264881487.1507873253.1593446723-935052455.1591817775#google.protobuf.Duration)`.
|
3178
|
+
"""
|
3179
|
+
sample_period: NotRequired[pulumi.Input[str]]
|
3180
|
+
"""
|
3181
|
+
The sampling period of metric data points. For metrics which are written periodically, consecutive data points are stored at this time interval, excluding data loss due to errors. Metrics with a higher granularity have a smaller sampling period. In `[duration format](https://developers.google.com/protocol-buffers/docs/reference/google.protobuf?&_ga=2.264881487.1507873253.1593446723-935052455.1591817775#google.protobuf.Duration)`.
|
3182
|
+
"""
|
3183
|
+
elif False:
|
3184
|
+
MetricDescriptorMetadataArgsDict: TypeAlias = Mapping[str, Any]
|
3185
|
+
|
2258
3186
|
@pulumi.input_type
|
2259
3187
|
class MetricDescriptorMetadataArgs:
|
2260
3188
|
def __init__(__self__, *,
|
@@ -2294,6 +3222,26 @@ class MetricDescriptorMetadataArgs:
|
|
2294
3222
|
pulumi.set(self, "sample_period", value)
|
2295
3223
|
|
2296
3224
|
|
3225
|
+
if not MYPY:
|
3226
|
+
class NotificationChannelSensitiveLabelsArgsDict(TypedDict):
|
3227
|
+
auth_token: NotRequired[pulumi.Input[str]]
|
3228
|
+
"""
|
3229
|
+
An authorization token for a notification channel. Channel types that support this field include: slack
|
3230
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
3231
|
+
"""
|
3232
|
+
password: NotRequired[pulumi.Input[str]]
|
3233
|
+
"""
|
3234
|
+
An password for a notification channel. Channel types that support this field include: webhook_basicauth
|
3235
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
3236
|
+
"""
|
3237
|
+
service_key: NotRequired[pulumi.Input[str]]
|
3238
|
+
"""
|
3239
|
+
An servicekey token for a notification channel. Channel types that support this field include: pagerduty
|
3240
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
3241
|
+
"""
|
3242
|
+
elif False:
|
3243
|
+
NotificationChannelSensitiveLabelsArgsDict: TypeAlias = Mapping[str, Any]
|
3244
|
+
|
2297
3245
|
@pulumi.input_type
|
2298
3246
|
class NotificationChannelSensitiveLabelsArgs:
|
2299
3247
|
def __init__(__self__, *,
|
@@ -2355,6 +3303,48 @@ class NotificationChannelSensitiveLabelsArgs:
|
|
2355
3303
|
pulumi.set(self, "service_key", value)
|
2356
3304
|
|
2357
3305
|
|
3306
|
+
if not MYPY:
|
3307
|
+
class SloBasicSliArgsDict(TypedDict):
|
3308
|
+
availability: NotRequired[pulumi.Input['SloBasicSliAvailabilityArgsDict']]
|
3309
|
+
"""
|
3310
|
+
Availability based SLI, dervied from count of requests made to this service that return successfully.
|
3311
|
+
Structure is documented below.
|
3312
|
+
"""
|
3313
|
+
latency: NotRequired[pulumi.Input['SloBasicSliLatencyArgsDict']]
|
3314
|
+
"""
|
3315
|
+
Parameters for a latency threshold SLI.
|
3316
|
+
Structure is documented below.
|
3317
|
+
"""
|
3318
|
+
locations: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
3319
|
+
"""
|
3320
|
+
An optional set of locations to which this SLI is relevant.
|
3321
|
+
Telemetry from other locations will not be used to calculate
|
3322
|
+
performance for this SLI. If omitted, this SLI applies to all
|
3323
|
+
locations in which the Service has activity. For service types
|
3324
|
+
that don't support breaking down by location, setting this
|
3325
|
+
field will result in an error.
|
3326
|
+
"""
|
3327
|
+
methods: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
3328
|
+
"""
|
3329
|
+
An optional set of RPCs to which this SLI is relevant.
|
3330
|
+
Telemetry from other methods will not be used to calculate
|
3331
|
+
performance for this SLI. If omitted, this SLI applies to all
|
3332
|
+
the Service's methods. For service types that don't support
|
3333
|
+
breaking down by method, setting this field will result in an
|
3334
|
+
error.
|
3335
|
+
"""
|
3336
|
+
versions: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
3337
|
+
"""
|
3338
|
+
The set of API versions to which this SLI is relevant.
|
3339
|
+
Telemetry from other API versions will not be used to
|
3340
|
+
calculate performance for this SLI. If omitted,
|
3341
|
+
this SLI applies to all API versions. For service types
|
3342
|
+
that don't support breaking down by version, setting this
|
3343
|
+
field will result in an error.
|
3344
|
+
"""
|
3345
|
+
elif False:
|
3346
|
+
SloBasicSliArgsDict: TypeAlias = Mapping[str, Any]
|
3347
|
+
|
2358
3348
|
@pulumi.input_type
|
2359
3349
|
class SloBasicSliArgs:
|
2360
3350
|
def __init__(__self__, *,
|
@@ -2476,6 +3466,15 @@ class SloBasicSliArgs:
|
|
2476
3466
|
pulumi.set(self, "versions", value)
|
2477
3467
|
|
2478
3468
|
|
3469
|
+
if not MYPY:
|
3470
|
+
class SloBasicSliAvailabilityArgsDict(TypedDict):
|
3471
|
+
enabled: NotRequired[pulumi.Input[bool]]
|
3472
|
+
"""
|
3473
|
+
Whether an availability SLI is enabled or not. Must be set to `true. Defaults to `true`.
|
3474
|
+
"""
|
3475
|
+
elif False:
|
3476
|
+
SloBasicSliAvailabilityArgsDict: TypeAlias = Mapping[str, Any]
|
3477
|
+
|
2479
3478
|
@pulumi.input_type
|
2480
3479
|
class SloBasicSliAvailabilityArgs:
|
2481
3480
|
def __init__(__self__, *,
|
@@ -2499,6 +3498,17 @@ class SloBasicSliAvailabilityArgs:
|
|
2499
3498
|
pulumi.set(self, "enabled", value)
|
2500
3499
|
|
2501
3500
|
|
3501
|
+
if not MYPY:
|
3502
|
+
class SloBasicSliLatencyArgsDict(TypedDict):
|
3503
|
+
threshold: pulumi.Input[str]
|
3504
|
+
"""
|
3505
|
+
A duration string, e.g. 10s.
|
3506
|
+
Good service is defined to be the count of requests made to
|
3507
|
+
this service that return in no more than threshold.
|
3508
|
+
"""
|
3509
|
+
elif False:
|
3510
|
+
SloBasicSliLatencyArgsDict: TypeAlias = Mapping[str, Any]
|
3511
|
+
|
2502
3512
|
@pulumi.input_type
|
2503
3513
|
class SloBasicSliLatencyArgs:
|
2504
3514
|
def __init__(__self__, *,
|
@@ -2525,6 +3535,31 @@ class SloBasicSliLatencyArgs:
|
|
2525
3535
|
pulumi.set(self, "threshold", value)
|
2526
3536
|
|
2527
3537
|
|
3538
|
+
if not MYPY:
|
3539
|
+
class SloRequestBasedSliArgsDict(TypedDict):
|
3540
|
+
distribution_cut: NotRequired[pulumi.Input['SloRequestBasedSliDistributionCutArgsDict']]
|
3541
|
+
"""
|
3542
|
+
Used when good_service is defined by a count of values aggregated in a
|
3543
|
+
Distribution that fall into a good range. The total_service is the
|
3544
|
+
total count of all values aggregated in the Distribution.
|
3545
|
+
Defines a distribution TimeSeries filter and thresholds used for
|
3546
|
+
measuring good service and total service.
|
3547
|
+
Exactly one of `distribution_cut` or `good_total_ratio` can be set.
|
3548
|
+
Structure is documented below.
|
3549
|
+
"""
|
3550
|
+
good_total_ratio: NotRequired[pulumi.Input['SloRequestBasedSliGoodTotalRatioArgsDict']]
|
3551
|
+
"""
|
3552
|
+
A means to compute a ratio of `good_service` to `total_service`.
|
3553
|
+
Defines computing this ratio with two TimeSeries [monitoring filters](https://cloud.google.com/monitoring/api/v3/filters)
|
3554
|
+
Must specify exactly two of good, bad, and total service filters.
|
3555
|
+
The relationship good_service + bad_service = total_service
|
3556
|
+
will be assumed.
|
3557
|
+
Exactly one of `distribution_cut` or `good_total_ratio` can be set.
|
3558
|
+
Structure is documented below.
|
3559
|
+
"""
|
3560
|
+
elif False:
|
3561
|
+
SloRequestBasedSliArgsDict: TypeAlias = Mapping[str, Any]
|
3562
|
+
|
2528
3563
|
@pulumi.input_type
|
2529
3564
|
class SloRequestBasedSliArgs:
|
2530
3565
|
def __init__(__self__, *,
|
@@ -2588,6 +3623,27 @@ class SloRequestBasedSliArgs:
|
|
2588
3623
|
pulumi.set(self, "good_total_ratio", value)
|
2589
3624
|
|
2590
3625
|
|
3626
|
+
if not MYPY:
|
3627
|
+
class SloRequestBasedSliDistributionCutArgsDict(TypedDict):
|
3628
|
+
distribution_filter: pulumi.Input[str]
|
3629
|
+
"""
|
3630
|
+
A TimeSeries [monitoring filter](https://cloud.google.com/monitoring/api/v3/filters)
|
3631
|
+
aggregating values to quantify the good service provided.
|
3632
|
+
Must have ValueType = DISTRIBUTION and
|
3633
|
+
MetricKind = DELTA or MetricKind = CUMULATIVE.
|
3634
|
+
"""
|
3635
|
+
range: pulumi.Input['SloRequestBasedSliDistributionCutRangeArgsDict']
|
3636
|
+
"""
|
3637
|
+
Range of numerical values. The computed good_service
|
3638
|
+
will be the count of values x in the Distribution such
|
3639
|
+
that range.min <= x <= range.max. inclusive of min and
|
3640
|
+
max. Open ranges can be defined by setting
|
3641
|
+
just one of min or max.
|
3642
|
+
Structure is documented below.
|
3643
|
+
"""
|
3644
|
+
elif False:
|
3645
|
+
SloRequestBasedSliDistributionCutArgsDict: TypeAlias = Mapping[str, Any]
|
3646
|
+
|
2591
3647
|
@pulumi.input_type
|
2592
3648
|
class SloRequestBasedSliDistributionCutArgs:
|
2593
3649
|
def __init__(__self__, *,
|
@@ -2641,6 +3697,23 @@ class SloRequestBasedSliDistributionCutArgs:
|
|
2641
3697
|
pulumi.set(self, "range", value)
|
2642
3698
|
|
2643
3699
|
|
3700
|
+
if not MYPY:
|
3701
|
+
class SloRequestBasedSliDistributionCutRangeArgsDict(TypedDict):
|
3702
|
+
max: NotRequired[pulumi.Input[float]]
|
3703
|
+
"""
|
3704
|
+
max value for the range (inclusive). If not given,
|
3705
|
+
will be set to "infinity", defining an open range
|
3706
|
+
">= range.min"
|
3707
|
+
"""
|
3708
|
+
min: NotRequired[pulumi.Input[float]]
|
3709
|
+
"""
|
3710
|
+
Min value for the range (inclusive). If not given,
|
3711
|
+
will be set to "-infinity", defining an open range
|
3712
|
+
"< range.max"
|
3713
|
+
"""
|
3714
|
+
elif False:
|
3715
|
+
SloRequestBasedSliDistributionCutRangeArgsDict: TypeAlias = Mapping[str, Any]
|
3716
|
+
|
2644
3717
|
@pulumi.input_type
|
2645
3718
|
class SloRequestBasedSliDistributionCutRangeArgs:
|
2646
3719
|
def __init__(__self__, *,
|
@@ -2688,6 +3761,40 @@ class SloRequestBasedSliDistributionCutRangeArgs:
|
|
2688
3761
|
pulumi.set(self, "min", value)
|
2689
3762
|
|
2690
3763
|
|
3764
|
+
if not MYPY:
|
3765
|
+
class SloRequestBasedSliGoodTotalRatioArgsDict(TypedDict):
|
3766
|
+
bad_service_filter: NotRequired[pulumi.Input[str]]
|
3767
|
+
"""
|
3768
|
+
A TimeSeries [monitoring filter](https://cloud.google.com/monitoring/api/v3/filters)
|
3769
|
+
quantifying bad service provided, either demanded service that
|
3770
|
+
was not provided or demanded service that was of inadequate
|
3771
|
+
quality. Exactly two of
|
3772
|
+
good, bad, or total service filter must be defined (where
|
3773
|
+
good + bad = total is assumed)
|
3774
|
+
Must have ValueType = DOUBLE or ValueType = INT64 and
|
3775
|
+
must have MetricKind = DELTA or MetricKind = CUMULATIVE.
|
3776
|
+
"""
|
3777
|
+
good_service_filter: NotRequired[pulumi.Input[str]]
|
3778
|
+
"""
|
3779
|
+
A TimeSeries [monitoring filter](https://cloud.google.com/monitoring/api/v3/filters)
|
3780
|
+
quantifying good service provided. Exactly two of
|
3781
|
+
good, bad, or total service filter must be defined (where
|
3782
|
+
good + bad = total is assumed)
|
3783
|
+
Must have ValueType = DOUBLE or ValueType = INT64 and
|
3784
|
+
must have MetricKind = DELTA or MetricKind = CUMULATIVE.
|
3785
|
+
"""
|
3786
|
+
total_service_filter: NotRequired[pulumi.Input[str]]
|
3787
|
+
"""
|
3788
|
+
A TimeSeries [monitoring filter](https://cloud.google.com/monitoring/api/v3/filters)
|
3789
|
+
quantifying total demanded service. Exactly two of
|
3790
|
+
good, bad, or total service filter must be defined (where
|
3791
|
+
good + bad = total is assumed)
|
3792
|
+
Must have ValueType = DOUBLE or ValueType = INT64 and
|
3793
|
+
must have MetricKind = DELTA or MetricKind = CUMULATIVE.
|
3794
|
+
"""
|
3795
|
+
elif False:
|
3796
|
+
SloRequestBasedSliGoodTotalRatioArgsDict: TypeAlias = Mapping[str, Any]
|
3797
|
+
|
2691
3798
|
@pulumi.input_type
|
2692
3799
|
class SloRequestBasedSliGoodTotalRatioArgs:
|
2693
3800
|
def __init__(__self__, *,
|
@@ -2777,6 +3884,55 @@ class SloRequestBasedSliGoodTotalRatioArgs:
|
|
2777
3884
|
pulumi.set(self, "total_service_filter", value)
|
2778
3885
|
|
2779
3886
|
|
3887
|
+
if not MYPY:
|
3888
|
+
class SloWindowsBasedSliArgsDict(TypedDict):
|
3889
|
+
good_bad_metric_filter: NotRequired[pulumi.Input[str]]
|
3890
|
+
"""
|
3891
|
+
A TimeSeries [monitoring filter](https://cloud.google.com/monitoring/api/v3/filters)
|
3892
|
+
with ValueType = BOOL. The window is good if any true values
|
3893
|
+
appear in the window. One of `good_bad_metric_filter`,
|
3894
|
+
`good_total_ratio_threshold`, `metric_mean_in_range`,
|
3895
|
+
`metric_sum_in_range` must be set for `windows_based_sli`.
|
3896
|
+
"""
|
3897
|
+
good_total_ratio_threshold: NotRequired[pulumi.Input['SloWindowsBasedSliGoodTotalRatioThresholdArgsDict']]
|
3898
|
+
"""
|
3899
|
+
Criterion that describes a window as good if its performance is
|
3900
|
+
high enough. One of `good_bad_metric_filter`,
|
3901
|
+
`good_total_ratio_threshold`, `metric_mean_in_range`,
|
3902
|
+
`metric_sum_in_range` must be set for `windows_based_sli`.
|
3903
|
+
Structure is documented below.
|
3904
|
+
"""
|
3905
|
+
metric_mean_in_range: NotRequired[pulumi.Input['SloWindowsBasedSliMetricMeanInRangeArgsDict']]
|
3906
|
+
"""
|
3907
|
+
Criterion that describes a window as good if the metric's value
|
3908
|
+
is in a good range, *averaged* across returned streams.
|
3909
|
+
One of `good_bad_metric_filter`,
|
3910
|
+
`good_total_ratio_threshold`, `metric_mean_in_range`,
|
3911
|
+
`metric_sum_in_range` must be set for `windows_based_sli`.
|
3912
|
+
Average value X of `time_series` should satisfy
|
3913
|
+
`range.min <= X <= range.max` for a good window.
|
3914
|
+
Structure is documented below.
|
3915
|
+
"""
|
3916
|
+
metric_sum_in_range: NotRequired[pulumi.Input['SloWindowsBasedSliMetricSumInRangeArgsDict']]
|
3917
|
+
"""
|
3918
|
+
Criterion that describes a window as good if the metric's value
|
3919
|
+
is in a good range, *summed* across returned streams.
|
3920
|
+
Summed value `X` of `time_series` should satisfy
|
3921
|
+
`range.min <= X <= range.max` for a good window.
|
3922
|
+
One of `good_bad_metric_filter`,
|
3923
|
+
`good_total_ratio_threshold`, `metric_mean_in_range`,
|
3924
|
+
`metric_sum_in_range` must be set for `windows_based_sli`.
|
3925
|
+
Structure is documented below.
|
3926
|
+
"""
|
3927
|
+
window_period: NotRequired[pulumi.Input[str]]
|
3928
|
+
"""
|
3929
|
+
Duration over which window quality is evaluated, given as a
|
3930
|
+
duration string "{X}s" representing X seconds. Must be an
|
3931
|
+
integer fraction of a day and at least 60s.
|
3932
|
+
"""
|
3933
|
+
elif False:
|
3934
|
+
SloWindowsBasedSliArgsDict: TypeAlias = Mapping[str, Any]
|
3935
|
+
|
2780
3936
|
@pulumi.input_type
|
2781
3937
|
class SloWindowsBasedSliArgs:
|
2782
3938
|
def __init__(__self__, *,
|
@@ -2912,6 +4068,26 @@ class SloWindowsBasedSliArgs:
|
|
2912
4068
|
pulumi.set(self, "window_period", value)
|
2913
4069
|
|
2914
4070
|
|
4071
|
+
if not MYPY:
|
4072
|
+
class SloWindowsBasedSliGoodTotalRatioThresholdArgsDict(TypedDict):
|
4073
|
+
basic_sli_performance: NotRequired[pulumi.Input['SloWindowsBasedSliGoodTotalRatioThresholdBasicSliPerformanceArgsDict']]
|
4074
|
+
"""
|
4075
|
+
Basic SLI to evaluate to judge window quality.
|
4076
|
+
Structure is documented below.
|
4077
|
+
"""
|
4078
|
+
performance: NotRequired[pulumi.Input['SloWindowsBasedSliGoodTotalRatioThresholdPerformanceArgsDict']]
|
4079
|
+
"""
|
4080
|
+
Request-based SLI to evaluate to judge window quality.
|
4081
|
+
Structure is documented below.
|
4082
|
+
"""
|
4083
|
+
threshold: NotRequired[pulumi.Input[float]]
|
4084
|
+
"""
|
4085
|
+
If window performance >= threshold, the window is counted
|
4086
|
+
as good.
|
4087
|
+
"""
|
4088
|
+
elif False:
|
4089
|
+
SloWindowsBasedSliGoodTotalRatioThresholdArgsDict: TypeAlias = Mapping[str, Any]
|
4090
|
+
|
2915
4091
|
@pulumi.input_type
|
2916
4092
|
class SloWindowsBasedSliGoodTotalRatioThresholdArgs:
|
2917
4093
|
def __init__(__self__, *,
|
@@ -2973,6 +4149,48 @@ class SloWindowsBasedSliGoodTotalRatioThresholdArgs:
|
|
2973
4149
|
pulumi.set(self, "threshold", value)
|
2974
4150
|
|
2975
4151
|
|
4152
|
+
if not MYPY:
|
4153
|
+
class SloWindowsBasedSliGoodTotalRatioThresholdBasicSliPerformanceArgsDict(TypedDict):
|
4154
|
+
availability: NotRequired[pulumi.Input['SloWindowsBasedSliGoodTotalRatioThresholdBasicSliPerformanceAvailabilityArgsDict']]
|
4155
|
+
"""
|
4156
|
+
Availability based SLI, dervied from count of requests made to this service that return successfully.
|
4157
|
+
Structure is documented below.
|
4158
|
+
"""
|
4159
|
+
latency: NotRequired[pulumi.Input['SloWindowsBasedSliGoodTotalRatioThresholdBasicSliPerformanceLatencyArgsDict']]
|
4160
|
+
"""
|
4161
|
+
Parameters for a latency threshold SLI.
|
4162
|
+
Structure is documented below.
|
4163
|
+
"""
|
4164
|
+
locations: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
4165
|
+
"""
|
4166
|
+
An optional set of locations to which this SLI is relevant.
|
4167
|
+
Telemetry from other locations will not be used to calculate
|
4168
|
+
performance for this SLI. If omitted, this SLI applies to all
|
4169
|
+
locations in which the Service has activity. For service types
|
4170
|
+
that don't support breaking down by location, setting this
|
4171
|
+
field will result in an error.
|
4172
|
+
"""
|
4173
|
+
methods: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
4174
|
+
"""
|
4175
|
+
An optional set of RPCs to which this SLI is relevant.
|
4176
|
+
Telemetry from other methods will not be used to calculate
|
4177
|
+
performance for this SLI. If omitted, this SLI applies to all
|
4178
|
+
the Service's methods. For service types that don't support
|
4179
|
+
breaking down by method, setting this field will result in an
|
4180
|
+
error.
|
4181
|
+
"""
|
4182
|
+
versions: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
4183
|
+
"""
|
4184
|
+
The set of API versions to which this SLI is relevant.
|
4185
|
+
Telemetry from other API versions will not be used to
|
4186
|
+
calculate performance for this SLI. If omitted,
|
4187
|
+
this SLI applies to all API versions. For service types
|
4188
|
+
that don't support breaking down by version, setting this
|
4189
|
+
field will result in an error.
|
4190
|
+
"""
|
4191
|
+
elif False:
|
4192
|
+
SloWindowsBasedSliGoodTotalRatioThresholdBasicSliPerformanceArgsDict: TypeAlias = Mapping[str, Any]
|
4193
|
+
|
2976
4194
|
@pulumi.input_type
|
2977
4195
|
class SloWindowsBasedSliGoodTotalRatioThresholdBasicSliPerformanceArgs:
|
2978
4196
|
def __init__(__self__, *,
|
@@ -3094,6 +4312,15 @@ class SloWindowsBasedSliGoodTotalRatioThresholdBasicSliPerformanceArgs:
|
|
3094
4312
|
pulumi.set(self, "versions", value)
|
3095
4313
|
|
3096
4314
|
|
4315
|
+
if not MYPY:
|
4316
|
+
class SloWindowsBasedSliGoodTotalRatioThresholdBasicSliPerformanceAvailabilityArgsDict(TypedDict):
|
4317
|
+
enabled: NotRequired[pulumi.Input[bool]]
|
4318
|
+
"""
|
4319
|
+
Whether an availability SLI is enabled or not. Must be set to `true. Defaults to `true`.
|
4320
|
+
"""
|
4321
|
+
elif False:
|
4322
|
+
SloWindowsBasedSliGoodTotalRatioThresholdBasicSliPerformanceAvailabilityArgsDict: TypeAlias = Mapping[str, Any]
|
4323
|
+
|
3097
4324
|
@pulumi.input_type
|
3098
4325
|
class SloWindowsBasedSliGoodTotalRatioThresholdBasicSliPerformanceAvailabilityArgs:
|
3099
4326
|
def __init__(__self__, *,
|
@@ -3117,6 +4344,17 @@ class SloWindowsBasedSliGoodTotalRatioThresholdBasicSliPerformanceAvailabilityAr
|
|
3117
4344
|
pulumi.set(self, "enabled", value)
|
3118
4345
|
|
3119
4346
|
|
4347
|
+
if not MYPY:
|
4348
|
+
class SloWindowsBasedSliGoodTotalRatioThresholdBasicSliPerformanceLatencyArgsDict(TypedDict):
|
4349
|
+
threshold: pulumi.Input[str]
|
4350
|
+
"""
|
4351
|
+
A duration string, e.g. 10s.
|
4352
|
+
Good service is defined to be the count of requests made to
|
4353
|
+
this service that return in no more than threshold.
|
4354
|
+
"""
|
4355
|
+
elif False:
|
4356
|
+
SloWindowsBasedSliGoodTotalRatioThresholdBasicSliPerformanceLatencyArgsDict: TypeAlias = Mapping[str, Any]
|
4357
|
+
|
3120
4358
|
@pulumi.input_type
|
3121
4359
|
class SloWindowsBasedSliGoodTotalRatioThresholdBasicSliPerformanceLatencyArgs:
|
3122
4360
|
def __init__(__self__, *,
|
@@ -3136,12 +4374,35 @@ class SloWindowsBasedSliGoodTotalRatioThresholdBasicSliPerformanceLatencyArgs:
|
|
3136
4374
|
Good service is defined to be the count of requests made to
|
3137
4375
|
this service that return in no more than threshold.
|
3138
4376
|
"""
|
3139
|
-
return pulumi.get(self, "threshold")
|
3140
|
-
|
3141
|
-
@threshold.setter
|
3142
|
-
def threshold(self, value: pulumi.Input[str]):
|
3143
|
-
pulumi.set(self, "threshold", value)
|
3144
|
-
|
4377
|
+
return pulumi.get(self, "threshold")
|
4378
|
+
|
4379
|
+
@threshold.setter
|
4380
|
+
def threshold(self, value: pulumi.Input[str]):
|
4381
|
+
pulumi.set(self, "threshold", value)
|
4382
|
+
|
4383
|
+
|
4384
|
+
if not MYPY:
|
4385
|
+
class SloWindowsBasedSliGoodTotalRatioThresholdPerformanceArgsDict(TypedDict):
|
4386
|
+
distribution_cut: NotRequired[pulumi.Input['SloWindowsBasedSliGoodTotalRatioThresholdPerformanceDistributionCutArgsDict']]
|
4387
|
+
"""
|
4388
|
+
Used when good_service is defined by a count of values aggregated in a
|
4389
|
+
Distribution that fall into a good range. The total_service is the
|
4390
|
+
total count of all values aggregated in the Distribution.
|
4391
|
+
Defines a distribution TimeSeries filter and thresholds used for
|
4392
|
+
measuring good service and total service.
|
4393
|
+
Structure is documented below.
|
4394
|
+
"""
|
4395
|
+
good_total_ratio: NotRequired[pulumi.Input['SloWindowsBasedSliGoodTotalRatioThresholdPerformanceGoodTotalRatioArgsDict']]
|
4396
|
+
"""
|
4397
|
+
A means to compute a ratio of `good_service` to `total_service`.
|
4398
|
+
Defines computing this ratio with two TimeSeries [monitoring filters](https://cloud.google.com/monitoring/api/v3/filters)
|
4399
|
+
Must specify exactly two of good, bad, and total service filters.
|
4400
|
+
The relationship good_service + bad_service = total_service
|
4401
|
+
will be assumed.
|
4402
|
+
Structure is documented below.
|
4403
|
+
"""
|
4404
|
+
elif False:
|
4405
|
+
SloWindowsBasedSliGoodTotalRatioThresholdPerformanceArgsDict: TypeAlias = Mapping[str, Any]
|
3145
4406
|
|
3146
4407
|
@pulumi.input_type
|
3147
4408
|
class SloWindowsBasedSliGoodTotalRatioThresholdPerformanceArgs:
|
@@ -3202,6 +4463,27 @@ class SloWindowsBasedSliGoodTotalRatioThresholdPerformanceArgs:
|
|
3202
4463
|
pulumi.set(self, "good_total_ratio", value)
|
3203
4464
|
|
3204
4465
|
|
4466
|
+
if not MYPY:
|
4467
|
+
class SloWindowsBasedSliGoodTotalRatioThresholdPerformanceDistributionCutArgsDict(TypedDict):
|
4468
|
+
distribution_filter: pulumi.Input[str]
|
4469
|
+
"""
|
4470
|
+
A TimeSeries [monitoring filter](https://cloud.google.com/monitoring/api/v3/filters)
|
4471
|
+
aggregating values to quantify the good service provided.
|
4472
|
+
Must have ValueType = DISTRIBUTION and
|
4473
|
+
MetricKind = DELTA or MetricKind = CUMULATIVE.
|
4474
|
+
"""
|
4475
|
+
range: pulumi.Input['SloWindowsBasedSliGoodTotalRatioThresholdPerformanceDistributionCutRangeArgsDict']
|
4476
|
+
"""
|
4477
|
+
Range of numerical values. The computed good_service
|
4478
|
+
will be the count of values x in the Distribution such
|
4479
|
+
that range.min <= x <= range.max. inclusive of min and
|
4480
|
+
max. Open ranges can be defined by setting
|
4481
|
+
just one of min or max.
|
4482
|
+
Structure is documented below.
|
4483
|
+
"""
|
4484
|
+
elif False:
|
4485
|
+
SloWindowsBasedSliGoodTotalRatioThresholdPerformanceDistributionCutArgsDict: TypeAlias = Mapping[str, Any]
|
4486
|
+
|
3205
4487
|
@pulumi.input_type
|
3206
4488
|
class SloWindowsBasedSliGoodTotalRatioThresholdPerformanceDistributionCutArgs:
|
3207
4489
|
def __init__(__self__, *,
|
@@ -3255,6 +4537,23 @@ class SloWindowsBasedSliGoodTotalRatioThresholdPerformanceDistributionCutArgs:
|
|
3255
4537
|
pulumi.set(self, "range", value)
|
3256
4538
|
|
3257
4539
|
|
4540
|
+
if not MYPY:
|
4541
|
+
class SloWindowsBasedSliGoodTotalRatioThresholdPerformanceDistributionCutRangeArgsDict(TypedDict):
|
4542
|
+
max: NotRequired[pulumi.Input[float]]
|
4543
|
+
"""
|
4544
|
+
max value for the range (inclusive). If not given,
|
4545
|
+
will be set to "infinity", defining an open range
|
4546
|
+
">= range.min"
|
4547
|
+
"""
|
4548
|
+
min: NotRequired[pulumi.Input[float]]
|
4549
|
+
"""
|
4550
|
+
Min value for the range (inclusive). If not given,
|
4551
|
+
will be set to "-infinity", defining an open range
|
4552
|
+
"< range.max"
|
4553
|
+
"""
|
4554
|
+
elif False:
|
4555
|
+
SloWindowsBasedSliGoodTotalRatioThresholdPerformanceDistributionCutRangeArgsDict: TypeAlias = Mapping[str, Any]
|
4556
|
+
|
3258
4557
|
@pulumi.input_type
|
3259
4558
|
class SloWindowsBasedSliGoodTotalRatioThresholdPerformanceDistributionCutRangeArgs:
|
3260
4559
|
def __init__(__self__, *,
|
@@ -3302,6 +4601,40 @@ class SloWindowsBasedSliGoodTotalRatioThresholdPerformanceDistributionCutRangeAr
|
|
3302
4601
|
pulumi.set(self, "min", value)
|
3303
4602
|
|
3304
4603
|
|
4604
|
+
if not MYPY:
|
4605
|
+
class SloWindowsBasedSliGoodTotalRatioThresholdPerformanceGoodTotalRatioArgsDict(TypedDict):
|
4606
|
+
bad_service_filter: NotRequired[pulumi.Input[str]]
|
4607
|
+
"""
|
4608
|
+
A TimeSeries [monitoring filter](https://cloud.google.com/monitoring/api/v3/filters)
|
4609
|
+
quantifying bad service provided, either demanded service that
|
4610
|
+
was not provided or demanded service that was of inadequate
|
4611
|
+
quality. Exactly two of
|
4612
|
+
good, bad, or total service filter must be defined (where
|
4613
|
+
good + bad = total is assumed)
|
4614
|
+
Must have ValueType = DOUBLE or ValueType = INT64 and
|
4615
|
+
must have MetricKind = DELTA or MetricKind = CUMULATIVE.
|
4616
|
+
"""
|
4617
|
+
good_service_filter: NotRequired[pulumi.Input[str]]
|
4618
|
+
"""
|
4619
|
+
A TimeSeries [monitoring filter](https://cloud.google.com/monitoring/api/v3/filters)
|
4620
|
+
quantifying good service provided. Exactly two of
|
4621
|
+
good, bad, or total service filter must be defined (where
|
4622
|
+
good + bad = total is assumed)
|
4623
|
+
Must have ValueType = DOUBLE or ValueType = INT64 and
|
4624
|
+
must have MetricKind = DELTA or MetricKind = CUMULATIVE.
|
4625
|
+
"""
|
4626
|
+
total_service_filter: NotRequired[pulumi.Input[str]]
|
4627
|
+
"""
|
4628
|
+
A TimeSeries [monitoring filter](https://cloud.google.com/monitoring/api/v3/filters)
|
4629
|
+
quantifying total demanded service. Exactly two of
|
4630
|
+
good, bad, or total service filter must be defined (where
|
4631
|
+
good + bad = total is assumed)
|
4632
|
+
Must have ValueType = DOUBLE or ValueType = INT64 and
|
4633
|
+
must have MetricKind = DELTA or MetricKind = CUMULATIVE.
|
4634
|
+
"""
|
4635
|
+
elif False:
|
4636
|
+
SloWindowsBasedSliGoodTotalRatioThresholdPerformanceGoodTotalRatioArgsDict: TypeAlias = Mapping[str, Any]
|
4637
|
+
|
3305
4638
|
@pulumi.input_type
|
3306
4639
|
class SloWindowsBasedSliGoodTotalRatioThresholdPerformanceGoodTotalRatioArgs:
|
3307
4640
|
def __init__(__self__, *,
|
@@ -3391,6 +4724,31 @@ class SloWindowsBasedSliGoodTotalRatioThresholdPerformanceGoodTotalRatioArgs:
|
|
3391
4724
|
pulumi.set(self, "total_service_filter", value)
|
3392
4725
|
|
3393
4726
|
|
4727
|
+
if not MYPY:
|
4728
|
+
class SloWindowsBasedSliMetricMeanInRangeArgsDict(TypedDict):
|
4729
|
+
range: pulumi.Input['SloWindowsBasedSliMetricMeanInRangeRangeArgsDict']
|
4730
|
+
"""
|
4731
|
+
Range of numerical values. The computed good_service
|
4732
|
+
will be the count of values x in the Distribution such
|
4733
|
+
that range.min <= x <= range.max. inclusive of min and
|
4734
|
+
max. Open ranges can be defined by setting
|
4735
|
+
just one of min or max. Mean value `X` of `time_series`
|
4736
|
+
values should satisfy `range.min <= X <= range.max` for a
|
4737
|
+
good service.
|
4738
|
+
Structure is documented below.
|
4739
|
+
"""
|
4740
|
+
time_series: pulumi.Input[str]
|
4741
|
+
"""
|
4742
|
+
A [monitoring filter](https://cloud.google.com/monitoring/api/v3/filters)
|
4743
|
+
specifying the TimeSeries to use for evaluating window
|
4744
|
+
The provided TimeSeries must have ValueType = INT64 or
|
4745
|
+
ValueType = DOUBLE and MetricKind = GAUGE. Mean value `X`
|
4746
|
+
should satisfy `range.min <= X <= range.max`
|
4747
|
+
under good service.
|
4748
|
+
"""
|
4749
|
+
elif False:
|
4750
|
+
SloWindowsBasedSliMetricMeanInRangeArgsDict: TypeAlias = Mapping[str, Any]
|
4751
|
+
|
3394
4752
|
@pulumi.input_type
|
3395
4753
|
class SloWindowsBasedSliMetricMeanInRangeArgs:
|
3396
4754
|
def __init__(__self__, *,
|
@@ -3452,6 +4810,23 @@ class SloWindowsBasedSliMetricMeanInRangeArgs:
|
|
3452
4810
|
pulumi.set(self, "time_series", value)
|
3453
4811
|
|
3454
4812
|
|
4813
|
+
if not MYPY:
|
4814
|
+
class SloWindowsBasedSliMetricMeanInRangeRangeArgsDict(TypedDict):
|
4815
|
+
max: NotRequired[pulumi.Input[float]]
|
4816
|
+
"""
|
4817
|
+
max value for the range (inclusive). If not given,
|
4818
|
+
will be set to "infinity", defining an open range
|
4819
|
+
">= range.min"
|
4820
|
+
"""
|
4821
|
+
min: NotRequired[pulumi.Input[float]]
|
4822
|
+
"""
|
4823
|
+
Min value for the range (inclusive). If not given,
|
4824
|
+
will be set to "-infinity", defining an open range
|
4825
|
+
"< range.max"
|
4826
|
+
"""
|
4827
|
+
elif False:
|
4828
|
+
SloWindowsBasedSliMetricMeanInRangeRangeArgsDict: TypeAlias = Mapping[str, Any]
|
4829
|
+
|
3455
4830
|
@pulumi.input_type
|
3456
4831
|
class SloWindowsBasedSliMetricMeanInRangeRangeArgs:
|
3457
4832
|
def __init__(__self__, *,
|
@@ -3499,6 +4874,31 @@ class SloWindowsBasedSliMetricMeanInRangeRangeArgs:
|
|
3499
4874
|
pulumi.set(self, "min", value)
|
3500
4875
|
|
3501
4876
|
|
4877
|
+
if not MYPY:
|
4878
|
+
class SloWindowsBasedSliMetricSumInRangeArgsDict(TypedDict):
|
4879
|
+
range: pulumi.Input['SloWindowsBasedSliMetricSumInRangeRangeArgsDict']
|
4880
|
+
"""
|
4881
|
+
Range of numerical values. The computed good_service
|
4882
|
+
will be the count of values x in the Distribution such
|
4883
|
+
that range.min <= x <= range.max. inclusive of min and
|
4884
|
+
max. Open ranges can be defined by setting
|
4885
|
+
just one of min or max. Summed value `X` should satisfy
|
4886
|
+
`range.min <= X <= range.max` for a good window.
|
4887
|
+
Structure is documented below.
|
4888
|
+
"""
|
4889
|
+
time_series: pulumi.Input[str]
|
4890
|
+
"""
|
4891
|
+
A [monitoring filter](https://cloud.google.com/monitoring/api/v3/filters)
|
4892
|
+
specifying the TimeSeries to use for evaluating window
|
4893
|
+
quality. The provided TimeSeries must have
|
4894
|
+
ValueType = INT64 or ValueType = DOUBLE and
|
4895
|
+
MetricKind = GAUGE.
|
4896
|
+
Summed value `X` should satisfy
|
4897
|
+
`range.min <= X <= range.max` for a good window.
|
4898
|
+
"""
|
4899
|
+
elif False:
|
4900
|
+
SloWindowsBasedSliMetricSumInRangeArgsDict: TypeAlias = Mapping[str, Any]
|
4901
|
+
|
3502
4902
|
@pulumi.input_type
|
3503
4903
|
class SloWindowsBasedSliMetricSumInRangeArgs:
|
3504
4904
|
def __init__(__self__, *,
|
@@ -3560,6 +4960,23 @@ class SloWindowsBasedSliMetricSumInRangeArgs:
|
|
3560
4960
|
pulumi.set(self, "time_series", value)
|
3561
4961
|
|
3562
4962
|
|
4963
|
+
if not MYPY:
|
4964
|
+
class SloWindowsBasedSliMetricSumInRangeRangeArgsDict(TypedDict):
|
4965
|
+
max: NotRequired[pulumi.Input[float]]
|
4966
|
+
"""
|
4967
|
+
max value for the range (inclusive). If not given,
|
4968
|
+
will be set to "infinity", defining an open range
|
4969
|
+
">= range.min"
|
4970
|
+
"""
|
4971
|
+
min: NotRequired[pulumi.Input[float]]
|
4972
|
+
"""
|
4973
|
+
Min value for the range (inclusive). If not given,
|
4974
|
+
will be set to "-infinity", defining an open range
|
4975
|
+
"< range.max"
|
4976
|
+
"""
|
4977
|
+
elif False:
|
4978
|
+
SloWindowsBasedSliMetricSumInRangeRangeArgsDict: TypeAlias = Mapping[str, Any]
|
4979
|
+
|
3563
4980
|
@pulumi.input_type
|
3564
4981
|
class SloWindowsBasedSliMetricSumInRangeRangeArgs:
|
3565
4982
|
def __init__(__self__, *,
|
@@ -3607,6 +5024,26 @@ class SloWindowsBasedSliMetricSumInRangeRangeArgs:
|
|
3607
5024
|
pulumi.set(self, "min", value)
|
3608
5025
|
|
3609
5026
|
|
5027
|
+
if not MYPY:
|
5028
|
+
class UptimeCheckConfigContentMatcherArgsDict(TypedDict):
|
5029
|
+
content: pulumi.Input[str]
|
5030
|
+
"""
|
5031
|
+
String or regex content to match (max 1024 bytes)
|
5032
|
+
"""
|
5033
|
+
json_path_matcher: NotRequired[pulumi.Input['UptimeCheckConfigContentMatcherJsonPathMatcherArgsDict']]
|
5034
|
+
"""
|
5035
|
+
Information needed to perform a JSONPath content match. Used for `ContentMatcherOption::MATCHES_JSON_PATH` and `ContentMatcherOption::NOT_MATCHES_JSON_PATH`.
|
5036
|
+
Structure is documented below.
|
5037
|
+
"""
|
5038
|
+
matcher: NotRequired[pulumi.Input[str]]
|
5039
|
+
"""
|
5040
|
+
The type of content matcher that will be applied to the server output, compared to the content string when the check is run.
|
5041
|
+
Default value is `CONTAINS_STRING`.
|
5042
|
+
Possible values are: `CONTAINS_STRING`, `NOT_CONTAINS_STRING`, `MATCHES_REGEX`, `NOT_MATCHES_REGEX`, `MATCHES_JSON_PATH`, `NOT_MATCHES_JSON_PATH`.
|
5043
|
+
"""
|
5044
|
+
elif False:
|
5045
|
+
UptimeCheckConfigContentMatcherArgsDict: TypeAlias = Mapping[str, Any]
|
5046
|
+
|
3610
5047
|
@pulumi.input_type
|
3611
5048
|
class UptimeCheckConfigContentMatcherArgs:
|
3612
5049
|
def __init__(__self__, *,
|
@@ -3667,6 +5104,21 @@ class UptimeCheckConfigContentMatcherArgs:
|
|
3667
5104
|
pulumi.set(self, "matcher", value)
|
3668
5105
|
|
3669
5106
|
|
5107
|
+
if not MYPY:
|
5108
|
+
class UptimeCheckConfigContentMatcherJsonPathMatcherArgsDict(TypedDict):
|
5109
|
+
json_path: pulumi.Input[str]
|
5110
|
+
"""
|
5111
|
+
JSONPath within the response output pointing to the expected `ContentMatcher::content` to match against.
|
5112
|
+
"""
|
5113
|
+
json_matcher: NotRequired[pulumi.Input[str]]
|
5114
|
+
"""
|
5115
|
+
Options to perform JSONPath content matching.
|
5116
|
+
Default value is `EXACT_MATCH`.
|
5117
|
+
Possible values are: `EXACT_MATCH`, `REGEX_MATCH`.
|
5118
|
+
"""
|
5119
|
+
elif False:
|
5120
|
+
UptimeCheckConfigContentMatcherJsonPathMatcherArgsDict: TypeAlias = Mapping[str, Any]
|
5121
|
+
|
3670
5122
|
@pulumi.input_type
|
3671
5123
|
class UptimeCheckConfigContentMatcherJsonPathMatcherArgs:
|
3672
5124
|
def __init__(__self__, *,
|
@@ -3709,6 +5161,74 @@ class UptimeCheckConfigContentMatcherJsonPathMatcherArgs:
|
|
3709
5161
|
pulumi.set(self, "json_matcher", value)
|
3710
5162
|
|
3711
5163
|
|
5164
|
+
if not MYPY:
|
5165
|
+
class UptimeCheckConfigHttpCheckArgsDict(TypedDict):
|
5166
|
+
accepted_response_status_codes: NotRequired[pulumi.Input[Sequence[pulumi.Input['UptimeCheckConfigHttpCheckAcceptedResponseStatusCodeArgsDict']]]]
|
5167
|
+
"""
|
5168
|
+
If present, the check will only pass if the HTTP response status code is in this set of status codes. If empty, the HTTP status code will only pass if the HTTP status code is 200-299.
|
5169
|
+
Structure is documented below.
|
5170
|
+
"""
|
5171
|
+
auth_info: NotRequired[pulumi.Input['UptimeCheckConfigHttpCheckAuthInfoArgsDict']]
|
5172
|
+
"""
|
5173
|
+
The authentication information using username and password. Optional when creating an HTTP check; defaults to empty. Do not use with other authentication fields.
|
5174
|
+
Structure is documented below.
|
5175
|
+
"""
|
5176
|
+
body: NotRequired[pulumi.Input[str]]
|
5177
|
+
"""
|
5178
|
+
The request body associated with the HTTP POST request. If `content_type` is `URL_ENCODED`, the body passed in must be URL-encoded. Users can provide a `Content-Length` header via the `headers` field or the API will do so. If the `request_method` is `GET` and `body` is not empty, the API will return an error. The maximum byte size is 1 megabyte. Note - As with all bytes fields JSON representations are base64 encoded. e.g. `foo=bar` in URL-encoded form is `foo%3Dbar` and in base64 encoding is `Zm9vJTI1M0RiYXI=`.
|
5179
|
+
"""
|
5180
|
+
content_type: NotRequired[pulumi.Input[str]]
|
5181
|
+
"""
|
5182
|
+
The content type to use for the check.
|
5183
|
+
Possible values are: `TYPE_UNSPECIFIED`, `URL_ENCODED`, `USER_PROVIDED`.
|
5184
|
+
"""
|
5185
|
+
custom_content_type: NotRequired[pulumi.Input[str]]
|
5186
|
+
"""
|
5187
|
+
A user provided content type header to use for the check. The invalid configurations outlined in the `content_type` field apply to custom_content_type`, as well as the following 1. `content_type` is `URL_ENCODED` and `custom_content_type` is set. 2. `content_type` is `USER_PROVIDED` and `custom_content_type` is not set.
|
5188
|
+
"""
|
5189
|
+
headers: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
5190
|
+
"""
|
5191
|
+
The list of headers to send as part of the uptime check request. If two headers have the same key and different values, they should be entered as a single header, with the value being a comma-separated list of all the desired values as described in [RFC 2616 (page 31)](https://www.w3.org/Protocols/rfc2616/rfc2616.txt). Entering two separate headers with the same key in a Create call will cause the first to be overwritten by the second. The maximum number of headers allowed is 100.
|
5192
|
+
"""
|
5193
|
+
mask_headers: NotRequired[pulumi.Input[bool]]
|
5194
|
+
"""
|
5195
|
+
Boolean specifying whether to encrypt the header information. Encryption should be specified for any headers related to authentication that you do not wish to be seen when retrieving the configuration. The server will be responsible for encrypting the headers. On Get/List calls, if `mask_headers` is set to `true` then the headers will be obscured with `******`.
|
5196
|
+
"""
|
5197
|
+
path: NotRequired[pulumi.Input[str]]
|
5198
|
+
"""
|
5199
|
+
The path to the page to run the check against. Will be combined with the host (specified within the MonitoredResource) and port to construct the full URL. If the provided path does not begin with `/`, a `/` will be prepended automatically. Optional (defaults to `/`).
|
5200
|
+
"""
|
5201
|
+
ping_config: NotRequired[pulumi.Input['UptimeCheckConfigHttpCheckPingConfigArgsDict']]
|
5202
|
+
"""
|
5203
|
+
Contains information needed to add pings to an HTTP check.
|
5204
|
+
Structure is documented below.
|
5205
|
+
"""
|
5206
|
+
port: NotRequired[pulumi.Input[int]]
|
5207
|
+
"""
|
5208
|
+
The port to the page to run the check against. Will be combined with `host` (specified within the `monitored_resource`) and path to construct the full URL. Optional (defaults to 80 without SSL, or 443 with SSL).
|
5209
|
+
"""
|
5210
|
+
request_method: NotRequired[pulumi.Input[str]]
|
5211
|
+
"""
|
5212
|
+
The HTTP request method to use for the check. If set to `METHOD_UNSPECIFIED` then `request_method` defaults to `GET`.
|
5213
|
+
Default value is `GET`.
|
5214
|
+
Possible values are: `METHOD_UNSPECIFIED`, `GET`, `POST`.
|
5215
|
+
"""
|
5216
|
+
service_agent_authentication: NotRequired[pulumi.Input['UptimeCheckConfigHttpCheckServiceAgentAuthenticationArgsDict']]
|
5217
|
+
"""
|
5218
|
+
The authentication information using the Monitoring Service Agent. Optional when creating an HTTPS check; defaults to empty. Do not use with other authentication fields.
|
5219
|
+
Structure is documented below.
|
5220
|
+
"""
|
5221
|
+
use_ssl: NotRequired[pulumi.Input[bool]]
|
5222
|
+
"""
|
5223
|
+
If true, use HTTPS instead of HTTP to run the check.
|
5224
|
+
"""
|
5225
|
+
validate_ssl: NotRequired[pulumi.Input[bool]]
|
5226
|
+
"""
|
5227
|
+
Boolean specifying whether to include SSL certificate validation as a part of the Uptime check. Only applies to checks where `monitored_resource` is set to `uptime_url`. If `use_ssl` is `false`, setting `validate_ssl` to `true` has no effect.
|
5228
|
+
"""
|
5229
|
+
elif False:
|
5230
|
+
UptimeCheckConfigHttpCheckArgsDict: TypeAlias = Mapping[str, Any]
|
5231
|
+
|
3712
5232
|
@pulumi.input_type
|
3713
5233
|
class UptimeCheckConfigHttpCheckArgs:
|
3714
5234
|
def __init__(__self__, *,
|
@@ -3954,6 +5474,20 @@ class UptimeCheckConfigHttpCheckArgs:
|
|
3954
5474
|
pulumi.set(self, "validate_ssl", value)
|
3955
5475
|
|
3956
5476
|
|
5477
|
+
if not MYPY:
|
5478
|
+
class UptimeCheckConfigHttpCheckAcceptedResponseStatusCodeArgsDict(TypedDict):
|
5479
|
+
status_class: NotRequired[pulumi.Input[str]]
|
5480
|
+
"""
|
5481
|
+
A class of status codes to accept.
|
5482
|
+
Possible values are: `STATUS_CLASS_1XX`, `STATUS_CLASS_2XX`, `STATUS_CLASS_3XX`, `STATUS_CLASS_4XX`, `STATUS_CLASS_5XX`, `STATUS_CLASS_ANY`.
|
5483
|
+
"""
|
5484
|
+
status_value: NotRequired[pulumi.Input[int]]
|
5485
|
+
"""
|
5486
|
+
A status code to accept.
|
5487
|
+
"""
|
5488
|
+
elif False:
|
5489
|
+
UptimeCheckConfigHttpCheckAcceptedResponseStatusCodeArgsDict: TypeAlias = Mapping[str, Any]
|
5490
|
+
|
3957
5491
|
@pulumi.input_type
|
3958
5492
|
class UptimeCheckConfigHttpCheckAcceptedResponseStatusCodeArgs:
|
3959
5493
|
def __init__(__self__, *,
|
@@ -3995,6 +5529,20 @@ class UptimeCheckConfigHttpCheckAcceptedResponseStatusCodeArgs:
|
|
3995
5529
|
pulumi.set(self, "status_value", value)
|
3996
5530
|
|
3997
5531
|
|
5532
|
+
if not MYPY:
|
5533
|
+
class UptimeCheckConfigHttpCheckAuthInfoArgsDict(TypedDict):
|
5534
|
+
password: pulumi.Input[str]
|
5535
|
+
"""
|
5536
|
+
The password to authenticate.
|
5537
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
5538
|
+
"""
|
5539
|
+
username: pulumi.Input[str]
|
5540
|
+
"""
|
5541
|
+
The username to authenticate.
|
5542
|
+
"""
|
5543
|
+
elif False:
|
5544
|
+
UptimeCheckConfigHttpCheckAuthInfoArgsDict: TypeAlias = Mapping[str, Any]
|
5545
|
+
|
3998
5546
|
@pulumi.input_type
|
3999
5547
|
class UptimeCheckConfigHttpCheckAuthInfoArgs:
|
4000
5548
|
def __init__(__self__, *,
|
@@ -4034,6 +5582,15 @@ class UptimeCheckConfigHttpCheckAuthInfoArgs:
|
|
4034
5582
|
pulumi.set(self, "username", value)
|
4035
5583
|
|
4036
5584
|
|
5585
|
+
if not MYPY:
|
5586
|
+
class UptimeCheckConfigHttpCheckPingConfigArgsDict(TypedDict):
|
5587
|
+
pings_count: pulumi.Input[int]
|
5588
|
+
"""
|
5589
|
+
Number of ICMP pings. A maximum of 3 ICMP pings is currently supported.
|
5590
|
+
"""
|
5591
|
+
elif False:
|
5592
|
+
UptimeCheckConfigHttpCheckPingConfigArgsDict: TypeAlias = Mapping[str, Any]
|
5593
|
+
|
4037
5594
|
@pulumi.input_type
|
4038
5595
|
class UptimeCheckConfigHttpCheckPingConfigArgs:
|
4039
5596
|
def __init__(__self__, *,
|
@@ -4056,6 +5613,16 @@ class UptimeCheckConfigHttpCheckPingConfigArgs:
|
|
4056
5613
|
pulumi.set(self, "pings_count", value)
|
4057
5614
|
|
4058
5615
|
|
5616
|
+
if not MYPY:
|
5617
|
+
class UptimeCheckConfigHttpCheckServiceAgentAuthenticationArgsDict(TypedDict):
|
5618
|
+
type: NotRequired[pulumi.Input[str]]
|
5619
|
+
"""
|
5620
|
+
The type of authentication to use.
|
5621
|
+
Possible values are: `SERVICE_AGENT_AUTHENTICATION_TYPE_UNSPECIFIED`, `OIDC_TOKEN`.
|
5622
|
+
"""
|
5623
|
+
elif False:
|
5624
|
+
UptimeCheckConfigHttpCheckServiceAgentAuthenticationArgsDict: TypeAlias = Mapping[str, Any]
|
5625
|
+
|
4059
5626
|
@pulumi.input_type
|
4060
5627
|
class UptimeCheckConfigHttpCheckServiceAgentAuthenticationArgs:
|
4061
5628
|
def __init__(__self__, *,
|
@@ -4081,6 +5648,19 @@ class UptimeCheckConfigHttpCheckServiceAgentAuthenticationArgs:
|
|
4081
5648
|
pulumi.set(self, "type", value)
|
4082
5649
|
|
4083
5650
|
|
5651
|
+
if not MYPY:
|
5652
|
+
class UptimeCheckConfigMonitoredResourceArgsDict(TypedDict):
|
5653
|
+
labels: pulumi.Input[Mapping[str, pulumi.Input[str]]]
|
5654
|
+
"""
|
5655
|
+
Values for all of the labels listed in the associated monitored resource descriptor. For example, Compute Engine VM instances use the labels `project_id`, `instance_id`, and `zone`.
|
5656
|
+
"""
|
5657
|
+
type: pulumi.Input[str]
|
5658
|
+
"""
|
5659
|
+
The monitored resource type. This field must match the type field of a [`MonitoredResourceDescriptor`](https://cloud.google.com/monitoring/api/ref_v3/rest/v3/projects.monitoredResourceDescriptors#MonitoredResourceDescriptor) object. For example, the type of a Compute Engine VM instance is `gce_instance`. For a list of types, see [Monitoring resource types](https://cloud.google.com/monitoring/api/resources) and [Logging resource types](https://cloud.google.com/logging/docs/api/v2/resource-list).
|
5660
|
+
"""
|
5661
|
+
elif False:
|
5662
|
+
UptimeCheckConfigMonitoredResourceArgsDict: TypeAlias = Mapping[str, Any]
|
5663
|
+
|
4084
5664
|
@pulumi.input_type
|
4085
5665
|
class UptimeCheckConfigMonitoredResourceArgs:
|
4086
5666
|
def __init__(__self__, *,
|
@@ -4118,6 +5698,20 @@ class UptimeCheckConfigMonitoredResourceArgs:
|
|
4118
5698
|
pulumi.set(self, "type", value)
|
4119
5699
|
|
4120
5700
|
|
5701
|
+
if not MYPY:
|
5702
|
+
class UptimeCheckConfigResourceGroupArgsDict(TypedDict):
|
5703
|
+
group_id: NotRequired[pulumi.Input[str]]
|
5704
|
+
"""
|
5705
|
+
The group of resources being monitored. Should be the `name` of a group
|
5706
|
+
"""
|
5707
|
+
resource_type: NotRequired[pulumi.Input[str]]
|
5708
|
+
"""
|
5709
|
+
The resource type of the group members.
|
5710
|
+
Possible values are: `RESOURCE_TYPE_UNSPECIFIED`, `INSTANCE`, `AWS_ELB_LOAD_BALANCER`.
|
5711
|
+
"""
|
5712
|
+
elif False:
|
5713
|
+
UptimeCheckConfigResourceGroupArgsDict: TypeAlias = Mapping[str, Any]
|
5714
|
+
|
4121
5715
|
@pulumi.input_type
|
4122
5716
|
class UptimeCheckConfigResourceGroupArgs:
|
4123
5717
|
def __init__(__self__, *,
|
@@ -4159,6 +5753,19 @@ class UptimeCheckConfigResourceGroupArgs:
|
|
4159
5753
|
pulumi.set(self, "resource_type", value)
|
4160
5754
|
|
4161
5755
|
|
5756
|
+
if not MYPY:
|
5757
|
+
class UptimeCheckConfigSyntheticMonitorArgsDict(TypedDict):
|
5758
|
+
cloud_function_v2: pulumi.Input['UptimeCheckConfigSyntheticMonitorCloudFunctionV2ArgsDict']
|
5759
|
+
"""
|
5760
|
+
Target a Synthetic Monitor GCFv2 Instance
|
5761
|
+
Structure is documented below.
|
5762
|
+
|
5763
|
+
|
5764
|
+
<a name="nested_cloud_function_v2"></a>The `cloud_function_v2` block supports:
|
5765
|
+
"""
|
5766
|
+
elif False:
|
5767
|
+
UptimeCheckConfigSyntheticMonitorArgsDict: TypeAlias = Mapping[str, Any]
|
5768
|
+
|
4162
5769
|
@pulumi.input_type
|
4163
5770
|
class UptimeCheckConfigSyntheticMonitorArgs:
|
4164
5771
|
def __init__(__self__, *,
|
@@ -4189,6 +5796,15 @@ class UptimeCheckConfigSyntheticMonitorArgs:
|
|
4189
5796
|
pulumi.set(self, "cloud_function_v2", value)
|
4190
5797
|
|
4191
5798
|
|
5799
|
+
if not MYPY:
|
5800
|
+
class UptimeCheckConfigSyntheticMonitorCloudFunctionV2ArgsDict(TypedDict):
|
5801
|
+
name: pulumi.Input[str]
|
5802
|
+
"""
|
5803
|
+
A unique resource name for this UptimeCheckConfig. The format is `projects/[PROJECT_ID]/uptimeCheckConfigs/[UPTIME_CHECK_ID]`.
|
5804
|
+
"""
|
5805
|
+
elif False:
|
5806
|
+
UptimeCheckConfigSyntheticMonitorCloudFunctionV2ArgsDict: TypeAlias = Mapping[str, Any]
|
5807
|
+
|
4192
5808
|
@pulumi.input_type
|
4193
5809
|
class UptimeCheckConfigSyntheticMonitorCloudFunctionV2Args:
|
4194
5810
|
def __init__(__self__, *,
|
@@ -4211,6 +5827,20 @@ class UptimeCheckConfigSyntheticMonitorCloudFunctionV2Args:
|
|
4211
5827
|
pulumi.set(self, "name", value)
|
4212
5828
|
|
4213
5829
|
|
5830
|
+
if not MYPY:
|
5831
|
+
class UptimeCheckConfigTcpCheckArgsDict(TypedDict):
|
5832
|
+
port: pulumi.Input[int]
|
5833
|
+
"""
|
5834
|
+
The port to the page to run the check against. Will be combined with host (specified within the `monitored_resource`) to construct the full URL.
|
5835
|
+
"""
|
5836
|
+
ping_config: NotRequired[pulumi.Input['UptimeCheckConfigTcpCheckPingConfigArgsDict']]
|
5837
|
+
"""
|
5838
|
+
Contains information needed to add pings to a TCP check.
|
5839
|
+
Structure is documented below.
|
5840
|
+
"""
|
5841
|
+
elif False:
|
5842
|
+
UptimeCheckConfigTcpCheckArgsDict: TypeAlias = Mapping[str, Any]
|
5843
|
+
|
4214
5844
|
@pulumi.input_type
|
4215
5845
|
class UptimeCheckConfigTcpCheckArgs:
|
4216
5846
|
def __init__(__self__, *,
|
@@ -4251,6 +5881,15 @@ class UptimeCheckConfigTcpCheckArgs:
|
|
4251
5881
|
pulumi.set(self, "ping_config", value)
|
4252
5882
|
|
4253
5883
|
|
5884
|
+
if not MYPY:
|
5885
|
+
class UptimeCheckConfigTcpCheckPingConfigArgsDict(TypedDict):
|
5886
|
+
pings_count: pulumi.Input[int]
|
5887
|
+
"""
|
5888
|
+
Number of ICMP pings. A maximum of 3 ICMP pings is currently supported.
|
5889
|
+
"""
|
5890
|
+
elif False:
|
5891
|
+
UptimeCheckConfigTcpCheckPingConfigArgsDict: TypeAlias = Mapping[str, Any]
|
5892
|
+
|
4254
5893
|
@pulumi.input_type
|
4255
5894
|
class UptimeCheckConfigTcpCheckPingConfigArgs:
|
4256
5895
|
def __init__(__self__, *,
|