pulumi-gcp 7.30.0a1719470057__py3-none-any.whl → 7.30.0a1719555549__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/_inputs.py +15 -0
- pulumi_gcp/accessapproval/get_folder_service_account.py +5 -0
- pulumi_gcp/accessapproval/get_organization_service_account.py +5 -0
- pulumi_gcp/accessapproval/get_project_service_account.py +5 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +2066 -6
- pulumi_gcp/accesscontextmanager/access_level.py +37 -32
- pulumi_gcp/accesscontextmanager/access_level_condition.py +53 -48
- pulumi_gcp/accesscontextmanager/access_levels.py +70 -65
- pulumi_gcp/accesscontextmanager/access_policy.py +5 -0
- pulumi_gcp/accesscontextmanager/access_policy_iam_binding.py +24 -19
- pulumi_gcp/accesscontextmanager/access_policy_iam_member.py +24 -19
- pulumi_gcp/accesscontextmanager/access_policy_iam_policy.py +21 -16
- pulumi_gcp/accesscontextmanager/authorized_orgs_desc.py +5 -0
- pulumi_gcp/accesscontextmanager/egress_policy.py +5 -0
- pulumi_gcp/accesscontextmanager/gcp_user_access_binding.py +33 -28
- pulumi_gcp/accesscontextmanager/get_access_policy_iam_policy.py +5 -0
- pulumi_gcp/accesscontextmanager/ingress_policy.py +5 -0
- pulumi_gcp/accesscontextmanager/outputs.py +5 -0
- pulumi_gcp/accesscontextmanager/service_perimeter.py +201 -196
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_resource.py +11 -6
- pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +15 -10
- pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +15 -10
- pulumi_gcp/accesscontextmanager/service_perimeter_resource.py +11 -6
- pulumi_gcp/accesscontextmanager/service_perimeters.py +60 -55
- pulumi_gcp/activedirectory/domain.py +5 -0
- pulumi_gcp/activedirectory/domain_trust.py +5 -0
- pulumi_gcp/activedirectory/peering.py +5 -0
- pulumi_gcp/alloydb/_inputs.py +535 -0
- pulumi_gcp/alloydb/backup.py +26 -21
- pulumi_gcp/alloydb/cluster.py +177 -172
- pulumi_gcp/alloydb/get_locations.py +5 -0
- pulumi_gcp/alloydb/get_supported_database_flags.py +5 -0
- pulumi_gcp/alloydb/instance.py +77 -72
- pulumi_gcp/alloydb/outputs.py +5 -0
- pulumi_gcp/alloydb/user.py +17 -12
- pulumi_gcp/apigateway/_inputs.py +168 -0
- pulumi_gcp/apigateway/api.py +5 -0
- pulumi_gcp/apigateway/api_config.py +25 -20
- pulumi_gcp/apigateway/api_config_iam_binding.py +24 -19
- pulumi_gcp/apigateway/api_config_iam_member.py +24 -19
- pulumi_gcp/apigateway/api_config_iam_policy.py +21 -16
- pulumi_gcp/apigateway/api_iam_binding.py +24 -19
- pulumi_gcp/apigateway/api_iam_member.py +24 -19
- pulumi_gcp/apigateway/api_iam_policy.py +21 -16
- pulumi_gcp/apigateway/gateway.py +5 -0
- pulumi_gcp/apigateway/gateway_iam_binding.py +24 -19
- pulumi_gcp/apigateway/gateway_iam_member.py +24 -19
- pulumi_gcp/apigateway/gateway_iam_policy.py +21 -16
- pulumi_gcp/apigateway/get_api_config_iam_policy.py +5 -0
- pulumi_gcp/apigateway/get_api_iam_policy.py +5 -0
- pulumi_gcp/apigateway/get_gateway_iam_policy.py +5 -0
- pulumi_gcp/apigateway/outputs.py +5 -0
- pulumi_gcp/apigee/_inputs.py +508 -0
- pulumi_gcp/apigee/addons_config.py +60 -55
- pulumi_gcp/apigee/endpoint_attachment.py +5 -0
- pulumi_gcp/apigee/env_group.py +5 -0
- pulumi_gcp/apigee/env_group_attachment.py +5 -0
- pulumi_gcp/apigee/env_keystore.py +5 -0
- pulumi_gcp/apigee/env_references.py +5 -0
- pulumi_gcp/apigee/environment.py +10 -5
- pulumi_gcp/apigee/environment_iam_binding.py +24 -19
- pulumi_gcp/apigee/environment_iam_member.py +24 -19
- pulumi_gcp/apigee/environment_iam_policy.py +21 -16
- pulumi_gcp/apigee/flowhook.py +5 -0
- pulumi_gcp/apigee/get_environment_iam_policy.py +5 -0
- pulumi_gcp/apigee/instance.py +5 -0
- pulumi_gcp/apigee/instance_attachment.py +5 -0
- pulumi_gcp/apigee/keystores_aliases_key_cert_file.py +10 -5
- pulumi_gcp/apigee/keystores_aliases_pkcs12.py +7 -2
- pulumi_gcp/apigee/keystores_aliases_self_signed_cert.py +31 -26
- pulumi_gcp/apigee/nat_address.py +5 -0
- pulumi_gcp/apigee/organization.py +10 -5
- pulumi_gcp/apigee/outputs.py +5 -0
- pulumi_gcp/apigee/sharedflow.py +7 -2
- pulumi_gcp/apigee/sharedflow_deployment.py +5 -0
- pulumi_gcp/apigee/sync_authorization.py +5 -0
- pulumi_gcp/apigee/target_server.py +10 -5
- pulumi_gcp/appengine/_inputs.py +990 -7
- pulumi_gcp/appengine/application.py +17 -12
- pulumi_gcp/appengine/application_url_dispatch_rules.py +46 -41
- pulumi_gcp/appengine/domain_mapping.py +18 -13
- pulumi_gcp/appengine/engine_split_traffic.py +50 -45
- pulumi_gcp/appengine/firewall_rule.py +5 -0
- pulumi_gcp/appengine/flexible_app_version.py +130 -125
- pulumi_gcp/appengine/get_default_service_account.py +5 -0
- pulumi_gcp/appengine/outputs.py +5 -0
- pulumi_gcp/appengine/service_network_settings.py +32 -27
- pulumi_gcp/appengine/standard_app_version.py +109 -104
- pulumi_gcp/apphub/_inputs.py +370 -0
- pulumi_gcp/apphub/application.py +67 -62
- pulumi_gcp/apphub/get_application.py +5 -0
- pulumi_gcp/apphub/get_discovered_service.py +5 -0
- pulumi_gcp/apphub/get_discovered_workload.py +5 -0
- pulumi_gcp/apphub/outputs.py +5 -0
- pulumi_gcp/apphub/service.py +78 -73
- pulumi_gcp/apphub/service_project_attachment.py +5 -0
- pulumi_gcp/apphub/workload.py +14 -9
- pulumi_gcp/applicationintegration/_inputs.py +324 -0
- pulumi_gcp/applicationintegration/auth_config.py +29 -24
- pulumi_gcp/applicationintegration/client.py +24 -19
- pulumi_gcp/applicationintegration/outputs.py +5 -0
- pulumi_gcp/artifactregistry/_inputs.py +392 -0
- pulumi_gcp/artifactregistry/get_docker_image.py +5 -0
- pulumi_gcp/artifactregistry/get_repository.py +5 -0
- pulumi_gcp/artifactregistry/get_repository_iam_policy.py +5 -0
- pulumi_gcp/artifactregistry/outputs.py +5 -0
- pulumi_gcp/artifactregistry/repository.py +338 -333
- pulumi_gcp/artifactregistry/repository_iam_binding.py +24 -19
- pulumi_gcp/artifactregistry/repository_iam_member.py +24 -19
- pulumi_gcp/artifactregistry/repository_iam_policy.py +21 -16
- pulumi_gcp/artifactregistry/vpcsc_config.py +5 -0
- pulumi_gcp/assuredworkloads/_inputs.py +117 -0
- pulumi_gcp/assuredworkloads/outputs.py +5 -0
- pulumi_gcp/assuredworkloads/workload.py +86 -81
- pulumi_gcp/backupdisasterrecovery/_inputs.py +41 -0
- pulumi_gcp/backupdisasterrecovery/get_management_server.py +5 -0
- pulumi_gcp/backupdisasterrecovery/management_server.py +20 -15
- pulumi_gcp/backupdisasterrecovery/outputs.py +5 -0
- pulumi_gcp/beyondcorp/_inputs.py +86 -0
- pulumi_gcp/beyondcorp/app_connection.py +57 -52
- pulumi_gcp/beyondcorp/app_connector.py +30 -25
- pulumi_gcp/beyondcorp/app_gateway.py +7 -2
- pulumi_gcp/beyondcorp/get_app_connection.py +5 -0
- pulumi_gcp/beyondcorp/get_app_connector.py +5 -0
- pulumi_gcp/beyondcorp/get_app_gateway.py +5 -0
- pulumi_gcp/beyondcorp/outputs.py +5 -0
- pulumi_gcp/biglake/_inputs.py +64 -0
- pulumi_gcp/biglake/catalog.py +5 -0
- pulumi_gcp/biglake/database.py +18 -13
- pulumi_gcp/biglake/outputs.py +5 -0
- pulumi_gcp/biglake/table.py +36 -31
- pulumi_gcp/bigquery/_inputs.py +1930 -6
- pulumi_gcp/bigquery/app_profile.py +133 -128
- pulumi_gcp/bigquery/bi_reservation.py +10 -5
- pulumi_gcp/bigquery/capacity_commitment.py +5 -0
- pulumi_gcp/bigquery/connection.py +181 -176
- pulumi_gcp/bigquery/connection_iam_binding.py +24 -19
- pulumi_gcp/bigquery/connection_iam_member.py +24 -19
- pulumi_gcp/bigquery/connection_iam_policy.py +21 -16
- pulumi_gcp/bigquery/data_transfer_config.py +20 -15
- pulumi_gcp/bigquery/dataset.py +132 -127
- pulumi_gcp/bigquery/dataset_access.py +72 -67
- pulumi_gcp/bigquery/dataset_iam_binding.py +24 -19
- pulumi_gcp/bigquery/dataset_iam_member.py +24 -19
- pulumi_gcp/bigquery/dataset_iam_policy.py +21 -16
- pulumi_gcp/bigquery/get_connection_iam_policy.py +5 -0
- pulumi_gcp/bigquery/get_dataset.py +5 -0
- pulumi_gcp/bigquery/get_dataset_iam_policy.py +5 -0
- pulumi_gcp/bigquery/get_default_service_account.py +5 -0
- pulumi_gcp/bigquery/get_table_iam_policy.py +5 -0
- pulumi_gcp/bigquery/iam_binding.py +102 -97
- pulumi_gcp/bigquery/iam_member.py +102 -97
- pulumi_gcp/bigquery/iam_policy.py +97 -92
- pulumi_gcp/bigquery/job.py +229 -224
- pulumi_gcp/bigquery/outputs.py +5 -0
- pulumi_gcp/bigquery/reservation.py +16 -11
- pulumi_gcp/bigquery/reservation_assignment.py +5 -0
- pulumi_gcp/bigquery/routine.py +114 -109
- pulumi_gcp/bigquery/table.py +67 -62
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +97 -0
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +5 -0
- pulumi_gcp/bigqueryanalyticshub/data_exchange_iam_binding.py +24 -19
- pulumi_gcp/bigqueryanalyticshub/data_exchange_iam_member.py +24 -19
- pulumi_gcp/bigqueryanalyticshub/data_exchange_iam_policy.py +21 -16
- pulumi_gcp/bigqueryanalyticshub/get_data_exchange_iam_policy.py +5 -0
- pulumi_gcp/bigqueryanalyticshub/get_listing_iam_policy.py +5 -0
- pulumi_gcp/bigqueryanalyticshub/listing.py +45 -40
- pulumi_gcp/bigqueryanalyticshub/listing_iam_binding.py +24 -19
- pulumi_gcp/bigqueryanalyticshub/listing_iam_member.py +24 -19
- pulumi_gcp/bigqueryanalyticshub/listing_iam_policy.py +21 -16
- pulumi_gcp/bigqueryanalyticshub/outputs.py +5 -0
- pulumi_gcp/bigquerydatapolicy/_inputs.py +40 -0
- pulumi_gcp/bigquerydatapolicy/data_policy.py +24 -19
- pulumi_gcp/bigquerydatapolicy/data_policy_iam_binding.py +24 -19
- pulumi_gcp/bigquerydatapolicy/data_policy_iam_member.py +24 -19
- pulumi_gcp/bigquerydatapolicy/data_policy_iam_policy.py +21 -16
- pulumi_gcp/bigquerydatapolicy/get_iam_policy.py +5 -0
- pulumi_gcp/bigquerydatapolicy/outputs.py +5 -0
- pulumi_gcp/bigtable/_inputs.py +202 -0
- pulumi_gcp/bigtable/authorized_view.py +10 -5
- pulumi_gcp/bigtable/gc_policy.py +45 -40
- pulumi_gcp/bigtable/get_instance_iam_policy.py +5 -0
- pulumi_gcp/bigtable/get_table_iam_policy.py +5 -0
- pulumi_gcp/bigtable/instance.py +52 -47
- pulumi_gcp/bigtable/instance_iam_binding.py +24 -19
- pulumi_gcp/bigtable/instance_iam_member.py +24 -19
- pulumi_gcp/bigtable/instance_iam_policy.py +21 -16
- pulumi_gcp/bigtable/outputs.py +5 -0
- pulumi_gcp/bigtable/table.py +39 -34
- pulumi_gcp/bigtable/table_iam_binding.py +24 -19
- pulumi_gcp/bigtable/table_iam_member.py +24 -19
- pulumi_gcp/bigtable/table_iam_policy.py +21 -16
- pulumi_gcp/billing/_inputs.py +257 -0
- pulumi_gcp/billing/account_iam_binding.py +24 -19
- pulumi_gcp/billing/account_iam_member.py +24 -19
- pulumi_gcp/billing/account_iam_policy.py +21 -16
- pulumi_gcp/billing/budget.py +225 -220
- pulumi_gcp/billing/get_account_iam_policy.py +5 -0
- pulumi_gcp/billing/outputs.py +5 -0
- pulumi_gcp/billing/project_info.py +5 -0
- pulumi_gcp/billing/sub_account.py +5 -0
- pulumi_gcp/binaryauthorization/_inputs.py +199 -0
- pulumi_gcp/binaryauthorization/attestor.py +68 -63
- pulumi_gcp/binaryauthorization/attestor_iam_binding.py +24 -19
- pulumi_gcp/binaryauthorization/attestor_iam_member.py +24 -19
- pulumi_gcp/binaryauthorization/attestor_iam_policy.py +21 -16
- pulumi_gcp/binaryauthorization/get_attestor_iam_policy.py +5 -0
- pulumi_gcp/binaryauthorization/outputs.py +5 -0
- pulumi_gcp/binaryauthorization/policy.py +88 -83
- pulumi_gcp/blockchainnodeengine/_inputs.py +131 -0
- pulumi_gcp/blockchainnodeengine/blockchain_nodes.py +62 -57
- pulumi_gcp/blockchainnodeengine/outputs.py +5 -0
- pulumi_gcp/certificateauthority/_inputs.py +2157 -36
- pulumi_gcp/certificateauthority/authority.py +398 -393
- pulumi_gcp/certificateauthority/ca_pool.py +189 -184
- pulumi_gcp/certificateauthority/ca_pool_iam_binding.py +102 -97
- pulumi_gcp/certificateauthority/ca_pool_iam_member.py +102 -97
- pulumi_gcp/certificateauthority/ca_pool_iam_policy.py +97 -92
- pulumi_gcp/certificateauthority/certificate.py +636 -631
- pulumi_gcp/certificateauthority/certificate_template.py +134 -129
- pulumi_gcp/certificateauthority/certificate_template_iam_binding.py +102 -97
- pulumi_gcp/certificateauthority/certificate_template_iam_member.py +102 -97
- pulumi_gcp/certificateauthority/certificate_template_iam_policy.py +97 -92
- pulumi_gcp/certificateauthority/get_authority.py +5 -0
- pulumi_gcp/certificateauthority/get_ca_pool_iam_policy.py +5 -0
- pulumi_gcp/certificateauthority/get_certificate_template_iam_policy.py +5 -0
- pulumi_gcp/certificateauthority/outputs.py +5 -0
- pulumi_gcp/certificatemanager/_inputs.py +256 -0
- pulumi_gcp/certificatemanager/certificate.py +203 -198
- pulumi_gcp/certificatemanager/certificate_issuance_config.py +76 -71
- pulumi_gcp/certificatemanager/certificate_map.py +7 -2
- pulumi_gcp/certificatemanager/certificate_map_entry.py +13 -8
- pulumi_gcp/certificatemanager/dns_authorization.py +7 -2
- pulumi_gcp/certificatemanager/get_certificate_map.py +5 -0
- pulumi_gcp/certificatemanager/outputs.py +5 -0
- pulumi_gcp/certificatemanager/trust_config.py +26 -21
- pulumi_gcp/cloudasset/_inputs.py +151 -0
- pulumi_gcp/cloudasset/folder_feed.py +35 -30
- pulumi_gcp/cloudasset/get_resources_search_all.py +5 -0
- pulumi_gcp/cloudasset/get_search_all_resources.py +5 -0
- pulumi_gcp/cloudasset/organization_feed.py +35 -30
- pulumi_gcp/cloudasset/outputs.py +5 -0
- pulumi_gcp/cloudasset/project_feed.py +35 -30
- pulumi_gcp/cloudbuild/_inputs.py +1038 -29
- pulumi_gcp/cloudbuild/bitbucket_server_config.py +61 -56
- pulumi_gcp/cloudbuild/get_trigger.py +5 -0
- pulumi_gcp/cloudbuild/outputs.py +5 -0
- pulumi_gcp/cloudbuild/trigger.py +733 -728
- pulumi_gcp/cloudbuild/worker_pool.py +43 -38
- pulumi_gcp/cloudbuildv2/_inputs.py +335 -0
- pulumi_gcp/cloudbuildv2/connection.py +106 -101
- pulumi_gcp/cloudbuildv2/connection_iam_binding.py +24 -19
- pulumi_gcp/cloudbuildv2/connection_iam_member.py +24 -19
- pulumi_gcp/cloudbuildv2/connection_iam_policy.py +21 -16
- pulumi_gcp/cloudbuildv2/get_connection_iam_policy.py +5 -0
- pulumi_gcp/cloudbuildv2/outputs.py +5 -0
- pulumi_gcp/cloudbuildv2/repository.py +67 -62
- pulumi_gcp/clouddeploy/_inputs.py +700 -0
- pulumi_gcp/clouddeploy/automation.py +101 -96
- pulumi_gcp/clouddeploy/custom_target_type.py +88 -83
- pulumi_gcp/clouddeploy/custom_target_type_iam_binding.py +8 -3
- pulumi_gcp/clouddeploy/custom_target_type_iam_member.py +8 -3
- pulumi_gcp/clouddeploy/custom_target_type_iam_policy.py +5 -0
- pulumi_gcp/clouddeploy/delivery_pipeline.py +162 -157
- pulumi_gcp/clouddeploy/delivery_pipeline_iam_binding.py +8 -3
- pulumi_gcp/clouddeploy/delivery_pipeline_iam_member.py +8 -3
- pulumi_gcp/clouddeploy/delivery_pipeline_iam_policy.py +5 -0
- pulumi_gcp/clouddeploy/get_custom_target_type_iam_policy.py +5 -0
- pulumi_gcp/clouddeploy/get_delivery_pipeline_iam_policy.py +5 -0
- pulumi_gcp/clouddeploy/get_target_iam_policy.py +5 -0
- pulumi_gcp/clouddeploy/outputs.py +5 -0
- pulumi_gcp/clouddeploy/target.py +69 -64
- pulumi_gcp/clouddeploy/target_iam_binding.py +8 -3
- pulumi_gcp/clouddeploy/target_iam_member.py +8 -3
- pulumi_gcp/clouddeploy/target_iam_policy.py +5 -0
- pulumi_gcp/clouddomains/_inputs.py +372 -0
- pulumi_gcp/clouddomains/outputs.py +5 -0
- pulumi_gcp/clouddomains/registration.py +121 -116
- pulumi_gcp/cloudfunctions/_inputs.py +132 -0
- pulumi_gcp/cloudfunctions/function.py +25 -20
- pulumi_gcp/cloudfunctions/function_iam_binding.py +24 -19
- pulumi_gcp/cloudfunctions/function_iam_member.py +24 -19
- pulumi_gcp/cloudfunctions/function_iam_policy.py +21 -16
- pulumi_gcp/cloudfunctions/get_function.py +5 -0
- pulumi_gcp/cloudfunctions/get_function_iam_policy.py +5 -0
- pulumi_gcp/cloudfunctions/outputs.py +5 -0
- pulumi_gcp/cloudfunctionsv2/_inputs.py +357 -0
- pulumi_gcp/cloudfunctionsv2/function.py +514 -509
- pulumi_gcp/cloudfunctionsv2/function_iam_binding.py +24 -19
- pulumi_gcp/cloudfunctionsv2/function_iam_member.py +24 -19
- pulumi_gcp/cloudfunctionsv2/function_iam_policy.py +21 -16
- pulumi_gcp/cloudfunctionsv2/get_function.py +5 -0
- pulumi_gcp/cloudfunctionsv2/get_function_iam_policy.py +5 -0
- pulumi_gcp/cloudfunctionsv2/outputs.py +5 -0
- pulumi_gcp/cloudidentity/_inputs.py +161 -0
- pulumi_gcp/cloudidentity/get_group_lookup.py +9 -4
- pulumi_gcp/cloudidentity/get_group_memberships.py +5 -0
- pulumi_gcp/cloudidentity/get_groups.py +5 -0
- pulumi_gcp/cloudidentity/group.py +18 -13
- pulumi_gcp/cloudidentity/group_membership.py +68 -63
- pulumi_gcp/cloudidentity/outputs.py +5 -0
- pulumi_gcp/cloudids/endpoint.py +5 -0
- pulumi_gcp/cloudquota/_inputs.py +44 -0
- pulumi_gcp/cloudquota/get_s_quota_info.py +5 -0
- pulumi_gcp/cloudquota/get_s_quota_infos.py +5 -0
- pulumi_gcp/cloudquota/outputs.py +5 -0
- pulumi_gcp/cloudquota/s_quota_preference.py +16 -11
- pulumi_gcp/cloudrun/_inputs.py +1165 -15
- pulumi_gcp/cloudrun/domain_mapping.py +49 -44
- pulumi_gcp/cloudrun/get_locations.py +5 -0
- pulumi_gcp/cloudrun/get_service.py +5 -0
- pulumi_gcp/cloudrun/get_service_iam_policy.py +5 -0
- pulumi_gcp/cloudrun/iam_binding.py +24 -19
- pulumi_gcp/cloudrun/iam_member.py +24 -19
- pulumi_gcp/cloudrun/iam_policy.py +21 -16
- pulumi_gcp/cloudrun/outputs.py +5 -0
- pulumi_gcp/cloudrun/service.py +270 -265
- pulumi_gcp/cloudrunv2/_inputs.py +1338 -5
- pulumi_gcp/cloudrunv2/get_job.py +5 -0
- pulumi_gcp/cloudrunv2/get_job_iam_policy.py +5 -0
- pulumi_gcp/cloudrunv2/get_service.py +5 -0
- pulumi_gcp/cloudrunv2/get_service_iam_policy.py +5 -0
- pulumi_gcp/cloudrunv2/job.py +287 -282
- pulumi_gcp/cloudrunv2/job_iam_binding.py +24 -19
- pulumi_gcp/cloudrunv2/job_iam_member.py +24 -19
- pulumi_gcp/cloudrunv2/job_iam_policy.py +21 -16
- pulumi_gcp/cloudrunv2/outputs.py +5 -0
- pulumi_gcp/cloudrunv2/service.py +437 -432
- pulumi_gcp/cloudrunv2/service_iam_binding.py +24 -19
- pulumi_gcp/cloudrunv2/service_iam_member.py +24 -19
- pulumi_gcp/cloudrunv2/service_iam_policy.py +21 -16
- pulumi_gcp/cloudscheduler/_inputs.py +193 -0
- pulumi_gcp/cloudscheduler/job.py +127 -122
- pulumi_gcp/cloudscheduler/outputs.py +5 -0
- pulumi_gcp/cloudtasks/_inputs.py +134 -0
- pulumi_gcp/cloudtasks/get_queue_iam_policy.py +5 -0
- pulumi_gcp/cloudtasks/outputs.py +5 -0
- pulumi_gcp/cloudtasks/queue.py +63 -58
- pulumi_gcp/cloudtasks/queue_iam_binding.py +24 -19
- pulumi_gcp/cloudtasks/queue_iam_member.py +24 -19
- pulumi_gcp/cloudtasks/queue_iam_policy.py +21 -16
- pulumi_gcp/composer/_inputs.py +566 -0
- pulumi_gcp/composer/environment.py +15 -10
- pulumi_gcp/composer/get_environment.py +5 -0
- pulumi_gcp/composer/get_image_versions.py +15 -10
- pulumi_gcp/composer/get_user_workloads_config_map.py +15 -10
- pulumi_gcp/composer/get_user_workloads_secret.py +15 -10
- pulumi_gcp/composer/outputs.py +5 -0
- pulumi_gcp/composer/user_workloads_config_map.py +15 -10
- pulumi_gcp/composer/user_workloads_secret.py +15 -10
- pulumi_gcp/compute/_inputs.py +13512 -145
- pulumi_gcp/compute/address.py +27 -22
- pulumi_gcp/compute/attached_disk.py +21 -16
- pulumi_gcp/compute/autoscaler.py +98 -93
- pulumi_gcp/compute/backend_bucket.py +30 -25
- pulumi_gcp/compute/backend_bucket_iam_binding.py +8 -3
- pulumi_gcp/compute/backend_bucket_iam_member.py +8 -3
- pulumi_gcp/compute/backend_bucket_iam_policy.py +5 -0
- pulumi_gcp/compute/backend_bucket_signed_url_key.py +5 -0
- pulumi_gcp/compute/backend_service.py +204 -199
- pulumi_gcp/compute/backend_service_iam_binding.py +10 -5
- pulumi_gcp/compute/backend_service_iam_member.py +10 -5
- pulumi_gcp/compute/backend_service_iam_policy.py +5 -0
- pulumi_gcp/compute/backend_service_signed_url_key.py +35 -30
- pulumi_gcp/compute/ca_external_account_key.py +5 -0
- pulumi_gcp/compute/disk.py +54 -49
- pulumi_gcp/compute/disk_async_replication.py +10 -5
- pulumi_gcp/compute/disk_iam_binding.py +24 -19
- pulumi_gcp/compute/disk_iam_member.py +24 -19
- pulumi_gcp/compute/disk_iam_policy.py +21 -16
- pulumi_gcp/compute/disk_resource_policy_attachment.py +21 -16
- pulumi_gcp/compute/external_vpn_gateway.py +24 -19
- pulumi_gcp/compute/firewall.py +42 -37
- pulumi_gcp/compute/firewall_policy.py +5 -0
- pulumi_gcp/compute/firewall_policy_association.py +5 -0
- pulumi_gcp/compute/firewall_policy_rule.py +44 -39
- pulumi_gcp/compute/forwarding_rule.py +248 -243
- pulumi_gcp/compute/get_address.py +5 -0
- pulumi_gcp/compute/get_addresses.py +5 -0
- pulumi_gcp/compute/get_backend_bucket.py +5 -0
- pulumi_gcp/compute/get_backend_bucket_iam_policy.py +5 -0
- pulumi_gcp/compute/get_backend_service.py +5 -0
- pulumi_gcp/compute/get_backend_service_iam_policy.py +5 -0
- pulumi_gcp/compute/get_certificate.py +5 -0
- pulumi_gcp/compute/get_default_service_account.py +5 -0
- pulumi_gcp/compute/get_disk.py +13 -8
- pulumi_gcp/compute/get_disk_iam_policy.py +5 -0
- pulumi_gcp/compute/get_forwarding_rule.py +5 -0
- pulumi_gcp/compute/get_forwarding_rules.py +5 -0
- pulumi_gcp/compute/get_global_address.py +5 -0
- pulumi_gcp/compute/get_global_forwarding_rule.py +5 -0
- pulumi_gcp/compute/get_hc_vpn_gateway.py +5 -0
- pulumi_gcp/compute/get_health_check.py +5 -0
- pulumi_gcp/compute/get_image.py +15 -10
- pulumi_gcp/compute/get_image_iam_policy.py +5 -0
- pulumi_gcp/compute/get_instance.py +5 -0
- pulumi_gcp/compute/get_instance_group.py +5 -0
- pulumi_gcp/compute/get_instance_group_manager.py +5 -0
- pulumi_gcp/compute/get_instance_iam_policy.py +5 -0
- pulumi_gcp/compute/get_instance_serial_port.py +29 -24
- pulumi_gcp/compute/get_instance_template.py +5 -0
- pulumi_gcp/compute/get_lbip_ranges.py +5 -0
- pulumi_gcp/compute/get_machine_image_iam_policy.py +5 -0
- pulumi_gcp/compute/get_machine_types.py +5 -0
- pulumi_gcp/compute/get_netblock_ip_ranges.py +5 -0
- pulumi_gcp/compute/get_network.py +5 -0
- pulumi_gcp/compute/get_network_endpoint_group.py +5 -0
- pulumi_gcp/compute/get_network_peering.py +5 -0
- pulumi_gcp/compute/get_networks.py +5 -0
- pulumi_gcp/compute/get_node_types.py +5 -0
- pulumi_gcp/compute/get_region_backend_service_iam_policy.py +5 -0
- pulumi_gcp/compute/get_region_disk.py +5 -0
- pulumi_gcp/compute/get_region_disk_iam_policy.py +5 -0
- pulumi_gcp/compute/get_region_instance_group.py +5 -0
- pulumi_gcp/compute/get_region_instance_template.py +5 -0
- pulumi_gcp/compute/get_region_network_endpoint_group.py +5 -0
- pulumi_gcp/compute/get_region_ssl_certificate.py +5 -0
- pulumi_gcp/compute/get_regions.py +5 -0
- pulumi_gcp/compute/get_reservation.py +5 -0
- pulumi_gcp/compute/get_resource_policy.py +5 -0
- pulumi_gcp/compute/get_router.py +5 -0
- pulumi_gcp/compute/get_router_nat.py +5 -0
- pulumi_gcp/compute/get_router_status.py +5 -0
- pulumi_gcp/compute/get_security_policy.py +5 -0
- pulumi_gcp/compute/get_snapshot.py +5 -0
- pulumi_gcp/compute/get_snapshot_iam_policy.py +5 -0
- pulumi_gcp/compute/get_ssl_policy.py +5 -0
- pulumi_gcp/compute/get_subnetwork.py +5 -0
- pulumi_gcp/compute/get_subnetwork_iam_policy.py +5 -0
- pulumi_gcp/compute/get_subnetworks.py +5 -0
- pulumi_gcp/compute/get_vpn_gateway.py +5 -0
- pulumi_gcp/compute/get_zones.py +5 -0
- pulumi_gcp/compute/global_address.py +5 -0
- pulumi_gcp/compute/global_forwarding_rule.py +211 -206
- pulumi_gcp/compute/global_network_endpoint.py +5 -0
- pulumi_gcp/compute/global_network_endpoint_group.py +5 -0
- pulumi_gcp/compute/ha_vpn_gateway.py +32 -27
- pulumi_gcp/compute/health_check.py +174 -169
- pulumi_gcp/compute/http_health_check.py +5 -0
- pulumi_gcp/compute/https_health_check.py +5 -0
- pulumi_gcp/compute/image.py +50 -45
- pulumi_gcp/compute/image_iam_binding.py +102 -97
- pulumi_gcp/compute/image_iam_member.py +102 -97
- pulumi_gcp/compute/image_iam_policy.py +97 -92
- pulumi_gcp/compute/instance.py +104 -99
- pulumi_gcp/compute/instance_from_machine_image.py +61 -56
- pulumi_gcp/compute/instance_from_template.py +88 -83
- pulumi_gcp/compute/instance_group.py +26 -21
- pulumi_gcp/compute/instance_group_manager.py +138 -133
- pulumi_gcp/compute/instance_group_membership.py +21 -16
- pulumi_gcp/compute/instance_group_named_port.py +13 -8
- pulumi_gcp/compute/instance_iam_binding.py +102 -97
- pulumi_gcp/compute/instance_iam_member.py +102 -97
- pulumi_gcp/compute/instance_iam_policy.py +97 -92
- pulumi_gcp/compute/instance_settings.py +16 -11
- pulumi_gcp/compute/instance_template.py +147 -142
- pulumi_gcp/compute/interconnect.py +14 -9
- pulumi_gcp/compute/interconnect_attachment.py +19 -14
- pulumi_gcp/compute/machine_image.py +48 -43
- pulumi_gcp/compute/machine_image_iam_binding.py +102 -97
- pulumi_gcp/compute/machine_image_iam_member.py +102 -97
- pulumi_gcp/compute/machine_image_iam_policy.py +97 -92
- pulumi_gcp/compute/managed_ssl_certificate.py +40 -35
- pulumi_gcp/compute/manged_ssl_certificate.py +40 -35
- pulumi_gcp/compute/network.py +5 -0
- pulumi_gcp/compute/network_attachment.py +29 -24
- pulumi_gcp/compute/network_edge_security_service.py +5 -0
- pulumi_gcp/compute/network_endpoint.py +23 -18
- pulumi_gcp/compute/network_endpoint_group.py +5 -0
- pulumi_gcp/compute/network_endpoint_list.py +66 -61
- pulumi_gcp/compute/network_firewall_policy.py +5 -0
- pulumi_gcp/compute/network_firewall_policy_association.py +5 -0
- pulumi_gcp/compute/network_firewall_policy_rule.py +41 -36
- pulumi_gcp/compute/network_peering.py +5 -0
- pulumi_gcp/compute/network_peering_routes_config.py +41 -36
- pulumi_gcp/compute/node_group.py +50 -45
- pulumi_gcp/compute/node_template.py +21 -16
- pulumi_gcp/compute/organization_security_policy.py +5 -0
- pulumi_gcp/compute/organization_security_policy_association.py +31 -26
- pulumi_gcp/compute/organization_security_policy_rule.py +36 -31
- pulumi_gcp/compute/outputs.py +5 -0
- pulumi_gcp/compute/packet_mirroring.py +83 -78
- pulumi_gcp/compute/per_instance_config.py +56 -51
- pulumi_gcp/compute/project_cloud_armor_tier.py +5 -0
- pulumi_gcp/compute/project_default_network_tier.py +5 -0
- pulumi_gcp/compute/project_metadata.py +5 -0
- pulumi_gcp/compute/project_metadata_item.py +5 -0
- pulumi_gcp/compute/public_advertised_prefix.py +5 -0
- pulumi_gcp/compute/public_delegated_prefix.py +5 -0
- pulumi_gcp/compute/region_autoscaler.py +60 -55
- pulumi_gcp/compute/region_backend_service.py +203 -198
- pulumi_gcp/compute/region_backend_service_iam_binding.py +10 -5
- pulumi_gcp/compute/region_backend_service_iam_member.py +10 -5
- pulumi_gcp/compute/region_backend_service_iam_policy.py +5 -0
- pulumi_gcp/compute/region_commitment.py +47 -42
- pulumi_gcp/compute/region_disk.py +49 -44
- pulumi_gcp/compute/region_disk_iam_binding.py +24 -19
- pulumi_gcp/compute/region_disk_iam_member.py +24 -19
- pulumi_gcp/compute/region_disk_iam_policy.py +21 -16
- pulumi_gcp/compute/region_disk_resource_policy_attachment.py +21 -16
- pulumi_gcp/compute/region_health_check.py +174 -169
- pulumi_gcp/compute/region_instance_group_manager.py +134 -129
- pulumi_gcp/compute/region_instance_template.py +55 -50
- pulumi_gcp/compute/region_network_endpoint.py +23 -18
- pulumi_gcp/compute/region_network_endpoint_group.py +135 -130
- pulumi_gcp/compute/region_network_firewall_policy.py +5 -0
- pulumi_gcp/compute/region_network_firewall_policy_association.py +5 -0
- pulumi_gcp/compute/region_network_firewall_policy_rule.py +41 -36
- pulumi_gcp/compute/region_per_instance_config.py +66 -61
- pulumi_gcp/compute/region_security_policy.py +49 -44
- pulumi_gcp/compute/region_security_policy_rule.py +161 -156
- pulumi_gcp/compute/region_ssl_certificate.py +5 -0
- pulumi_gcp/compute/region_ssl_policy.py +5 -0
- pulumi_gcp/compute/region_target_http_proxy.py +43 -38
- pulumi_gcp/compute/region_target_https_proxy.py +97 -92
- pulumi_gcp/compute/region_target_tcp_proxy.py +11 -6
- pulumi_gcp/compute/region_url_map.py +824 -819
- pulumi_gcp/compute/reservation.py +29 -24
- pulumi_gcp/compute/resource_policy.py +153 -148
- pulumi_gcp/compute/route.py +17 -12
- pulumi_gcp/compute/router.py +40 -35
- pulumi_gcp/compute/router_interface.py +5 -0
- pulumi_gcp/compute/router_nat.py +98 -93
- pulumi_gcp/compute/router_peer.py +78 -73
- pulumi_gcp/compute/router_status.py +5 -0
- pulumi_gcp/compute/security_policy.py +201 -196
- pulumi_gcp/compute/security_policy_rule.py +80 -75
- pulumi_gcp/compute/security_scan_config.py +15 -10
- pulumi_gcp/compute/service_attachment.py +60 -55
- pulumi_gcp/compute/shared_vpc_host_project.py +5 -0
- pulumi_gcp/compute/shared_vpc_service_project.py +5 -0
- pulumi_gcp/compute/snapshot.py +15 -10
- pulumi_gcp/compute/snapshot_iam_binding.py +24 -19
- pulumi_gcp/compute/snapshot_iam_member.py +24 -19
- pulumi_gcp/compute/snapshot_iam_policy.py +21 -16
- pulumi_gcp/compute/ssl_certificate.py +5 -0
- pulumi_gcp/compute/ssl_policy.py +5 -0
- pulumi_gcp/compute/subnetwork.py +33 -28
- pulumi_gcp/compute/subnetwork_iam_binding.py +102 -97
- pulumi_gcp/compute/subnetwork_iam_member.py +102 -97
- pulumi_gcp/compute/subnetwork_iam_policy.py +97 -92
- pulumi_gcp/compute/target_grpc_proxy.py +129 -124
- pulumi_gcp/compute/target_http_proxy.py +61 -56
- pulumi_gcp/compute/target_https_proxy.py +133 -128
- pulumi_gcp/compute/target_instance.py +63 -58
- pulumi_gcp/compute/target_pool.py +5 -0
- pulumi_gcp/compute/target_ssl_proxy.py +11 -6
- pulumi_gcp/compute/target_tcp_proxy.py +11 -6
- pulumi_gcp/compute/url_map.py +731 -726
- pulumi_gcp/compute/vpn_gateway.py +5 -0
- pulumi_gcp/compute/vpn_tunnel.py +5 -0
- pulumi_gcp/config/__init__.pyi +5 -0
- pulumi_gcp/config/outputs.py +5 -0
- pulumi_gcp/config/vars.py +5 -0
- pulumi_gcp/container/_inputs.py +5502 -823
- pulumi_gcp/container/attached_cluster.py +128 -123
- pulumi_gcp/container/aws_cluster.py +359 -354
- pulumi_gcp/container/aws_node_pool.py +554 -549
- pulumi_gcp/container/azure_client.py +5 -0
- pulumi_gcp/container/azure_cluster.py +133 -128
- pulumi_gcp/container/azure_node_pool.py +115 -110
- pulumi_gcp/container/cluster.py +224 -219
- pulumi_gcp/container/get_attached_install_manifest.py +5 -0
- pulumi_gcp/container/get_attached_versions.py +5 -0
- pulumi_gcp/container/get_aws_versions.py +5 -0
- pulumi_gcp/container/get_azure_versions.py +5 -0
- pulumi_gcp/container/get_cluster.py +5 -0
- pulumi_gcp/container/get_engine_versions.py +5 -0
- pulumi_gcp/container/get_registry_image.py +5 -0
- pulumi_gcp/container/get_registry_repository.py +5 -0
- pulumi_gcp/container/node_pool.py +78 -73
- pulumi_gcp/container/outputs.py +5 -0
- pulumi_gcp/container/registry.py +5 -0
- pulumi_gcp/containeranalysis/_inputs.py +121 -0
- pulumi_gcp/containeranalysis/get_note_iam_policy.py +5 -0
- pulumi_gcp/containeranalysis/note.py +49 -44
- pulumi_gcp/containeranalysis/note_iam_binding.py +24 -19
- pulumi_gcp/containeranalysis/note_iam_member.py +24 -19
- pulumi_gcp/containeranalysis/note_iam_policy.py +21 -16
- pulumi_gcp/containeranalysis/occurence.py +10 -5
- pulumi_gcp/containeranalysis/outputs.py +5 -0
- pulumi_gcp/databasemigrationservice/_inputs.py +578 -0
- pulumi_gcp/databasemigrationservice/connection_profile.py +188 -183
- pulumi_gcp/databasemigrationservice/outputs.py +5 -0
- pulumi_gcp/databasemigrationservice/private_connection.py +20 -15
- pulumi_gcp/datacatalog/_inputs.py +318 -0
- pulumi_gcp/datacatalog/entry.py +20 -15
- pulumi_gcp/datacatalog/entry_group.py +5 -0
- pulumi_gcp/datacatalog/entry_group_iam_binding.py +24 -19
- pulumi_gcp/datacatalog/entry_group_iam_member.py +24 -19
- pulumi_gcp/datacatalog/entry_group_iam_policy.py +21 -16
- pulumi_gcp/datacatalog/get_entry_group_iam_policy.py +5 -0
- pulumi_gcp/datacatalog/get_policy_tag_iam_policy.py +5 -0
- pulumi_gcp/datacatalog/get_tag_template_iam_policy.py +5 -0
- pulumi_gcp/datacatalog/get_taxonomy_iam_policy.py +5 -0
- pulumi_gcp/datacatalog/outputs.py +5 -0
- pulumi_gcp/datacatalog/policy_tag.py +5 -0
- pulumi_gcp/datacatalog/policy_tag_iam_binding.py +24 -19
- pulumi_gcp/datacatalog/policy_tag_iam_member.py +24 -19
- pulumi_gcp/datacatalog/policy_tag_iam_policy.py +21 -16
- pulumi_gcp/datacatalog/tag.py +264 -259
- pulumi_gcp/datacatalog/tag_template.py +76 -71
- pulumi_gcp/datacatalog/tag_template_iam_binding.py +24 -19
- pulumi_gcp/datacatalog/tag_template_iam_member.py +24 -19
- pulumi_gcp/datacatalog/tag_template_iam_policy.py +21 -16
- pulumi_gcp/datacatalog/taxonomy.py +5 -0
- pulumi_gcp/datacatalog/taxonomy_iam_binding.py +24 -19
- pulumi_gcp/datacatalog/taxonomy_iam_member.py +24 -19
- pulumi_gcp/datacatalog/taxonomy_iam_policy.py +21 -16
- pulumi_gcp/dataflow/_inputs.py +316 -0
- pulumi_gcp/dataflow/flex_template_job.py +5 -0
- pulumi_gcp/dataflow/job.py +5 -0
- pulumi_gcp/dataflow/outputs.py +5 -0
- pulumi_gcp/dataflow/pipeline.py +75 -70
- pulumi_gcp/dataform/_inputs.py +251 -0
- pulumi_gcp/dataform/get_repository_iam_policy.py +5 -0
- pulumi_gcp/dataform/outputs.py +5 -0
- pulumi_gcp/dataform/repository.py +41 -36
- pulumi_gcp/dataform/repository_iam_binding.py +8 -3
- pulumi_gcp/dataform/repository_iam_member.py +8 -3
- pulumi_gcp/dataform/repository_iam_policy.py +5 -0
- pulumi_gcp/dataform/repository_release_config.py +58 -53
- pulumi_gcp/dataform/repository_workflow_config.py +94 -89
- pulumi_gcp/datafusion/_inputs.py +64 -0
- pulumi_gcp/datafusion/get_instance_iam_policy.py +5 -0
- pulumi_gcp/datafusion/instance.py +55 -50
- pulumi_gcp/datafusion/outputs.py +5 -0
- pulumi_gcp/dataloss/_inputs.py +6566 -114
- pulumi_gcp/dataloss/outputs.py +5 -0
- pulumi_gcp/dataloss/prevention_deidentify_template.py +226 -221
- pulumi_gcp/dataloss/prevention_discovery_config.py +22 -17
- pulumi_gcp/dataloss/prevention_inspect_template.py +442 -437
- pulumi_gcp/dataloss/prevention_job_trigger.py +701 -696
- pulumi_gcp/dataloss/prevention_stored_info_type.py +62 -57
- pulumi_gcp/dataplex/_inputs.py +1212 -6
- pulumi_gcp/dataplex/aspect_type.py +5 -0
- pulumi_gcp/dataplex/aspect_type_iam_binding.py +24 -19
- pulumi_gcp/dataplex/aspect_type_iam_member.py +24 -19
- pulumi_gcp/dataplex/aspect_type_iam_policy.py +21 -16
- pulumi_gcp/dataplex/asset.py +47 -42
- pulumi_gcp/dataplex/asset_iam_binding.py +24 -19
- pulumi_gcp/dataplex/asset_iam_member.py +24 -19
- pulumi_gcp/dataplex/asset_iam_policy.py +21 -16
- pulumi_gcp/dataplex/datascan.py +289 -284
- pulumi_gcp/dataplex/datascan_iam_binding.py +24 -19
- pulumi_gcp/dataplex/datascan_iam_member.py +24 -19
- pulumi_gcp/dataplex/datascan_iam_policy.py +21 -16
- pulumi_gcp/dataplex/entry_group.py +5 -0
- pulumi_gcp/dataplex/entry_group_iam_binding.py +24 -19
- pulumi_gcp/dataplex/entry_group_iam_member.py +24 -19
- pulumi_gcp/dataplex/entry_group_iam_policy.py +21 -16
- pulumi_gcp/dataplex/entry_type.py +16 -11
- pulumi_gcp/dataplex/entry_type_iam_binding.py +24 -19
- pulumi_gcp/dataplex/entry_type_iam_member.py +24 -19
- pulumi_gcp/dataplex/entry_type_iam_policy.py +21 -16
- pulumi_gcp/dataplex/get_aspect_type_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_asset_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_datascan_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_entry_group_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_entry_type_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_lake_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_task_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_zone_iam_policy.py +5 -0
- pulumi_gcp/dataplex/lake.py +14 -9
- pulumi_gcp/dataplex/lake_iam_binding.py +24 -19
- pulumi_gcp/dataplex/lake_iam_member.py +24 -19
- pulumi_gcp/dataplex/lake_iam_policy.py +21 -16
- pulumi_gcp/dataplex/outputs.py +5 -0
- pulumi_gcp/dataplex/task.py +173 -168
- pulumi_gcp/dataplex/task_iam_binding.py +24 -19
- pulumi_gcp/dataplex/task_iam_member.py +24 -19
- pulumi_gcp/dataplex/task_iam_policy.py +21 -16
- pulumi_gcp/dataplex/zone.py +29 -24
- pulumi_gcp/dataplex/zone_iam_binding.py +24 -19
- pulumi_gcp/dataplex/zone_iam_member.py +24 -19
- pulumi_gcp/dataplex/zone_iam_policy.py +21 -16
- pulumi_gcp/dataproc/_inputs.py +3214 -39
- pulumi_gcp/dataproc/autoscaling_policy.py +50 -45
- pulumi_gcp/dataproc/autoscaling_policy_iam_binding.py +24 -19
- pulumi_gcp/dataproc/autoscaling_policy_iam_member.py +24 -19
- pulumi_gcp/dataproc/autoscaling_policy_iam_policy.py +21 -16
- pulumi_gcp/dataproc/cluster.py +109 -104
- pulumi_gcp/dataproc/cluster_iam_binding.py +24 -19
- pulumi_gcp/dataproc/cluster_iam_member.py +24 -19
- pulumi_gcp/dataproc/cluster_iam_policy.py +21 -16
- pulumi_gcp/dataproc/get_autoscaling_policy_iam_policy.py +5 -0
- pulumi_gcp/dataproc/get_cluster_iam_policy.py +5 -0
- pulumi_gcp/dataproc/get_job_iam_policy.py +5 -0
- pulumi_gcp/dataproc/get_metastore_federation_iam_policy.py +5 -0
- pulumi_gcp/dataproc/get_metastore_service.py +5 -0
- pulumi_gcp/dataproc/get_metastore_service_iam_policy.py +5 -0
- pulumi_gcp/dataproc/job.py +95 -90
- pulumi_gcp/dataproc/job_iam_binding.py +24 -19
- pulumi_gcp/dataproc/job_iam_member.py +24 -19
- pulumi_gcp/dataproc/job_iam_policy.py +21 -16
- pulumi_gcp/dataproc/metastore_federation.py +56 -51
- pulumi_gcp/dataproc/metastore_federation_iam_binding.py +24 -19
- pulumi_gcp/dataproc/metastore_federation_iam_member.py +24 -19
- pulumi_gcp/dataproc/metastore_federation_iam_policy.py +21 -16
- pulumi_gcp/dataproc/metastore_service.py +239 -234
- pulumi_gcp/dataproc/metastore_service_iam_binding.py +24 -19
- pulumi_gcp/dataproc/metastore_service_iam_member.py +24 -19
- pulumi_gcp/dataproc/metastore_service_iam_policy.py +21 -16
- pulumi_gcp/dataproc/outputs.py +5 -0
- pulumi_gcp/dataproc/workflow_template.py +112 -107
- pulumi_gcp/datastore/_inputs.py +22 -0
- pulumi_gcp/datastore/data_store_index.py +26 -21
- pulumi_gcp/datastore/outputs.py +5 -0
- pulumi_gcp/datastream/_inputs.py +1631 -35
- pulumi_gcp/datastream/connection_profile.py +251 -246
- pulumi_gcp/datastream/get_static_ips.py +5 -0
- pulumi_gcp/datastream/outputs.py +5 -0
- pulumi_gcp/datastream/private_connection.py +20 -15
- pulumi_gcp/datastream/stream.py +777 -772
- pulumi_gcp/deploymentmanager/_inputs.py +66 -0
- pulumi_gcp/deploymentmanager/deployment.py +33 -28
- pulumi_gcp/deploymentmanager/outputs.py +5 -0
- pulumi_gcp/diagflow/_inputs.py +2590 -41
- pulumi_gcp/diagflow/agent.py +5 -0
- pulumi_gcp/diagflow/cx_agent.py +75 -70
- pulumi_gcp/diagflow/cx_entity_type.py +37 -32
- pulumi_gcp/diagflow/cx_environment.py +22 -17
- pulumi_gcp/diagflow/cx_flow.py +455 -450
- pulumi_gcp/diagflow/cx_intent.py +55 -50
- pulumi_gcp/diagflow/cx_page.py +718 -713
- pulumi_gcp/diagflow/cx_security_settings.py +69 -64
- pulumi_gcp/diagflow/cx_test_case.py +197 -192
- pulumi_gcp/diagflow/cx_version.py +13 -8
- pulumi_gcp/diagflow/cx_webhook.py +27 -22
- pulumi_gcp/diagflow/entity_type.py +26 -21
- pulumi_gcp/diagflow/fulfillment.py +27 -22
- pulumi_gcp/diagflow/intent.py +7 -2
- pulumi_gcp/diagflow/outputs.py +5 -0
- pulumi_gcp/discoveryengine/_inputs.py +183 -0
- pulumi_gcp/discoveryengine/chat_engine.py +37 -32
- pulumi_gcp/discoveryengine/data_store.py +32 -27
- pulumi_gcp/discoveryengine/outputs.py +5 -0
- pulumi_gcp/discoveryengine/search_engine.py +17 -12
- pulumi_gcp/dns/_inputs.py +589 -0
- pulumi_gcp/dns/dns_managed_zone_iam_binding.py +24 -19
- pulumi_gcp/dns/dns_managed_zone_iam_member.py +24 -19
- pulumi_gcp/dns/dns_managed_zone_iam_policy.py +21 -16
- pulumi_gcp/dns/get_keys.py +13 -8
- pulumi_gcp/dns/get_managed_zone.py +5 -0
- pulumi_gcp/dns/get_managed_zone_iam_policy.py +5 -0
- pulumi_gcp/dns/get_managed_zones.py +5 -0
- pulumi_gcp/dns/get_record_set.py +5 -0
- pulumi_gcp/dns/managed_zone.py +183 -178
- pulumi_gcp/dns/outputs.py +5 -0
- pulumi_gcp/dns/policy.py +47 -42
- pulumi_gcp/dns/record_set.py +100 -95
- pulumi_gcp/dns/response_policy.py +81 -76
- pulumi_gcp/dns/response_policy_rule.py +38 -33
- pulumi_gcp/edgecontainer/_inputs.py +464 -0
- pulumi_gcp/edgecontainer/cluster.py +152 -147
- pulumi_gcp/edgecontainer/node_pool.py +109 -104
- pulumi_gcp/edgecontainer/outputs.py +5 -0
- pulumi_gcp/edgecontainer/vpn_connection.py +36 -31
- pulumi_gcp/edgenetwork/network.py +5 -0
- pulumi_gcp/edgenetwork/subnet.py +5 -0
- pulumi_gcp/endpoints/_inputs.py +101 -0
- pulumi_gcp/endpoints/consumers_iam_binding.py +8 -3
- pulumi_gcp/endpoints/consumers_iam_member.py +8 -3
- pulumi_gcp/endpoints/consumers_iam_policy.py +5 -0
- pulumi_gcp/endpoints/get_service_consumers_iam_policy.py +5 -0
- pulumi_gcp/endpoints/get_service_iam_policy.py +5 -0
- pulumi_gcp/endpoints/outputs.py +5 -0
- pulumi_gcp/endpoints/service.py +9 -4
- pulumi_gcp/endpoints/service_iam_binding.py +24 -19
- pulumi_gcp/endpoints/service_iam_member.py +24 -19
- pulumi_gcp/endpoints/service_iam_policy.py +21 -16
- pulumi_gcp/essentialcontacts/_inputs.py +313 -0
- pulumi_gcp/essentialcontacts/contact.py +5 -0
- pulumi_gcp/essentialcontacts/document_ai_processor.py +5 -0
- pulumi_gcp/essentialcontacts/document_ai_processor_default_version.py +5 -0
- pulumi_gcp/essentialcontacts/document_ai_warehouse_document_schema.py +40 -35
- pulumi_gcp/essentialcontacts/document_ai_warehouse_location.py +5 -0
- pulumi_gcp/essentialcontacts/outputs.py +5 -0
- pulumi_gcp/eventarc/_inputs.py +145 -0
- pulumi_gcp/eventarc/channel.py +5 -0
- pulumi_gcp/eventarc/google_channel_config.py +5 -0
- pulumi_gcp/eventarc/outputs.py +5 -0
- pulumi_gcp/eventarc/trigger.py +78 -73
- pulumi_gcp/filestore/_inputs.py +108 -0
- pulumi_gcp/filestore/backup.py +23 -18
- pulumi_gcp/filestore/get_instance.py +5 -0
- pulumi_gcp/filestore/instance.py +107 -102
- pulumi_gcp/filestore/outputs.py +5 -0
- pulumi_gcp/filestore/snapshot.py +37 -32
- pulumi_gcp/firebase/_inputs.py +511 -0
- pulumi_gcp/firebase/android_app.py +21 -16
- pulumi_gcp/firebase/app_check_app_attest_config.py +5 -0
- pulumi_gcp/firebase/app_check_debug_token.py +5 -0
- pulumi_gcp/firebase/app_check_device_check_config.py +5 -0
- pulumi_gcp/firebase/app_check_play_integrity_config.py +5 -0
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +5 -0
- pulumi_gcp/firebase/app_check_recaptcha_v3_config.py +5 -0
- pulumi_gcp/firebase/app_check_service_config.py +5 -0
- pulumi_gcp/firebase/apple_app.py +15 -10
- pulumi_gcp/firebase/database_instance.py +5 -0
- pulumi_gcp/firebase/extensions_instance.py +30 -25
- pulumi_gcp/firebase/get_android_app.py +5 -0
- pulumi_gcp/firebase/get_android_app_config.py +5 -0
- pulumi_gcp/firebase/get_apple_app.py +5 -0
- pulumi_gcp/firebase/get_apple_app_config.py +5 -0
- pulumi_gcp/firebase/get_hosting_channel.py +5 -0
- pulumi_gcp/firebase/get_web_app.py +5 -0
- pulumi_gcp/firebase/get_web_app_config.py +5 -0
- pulumi_gcp/firebase/hosting_channel.py +5 -0
- pulumi_gcp/firebase/hosting_custom_domain.py +39 -34
- pulumi_gcp/firebase/hosting_release.py +33 -28
- pulumi_gcp/firebase/hosting_site.py +5 -0
- pulumi_gcp/firebase/hosting_version.py +76 -71
- pulumi_gcp/firebase/outputs.py +5 -0
- pulumi_gcp/firebase/project.py +5 -0
- pulumi_gcp/firebase/storage_bucket.py +5 -0
- pulumi_gcp/firebase/web_app.py +15 -10
- pulumi_gcp/firebaserules/_inputs.py +51 -0
- pulumi_gcp/firebaserules/outputs.py +5 -0
- pulumi_gcp/firebaserules/release.py +5 -0
- pulumi_gcp/firebaserules/ruleset.py +40 -35
- pulumi_gcp/firestore/_inputs.py +154 -0
- pulumi_gcp/firestore/backup_schedule.py +23 -18
- pulumi_gcp/firestore/database.py +22 -17
- pulumi_gcp/firestore/document.py +5 -0
- pulumi_gcp/firestore/field.py +63 -58
- pulumi_gcp/firestore/index.py +72 -67
- pulumi_gcp/firestore/outputs.py +5 -0
- pulumi_gcp/folder/_inputs.py +165 -0
- pulumi_gcp/folder/access_approval_settings.py +28 -23
- pulumi_gcp/folder/get_iam_policy.py +5 -0
- pulumi_gcp/folder/get_organization_policy.py +5 -0
- pulumi_gcp/folder/iam_audit_config.py +130 -125
- pulumi_gcp/folder/iam_binding.py +8 -3
- pulumi_gcp/folder/iam_member.py +130 -125
- pulumi_gcp/folder/iam_policy.py +125 -120
- pulumi_gcp/folder/organization_policy.py +54 -49
- pulumi_gcp/folder/outputs.py +5 -0
- pulumi_gcp/gkebackup/_inputs.py +694 -0
- pulumi_gcp/gkebackup/backup_plan.py +436 -431
- pulumi_gcp/gkebackup/backup_plan_iam_binding.py +24 -19
- pulumi_gcp/gkebackup/backup_plan_iam_member.py +24 -19
- pulumi_gcp/gkebackup/backup_plan_iam_policy.py +21 -16
- pulumi_gcp/gkebackup/get_backup_plan_iam_policy.py +5 -0
- pulumi_gcp/gkebackup/get_restore_plan_iam_policy.py +5 -0
- pulumi_gcp/gkebackup/outputs.py +5 -0
- pulumi_gcp/gkebackup/restore_plan.py +580 -575
- pulumi_gcp/gkebackup/restore_plan_iam_binding.py +578 -573
- pulumi_gcp/gkebackup/restore_plan_iam_member.py +578 -573
- pulumi_gcp/gkebackup/restore_plan_iam_policy.py +575 -570
- pulumi_gcp/gkehub/_inputs.py +1204 -6
- pulumi_gcp/gkehub/feature.py +319 -314
- pulumi_gcp/gkehub/feature_iam_binding.py +24 -19
- pulumi_gcp/gkehub/feature_iam_member.py +24 -19
- pulumi_gcp/gkehub/feature_iam_policy.py +21 -16
- pulumi_gcp/gkehub/feature_membership.py +184 -179
- pulumi_gcp/gkehub/fleet.py +24 -19
- pulumi_gcp/gkehub/get_feature_iam_policy.py +5 -0
- pulumi_gcp/gkehub/get_membership_iam_policy.py +5 -0
- pulumi_gcp/gkehub/get_scope_iam_policy.py +5 -0
- pulumi_gcp/gkehub/membership.py +57 -52
- pulumi_gcp/gkehub/membership_binding.py +17 -12
- pulumi_gcp/gkehub/membership_iam_binding.py +24 -19
- pulumi_gcp/gkehub/membership_iam_member.py +24 -19
- pulumi_gcp/gkehub/membership_iam_policy.py +21 -16
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +28 -23
- pulumi_gcp/gkehub/namespace.py +7 -2
- pulumi_gcp/gkehub/outputs.py +5 -0
- pulumi_gcp/gkehub/scope.py +7 -2
- pulumi_gcp/gkehub/scope_iam_binding.py +24 -19
- pulumi_gcp/gkehub/scope_iam_member.py +24 -19
- pulumi_gcp/gkehub/scope_iam_policy.py +21 -16
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +18 -13
- pulumi_gcp/gkeonprem/_inputs.py +2318 -18
- pulumi_gcp/gkeonprem/bare_metal_admin_cluster.py +335 -330
- pulumi_gcp/gkeonprem/bare_metal_cluster.py +528 -523
- pulumi_gcp/gkeonprem/bare_metal_node_pool.py +262 -257
- pulumi_gcp/gkeonprem/outputs.py +5 -0
- pulumi_gcp/gkeonprem/v_mware_cluster.py +399 -394
- pulumi_gcp/gkeonprem/v_mware_node_pool.py +89 -84
- pulumi_gcp/healthcare/_inputs.py +316 -0
- pulumi_gcp/healthcare/consent_store.py +5 -0
- pulumi_gcp/healthcare/consent_store_iam_binding.py +24 -19
- pulumi_gcp/healthcare/consent_store_iam_member.py +24 -19
- pulumi_gcp/healthcare/consent_store_iam_policy.py +21 -16
- pulumi_gcp/healthcare/dataset.py +5 -0
- pulumi_gcp/healthcare/dataset_iam_binding.py +24 -19
- pulumi_gcp/healthcare/dataset_iam_member.py +24 -19
- pulumi_gcp/healthcare/dataset_iam_policy.py +21 -16
- pulumi_gcp/healthcare/dicom_store.py +39 -34
- pulumi_gcp/healthcare/dicom_store_iam_binding.py +24 -19
- pulumi_gcp/healthcare/dicom_store_iam_member.py +24 -19
- pulumi_gcp/healthcare/dicom_store_iam_policy.py +21 -16
- pulumi_gcp/healthcare/fhir_store.py +62 -57
- pulumi_gcp/healthcare/fhir_store_iam_binding.py +24 -19
- pulumi_gcp/healthcare/fhir_store_iam_member.py +24 -19
- pulumi_gcp/healthcare/fhir_store_iam_policy.py +21 -16
- pulumi_gcp/healthcare/get_consent_store_iam_policy.py +5 -0
- pulumi_gcp/healthcare/get_dataset_iam_policy.py +5 -0
- pulumi_gcp/healthcare/get_dicom_store_iam_policy.py +5 -0
- pulumi_gcp/healthcare/get_fhir_store_iam_policy.py +5 -0
- pulumi_gcp/healthcare/get_hl7_v2_store_iam_policy.py +5 -0
- pulumi_gcp/healthcare/hl7_store.py +46 -41
- pulumi_gcp/healthcare/hl7_store_iam_binding.py +24 -19
- pulumi_gcp/healthcare/hl7_store_iam_member.py +24 -19
- pulumi_gcp/healthcare/hl7_store_iam_policy.py +21 -16
- pulumi_gcp/healthcare/outputs.py +5 -0
- pulumi_gcp/iam/_inputs.py +433 -0
- pulumi_gcp/iam/access_boundary_policy.py +54 -49
- pulumi_gcp/iam/deny_policy.py +56 -51
- pulumi_gcp/iam/get_rule.py +5 -0
- pulumi_gcp/iam/get_testable_permissions.py +5 -0
- pulumi_gcp/iam/get_workload_identity_pool.py +5 -0
- pulumi_gcp/iam/get_workload_identity_pool_provider.py +5 -0
- pulumi_gcp/iam/outputs.py +5 -0
- pulumi_gcp/iam/workforce_pool.py +22 -17
- pulumi_gcp/iam/workforce_pool_provider.py +184 -179
- pulumi_gcp/iam/workload_identity_pool.py +5 -0
- pulumi_gcp/iam/workload_identity_pool_provider.py +68 -63
- pulumi_gcp/iap/_inputs.py +411 -0
- pulumi_gcp/iap/app_engine_service_iam_binding.py +102 -97
- pulumi_gcp/iap/app_engine_service_iam_member.py +102 -97
- pulumi_gcp/iap/app_engine_service_iam_policy.py +97 -92
- pulumi_gcp/iap/app_engine_version_iam_binding.py +102 -97
- pulumi_gcp/iap/app_engine_version_iam_member.py +102 -97
- pulumi_gcp/iap/app_engine_version_iam_policy.py +97 -92
- pulumi_gcp/iap/brand.py +5 -0
- pulumi_gcp/iap/client.py +5 -0
- pulumi_gcp/iap/get_app_engine_service_iam_policy.py +5 -0
- pulumi_gcp/iap/get_app_engine_version_iam_policy.py +5 -0
- pulumi_gcp/iap/get_client.py +5 -0
- pulumi_gcp/iap/get_tunnel_dest_group_iam_policy.py +5 -0
- pulumi_gcp/iap/get_tunnel_iam_policy.py +5 -0
- pulumi_gcp/iap/get_tunnel_instance_iam_policy.py +5 -0
- pulumi_gcp/iap/get_web_backend_service_iam_policy.py +5 -0
- pulumi_gcp/iap/get_web_iam_policy.py +5 -0
- pulumi_gcp/iap/get_web_region_backend_service_iam_policy.py +5 -0
- pulumi_gcp/iap/get_web_type_app_engine_iam_policy.py +5 -0
- pulumi_gcp/iap/get_web_type_compute_iam_policy.py +5 -0
- pulumi_gcp/iap/outputs.py +5 -0
- pulumi_gcp/iap/tunnel_dest_group.py +5 -0
- pulumi_gcp/iap/tunnel_dest_group_iam_binding.py +102 -97
- pulumi_gcp/iap/tunnel_dest_group_iam_member.py +102 -97
- pulumi_gcp/iap/tunnel_dest_group_iam_policy.py +97 -92
- pulumi_gcp/iap/tunnel_iam_binding.py +102 -97
- pulumi_gcp/iap/tunnel_iam_member.py +102 -97
- pulumi_gcp/iap/tunnel_iam_policy.py +97 -92
- pulumi_gcp/iap/tunnel_instance_iam_binding.py +102 -97
- pulumi_gcp/iap/tunnel_instance_iam_member.py +102 -97
- pulumi_gcp/iap/tunnel_instance_iam_policy.py +97 -92
- pulumi_gcp/iap/web_backend_service_iam_binding.py +102 -97
- pulumi_gcp/iap/web_backend_service_iam_member.py +102 -97
- pulumi_gcp/iap/web_backend_service_iam_policy.py +97 -92
- pulumi_gcp/iap/web_iam_binding.py +102 -97
- pulumi_gcp/iap/web_iam_member.py +102 -97
- pulumi_gcp/iap/web_iam_policy.py +97 -92
- pulumi_gcp/iap/web_region_backend_service_iam_binding.py +102 -97
- pulumi_gcp/iap/web_region_backend_service_iam_member.py +102 -97
- pulumi_gcp/iap/web_region_backend_service_iam_policy.py +97 -92
- pulumi_gcp/iap/web_type_app_enging_iam_binding.py +102 -97
- pulumi_gcp/iap/web_type_app_enging_iam_member.py +102 -97
- pulumi_gcp/iap/web_type_app_enging_iam_policy.py +97 -92
- pulumi_gcp/iap/web_type_compute_iam_binding.py +102 -97
- pulumi_gcp/iap/web_type_compute_iam_member.py +102 -97
- pulumi_gcp/iap/web_type_compute_iam_policy.py +97 -92
- pulumi_gcp/identityplatform/_inputs.py +576 -0
- pulumi_gcp/identityplatform/config.py +119 -114
- pulumi_gcp/identityplatform/default_supported_idp_config.py +5 -0
- pulumi_gcp/identityplatform/inbound_saml_config.py +39 -34
- pulumi_gcp/identityplatform/oauth_idp_config.py +5 -0
- pulumi_gcp/identityplatform/outputs.py +5 -0
- pulumi_gcp/identityplatform/project_default_config.py +38 -33
- pulumi_gcp/identityplatform/tenant.py +5 -0
- pulumi_gcp/identityplatform/tenant_default_supported_idp_config.py +5 -0
- pulumi_gcp/identityplatform/tenant_inbound_saml_config.py +39 -34
- pulumi_gcp/identityplatform/tenant_oauth_idp_config.py +5 -0
- pulumi_gcp/integrationconnectors/_inputs.py +868 -0
- pulumi_gcp/integrationconnectors/connection.py +465 -460
- pulumi_gcp/integrationconnectors/endpoint_attachment.py +5 -0
- pulumi_gcp/integrationconnectors/managed_zone.py +15 -10
- pulumi_gcp/integrationconnectors/outputs.py +5 -0
- pulumi_gcp/kms/_inputs.py +303 -0
- pulumi_gcp/kms/autokey_config.py +5 -0
- pulumi_gcp/kms/crypto_key.py +18 -13
- pulumi_gcp/kms/crypto_key_iam_binding.py +56 -51
- pulumi_gcp/kms/crypto_key_iam_member.py +56 -51
- pulumi_gcp/kms/crypto_key_iam_policy.py +51 -46
- pulumi_gcp/kms/crypto_key_version.py +12 -7
- pulumi_gcp/kms/ekm_connection.py +24 -19
- pulumi_gcp/kms/get_crypto_key_iam_policy.py +5 -0
- pulumi_gcp/kms/get_key_ring_iam_policy.py +5 -0
- pulumi_gcp/kms/get_kms_crypto_key.py +5 -0
- pulumi_gcp/kms/get_kms_crypto_key_version.py +5 -0
- pulumi_gcp/kms/get_kms_key_ring.py +5 -0
- pulumi_gcp/kms/get_kms_secret.py +11 -6
- pulumi_gcp/kms/get_kms_secret_asymmetric.py +17 -12
- pulumi_gcp/kms/get_kms_secret_ciphertext.py +23 -18
- pulumi_gcp/kms/key_handle.py +5 -0
- pulumi_gcp/kms/key_ring.py +5 -0
- pulumi_gcp/kms/key_ring_iam_binding.py +102 -97
- pulumi_gcp/kms/key_ring_iam_member.py +102 -97
- pulumi_gcp/kms/key_ring_iam_policy.py +97 -92
- pulumi_gcp/kms/key_ring_import_job.py +9 -4
- pulumi_gcp/kms/outputs.py +5 -0
- pulumi_gcp/kms/secret_ciphertext.py +23 -18
- pulumi_gcp/logging/_inputs.py +520 -0
- pulumi_gcp/logging/billing_account_bucket_config.py +15 -10
- pulumi_gcp/logging/billing_account_exclusion.py +5 -0
- pulumi_gcp/logging/billing_account_sink.py +15 -10
- pulumi_gcp/logging/folder_bucket_config.py +15 -10
- pulumi_gcp/logging/folder_exclusion.py +5 -0
- pulumi_gcp/logging/folder_settings.py +5 -0
- pulumi_gcp/logging/folder_sink.py +15 -10
- pulumi_gcp/logging/get_folder_settings.py +5 -0
- pulumi_gcp/logging/get_log_view_iam_policy.py +5 -0
- pulumi_gcp/logging/get_organization_settings.py +5 -0
- pulumi_gcp/logging/get_project_cmek_settings.py +5 -0
- pulumi_gcp/logging/get_project_settings.py +5 -0
- pulumi_gcp/logging/get_sink.py +5 -0
- pulumi_gcp/logging/linked_dataset.py +10 -5
- pulumi_gcp/logging/log_view.py +5 -0
- pulumi_gcp/logging/log_view_iam_binding.py +10 -5
- pulumi_gcp/logging/log_view_iam_member.py +10 -5
- pulumi_gcp/logging/log_view_iam_policy.py +5 -0
- pulumi_gcp/logging/metric.py +97 -92
- pulumi_gcp/logging/organization_bucket_config.py +15 -10
- pulumi_gcp/logging/organization_exclusion.py +5 -0
- pulumi_gcp/logging/organization_settings.py +5 -0
- pulumi_gcp/logging/organization_sink.py +15 -10
- pulumi_gcp/logging/outputs.py +5 -0
- pulumi_gcp/logging/project_bucket_config.py +21 -16
- pulumi_gcp/logging/project_exclusion.py +5 -0
- pulumi_gcp/logging/project_sink.py +15 -10
- pulumi_gcp/looker/_inputs.py +211 -0
- pulumi_gcp/looker/instance.py +204 -199
- pulumi_gcp/looker/outputs.py +5 -0
- pulumi_gcp/managedkafka/_inputs.py +69 -0
- pulumi_gcp/managedkafka/cluster.py +72 -67
- pulumi_gcp/managedkafka/outputs.py +5 -0
- pulumi_gcp/managedkafka/topic.py +27 -22
- pulumi_gcp/memcache/_inputs.py +184 -0
- pulumi_gcp/memcache/instance.py +56 -51
- pulumi_gcp/memcache/outputs.py +5 -0
- pulumi_gcp/migrationcenter/_inputs.py +182 -0
- pulumi_gcp/migrationcenter/group.py +5 -0
- pulumi_gcp/migrationcenter/outputs.py +5 -0
- pulumi_gcp/migrationcenter/preference_set.py +82 -77
- pulumi_gcp/ml/_inputs.py +17 -0
- pulumi_gcp/ml/engine_model.py +10 -5
- pulumi_gcp/ml/outputs.py +5 -0
- pulumi_gcp/monitoring/_inputs.py +1651 -12
- pulumi_gcp/monitoring/alert_policy.py +128 -123
- pulumi_gcp/monitoring/custom_service.py +16 -11
- pulumi_gcp/monitoring/dashboard.py +5 -0
- pulumi_gcp/monitoring/generic_service.py +20 -15
- pulumi_gcp/monitoring/get_app_engine_service.py +21 -16
- pulumi_gcp/monitoring/get_cluster_istio_service.py +5 -0
- pulumi_gcp/monitoring/get_istio_canonical_service.py +5 -0
- pulumi_gcp/monitoring/get_mesh_istio_service.py +5 -0
- pulumi_gcp/monitoring/get_notification_channel.py +29 -24
- pulumi_gcp/monitoring/get_secret_version.py +5 -0
- pulumi_gcp/monitoring/get_uptime_check_i_ps.py +5 -0
- pulumi_gcp/monitoring/group.py +5 -0
- pulumi_gcp/monitoring/metric_descriptor.py +49 -44
- pulumi_gcp/monitoring/monitored_project.py +5 -0
- pulumi_gcp/monitoring/notification_channel.py +16 -11
- pulumi_gcp/monitoring/outputs.py +5 -0
- pulumi_gcp/monitoring/slo.py +120 -115
- pulumi_gcp/monitoring/uptime_check_config.py +241 -236
- pulumi_gcp/netapp/_inputs.py +311 -0
- pulumi_gcp/netapp/active_directory.py +5 -0
- pulumi_gcp/netapp/backup.py +11 -6
- pulumi_gcp/netapp/backup_policy.py +5 -0
- pulumi_gcp/netapp/backup_vault.py +5 -0
- pulumi_gcp/netapp/kmsconfig.py +5 -0
- pulumi_gcp/netapp/outputs.py +5 -0
- pulumi_gcp/netapp/storage_pool.py +5 -0
- pulumi_gcp/netapp/volume.py +27 -22
- pulumi_gcp/netapp/volume_replication.py +24 -19
- pulumi_gcp/netapp/volume_snapshot.py +5 -0
- pulumi_gcp/networkconnectivity/_inputs.py +253 -0
- pulumi_gcp/networkconnectivity/hub.py +7 -2
- pulumi_gcp/networkconnectivity/internal_range.py +5 -0
- pulumi_gcp/networkconnectivity/outputs.py +5 -0
- pulumi_gcp/networkconnectivity/policy_based_route.py +46 -41
- pulumi_gcp/networkconnectivity/regional_endpoint.py +5 -0
- pulumi_gcp/networkconnectivity/service_connection_policy.py +20 -15
- pulumi_gcp/networkconnectivity/spoke.py +71 -66
- pulumi_gcp/networkmanagement/_inputs.py +87 -0
- pulumi_gcp/networkmanagement/connectivity_test.py +85 -80
- pulumi_gcp/networkmanagement/outputs.py +5 -0
- pulumi_gcp/networksecurity/_inputs.py +321 -0
- pulumi_gcp/networksecurity/address_group.py +5 -0
- pulumi_gcp/networksecurity/address_group_iam_binding.py +8 -3
- pulumi_gcp/networksecurity/address_group_iam_member.py +8 -3
- pulumi_gcp/networksecurity/address_group_iam_policy.py +5 -0
- pulumi_gcp/networksecurity/authorization_policy.py +52 -47
- pulumi_gcp/networksecurity/client_tls_policy.py +45 -40
- pulumi_gcp/networksecurity/firewall_endpoint.py +5 -0
- pulumi_gcp/networksecurity/firewall_endpoint_association.py +5 -0
- pulumi_gcp/networksecurity/gateway_security_policy.py +91 -86
- pulumi_gcp/networksecurity/gateway_security_policy_rule.py +5 -0
- pulumi_gcp/networksecurity/get_address_group_iam_policy.py +5 -0
- pulumi_gcp/networksecurity/outputs.py +5 -0
- pulumi_gcp/networksecurity/security_profile.py +40 -35
- pulumi_gcp/networksecurity/security_profile_group.py +5 -0
- pulumi_gcp/networksecurity/server_tls_policy.py +101 -96
- pulumi_gcp/networksecurity/tls_inspection_policy.py +193 -188
- pulumi_gcp/networksecurity/url_list.py +5 -0
- pulumi_gcp/networkservices/_inputs.py +1781 -29
- pulumi_gcp/networkservices/edge_cache_keyset.py +51 -46
- pulumi_gcp/networkservices/edge_cache_origin.py +89 -84
- pulumi_gcp/networkservices/edge_cache_service.py +567 -562
- pulumi_gcp/networkservices/endpoint_policy.py +55 -50
- pulumi_gcp/networkservices/gateway.py +21 -16
- pulumi_gcp/networkservices/grpc_route.py +146 -141
- pulumi_gcp/networkservices/http_route.py +294 -289
- pulumi_gcp/networkservices/lb_route_extension.py +10 -5
- pulumi_gcp/networkservices/lb_traffic_extension.py +10 -5
- pulumi_gcp/networkservices/mesh.py +5 -0
- pulumi_gcp/networkservices/outputs.py +5 -0
- pulumi_gcp/networkservices/service_binding.py +5 -0
- pulumi_gcp/networkservices/service_lb_policies.py +27 -22
- pulumi_gcp/networkservices/tcp_route.py +106 -101
- pulumi_gcp/networkservices/tls_route.py +82 -77
- pulumi_gcp/notebooks/_inputs.py +615 -0
- pulumi_gcp/notebooks/environment.py +21 -16
- pulumi_gcp/notebooks/get_instance_iam_policy.py +5 -0
- pulumi_gcp/notebooks/get_runtime_iam_policy.py +5 -0
- pulumi_gcp/notebooks/instance.py +78 -73
- pulumi_gcp/notebooks/instance_iam_binding.py +24 -19
- pulumi_gcp/notebooks/instance_iam_member.py +24 -19
- pulumi_gcp/notebooks/instance_iam_policy.py +21 -16
- pulumi_gcp/notebooks/location.py +5 -0
- pulumi_gcp/notebooks/outputs.py +5 -0
- pulumi_gcp/notebooks/runtime.py +222 -217
- pulumi_gcp/notebooks/runtime_iam_binding.py +24 -19
- pulumi_gcp/notebooks/runtime_iam_member.py +24 -19
- pulumi_gcp/notebooks/runtime_iam_policy.py +21 -16
- pulumi_gcp/organizations/_inputs.py +231 -0
- pulumi_gcp/organizations/access_approval_settings.py +36 -31
- pulumi_gcp/organizations/folder.py +5 -0
- pulumi_gcp/organizations/get_active_folder.py +5 -0
- pulumi_gcp/organizations/get_billing_account.py +5 -0
- pulumi_gcp/organizations/get_client_config.py +5 -0
- pulumi_gcp/organizations/get_client_open_id_user_info.py +5 -0
- pulumi_gcp/organizations/get_folder.py +5 -0
- pulumi_gcp/organizations/get_folders.py +5 -0
- pulumi_gcp/organizations/get_iam_policy.py +13 -8
- pulumi_gcp/organizations/get_organization.py +5 -0
- pulumi_gcp/organizations/get_project.py +5 -0
- pulumi_gcp/organizations/iam_audit_config.py +18 -13
- pulumi_gcp/organizations/iam_binding.py +8 -3
- pulumi_gcp/organizations/iam_custom_role.py +5 -0
- pulumi_gcp/organizations/iam_member.py +130 -125
- pulumi_gcp/organizations/iam_policy.py +125 -120
- pulumi_gcp/organizations/outputs.py +5 -0
- pulumi_gcp/organizations/policy.py +54 -49
- pulumi_gcp/organizations/project.py +5 -0
- pulumi_gcp/orgpolicy/_inputs.py +183 -0
- pulumi_gcp/orgpolicy/custom_constraint.py +15 -10
- pulumi_gcp/orgpolicy/outputs.py +5 -0
- pulumi_gcp/orgpolicy/policy.py +103 -98
- pulumi_gcp/osconfig/_inputs.py +2235 -30
- pulumi_gcp/osconfig/guest_policies.py +171 -166
- pulumi_gcp/osconfig/os_policy_assignment.py +158 -153
- pulumi_gcp/osconfig/outputs.py +5 -0
- pulumi_gcp/osconfig/patch_deployment.py +326 -321
- pulumi_gcp/oslogin/ssh_public_key.py +5 -0
- pulumi_gcp/parallelstore/instance.py +5 -0
- pulumi_gcp/privilegedaccessmanager/_inputs.py +170 -0
- pulumi_gcp/privilegedaccessmanager/entitlement.py +94 -89
- pulumi_gcp/privilegedaccessmanager/outputs.py +5 -0
- pulumi_gcp/projects/_inputs.py +262 -0
- pulumi_gcp/projects/access_approval_settings.py +30 -25
- pulumi_gcp/projects/api_key.py +88 -83
- pulumi_gcp/projects/default_service_accounts.py +5 -0
- pulumi_gcp/projects/get_iam_policy.py +5 -0
- pulumi_gcp/projects/get_organization_policy.py +5 -0
- pulumi_gcp/projects/get_project.py +5 -0
- pulumi_gcp/projects/get_project_service.py +5 -0
- pulumi_gcp/projects/iam_audit_config.py +130 -125
- pulumi_gcp/projects/iam_binding.py +130 -125
- pulumi_gcp/projects/iam_custom_role.py +5 -0
- pulumi_gcp/projects/iam_member.py +130 -125
- pulumi_gcp/projects/iam_member_remove.py +5 -0
- pulumi_gcp/projects/iam_policy.py +125 -120
- pulumi_gcp/projects/organization_policy.py +54 -49
- pulumi_gcp/projects/outputs.py +5 -0
- pulumi_gcp/projects/service.py +5 -0
- pulumi_gcp/projects/service_identity.py +5 -0
- pulumi_gcp/projects/usage_export_bucket.py +5 -0
- pulumi_gcp/provider.py +7 -2
- pulumi_gcp/pubsub/_inputs.py +438 -0
- pulumi_gcp/pubsub/get_schema_iam_policy.py +5 -0
- pulumi_gcp/pubsub/get_subscription.py +5 -0
- pulumi_gcp/pubsub/get_subscription_iam_policy.py +5 -0
- pulumi_gcp/pubsub/get_topic.py +5 -0
- pulumi_gcp/pubsub/get_topic_iam_policy.py +5 -0
- pulumi_gcp/pubsub/lite_reservation.py +5 -0
- pulumi_gcp/pubsub/lite_subscription.py +36 -31
- pulumi_gcp/pubsub/lite_topic.py +46 -41
- pulumi_gcp/pubsub/outputs.py +5 -0
- pulumi_gcp/pubsub/schema.py +13 -8
- pulumi_gcp/pubsub/schema_iam_binding.py +24 -19
- pulumi_gcp/pubsub/schema_iam_member.py +24 -19
- pulumi_gcp/pubsub/schema_iam_policy.py +21 -16
- pulumi_gcp/pubsub/subscription.py +141 -136
- pulumi_gcp/pubsub/subscription_iam_binding.py +24 -19
- pulumi_gcp/pubsub/subscription_iam_member.py +24 -19
- pulumi_gcp/pubsub/subscription_iam_policy.py +21 -16
- pulumi_gcp/pubsub/topic.py +50 -45
- pulumi_gcp/pubsub/topic_iam_binding.py +24 -19
- pulumi_gcp/pubsub/topic_iam_member.py +24 -19
- pulumi_gcp/pubsub/topic_iam_policy.py +21 -16
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/recaptcha/_inputs.py +89 -0
- pulumi_gcp/recaptcha/enterprise_key.py +132 -127
- pulumi_gcp/recaptcha/outputs.py +5 -0
- pulumi_gcp/redis/_inputs.py +321 -0
- pulumi_gcp/redis/cluster.py +59 -54
- pulumi_gcp/redis/get_instance.py +5 -0
- pulumi_gcp/redis/instance.py +51 -46
- pulumi_gcp/redis/outputs.py +5 -0
- pulumi_gcp/resourcemanager/lien.py +5 -0
- pulumi_gcp/runtimeconfig/_inputs.py +25 -0
- pulumi_gcp/runtimeconfig/config.py +5 -0
- pulumi_gcp/runtimeconfig/config_iam_binding.py +8 -3
- pulumi_gcp/runtimeconfig/config_iam_member.py +8 -3
- pulumi_gcp/runtimeconfig/config_iam_policy.py +5 -0
- pulumi_gcp/runtimeconfig/get_config.py +5 -0
- pulumi_gcp/runtimeconfig/get_config_iam_policy.py +5 -0
- pulumi_gcp/runtimeconfig/get_variable.py +5 -0
- pulumi_gcp/runtimeconfig/outputs.py +5 -0
- pulumi_gcp/runtimeconfig/variable.py +5 -0
- pulumi_gcp/secretmanager/_inputs.py +143 -0
- pulumi_gcp/secretmanager/get_secret.py +5 -0
- pulumi_gcp/secretmanager/get_secret_iam_policy.py +5 -0
- pulumi_gcp/secretmanager/get_secret_version.py +5 -0
- pulumi_gcp/secretmanager/get_secret_version_access.py +5 -0
- pulumi_gcp/secretmanager/get_secrets.py +5 -0
- pulumi_gcp/secretmanager/outputs.py +5 -0
- pulumi_gcp/secretmanager/secret.py +68 -63
- pulumi_gcp/secretmanager/secret_iam_binding.py +102 -97
- pulumi_gcp/secretmanager/secret_iam_member.py +102 -97
- pulumi_gcp/secretmanager/secret_iam_policy.py +97 -92
- pulumi_gcp/secretmanager/secret_version.py +53 -48
- pulumi_gcp/securesourcemanager/_inputs.py +75 -0
- pulumi_gcp/securesourcemanager/get_instance_iam_policy.py +5 -0
- pulumi_gcp/securesourcemanager/instance.py +78 -73
- pulumi_gcp/securesourcemanager/instance_iam_binding.py +8 -3
- pulumi_gcp/securesourcemanager/instance_iam_member.py +8 -3
- pulumi_gcp/securesourcemanager/instance_iam_policy.py +5 -0
- pulumi_gcp/securesourcemanager/outputs.py +5 -0
- pulumi_gcp/securitycenter/_inputs.py +860 -7
- pulumi_gcp/securitycenter/event_threat_detection_custom_module.py +5 -0
- pulumi_gcp/securitycenter/folder_custom_module.py +82 -77
- pulumi_gcp/securitycenter/get_source_iam_policy.py +5 -0
- pulumi_gcp/securitycenter/instance_iam_binding.py +38 -33
- pulumi_gcp/securitycenter/instance_iam_member.py +38 -33
- pulumi_gcp/securitycenter/instance_iam_policy.py +35 -30
- pulumi_gcp/securitycenter/management_folder_security_health_analytics_custom_module.py +82 -77
- pulumi_gcp/securitycenter/management_organization_event_threat_detection_custom_module.py +5 -0
- pulumi_gcp/securitycenter/management_organization_security_health_analytics_custom_module.py +82 -77
- pulumi_gcp/securitycenter/management_project_security_health_analytics_custom_module.py +82 -77
- pulumi_gcp/securitycenter/mute_config.py +5 -0
- pulumi_gcp/securitycenter/notification_config.py +16 -11
- pulumi_gcp/securitycenter/organization_custom_module.py +82 -77
- pulumi_gcp/securitycenter/outputs.py +5 -0
- pulumi_gcp/securitycenter/project_custom_module.py +82 -77
- pulumi_gcp/securitycenter/source.py +5 -0
- pulumi_gcp/securitycenter/source_iam_binding.py +8 -3
- pulumi_gcp/securitycenter/source_iam_member.py +8 -3
- pulumi_gcp/securitycenter/source_iam_policy.py +5 -0
- pulumi_gcp/securityposture/_inputs.py +457 -0
- pulumi_gcp/securityposture/outputs.py +5 -0
- pulumi_gcp/securityposture/posture.py +186 -181
- pulumi_gcp/securityposture/posture_deployment.py +35 -30
- pulumi_gcp/serviceaccount/_inputs.py +51 -0
- pulumi_gcp/serviceaccount/account.py +5 -0
- pulumi_gcp/serviceaccount/get_account.py +5 -0
- pulumi_gcp/serviceaccount/get_account_access_token.py +5 -0
- pulumi_gcp/serviceaccount/get_account_id_token.py +5 -0
- pulumi_gcp/serviceaccount/get_account_jwt.py +5 -0
- pulumi_gcp/serviceaccount/get_account_key.py +5 -0
- pulumi_gcp/serviceaccount/get_iam_policy.py +5 -0
- pulumi_gcp/serviceaccount/iam_binding.py +66 -61
- pulumi_gcp/serviceaccount/iam_member.py +66 -61
- pulumi_gcp/serviceaccount/iam_policy.py +61 -56
- pulumi_gcp/serviceaccount/key.py +5 -0
- pulumi_gcp/serviceaccount/outputs.py +5 -0
- pulumi_gcp/servicedirectory/_inputs.py +43 -0
- pulumi_gcp/servicedirectory/endpoint.py +5 -0
- pulumi_gcp/servicedirectory/get_namespace_iam_policy.py +5 -0
- pulumi_gcp/servicedirectory/get_service_iam_policy.py +5 -0
- pulumi_gcp/servicedirectory/namespace.py +5 -0
- pulumi_gcp/servicedirectory/namespace_iam_binding.py +24 -19
- pulumi_gcp/servicedirectory/namespace_iam_member.py +24 -19
- pulumi_gcp/servicedirectory/namespace_iam_policy.py +21 -16
- pulumi_gcp/servicedirectory/outputs.py +5 -0
- pulumi_gcp/servicedirectory/service.py +5 -0
- pulumi_gcp/servicedirectory/service_iam_binding.py +24 -19
- pulumi_gcp/servicedirectory/service_iam_member.py +24 -19
- pulumi_gcp/servicedirectory/service_iam_policy.py +21 -16
- pulumi_gcp/servicenetworking/connection.py +5 -0
- pulumi_gcp/servicenetworking/get_peered_dns_domain.py +5 -0
- pulumi_gcp/servicenetworking/peered_dns_domain.py +5 -0
- pulumi_gcp/servicenetworking/vpc_service_controls.py +5 -0
- pulumi_gcp/serviceusage/consumer_quota_override.py +5 -0
- pulumi_gcp/sourcerepo/_inputs.py +49 -0
- pulumi_gcp/sourcerepo/get_repository.py +5 -0
- pulumi_gcp/sourcerepo/get_repository_iam_policy.py +5 -0
- pulumi_gcp/sourcerepo/outputs.py +5 -0
- pulumi_gcp/sourcerepo/repository.py +20 -15
- pulumi_gcp/sourcerepo/repository_iam_binding.py +24 -19
- pulumi_gcp/sourcerepo/repository_iam_member.py +24 -19
- pulumi_gcp/sourcerepo/repository_iam_policy.py +21 -16
- pulumi_gcp/spanner/_inputs.py +157 -0
- pulumi_gcp/spanner/database.py +10 -5
- pulumi_gcp/spanner/database_iam_binding.py +102 -97
- pulumi_gcp/spanner/database_iam_member.py +102 -97
- pulumi_gcp/spanner/database_iam_policy.py +97 -92
- pulumi_gcp/spanner/get_database_iam_policy.py +5 -0
- pulumi_gcp/spanner/get_instance.py +5 -0
- pulumi_gcp/spanner/get_instance_iam_policy.py +5 -0
- pulumi_gcp/spanner/instance.py +30 -25
- pulumi_gcp/spanner/instance_config.py +10 -5
- pulumi_gcp/spanner/instance_iam_binding.py +24 -19
- pulumi_gcp/spanner/instance_iam_member.py +24 -19
- pulumi_gcp/spanner/instance_iam_policy.py +21 -16
- pulumi_gcp/spanner/outputs.py +5 -0
- pulumi_gcp/sql/_inputs.py +616 -0
- pulumi_gcp/sql/database.py +17 -12
- pulumi_gcp/sql/database_instance.py +93 -88
- pulumi_gcp/sql/get_backup_run.py +5 -0
- pulumi_gcp/sql/get_ca_certs.py +5 -0
- pulumi_gcp/sql/get_database.py +5 -0
- pulumi_gcp/sql/get_database_instance.py +5 -0
- pulumi_gcp/sql/get_database_instance_latest_recovery_time.py +5 -0
- pulumi_gcp/sql/get_database_instances.py +5 -0
- pulumi_gcp/sql/get_databases.py +5 -0
- pulumi_gcp/sql/get_tiers.py +5 -0
- pulumi_gcp/sql/outputs.py +5 -0
- pulumi_gcp/sql/source_representation_instance.py +5 -0
- pulumi_gcp/sql/ssl_cert.py +11 -6
- pulumi_gcp/sql/user.py +43 -38
- pulumi_gcp/storage/_inputs.py +828 -0
- pulumi_gcp/storage/bucket.py +125 -120
- pulumi_gcp/storage/bucket_access_control.py +5 -0
- pulumi_gcp/storage/bucket_acl.py +5 -0
- pulumi_gcp/storage/bucket_iam_binding.py +102 -97
- pulumi_gcp/storage/bucket_iam_member.py +102 -97
- pulumi_gcp/storage/bucket_iam_policy.py +97 -92
- pulumi_gcp/storage/bucket_object.py +15 -10
- pulumi_gcp/storage/default_object_access_control.py +7 -2
- pulumi_gcp/storage/default_object_acl.py +5 -0
- pulumi_gcp/storage/get_bucket.py +5 -0
- pulumi_gcp/storage/get_bucket_iam_policy.py +5 -0
- pulumi_gcp/storage/get_bucket_object.py +5 -0
- pulumi_gcp/storage/get_bucket_object_content.py +5 -0
- pulumi_gcp/storage/get_bucket_objects.py +5 -0
- pulumi_gcp/storage/get_buckets.py +5 -0
- pulumi_gcp/storage/get_object_signed_url.py +5 -0
- pulumi_gcp/storage/get_project_service_account.py +11 -6
- pulumi_gcp/storage/get_transfer_project_service_account.py +5 -0
- pulumi_gcp/storage/get_transfer_project_servie_account.py +5 -0
- pulumi_gcp/storage/hmac_key.py +5 -0
- pulumi_gcp/storage/insights_report_config.py +76 -71
- pulumi_gcp/storage/notification.py +5 -0
- pulumi_gcp/storage/object_access_control.py +7 -2
- pulumi_gcp/storage/object_acl.py +5 -0
- pulumi_gcp/storage/outputs.py +5 -0
- pulumi_gcp/storage/transfer_agent_pool.py +16 -11
- pulumi_gcp/storage/transfer_job.py +113 -108
- pulumi_gcp/tags/_inputs.py +43 -0
- pulumi_gcp/tags/get_tag_key.py +5 -0
- pulumi_gcp/tags/get_tag_key_iam_policy.py +5 -0
- pulumi_gcp/tags/get_tag_keys.py +5 -0
- pulumi_gcp/tags/get_tag_value.py +5 -0
- pulumi_gcp/tags/get_tag_value_iam_policy.py +5 -0
- pulumi_gcp/tags/get_tag_values.py +5 -0
- pulumi_gcp/tags/location_tag_binding.py +5 -0
- pulumi_gcp/tags/outputs.py +5 -0
- pulumi_gcp/tags/tag_binding.py +5 -0
- pulumi_gcp/tags/tag_key.py +5 -0
- pulumi_gcp/tags/tag_key_iam_binding.py +24 -19
- pulumi_gcp/tags/tag_key_iam_member.py +24 -19
- pulumi_gcp/tags/tag_key_iam_policy.py +21 -16
- pulumi_gcp/tags/tag_value.py +5 -0
- pulumi_gcp/tags/tag_value_iam_binding.py +24 -19
- pulumi_gcp/tags/tag_value_iam_member.py +24 -19
- pulumi_gcp/tags/tag_value_iam_policy.py +21 -16
- pulumi_gcp/tpu/_inputs.py +194 -0
- pulumi_gcp/tpu/get_tensorflow_versions.py +5 -0
- pulumi_gcp/tpu/get_v2_accelerator_types.py +5 -0
- pulumi_gcp/tpu/get_v2_runtime_versions.py +5 -0
- pulumi_gcp/tpu/node.py +18 -13
- pulumi_gcp/tpu/outputs.py +5 -0
- pulumi_gcp/tpu/v2_vm.py +87 -82
- pulumi_gcp/vertex/_inputs.py +841 -0
- pulumi_gcp/vertex/ai_dataset.py +10 -5
- pulumi_gcp/vertex/ai_deployment_resource_pool.py +36 -31
- pulumi_gcp/vertex/ai_endpoint.py +18 -13
- pulumi_gcp/vertex/ai_endpoint_iam_binding.py +8 -3
- pulumi_gcp/vertex/ai_endpoint_iam_member.py +8 -3
- pulumi_gcp/vertex/ai_endpoint_iam_policy.py +5 -0
- pulumi_gcp/vertex/ai_feature_group.py +22 -17
- pulumi_gcp/vertex/ai_feature_group_feature.py +17 -12
- pulumi_gcp/vertex/ai_feature_online_store.py +73 -68
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +151 -146
- pulumi_gcp/vertex/ai_feature_store.py +57 -52
- pulumi_gcp/vertex/ai_feature_store_entity_type.py +92 -87
- pulumi_gcp/vertex/ai_feature_store_entity_type_feature.py +41 -36
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_binding.py +8 -3
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_member.py +8 -3
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_policy.py +5 -0
- pulumi_gcp/vertex/ai_feature_store_iam_binding.py +8 -3
- pulumi_gcp/vertex/ai_feature_store_iam_member.py +8 -3
- pulumi_gcp/vertex/ai_feature_store_iam_policy.py +5 -0
- pulumi_gcp/vertex/ai_index.py +68 -63
- pulumi_gcp/vertex/ai_index_endpoint.py +18 -13
- pulumi_gcp/vertex/ai_metadata_store.py +12 -7
- pulumi_gcp/vertex/ai_tensorboard.py +16 -11
- pulumi_gcp/vertex/get_ai_endpoint_iam_policy.py +5 -0
- pulumi_gcp/vertex/get_ai_featurestore_entitytype_iam_policy.py +5 -0
- pulumi_gcp/vertex/get_ai_featurestore_iam_policy.py +5 -0
- pulumi_gcp/vertex/get_ai_index.py +5 -0
- pulumi_gcp/vertex/outputs.py +5 -0
- pulumi_gcp/vmwareengine/_inputs.py +290 -0
- pulumi_gcp/vmwareengine/cluster.py +74 -69
- pulumi_gcp/vmwareengine/external_access_rule.py +61 -56
- pulumi_gcp/vmwareengine/external_address.py +27 -22
- pulumi_gcp/vmwareengine/get_cluster.py +5 -0
- pulumi_gcp/vmwareengine/get_external_access_rule.py +5 -0
- pulumi_gcp/vmwareengine/get_external_address.py +5 -0
- pulumi_gcp/vmwareengine/get_network.py +5 -0
- pulumi_gcp/vmwareengine/get_network_peering.py +5 -0
- pulumi_gcp/vmwareengine/get_network_policy.py +5 -0
- pulumi_gcp/vmwareengine/get_nsx_credentials.py +5 -0
- pulumi_gcp/vmwareengine/get_private_cloud.py +5 -0
- pulumi_gcp/vmwareengine/get_subnet.py +5 -0
- pulumi_gcp/vmwareengine/get_vcenter_credentials.py +5 -0
- pulumi_gcp/vmwareengine/network.py +7 -2
- pulumi_gcp/vmwareengine/network_peering.py +5 -0
- pulumi_gcp/vmwareengine/network_policy.py +27 -22
- pulumi_gcp/vmwareengine/outputs.py +5 -0
- pulumi_gcp/vmwareengine/private_cloud.py +67 -62
- pulumi_gcp/vmwareengine/subnet.py +29 -24
- pulumi_gcp/vpcaccess/_inputs.py +22 -0
- pulumi_gcp/vpcaccess/connector.py +16 -11
- pulumi_gcp/vpcaccess/get_connector.py +5 -0
- pulumi_gcp/vpcaccess/outputs.py +5 -0
- pulumi_gcp/workbench/_inputs.py +319 -0
- pulumi_gcp/workbench/get_instance_iam_policy.py +5 -0
- pulumi_gcp/workbench/instance.py +144 -139
- pulumi_gcp/workbench/instance_iam_binding.py +8 -3
- pulumi_gcp/workbench/instance_iam_member.py +8 -3
- pulumi_gcp/workbench/instance_iam_policy.py +5 -0
- pulumi_gcp/workbench/outputs.py +5 -0
- pulumi_gcp/workflows/workflow.py +5 -0
- pulumi_gcp/workstations/_inputs.py +433 -0
- pulumi_gcp/workstations/get_workstation_config_iam_policy.py +5 -0
- pulumi_gcp/workstations/get_workstation_iam_policy.py +5 -0
- pulumi_gcp/workstations/outputs.py +5 -0
- pulumi_gcp/workstations/workstation.py +19 -14
- pulumi_gcp/workstations/workstation_cluster.py +35 -30
- pulumi_gcp/workstations/workstation_config.py +251 -246
- pulumi_gcp/workstations/workstation_config_iam_binding.py +8 -3
- pulumi_gcp/workstations/workstation_config_iam_member.py +8 -3
- pulumi_gcp/workstations/workstation_config_iam_policy.py +5 -0
- pulumi_gcp/workstations/workstation_iam_binding.py +8 -3
- pulumi_gcp/workstations/workstation_iam_member.py +8 -3
- pulumi_gcp/workstations/workstation_iam_policy.py +5 -0
- {pulumi_gcp-7.30.0a1719470057.dist-info → pulumi_gcp-7.30.0a1719555549.dist-info}/METADATA +2 -1
- pulumi_gcp-7.30.0a1719555549.dist-info/RECORD +1600 -0
- pulumi_gcp-7.30.0a1719470057.dist-info/RECORD +0 -1600
- {pulumi_gcp-7.30.0a1719470057.dist-info → pulumi_gcp-7.30.0a1719555549.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.30.0a1719470057.dist-info → pulumi_gcp-7.30.0a1719555549.dist-info}/top_level.txt +0 -0
pulumi_gcp/dataproc/_inputs.py
CHANGED
@@ -4,160 +4,329 @@
|
|
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
|
'AutoscalingPolicyBasicAlgorithmArgs',
|
19
|
+
'AutoscalingPolicyBasicAlgorithmArgsDict',
|
14
20
|
'AutoscalingPolicyBasicAlgorithmYarnConfigArgs',
|
21
|
+
'AutoscalingPolicyBasicAlgorithmYarnConfigArgsDict',
|
15
22
|
'AutoscalingPolicyIamBindingConditionArgs',
|
23
|
+
'AutoscalingPolicyIamBindingConditionArgsDict',
|
16
24
|
'AutoscalingPolicyIamMemberConditionArgs',
|
25
|
+
'AutoscalingPolicyIamMemberConditionArgsDict',
|
17
26
|
'AutoscalingPolicySecondaryWorkerConfigArgs',
|
27
|
+
'AutoscalingPolicySecondaryWorkerConfigArgsDict',
|
18
28
|
'AutoscalingPolicyWorkerConfigArgs',
|
29
|
+
'AutoscalingPolicyWorkerConfigArgsDict',
|
19
30
|
'ClusterClusterConfigArgs',
|
31
|
+
'ClusterClusterConfigArgsDict',
|
20
32
|
'ClusterClusterConfigAutoscalingConfigArgs',
|
33
|
+
'ClusterClusterConfigAutoscalingConfigArgsDict',
|
21
34
|
'ClusterClusterConfigAuxiliaryNodeGroupArgs',
|
35
|
+
'ClusterClusterConfigAuxiliaryNodeGroupArgsDict',
|
22
36
|
'ClusterClusterConfigAuxiliaryNodeGroupNodeGroupArgs',
|
37
|
+
'ClusterClusterConfigAuxiliaryNodeGroupNodeGroupArgsDict',
|
23
38
|
'ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigArgs',
|
39
|
+
'ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigArgsDict',
|
24
40
|
'ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigAcceleratorArgs',
|
41
|
+
'ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigAcceleratorArgsDict',
|
25
42
|
'ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigDiskConfigArgs',
|
43
|
+
'ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigDiskConfigArgsDict',
|
26
44
|
'ClusterClusterConfigDataprocMetricConfigArgs',
|
45
|
+
'ClusterClusterConfigDataprocMetricConfigArgsDict',
|
27
46
|
'ClusterClusterConfigDataprocMetricConfigMetricArgs',
|
47
|
+
'ClusterClusterConfigDataprocMetricConfigMetricArgsDict',
|
28
48
|
'ClusterClusterConfigEncryptionConfigArgs',
|
49
|
+
'ClusterClusterConfigEncryptionConfigArgsDict',
|
29
50
|
'ClusterClusterConfigEndpointConfigArgs',
|
51
|
+
'ClusterClusterConfigEndpointConfigArgsDict',
|
30
52
|
'ClusterClusterConfigGceClusterConfigArgs',
|
53
|
+
'ClusterClusterConfigGceClusterConfigArgsDict',
|
31
54
|
'ClusterClusterConfigGceClusterConfigNodeGroupAffinityArgs',
|
55
|
+
'ClusterClusterConfigGceClusterConfigNodeGroupAffinityArgsDict',
|
32
56
|
'ClusterClusterConfigGceClusterConfigReservationAffinityArgs',
|
57
|
+
'ClusterClusterConfigGceClusterConfigReservationAffinityArgsDict',
|
33
58
|
'ClusterClusterConfigGceClusterConfigShieldedInstanceConfigArgs',
|
59
|
+
'ClusterClusterConfigGceClusterConfigShieldedInstanceConfigArgsDict',
|
34
60
|
'ClusterClusterConfigInitializationActionArgs',
|
61
|
+
'ClusterClusterConfigInitializationActionArgsDict',
|
35
62
|
'ClusterClusterConfigLifecycleConfigArgs',
|
63
|
+
'ClusterClusterConfigLifecycleConfigArgsDict',
|
36
64
|
'ClusterClusterConfigMasterConfigArgs',
|
65
|
+
'ClusterClusterConfigMasterConfigArgsDict',
|
37
66
|
'ClusterClusterConfigMasterConfigAcceleratorArgs',
|
67
|
+
'ClusterClusterConfigMasterConfigAcceleratorArgsDict',
|
38
68
|
'ClusterClusterConfigMasterConfigDiskConfigArgs',
|
69
|
+
'ClusterClusterConfigMasterConfigDiskConfigArgsDict',
|
39
70
|
'ClusterClusterConfigMetastoreConfigArgs',
|
71
|
+
'ClusterClusterConfigMetastoreConfigArgsDict',
|
40
72
|
'ClusterClusterConfigPreemptibleWorkerConfigArgs',
|
73
|
+
'ClusterClusterConfigPreemptibleWorkerConfigArgsDict',
|
41
74
|
'ClusterClusterConfigPreemptibleWorkerConfigDiskConfigArgs',
|
75
|
+
'ClusterClusterConfigPreemptibleWorkerConfigDiskConfigArgsDict',
|
42
76
|
'ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyArgs',
|
77
|
+
'ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyArgsDict',
|
43
78
|
'ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstanceSelectionListArgs',
|
79
|
+
'ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstanceSelectionListArgsDict',
|
44
80
|
'ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstanceSelectionResultArgs',
|
81
|
+
'ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstanceSelectionResultArgsDict',
|
45
82
|
'ClusterClusterConfigSecurityConfigArgs',
|
83
|
+
'ClusterClusterConfigSecurityConfigArgsDict',
|
46
84
|
'ClusterClusterConfigSecurityConfigKerberosConfigArgs',
|
85
|
+
'ClusterClusterConfigSecurityConfigKerberosConfigArgsDict',
|
47
86
|
'ClusterClusterConfigSoftwareConfigArgs',
|
87
|
+
'ClusterClusterConfigSoftwareConfigArgsDict',
|
48
88
|
'ClusterClusterConfigWorkerConfigArgs',
|
89
|
+
'ClusterClusterConfigWorkerConfigArgsDict',
|
49
90
|
'ClusterClusterConfigWorkerConfigAcceleratorArgs',
|
91
|
+
'ClusterClusterConfigWorkerConfigAcceleratorArgsDict',
|
50
92
|
'ClusterClusterConfigWorkerConfigDiskConfigArgs',
|
93
|
+
'ClusterClusterConfigWorkerConfigDiskConfigArgsDict',
|
51
94
|
'ClusterIAMBindingConditionArgs',
|
95
|
+
'ClusterIAMBindingConditionArgsDict',
|
52
96
|
'ClusterIAMMemberConditionArgs',
|
97
|
+
'ClusterIAMMemberConditionArgsDict',
|
53
98
|
'ClusterVirtualClusterConfigArgs',
|
99
|
+
'ClusterVirtualClusterConfigArgsDict',
|
54
100
|
'ClusterVirtualClusterConfigAuxiliaryServicesConfigArgs',
|
101
|
+
'ClusterVirtualClusterConfigAuxiliaryServicesConfigArgsDict',
|
55
102
|
'ClusterVirtualClusterConfigAuxiliaryServicesConfigMetastoreConfigArgs',
|
103
|
+
'ClusterVirtualClusterConfigAuxiliaryServicesConfigMetastoreConfigArgsDict',
|
56
104
|
'ClusterVirtualClusterConfigAuxiliaryServicesConfigSparkHistoryServerConfigArgs',
|
105
|
+
'ClusterVirtualClusterConfigAuxiliaryServicesConfigSparkHistoryServerConfigArgsDict',
|
57
106
|
'ClusterVirtualClusterConfigKubernetesClusterConfigArgs',
|
107
|
+
'ClusterVirtualClusterConfigKubernetesClusterConfigArgsDict',
|
58
108
|
'ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigArgs',
|
109
|
+
'ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigArgsDict',
|
59
110
|
'ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetArgs',
|
111
|
+
'ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetArgsDict',
|
60
112
|
'ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigArgs',
|
113
|
+
'ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigArgsDict',
|
61
114
|
'ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigAutoscalingArgs',
|
115
|
+
'ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigAutoscalingArgsDict',
|
62
116
|
'ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigConfigArgs',
|
117
|
+
'ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigConfigArgsDict',
|
63
118
|
'ClusterVirtualClusterConfigKubernetesClusterConfigKubernetesSoftwareConfigArgs',
|
119
|
+
'ClusterVirtualClusterConfigKubernetesClusterConfigKubernetesSoftwareConfigArgsDict',
|
64
120
|
'JobHadoopConfigArgs',
|
121
|
+
'JobHadoopConfigArgsDict',
|
65
122
|
'JobHadoopConfigLoggingConfigArgs',
|
123
|
+
'JobHadoopConfigLoggingConfigArgsDict',
|
66
124
|
'JobHiveConfigArgs',
|
125
|
+
'JobHiveConfigArgsDict',
|
67
126
|
'JobIAMBindingConditionArgs',
|
127
|
+
'JobIAMBindingConditionArgsDict',
|
68
128
|
'JobIAMMemberConditionArgs',
|
129
|
+
'JobIAMMemberConditionArgsDict',
|
69
130
|
'JobPigConfigArgs',
|
131
|
+
'JobPigConfigArgsDict',
|
70
132
|
'JobPigConfigLoggingConfigArgs',
|
133
|
+
'JobPigConfigLoggingConfigArgsDict',
|
71
134
|
'JobPlacementArgs',
|
135
|
+
'JobPlacementArgsDict',
|
72
136
|
'JobPrestoConfigArgs',
|
137
|
+
'JobPrestoConfigArgsDict',
|
73
138
|
'JobPrestoConfigLoggingConfigArgs',
|
139
|
+
'JobPrestoConfigLoggingConfigArgsDict',
|
74
140
|
'JobPysparkConfigArgs',
|
141
|
+
'JobPysparkConfigArgsDict',
|
75
142
|
'JobPysparkConfigLoggingConfigArgs',
|
143
|
+
'JobPysparkConfigLoggingConfigArgsDict',
|
76
144
|
'JobReferenceArgs',
|
145
|
+
'JobReferenceArgsDict',
|
77
146
|
'JobSchedulingArgs',
|
147
|
+
'JobSchedulingArgsDict',
|
78
148
|
'JobSparkConfigArgs',
|
149
|
+
'JobSparkConfigArgsDict',
|
79
150
|
'JobSparkConfigLoggingConfigArgs',
|
151
|
+
'JobSparkConfigLoggingConfigArgsDict',
|
80
152
|
'JobSparksqlConfigArgs',
|
153
|
+
'JobSparksqlConfigArgsDict',
|
81
154
|
'JobSparksqlConfigLoggingConfigArgs',
|
155
|
+
'JobSparksqlConfigLoggingConfigArgsDict',
|
82
156
|
'JobStatusArgs',
|
157
|
+
'JobStatusArgsDict',
|
83
158
|
'MetastoreFederationBackendMetastoreArgs',
|
159
|
+
'MetastoreFederationBackendMetastoreArgsDict',
|
84
160
|
'MetastoreFederationIamBindingConditionArgs',
|
161
|
+
'MetastoreFederationIamBindingConditionArgsDict',
|
85
162
|
'MetastoreFederationIamMemberConditionArgs',
|
163
|
+
'MetastoreFederationIamMemberConditionArgsDict',
|
86
164
|
'MetastoreServiceEncryptionConfigArgs',
|
165
|
+
'MetastoreServiceEncryptionConfigArgsDict',
|
87
166
|
'MetastoreServiceHiveMetastoreConfigArgs',
|
167
|
+
'MetastoreServiceHiveMetastoreConfigArgsDict',
|
88
168
|
'MetastoreServiceHiveMetastoreConfigAuxiliaryVersionArgs',
|
169
|
+
'MetastoreServiceHiveMetastoreConfigAuxiliaryVersionArgsDict',
|
89
170
|
'MetastoreServiceHiveMetastoreConfigKerberosConfigArgs',
|
171
|
+
'MetastoreServiceHiveMetastoreConfigKerberosConfigArgsDict',
|
90
172
|
'MetastoreServiceHiveMetastoreConfigKerberosConfigKeytabArgs',
|
173
|
+
'MetastoreServiceHiveMetastoreConfigKerberosConfigKeytabArgsDict',
|
91
174
|
'MetastoreServiceIamBindingConditionArgs',
|
175
|
+
'MetastoreServiceIamBindingConditionArgsDict',
|
92
176
|
'MetastoreServiceIamMemberConditionArgs',
|
177
|
+
'MetastoreServiceIamMemberConditionArgsDict',
|
93
178
|
'MetastoreServiceMaintenanceWindowArgs',
|
179
|
+
'MetastoreServiceMaintenanceWindowArgsDict',
|
94
180
|
'MetastoreServiceMetadataIntegrationArgs',
|
181
|
+
'MetastoreServiceMetadataIntegrationArgsDict',
|
95
182
|
'MetastoreServiceMetadataIntegrationDataCatalogConfigArgs',
|
183
|
+
'MetastoreServiceMetadataIntegrationDataCatalogConfigArgsDict',
|
96
184
|
'MetastoreServiceNetworkConfigArgs',
|
185
|
+
'MetastoreServiceNetworkConfigArgsDict',
|
97
186
|
'MetastoreServiceNetworkConfigConsumerArgs',
|
187
|
+
'MetastoreServiceNetworkConfigConsumerArgsDict',
|
98
188
|
'MetastoreServiceScalingConfigArgs',
|
189
|
+
'MetastoreServiceScalingConfigArgsDict',
|
99
190
|
'MetastoreServiceScalingConfigAutoscalingConfigArgs',
|
191
|
+
'MetastoreServiceScalingConfigAutoscalingConfigArgsDict',
|
100
192
|
'MetastoreServiceScalingConfigAutoscalingConfigLimitConfigArgs',
|
193
|
+
'MetastoreServiceScalingConfigAutoscalingConfigLimitConfigArgsDict',
|
101
194
|
'MetastoreServiceScheduledBackupArgs',
|
195
|
+
'MetastoreServiceScheduledBackupArgsDict',
|
102
196
|
'MetastoreServiceTelemetryConfigArgs',
|
197
|
+
'MetastoreServiceTelemetryConfigArgsDict',
|
103
198
|
'WorkflowTemplateJobArgs',
|
199
|
+
'WorkflowTemplateJobArgsDict',
|
104
200
|
'WorkflowTemplateJobHadoopJobArgs',
|
201
|
+
'WorkflowTemplateJobHadoopJobArgsDict',
|
105
202
|
'WorkflowTemplateJobHadoopJobLoggingConfigArgs',
|
203
|
+
'WorkflowTemplateJobHadoopJobLoggingConfigArgsDict',
|
106
204
|
'WorkflowTemplateJobHiveJobArgs',
|
205
|
+
'WorkflowTemplateJobHiveJobArgsDict',
|
107
206
|
'WorkflowTemplateJobHiveJobQueryListArgs',
|
207
|
+
'WorkflowTemplateJobHiveJobQueryListArgsDict',
|
108
208
|
'WorkflowTemplateJobPigJobArgs',
|
209
|
+
'WorkflowTemplateJobPigJobArgsDict',
|
109
210
|
'WorkflowTemplateJobPigJobLoggingConfigArgs',
|
211
|
+
'WorkflowTemplateJobPigJobLoggingConfigArgsDict',
|
110
212
|
'WorkflowTemplateJobPigJobQueryListArgs',
|
213
|
+
'WorkflowTemplateJobPigJobQueryListArgsDict',
|
111
214
|
'WorkflowTemplateJobPrestoJobArgs',
|
215
|
+
'WorkflowTemplateJobPrestoJobArgsDict',
|
112
216
|
'WorkflowTemplateJobPrestoJobLoggingConfigArgs',
|
217
|
+
'WorkflowTemplateJobPrestoJobLoggingConfigArgsDict',
|
113
218
|
'WorkflowTemplateJobPrestoJobQueryListArgs',
|
219
|
+
'WorkflowTemplateJobPrestoJobQueryListArgsDict',
|
114
220
|
'WorkflowTemplateJobPysparkJobArgs',
|
221
|
+
'WorkflowTemplateJobPysparkJobArgsDict',
|
115
222
|
'WorkflowTemplateJobPysparkJobLoggingConfigArgs',
|
223
|
+
'WorkflowTemplateJobPysparkJobLoggingConfigArgsDict',
|
116
224
|
'WorkflowTemplateJobSchedulingArgs',
|
225
|
+
'WorkflowTemplateJobSchedulingArgsDict',
|
117
226
|
'WorkflowTemplateJobSparkJobArgs',
|
227
|
+
'WorkflowTemplateJobSparkJobArgsDict',
|
118
228
|
'WorkflowTemplateJobSparkJobLoggingConfigArgs',
|
229
|
+
'WorkflowTemplateJobSparkJobLoggingConfigArgsDict',
|
119
230
|
'WorkflowTemplateJobSparkRJobArgs',
|
231
|
+
'WorkflowTemplateJobSparkRJobArgsDict',
|
120
232
|
'WorkflowTemplateJobSparkRJobLoggingConfigArgs',
|
233
|
+
'WorkflowTemplateJobSparkRJobLoggingConfigArgsDict',
|
121
234
|
'WorkflowTemplateJobSparkSqlJobArgs',
|
235
|
+
'WorkflowTemplateJobSparkSqlJobArgsDict',
|
122
236
|
'WorkflowTemplateJobSparkSqlJobLoggingConfigArgs',
|
237
|
+
'WorkflowTemplateJobSparkSqlJobLoggingConfigArgsDict',
|
123
238
|
'WorkflowTemplateJobSparkSqlJobQueryListArgs',
|
239
|
+
'WorkflowTemplateJobSparkSqlJobQueryListArgsDict',
|
124
240
|
'WorkflowTemplateParameterArgs',
|
241
|
+
'WorkflowTemplateParameterArgsDict',
|
125
242
|
'WorkflowTemplateParameterValidationArgs',
|
243
|
+
'WorkflowTemplateParameterValidationArgsDict',
|
126
244
|
'WorkflowTemplateParameterValidationRegexArgs',
|
245
|
+
'WorkflowTemplateParameterValidationRegexArgsDict',
|
127
246
|
'WorkflowTemplateParameterValidationValuesArgs',
|
247
|
+
'WorkflowTemplateParameterValidationValuesArgsDict',
|
128
248
|
'WorkflowTemplatePlacementArgs',
|
249
|
+
'WorkflowTemplatePlacementArgsDict',
|
129
250
|
'WorkflowTemplatePlacementClusterSelectorArgs',
|
251
|
+
'WorkflowTemplatePlacementClusterSelectorArgsDict',
|
130
252
|
'WorkflowTemplatePlacementManagedClusterArgs',
|
253
|
+
'WorkflowTemplatePlacementManagedClusterArgsDict',
|
131
254
|
'WorkflowTemplatePlacementManagedClusterConfigArgs',
|
255
|
+
'WorkflowTemplatePlacementManagedClusterConfigArgsDict',
|
132
256
|
'WorkflowTemplatePlacementManagedClusterConfigAutoscalingConfigArgs',
|
257
|
+
'WorkflowTemplatePlacementManagedClusterConfigAutoscalingConfigArgsDict',
|
133
258
|
'WorkflowTemplatePlacementManagedClusterConfigEncryptionConfigArgs',
|
259
|
+
'WorkflowTemplatePlacementManagedClusterConfigEncryptionConfigArgsDict',
|
134
260
|
'WorkflowTemplatePlacementManagedClusterConfigEndpointConfigArgs',
|
261
|
+
'WorkflowTemplatePlacementManagedClusterConfigEndpointConfigArgsDict',
|
135
262
|
'WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigArgs',
|
263
|
+
'WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigArgsDict',
|
136
264
|
'WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigNodeGroupAffinityArgs',
|
265
|
+
'WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigNodeGroupAffinityArgsDict',
|
137
266
|
'WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigReservationAffinityArgs',
|
267
|
+
'WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigReservationAffinityArgsDict',
|
138
268
|
'WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigShieldedInstanceConfigArgs',
|
269
|
+
'WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigShieldedInstanceConfigArgsDict',
|
139
270
|
'WorkflowTemplatePlacementManagedClusterConfigGkeClusterConfigArgs',
|
271
|
+
'WorkflowTemplatePlacementManagedClusterConfigGkeClusterConfigArgsDict',
|
140
272
|
'WorkflowTemplatePlacementManagedClusterConfigGkeClusterConfigNamespacedGkeDeploymentTargetArgs',
|
273
|
+
'WorkflowTemplatePlacementManagedClusterConfigGkeClusterConfigNamespacedGkeDeploymentTargetArgsDict',
|
141
274
|
'WorkflowTemplatePlacementManagedClusterConfigInitializationActionArgs',
|
275
|
+
'WorkflowTemplatePlacementManagedClusterConfigInitializationActionArgsDict',
|
142
276
|
'WorkflowTemplatePlacementManagedClusterConfigLifecycleConfigArgs',
|
277
|
+
'WorkflowTemplatePlacementManagedClusterConfigLifecycleConfigArgsDict',
|
143
278
|
'WorkflowTemplatePlacementManagedClusterConfigMasterConfigArgs',
|
279
|
+
'WorkflowTemplatePlacementManagedClusterConfigMasterConfigArgsDict',
|
144
280
|
'WorkflowTemplatePlacementManagedClusterConfigMasterConfigAcceleratorArgs',
|
281
|
+
'WorkflowTemplatePlacementManagedClusterConfigMasterConfigAcceleratorArgsDict',
|
145
282
|
'WorkflowTemplatePlacementManagedClusterConfigMasterConfigDiskConfigArgs',
|
283
|
+
'WorkflowTemplatePlacementManagedClusterConfigMasterConfigDiskConfigArgsDict',
|
146
284
|
'WorkflowTemplatePlacementManagedClusterConfigMasterConfigManagedGroupConfigArgs',
|
285
|
+
'WorkflowTemplatePlacementManagedClusterConfigMasterConfigManagedGroupConfigArgsDict',
|
147
286
|
'WorkflowTemplatePlacementManagedClusterConfigMetastoreConfigArgs',
|
287
|
+
'WorkflowTemplatePlacementManagedClusterConfigMetastoreConfigArgsDict',
|
148
288
|
'WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigArgs',
|
289
|
+
'WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigArgsDict',
|
149
290
|
'WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigAcceleratorArgs',
|
291
|
+
'WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigAcceleratorArgsDict',
|
150
292
|
'WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigDiskConfigArgs',
|
293
|
+
'WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigDiskConfigArgsDict',
|
151
294
|
'WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigManagedGroupConfigArgs',
|
295
|
+
'WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigManagedGroupConfigArgsDict',
|
152
296
|
'WorkflowTemplatePlacementManagedClusterConfigSecurityConfigArgs',
|
297
|
+
'WorkflowTemplatePlacementManagedClusterConfigSecurityConfigArgsDict',
|
153
298
|
'WorkflowTemplatePlacementManagedClusterConfigSecurityConfigKerberosConfigArgs',
|
299
|
+
'WorkflowTemplatePlacementManagedClusterConfigSecurityConfigKerberosConfigArgsDict',
|
154
300
|
'WorkflowTemplatePlacementManagedClusterConfigSoftwareConfigArgs',
|
301
|
+
'WorkflowTemplatePlacementManagedClusterConfigSoftwareConfigArgsDict',
|
155
302
|
'WorkflowTemplatePlacementManagedClusterConfigWorkerConfigArgs',
|
303
|
+
'WorkflowTemplatePlacementManagedClusterConfigWorkerConfigArgsDict',
|
156
304
|
'WorkflowTemplatePlacementManagedClusterConfigWorkerConfigAcceleratorArgs',
|
305
|
+
'WorkflowTemplatePlacementManagedClusterConfigWorkerConfigAcceleratorArgsDict',
|
157
306
|
'WorkflowTemplatePlacementManagedClusterConfigWorkerConfigDiskConfigArgs',
|
307
|
+
'WorkflowTemplatePlacementManagedClusterConfigWorkerConfigDiskConfigArgsDict',
|
158
308
|
'WorkflowTemplatePlacementManagedClusterConfigWorkerConfigManagedGroupConfigArgs',
|
309
|
+
'WorkflowTemplatePlacementManagedClusterConfigWorkerConfigManagedGroupConfigArgsDict',
|
159
310
|
]
|
160
311
|
|
312
|
+
MYPY = False
|
313
|
+
|
314
|
+
if not MYPY:
|
315
|
+
class AutoscalingPolicyBasicAlgorithmArgsDict(TypedDict):
|
316
|
+
yarn_config: pulumi.Input['AutoscalingPolicyBasicAlgorithmYarnConfigArgsDict']
|
317
|
+
"""
|
318
|
+
YARN autoscaling configuration.
|
319
|
+
Structure is documented below.
|
320
|
+
"""
|
321
|
+
cooldown_period: NotRequired[pulumi.Input[str]]
|
322
|
+
"""
|
323
|
+
Duration between scaling events. A scaling period starts after the
|
324
|
+
update operation from the previous event has completed.
|
325
|
+
Bounds: [2m, 1d]. Default: 2m.
|
326
|
+
"""
|
327
|
+
elif False:
|
328
|
+
AutoscalingPolicyBasicAlgorithmArgsDict: TypeAlias = Mapping[str, Any]
|
329
|
+
|
161
330
|
@pulumi.input_type
|
162
331
|
class AutoscalingPolicyBasicAlgorithmArgs:
|
163
332
|
def __init__(__self__, *,
|
@@ -202,6 +371,52 @@ class AutoscalingPolicyBasicAlgorithmArgs:
|
|
202
371
|
pulumi.set(self, "cooldown_period", value)
|
203
372
|
|
204
373
|
|
374
|
+
if not MYPY:
|
375
|
+
class AutoscalingPolicyBasicAlgorithmYarnConfigArgsDict(TypedDict):
|
376
|
+
graceful_decommission_timeout: pulumi.Input[str]
|
377
|
+
"""
|
378
|
+
Timeout for YARN graceful decommissioning of Node Managers. Specifies the
|
379
|
+
duration to wait for jobs to complete before forcefully removing workers
|
380
|
+
(and potentially interrupting jobs). Only applicable to downscaling operations.
|
381
|
+
Bounds: [0s, 1d].
|
382
|
+
"""
|
383
|
+
scale_down_factor: pulumi.Input[float]
|
384
|
+
"""
|
385
|
+
Fraction of average pending memory in the last cooldown period for which to
|
386
|
+
remove workers. A scale-down factor of 1 will result in scaling down so that there
|
387
|
+
is no available memory remaining after the update (more aggressive scaling).
|
388
|
+
A scale-down factor of 0 disables removing workers, which can be beneficial for
|
389
|
+
autoscaling a single job.
|
390
|
+
Bounds: [0.0, 1.0].
|
391
|
+
"""
|
392
|
+
scale_up_factor: pulumi.Input[float]
|
393
|
+
"""
|
394
|
+
Fraction of average pending memory in the last cooldown period for which to
|
395
|
+
add workers. A scale-up factor of 1.0 will result in scaling up so that there
|
396
|
+
is no pending memory remaining after the update (more aggressive scaling).
|
397
|
+
A scale-up factor closer to 0 will result in a smaller magnitude of scaling up
|
398
|
+
(less aggressive scaling).
|
399
|
+
Bounds: [0.0, 1.0].
|
400
|
+
"""
|
401
|
+
scale_down_min_worker_fraction: NotRequired[pulumi.Input[float]]
|
402
|
+
"""
|
403
|
+
Minimum scale-down threshold as a fraction of total cluster size before scaling occurs.
|
404
|
+
For example, in a 20-worker cluster, a threshold of 0.1 means the autoscaler must
|
405
|
+
recommend at least a 2 worker scale-down for the cluster to scale. A threshold of 0
|
406
|
+
means the autoscaler will scale down on any recommended change.
|
407
|
+
Bounds: [0.0, 1.0]. Default: 0.0.
|
408
|
+
"""
|
409
|
+
scale_up_min_worker_fraction: NotRequired[pulumi.Input[float]]
|
410
|
+
"""
|
411
|
+
Minimum scale-up threshold as a fraction of total cluster size before scaling
|
412
|
+
occurs. For example, in a 20-worker cluster, a threshold of 0.1 means the autoscaler
|
413
|
+
must recommend at least a 2-worker scale-up for the cluster to scale. A threshold of
|
414
|
+
0 means the autoscaler will scale up on any recommended change.
|
415
|
+
Bounds: [0.0, 1.0]. Default: 0.0.
|
416
|
+
"""
|
417
|
+
elif False:
|
418
|
+
AutoscalingPolicyBasicAlgorithmYarnConfigArgsDict: TypeAlias = Mapping[str, Any]
|
419
|
+
|
205
420
|
@pulumi.input_type
|
206
421
|
class AutoscalingPolicyBasicAlgorithmYarnConfigArgs:
|
207
422
|
def __init__(__self__, *,
|
@@ -328,6 +543,14 @@ class AutoscalingPolicyBasicAlgorithmYarnConfigArgs:
|
|
328
543
|
pulumi.set(self, "scale_up_min_worker_fraction", value)
|
329
544
|
|
330
545
|
|
546
|
+
if not MYPY:
|
547
|
+
class AutoscalingPolicyIamBindingConditionArgsDict(TypedDict):
|
548
|
+
expression: pulumi.Input[str]
|
549
|
+
title: pulumi.Input[str]
|
550
|
+
description: NotRequired[pulumi.Input[str]]
|
551
|
+
elif False:
|
552
|
+
AutoscalingPolicyIamBindingConditionArgsDict: TypeAlias = Mapping[str, Any]
|
553
|
+
|
331
554
|
@pulumi.input_type
|
332
555
|
class AutoscalingPolicyIamBindingConditionArgs:
|
333
556
|
def __init__(__self__, *,
|
@@ -367,6 +590,14 @@ class AutoscalingPolicyIamBindingConditionArgs:
|
|
367
590
|
pulumi.set(self, "description", value)
|
368
591
|
|
369
592
|
|
593
|
+
if not MYPY:
|
594
|
+
class AutoscalingPolicyIamMemberConditionArgsDict(TypedDict):
|
595
|
+
expression: pulumi.Input[str]
|
596
|
+
title: pulumi.Input[str]
|
597
|
+
description: NotRequired[pulumi.Input[str]]
|
598
|
+
elif False:
|
599
|
+
AutoscalingPolicyIamMemberConditionArgsDict: TypeAlias = Mapping[str, Any]
|
600
|
+
|
370
601
|
@pulumi.input_type
|
371
602
|
class AutoscalingPolicyIamMemberConditionArgs:
|
372
603
|
def __init__(__self__, *,
|
@@ -406,6 +637,36 @@ class AutoscalingPolicyIamMemberConditionArgs:
|
|
406
637
|
pulumi.set(self, "description", value)
|
407
638
|
|
408
639
|
|
640
|
+
if not MYPY:
|
641
|
+
class AutoscalingPolicySecondaryWorkerConfigArgsDict(TypedDict):
|
642
|
+
max_instances: NotRequired[pulumi.Input[int]]
|
643
|
+
"""
|
644
|
+
Maximum number of instances for this group. Note that by default, clusters will not use
|
645
|
+
secondary workers. Required for secondary workers if the minimum secondary instances is set.
|
646
|
+
Bounds: [minInstances, ). Defaults to 0.
|
647
|
+
"""
|
648
|
+
min_instances: NotRequired[pulumi.Input[int]]
|
649
|
+
"""
|
650
|
+
Minimum number of instances for this group. Bounds: [0, maxInstances]. Defaults to 0.
|
651
|
+
"""
|
652
|
+
weight: NotRequired[pulumi.Input[int]]
|
653
|
+
"""
|
654
|
+
Weight for the instance group, which is used to determine the fraction of total workers
|
655
|
+
in the cluster from this instance group. For example, if primary workers have weight 2,
|
656
|
+
and secondary workers have weight 1, the cluster will have approximately 2 primary workers
|
657
|
+
for each secondary worker.
|
658
|
+
The cluster may not reach the specified balance if constrained by min/max bounds or other
|
659
|
+
autoscaling settings. For example, if maxInstances for secondary workers is 0, then only
|
660
|
+
primary workers will be added. The cluster can also be out of balance when created.
|
661
|
+
If weight is not set on any instance group, the cluster will default to equal weight for
|
662
|
+
all groups: the cluster will attempt to maintain an equal number of workers in each group
|
663
|
+
within the configured size bounds for each group. If weight is set for one group only,
|
664
|
+
the cluster will default to zero weight on the unset group. For example if weight is set
|
665
|
+
only on primary workers, the cluster will use primary workers only and no secondary workers.
|
666
|
+
"""
|
667
|
+
elif False:
|
668
|
+
AutoscalingPolicySecondaryWorkerConfigArgsDict: TypeAlias = Mapping[str, Any]
|
669
|
+
|
409
670
|
@pulumi.input_type
|
410
671
|
class AutoscalingPolicySecondaryWorkerConfigArgs:
|
411
672
|
def __init__(__self__, *,
|
@@ -487,6 +748,34 @@ class AutoscalingPolicySecondaryWorkerConfigArgs:
|
|
487
748
|
pulumi.set(self, "weight", value)
|
488
749
|
|
489
750
|
|
751
|
+
if not MYPY:
|
752
|
+
class AutoscalingPolicyWorkerConfigArgsDict(TypedDict):
|
753
|
+
max_instances: pulumi.Input[int]
|
754
|
+
"""
|
755
|
+
Maximum number of instances for this group.
|
756
|
+
"""
|
757
|
+
min_instances: NotRequired[pulumi.Input[int]]
|
758
|
+
"""
|
759
|
+
Minimum number of instances for this group. Bounds: [2, maxInstances]. Defaults to 2.
|
760
|
+
"""
|
761
|
+
weight: NotRequired[pulumi.Input[int]]
|
762
|
+
"""
|
763
|
+
Weight for the instance group, which is used to determine the fraction of total workers
|
764
|
+
in the cluster from this instance group. For example, if primary workers have weight 2,
|
765
|
+
and secondary workers have weight 1, the cluster will have approximately 2 primary workers
|
766
|
+
for each secondary worker.
|
767
|
+
The cluster may not reach the specified balance if constrained by min/max bounds or other
|
768
|
+
autoscaling settings. For example, if maxInstances for secondary workers is 0, then only
|
769
|
+
primary workers will be added. The cluster can also be out of balance when created.
|
770
|
+
If weight is not set on any instance group, the cluster will default to equal weight for
|
771
|
+
all groups: the cluster will attempt to maintain an equal number of workers in each group
|
772
|
+
within the configured size bounds for each group. If weight is set for one group only,
|
773
|
+
the cluster will default to zero weight on the unset group. For example if weight is set
|
774
|
+
only on primary workers, the cluster will use primary workers only and no secondary workers.
|
775
|
+
"""
|
776
|
+
elif False:
|
777
|
+
AutoscalingPolicyWorkerConfigArgsDict: TypeAlias = Mapping[str, Any]
|
778
|
+
|
490
779
|
@pulumi.input_type
|
491
780
|
class AutoscalingPolicyWorkerConfigArgs:
|
492
781
|
def __init__(__self__, *,
|
@@ -563,6 +852,108 @@ class AutoscalingPolicyWorkerConfigArgs:
|
|
563
852
|
pulumi.set(self, "weight", value)
|
564
853
|
|
565
854
|
|
855
|
+
if not MYPY:
|
856
|
+
class ClusterClusterConfigArgsDict(TypedDict):
|
857
|
+
autoscaling_config: NotRequired[pulumi.Input['ClusterClusterConfigAutoscalingConfigArgsDict']]
|
858
|
+
"""
|
859
|
+
The autoscaling policy config associated with the cluster.
|
860
|
+
Note that once set, if `autoscaling_config` is the only field set in `cluster_config`, it can
|
861
|
+
only be removed by setting `policy_uri = ""`, rather than removing the whole block.
|
862
|
+
Structure defined below.
|
863
|
+
"""
|
864
|
+
auxiliary_node_groups: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupArgsDict']]]]
|
865
|
+
"""
|
866
|
+
A Dataproc NodeGroup resource is a group of Dataproc cluster nodes that execute an assigned role.
|
867
|
+
Structure defined below.
|
868
|
+
"""
|
869
|
+
bucket: NotRequired[pulumi.Input[str]]
|
870
|
+
"""
|
871
|
+
The name of the cloud storage bucket ultimately used to house the staging data
|
872
|
+
for the cluster. If `staging_bucket` is specified, it will contain this value, otherwise
|
873
|
+
it will be the auto generated name.
|
874
|
+
"""
|
875
|
+
dataproc_metric_config: NotRequired[pulumi.Input['ClusterClusterConfigDataprocMetricConfigArgsDict']]
|
876
|
+
"""
|
877
|
+
The Compute Engine accelerator (GPU) configuration for these instances. Can be specified multiple times.
|
878
|
+
Structure defined below.
|
879
|
+
"""
|
880
|
+
encryption_config: NotRequired[pulumi.Input['ClusterClusterConfigEncryptionConfigArgsDict']]
|
881
|
+
"""
|
882
|
+
The Customer managed encryption keys settings for the cluster.
|
883
|
+
Structure defined below.
|
884
|
+
"""
|
885
|
+
endpoint_config: NotRequired[pulumi.Input['ClusterClusterConfigEndpointConfigArgsDict']]
|
886
|
+
"""
|
887
|
+
The config settings for port access on the cluster.
|
888
|
+
Structure defined below.
|
889
|
+
"""
|
890
|
+
gce_cluster_config: NotRequired[pulumi.Input['ClusterClusterConfigGceClusterConfigArgsDict']]
|
891
|
+
"""
|
892
|
+
Common config settings for resources of Google Compute Engine cluster
|
893
|
+
instances, applicable to all instances in the cluster. Structure defined below.
|
894
|
+
"""
|
895
|
+
initialization_actions: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigInitializationActionArgsDict']]]]
|
896
|
+
"""
|
897
|
+
Commands to execute on each node after config is completed.
|
898
|
+
You can specify multiple versions of these. Structure defined below.
|
899
|
+
"""
|
900
|
+
lifecycle_config: NotRequired[pulumi.Input['ClusterClusterConfigLifecycleConfigArgsDict']]
|
901
|
+
"""
|
902
|
+
The settings for auto deletion cluster schedule.
|
903
|
+
Structure defined below.
|
904
|
+
"""
|
905
|
+
master_config: NotRequired[pulumi.Input['ClusterClusterConfigMasterConfigArgsDict']]
|
906
|
+
"""
|
907
|
+
The Google Compute Engine config settings for the master instances
|
908
|
+
in a cluster. Structure defined below.
|
909
|
+
"""
|
910
|
+
metastore_config: NotRequired[pulumi.Input['ClusterClusterConfigMetastoreConfigArgsDict']]
|
911
|
+
"""
|
912
|
+
The config setting for metastore service with the cluster.
|
913
|
+
Structure defined below.
|
914
|
+
- - -
|
915
|
+
"""
|
916
|
+
preemptible_worker_config: NotRequired[pulumi.Input['ClusterClusterConfigPreemptibleWorkerConfigArgsDict']]
|
917
|
+
"""
|
918
|
+
The Google Compute Engine config settings for the additional
|
919
|
+
instances in a cluster. Structure defined below.
|
920
|
+
* **NOTE** : `preemptible_worker_config` is
|
921
|
+
an alias for the api's [secondaryWorkerConfig](https://cloud.google.com/dataproc/docs/reference/rest/v1/ClusterConfig#InstanceGroupConfig). The name doesn't necessarily mean it is preemptible and is named as
|
922
|
+
such for legacy/compatibility reasons.
|
923
|
+
"""
|
924
|
+
security_config: NotRequired[pulumi.Input['ClusterClusterConfigSecurityConfigArgsDict']]
|
925
|
+
"""
|
926
|
+
Security related configuration. Structure defined below.
|
927
|
+
"""
|
928
|
+
software_config: NotRequired[pulumi.Input['ClusterClusterConfigSoftwareConfigArgsDict']]
|
929
|
+
"""
|
930
|
+
The config settings for software inside the cluster.
|
931
|
+
Structure defined below.
|
932
|
+
"""
|
933
|
+
staging_bucket: NotRequired[pulumi.Input[str]]
|
934
|
+
"""
|
935
|
+
The Cloud Storage staging bucket used to stage files,
|
936
|
+
such as Hadoop jars, between client machines and the cluster.
|
937
|
+
Note: If you don't explicitly specify a `staging_bucket`
|
938
|
+
then GCP will auto create / assign one for you. However, you are not guaranteed
|
939
|
+
an auto generated bucket which is solely dedicated to your cluster; it may be shared
|
940
|
+
with other clusters in the same region/zone also choosing to use the auto generation
|
941
|
+
option.
|
942
|
+
"""
|
943
|
+
temp_bucket: NotRequired[pulumi.Input[str]]
|
944
|
+
"""
|
945
|
+
The Cloud Storage temp bucket used to store ephemeral cluster
|
946
|
+
and jobs data, such as Spark and MapReduce history files.
|
947
|
+
Note: If you don't explicitly specify a `temp_bucket` then GCP will auto create / assign one for you.
|
948
|
+
"""
|
949
|
+
worker_config: NotRequired[pulumi.Input['ClusterClusterConfigWorkerConfigArgsDict']]
|
950
|
+
"""
|
951
|
+
The Google Compute Engine config settings for the worker instances
|
952
|
+
in a cluster. Structure defined below.
|
953
|
+
"""
|
954
|
+
elif False:
|
955
|
+
ClusterClusterConfigArgsDict: TypeAlias = Mapping[str, Any]
|
956
|
+
|
566
957
|
@pulumi.input_type
|
567
958
|
class ClusterClusterConfigArgs:
|
568
959
|
def __init__(__self__, *,
|
@@ -900,6 +1291,23 @@ class ClusterClusterConfigArgs:
|
|
900
1291
|
pulumi.set(self, "worker_config", value)
|
901
1292
|
|
902
1293
|
|
1294
|
+
if not MYPY:
|
1295
|
+
class ClusterClusterConfigAutoscalingConfigArgsDict(TypedDict):
|
1296
|
+
policy_uri: pulumi.Input[str]
|
1297
|
+
"""
|
1298
|
+
The autoscaling policy used by the cluster.
|
1299
|
+
|
1300
|
+
Only resource names including projectid and location (region) are valid. Examples:
|
1301
|
+
|
1302
|
+
`https://www.googleapis.com/compute/v1/projects/[projectId]/locations/[dataproc_region]/autoscalingPolicies/[policy_id]`
|
1303
|
+
`projects/[projectId]/locations/[dataproc_region]/autoscalingPolicies/[policy_id]`
|
1304
|
+
Note that the policy must be in the same project and Cloud Dataproc region.
|
1305
|
+
|
1306
|
+
- - -
|
1307
|
+
"""
|
1308
|
+
elif False:
|
1309
|
+
ClusterClusterConfigAutoscalingConfigArgsDict: TypeAlias = Mapping[str, Any]
|
1310
|
+
|
903
1311
|
@pulumi.input_type
|
904
1312
|
class ClusterClusterConfigAutoscalingConfigArgs:
|
905
1313
|
def __init__(__self__, *,
|
@@ -938,6 +1346,19 @@ class ClusterClusterConfigAutoscalingConfigArgs:
|
|
938
1346
|
pulumi.set(self, "policy_uri", value)
|
939
1347
|
|
940
1348
|
|
1349
|
+
if not MYPY:
|
1350
|
+
class ClusterClusterConfigAuxiliaryNodeGroupArgsDict(TypedDict):
|
1351
|
+
node_groups: pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupNodeGroupArgsDict']]]
|
1352
|
+
"""
|
1353
|
+
Node group configuration.
|
1354
|
+
"""
|
1355
|
+
node_group_id: NotRequired[pulumi.Input[str]]
|
1356
|
+
"""
|
1357
|
+
A node group ID. Generated if not specified. The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). Cannot begin or end with underscore or hyphen. Must consist of from 3 to 33 characters.
|
1358
|
+
"""
|
1359
|
+
elif False:
|
1360
|
+
ClusterClusterConfigAuxiliaryNodeGroupArgsDict: TypeAlias = Mapping[str, Any]
|
1361
|
+
|
941
1362
|
@pulumi.input_type
|
942
1363
|
class ClusterClusterConfigAuxiliaryNodeGroupArgs:
|
943
1364
|
def __init__(__self__, *,
|
@@ -976,6 +1397,24 @@ class ClusterClusterConfigAuxiliaryNodeGroupArgs:
|
|
976
1397
|
pulumi.set(self, "node_group_id", value)
|
977
1398
|
|
978
1399
|
|
1400
|
+
if not MYPY:
|
1401
|
+
class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupArgsDict(TypedDict):
|
1402
|
+
roles: pulumi.Input[Sequence[pulumi.Input[str]]]
|
1403
|
+
"""
|
1404
|
+
Node group roles.
|
1405
|
+
One of `"DRIVER"`.
|
1406
|
+
"""
|
1407
|
+
name: NotRequired[pulumi.Input[str]]
|
1408
|
+
"""
|
1409
|
+
The Node group resource name.
|
1410
|
+
"""
|
1411
|
+
node_group_config: NotRequired[pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigArgsDict']]
|
1412
|
+
"""
|
1413
|
+
The node group instance group configuration.
|
1414
|
+
"""
|
1415
|
+
elif False:
|
1416
|
+
ClusterClusterConfigAuxiliaryNodeGroupNodeGroupArgsDict: TypeAlias = Mapping[str, Any]
|
1417
|
+
|
979
1418
|
@pulumi.input_type
|
980
1419
|
class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupArgs:
|
981
1420
|
def __init__(__self__, *,
|
@@ -1032,6 +1471,42 @@ class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupArgs:
|
|
1032
1471
|
pulumi.set(self, "node_group_config", value)
|
1033
1472
|
|
1034
1473
|
|
1474
|
+
if not MYPY:
|
1475
|
+
class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigArgsDict(TypedDict):
|
1476
|
+
accelerators: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigAcceleratorArgsDict']]]]
|
1477
|
+
"""
|
1478
|
+
The Compute Engine accelerator (GPU) configuration for these instances. Can be specified
|
1479
|
+
multiple times.
|
1480
|
+
"""
|
1481
|
+
disk_config: NotRequired[pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigDiskConfigArgsDict']]
|
1482
|
+
"""
|
1483
|
+
Disk Config
|
1484
|
+
"""
|
1485
|
+
instance_names: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
1486
|
+
"""
|
1487
|
+
List of auxiliary node group instance names which have been assigned to the cluster.
|
1488
|
+
"""
|
1489
|
+
machine_type: NotRequired[pulumi.Input[str]]
|
1490
|
+
"""
|
1491
|
+
The name of a Google Compute Engine machine type
|
1492
|
+
to create for the node group. If not specified, GCP will default to a predetermined
|
1493
|
+
computed value (currently `n1-standard-4`).
|
1494
|
+
"""
|
1495
|
+
min_cpu_platform: NotRequired[pulumi.Input[str]]
|
1496
|
+
"""
|
1497
|
+
The name of a minimum generation of CPU family
|
1498
|
+
for the node group. If not specified, GCP will default to a predetermined computed value
|
1499
|
+
for each zone. See [the guide](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform)
|
1500
|
+
for details about which CPU families are available (and defaulted) for each zone.
|
1501
|
+
"""
|
1502
|
+
num_instances: NotRequired[pulumi.Input[int]]
|
1503
|
+
"""
|
1504
|
+
Specifies the number of master nodes to create.
|
1505
|
+
Please set a number greater than 0. Node Group must have at least 1 instance.
|
1506
|
+
"""
|
1507
|
+
elif False:
|
1508
|
+
ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigArgsDict: TypeAlias = Mapping[str, Any]
|
1509
|
+
|
1035
1510
|
@pulumi.input_type
|
1036
1511
|
class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigArgs:
|
1037
1512
|
def __init__(__self__, *,
|
@@ -1149,6 +1624,22 @@ class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigArgs:
|
|
1149
1624
|
pulumi.set(self, "num_instances", value)
|
1150
1625
|
|
1151
1626
|
|
1627
|
+
if not MYPY:
|
1628
|
+
class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigAcceleratorArgsDict(TypedDict):
|
1629
|
+
accelerator_count: pulumi.Input[int]
|
1630
|
+
"""
|
1631
|
+
The number of the accelerator cards of this type exposed to this instance. Often restricted to one of `1`, `2`, `4`, or `8`.
|
1632
|
+
|
1633
|
+
|
1634
|
+
- - -
|
1635
|
+
"""
|
1636
|
+
accelerator_type: pulumi.Input[str]
|
1637
|
+
"""
|
1638
|
+
The short name of the accelerator type to expose to this instance. For example, `nvidia-tesla-k80`.
|
1639
|
+
"""
|
1640
|
+
elif False:
|
1641
|
+
ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigAcceleratorArgsDict: TypeAlias = Mapping[str, Any]
|
1642
|
+
|
1152
1643
|
@pulumi.input_type
|
1153
1644
|
class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigAcceleratorArgs:
|
1154
1645
|
def __init__(__self__, *,
|
@@ -1192,6 +1683,33 @@ class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigAcceleratorA
|
|
1192
1683
|
pulumi.set(self, "accelerator_type", value)
|
1193
1684
|
|
1194
1685
|
|
1686
|
+
if not MYPY:
|
1687
|
+
class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigDiskConfigArgsDict(TypedDict):
|
1688
|
+
boot_disk_size_gb: NotRequired[pulumi.Input[int]]
|
1689
|
+
"""
|
1690
|
+
Size of the primary disk attached to each node, specified
|
1691
|
+
in GB. The primary disk contains the boot volume and system libraries, and the
|
1692
|
+
smallest allowed disk size is 10GB. GCP will default to a predetermined
|
1693
|
+
computed value if not set (currently 500GB). Note: If SSDs are not
|
1694
|
+
attached, it also contains the HDFS data blocks and Hadoop working directories.
|
1695
|
+
"""
|
1696
|
+
boot_disk_type: NotRequired[pulumi.Input[str]]
|
1697
|
+
"""
|
1698
|
+
The disk type of the primary disk attached to each node.
|
1699
|
+
One of `"pd-ssd"` or `"pd-standard"`. Defaults to `"pd-standard"`.
|
1700
|
+
"""
|
1701
|
+
local_ssd_interface: NotRequired[pulumi.Input[str]]
|
1702
|
+
"""
|
1703
|
+
Interface type of local SSDs (default is "scsi"). Valid values: "scsi" (Small Computer System Interface), "nvme" (Non-Volatile Memory Express).
|
1704
|
+
"""
|
1705
|
+
num_local_ssds: NotRequired[pulumi.Input[int]]
|
1706
|
+
"""
|
1707
|
+
The amount of local SSD disks that will be attached to each master cluster node.
|
1708
|
+
Defaults to 0.
|
1709
|
+
"""
|
1710
|
+
elif False:
|
1711
|
+
ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigDiskConfigArgsDict: TypeAlias = Mapping[str, Any]
|
1712
|
+
|
1195
1713
|
@pulumi.input_type
|
1196
1714
|
class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigDiskConfigArgs:
|
1197
1715
|
def __init__(__self__, *,
|
@@ -1275,6 +1793,15 @@ class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigDiskConfigAr
|
|
1275
1793
|
pulumi.set(self, "num_local_ssds", value)
|
1276
1794
|
|
1277
1795
|
|
1796
|
+
if not MYPY:
|
1797
|
+
class ClusterClusterConfigDataprocMetricConfigArgsDict(TypedDict):
|
1798
|
+
metrics: pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigDataprocMetricConfigMetricArgsDict']]]
|
1799
|
+
"""
|
1800
|
+
Metrics sources to enable.
|
1801
|
+
"""
|
1802
|
+
elif False:
|
1803
|
+
ClusterClusterConfigDataprocMetricConfigArgsDict: TypeAlias = Mapping[str, Any]
|
1804
|
+
|
1278
1805
|
@pulumi.input_type
|
1279
1806
|
class ClusterClusterConfigDataprocMetricConfigArgs:
|
1280
1807
|
def __init__(__self__, *,
|
@@ -1297,6 +1824,21 @@ class ClusterClusterConfigDataprocMetricConfigArgs:
|
|
1297
1824
|
pulumi.set(self, "metrics", value)
|
1298
1825
|
|
1299
1826
|
|
1827
|
+
if not MYPY:
|
1828
|
+
class ClusterClusterConfigDataprocMetricConfigMetricArgsDict(TypedDict):
|
1829
|
+
metric_source: pulumi.Input[str]
|
1830
|
+
"""
|
1831
|
+
A source for the collection of Dataproc OSS metrics (see [available OSS metrics](https://cloud.google.com//dataproc/docs/guides/monitoring#available_oss_metrics)).
|
1832
|
+
"""
|
1833
|
+
metric_overrides: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
1834
|
+
"""
|
1835
|
+
One or more [available OSS metrics] (https://cloud.google.com/dataproc/docs/guides/monitoring#available_oss_metrics) to collect for the metric course.
|
1836
|
+
|
1837
|
+
- - -
|
1838
|
+
"""
|
1839
|
+
elif False:
|
1840
|
+
ClusterClusterConfigDataprocMetricConfigMetricArgsDict: TypeAlias = Mapping[str, Any]
|
1841
|
+
|
1300
1842
|
@pulumi.input_type
|
1301
1843
|
class ClusterClusterConfigDataprocMetricConfigMetricArgs:
|
1302
1844
|
def __init__(__self__, *,
|
@@ -1339,6 +1881,18 @@ class ClusterClusterConfigDataprocMetricConfigMetricArgs:
|
|
1339
1881
|
pulumi.set(self, "metric_overrides", value)
|
1340
1882
|
|
1341
1883
|
|
1884
|
+
if not MYPY:
|
1885
|
+
class ClusterClusterConfigEncryptionConfigArgsDict(TypedDict):
|
1886
|
+
kms_key_name: pulumi.Input[str]
|
1887
|
+
"""
|
1888
|
+
The Cloud KMS key name to use for PD disk encryption for
|
1889
|
+
all instances in the cluster.
|
1890
|
+
|
1891
|
+
- - -
|
1892
|
+
"""
|
1893
|
+
elif False:
|
1894
|
+
ClusterClusterConfigEncryptionConfigArgsDict: TypeAlias = Mapping[str, Any]
|
1895
|
+
|
1342
1896
|
@pulumi.input_type
|
1343
1897
|
class ClusterClusterConfigEncryptionConfigArgs:
|
1344
1898
|
def __init__(__self__, *,
|
@@ -1367,6 +1921,21 @@ class ClusterClusterConfigEncryptionConfigArgs:
|
|
1367
1921
|
pulumi.set(self, "kms_key_name", value)
|
1368
1922
|
|
1369
1923
|
|
1924
|
+
if not MYPY:
|
1925
|
+
class ClusterClusterConfigEndpointConfigArgsDict(TypedDict):
|
1926
|
+
enable_http_port_access: pulumi.Input[bool]
|
1927
|
+
"""
|
1928
|
+
The flag to enable http access to specific ports
|
1929
|
+
on the cluster from external sources (aka Component Gateway). Defaults to false.
|
1930
|
+
"""
|
1931
|
+
http_ports: NotRequired[pulumi.Input[Mapping[str, Any]]]
|
1932
|
+
"""
|
1933
|
+
The map of port descriptions to URLs. Will only be populated if
|
1934
|
+
`enable_http_port_access` is true.
|
1935
|
+
"""
|
1936
|
+
elif False:
|
1937
|
+
ClusterClusterConfigEndpointConfigArgsDict: TypeAlias = Mapping[str, Any]
|
1938
|
+
|
1370
1939
|
@pulumi.input_type
|
1371
1940
|
class ClusterClusterConfigEndpointConfigArgs:
|
1372
1941
|
def __init__(__self__, *,
|
@@ -1409,6 +1978,77 @@ class ClusterClusterConfigEndpointConfigArgs:
|
|
1409
1978
|
pulumi.set(self, "http_ports", value)
|
1410
1979
|
|
1411
1980
|
|
1981
|
+
if not MYPY:
|
1982
|
+
class ClusterClusterConfigGceClusterConfigArgsDict(TypedDict):
|
1983
|
+
internal_ip_only: NotRequired[pulumi.Input[bool]]
|
1984
|
+
"""
|
1985
|
+
By default, clusters are not restricted to internal IP addresses,
|
1986
|
+
and will have ephemeral external IP addresses assigned to each instance. If set to true, all
|
1987
|
+
instances in the cluster will only have internal IP addresses. Note: Private Google Access
|
1988
|
+
(also known as `privateIpGoogleAccess`) must be enabled on the subnetwork that the cluster
|
1989
|
+
will be launched in.
|
1990
|
+
"""
|
1991
|
+
metadata: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
1992
|
+
"""
|
1993
|
+
A map of the Compute Engine metadata entries to add to all instances
|
1994
|
+
(see [Project and instance metadata](https://cloud.google.com/compute/docs/storing-retrieving-metadata#project_and_instance_metadata)).
|
1995
|
+
"""
|
1996
|
+
network: NotRequired[pulumi.Input[str]]
|
1997
|
+
"""
|
1998
|
+
The name or self_link of the Google Compute Engine
|
1999
|
+
network to the cluster will be part of. Conflicts with `subnetwork`.
|
2000
|
+
If neither is specified, this defaults to the "default" network.
|
2001
|
+
"""
|
2002
|
+
node_group_affinity: NotRequired[pulumi.Input['ClusterClusterConfigGceClusterConfigNodeGroupAffinityArgsDict']]
|
2003
|
+
"""
|
2004
|
+
Node Group Affinity for sole-tenant clusters.
|
2005
|
+
"""
|
2006
|
+
reservation_affinity: NotRequired[pulumi.Input['ClusterClusterConfigGceClusterConfigReservationAffinityArgsDict']]
|
2007
|
+
"""
|
2008
|
+
Reservation Affinity for consuming zonal reservation.
|
2009
|
+
"""
|
2010
|
+
service_account: NotRequired[pulumi.Input[str]]
|
2011
|
+
"""
|
2012
|
+
The service account to be used by the Node VMs.
|
2013
|
+
If not specified, the "default" service account is used.
|
2014
|
+
"""
|
2015
|
+
service_account_scopes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
2016
|
+
"""
|
2017
|
+
The set of Google API scopes
|
2018
|
+
to be made available on all of the node VMs under the `service_account`
|
2019
|
+
specified. Both OAuth2 URLs and gcloud
|
2020
|
+
short names are supported. To allow full access to all Cloud APIs, use the
|
2021
|
+
`cloud-platform` scope. See a complete list of scopes [here](https://cloud.google.com/sdk/gcloud/reference/alpha/compute/instances/set-scopes#--scopes).
|
2022
|
+
"""
|
2023
|
+
shielded_instance_config: NotRequired[pulumi.Input['ClusterClusterConfigGceClusterConfigShieldedInstanceConfigArgsDict']]
|
2024
|
+
"""
|
2025
|
+
Shielded Instance Config for clusters using [Compute Engine Shielded VMs](https://cloud.google.com/security/shielded-cloud/shielded-vm).
|
2026
|
+
|
2027
|
+
- - -
|
2028
|
+
"""
|
2029
|
+
subnetwork: NotRequired[pulumi.Input[str]]
|
2030
|
+
"""
|
2031
|
+
The name or self_link of the Google Compute Engine
|
2032
|
+
subnetwork the cluster will be part of. Conflicts with `network`.
|
2033
|
+
"""
|
2034
|
+
tags: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
2035
|
+
"""
|
2036
|
+
The list of instance tags applied to instances in the cluster.
|
2037
|
+
Tags are used to identify valid sources or targets for network firewalls.
|
2038
|
+
"""
|
2039
|
+
zone: NotRequired[pulumi.Input[str]]
|
2040
|
+
"""
|
2041
|
+
The GCP zone where your data is stored and used (i.e. where
|
2042
|
+
the master and the worker nodes will be created in). If `region` is set to 'global' (default)
|
2043
|
+
then `zone` is mandatory, otherwise GCP is able to make use of [Auto Zone Placement](https://cloud.google.com/dataproc/docs/concepts/auto-zone)
|
2044
|
+
to determine this automatically for you.
|
2045
|
+
Note: This setting additionally determines and restricts
|
2046
|
+
which computing resources are available for use with other configs such as
|
2047
|
+
`cluster_config.master_config.machine_type` and `cluster_config.worker_config.machine_type`.
|
2048
|
+
"""
|
2049
|
+
elif False:
|
2050
|
+
ClusterClusterConfigGceClusterConfigArgsDict: TypeAlias = Mapping[str, Any]
|
2051
|
+
|
1412
2052
|
@pulumi.input_type
|
1413
2053
|
class ClusterClusterConfigGceClusterConfigArgs:
|
1414
2054
|
def __init__(__self__, *,
|
@@ -1636,6 +2276,15 @@ class ClusterClusterConfigGceClusterConfigArgs:
|
|
1636
2276
|
pulumi.set(self, "zone", value)
|
1637
2277
|
|
1638
2278
|
|
2279
|
+
if not MYPY:
|
2280
|
+
class ClusterClusterConfigGceClusterConfigNodeGroupAffinityArgsDict(TypedDict):
|
2281
|
+
node_group_uri: pulumi.Input[str]
|
2282
|
+
"""
|
2283
|
+
The URI of a sole-tenant node group resource that the cluster will be created on.
|
2284
|
+
"""
|
2285
|
+
elif False:
|
2286
|
+
ClusterClusterConfigGceClusterConfigNodeGroupAffinityArgsDict: TypeAlias = Mapping[str, Any]
|
2287
|
+
|
1639
2288
|
@pulumi.input_type
|
1640
2289
|
class ClusterClusterConfigGceClusterConfigNodeGroupAffinityArgs:
|
1641
2290
|
def __init__(__self__, *,
|
@@ -1658,6 +2307,23 @@ class ClusterClusterConfigGceClusterConfigNodeGroupAffinityArgs:
|
|
1658
2307
|
pulumi.set(self, "node_group_uri", value)
|
1659
2308
|
|
1660
2309
|
|
2310
|
+
if not MYPY:
|
2311
|
+
class ClusterClusterConfigGceClusterConfigReservationAffinityArgsDict(TypedDict):
|
2312
|
+
consume_reservation_type: NotRequired[pulumi.Input[str]]
|
2313
|
+
"""
|
2314
|
+
Corresponds to the type of reservation consumption.
|
2315
|
+
"""
|
2316
|
+
key: NotRequired[pulumi.Input[str]]
|
2317
|
+
"""
|
2318
|
+
Corresponds to the label key of reservation resource.
|
2319
|
+
"""
|
2320
|
+
values: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
2321
|
+
"""
|
2322
|
+
Corresponds to the label values of reservation resource.
|
2323
|
+
"""
|
2324
|
+
elif False:
|
2325
|
+
ClusterClusterConfigGceClusterConfigReservationAffinityArgsDict: TypeAlias = Mapping[str, Any]
|
2326
|
+
|
1661
2327
|
@pulumi.input_type
|
1662
2328
|
class ClusterClusterConfigGceClusterConfigReservationAffinityArgs:
|
1663
2329
|
def __init__(__self__, *,
|
@@ -1713,6 +2379,25 @@ class ClusterClusterConfigGceClusterConfigReservationAffinityArgs:
|
|
1713
2379
|
pulumi.set(self, "values", value)
|
1714
2380
|
|
1715
2381
|
|
2382
|
+
if not MYPY:
|
2383
|
+
class ClusterClusterConfigGceClusterConfigShieldedInstanceConfigArgsDict(TypedDict):
|
2384
|
+
enable_integrity_monitoring: NotRequired[pulumi.Input[bool]]
|
2385
|
+
"""
|
2386
|
+
Defines whether instances have integrity monitoring enabled.
|
2387
|
+
|
2388
|
+
- - -
|
2389
|
+
"""
|
2390
|
+
enable_secure_boot: NotRequired[pulumi.Input[bool]]
|
2391
|
+
"""
|
2392
|
+
Defines whether instances have Secure Boot enabled.
|
2393
|
+
"""
|
2394
|
+
enable_vtpm: NotRequired[pulumi.Input[bool]]
|
2395
|
+
"""
|
2396
|
+
Defines whether instances have the [vTPM](https://cloud.google.com/security/shielded-cloud/shielded-vm#vtpm) enabled.
|
2397
|
+
"""
|
2398
|
+
elif False:
|
2399
|
+
ClusterClusterConfigGceClusterConfigShieldedInstanceConfigArgsDict: TypeAlias = Mapping[str, Any]
|
2400
|
+
|
1716
2401
|
@pulumi.input_type
|
1717
2402
|
class ClusterClusterConfigGceClusterConfigShieldedInstanceConfigArgs:
|
1718
2403
|
def __init__(__self__, *,
|
@@ -1772,6 +2457,24 @@ class ClusterClusterConfigGceClusterConfigShieldedInstanceConfigArgs:
|
|
1772
2457
|
pulumi.set(self, "enable_vtpm", value)
|
1773
2458
|
|
1774
2459
|
|
2460
|
+
if not MYPY:
|
2461
|
+
class ClusterClusterConfigInitializationActionArgsDict(TypedDict):
|
2462
|
+
script: pulumi.Input[str]
|
2463
|
+
"""
|
2464
|
+
The script to be executed during initialization of the cluster.
|
2465
|
+
The script must be a GCS file with a gs:// prefix.
|
2466
|
+
"""
|
2467
|
+
timeout_sec: NotRequired[pulumi.Input[int]]
|
2468
|
+
"""
|
2469
|
+
The maximum duration (in seconds) which `script` is
|
2470
|
+
allowed to take to execute its action. GCP will default to a predetermined
|
2471
|
+
computed value if not set (currently 300).
|
2472
|
+
|
2473
|
+
- - -
|
2474
|
+
"""
|
2475
|
+
elif False:
|
2476
|
+
ClusterClusterConfigInitializationActionArgsDict: TypeAlias = Mapping[str, Any]
|
2477
|
+
|
1775
2478
|
@pulumi.input_type
|
1776
2479
|
class ClusterClusterConfigInitializationActionArgs:
|
1777
2480
|
def __init__(__self__, *,
|
@@ -1820,6 +2523,29 @@ class ClusterClusterConfigInitializationActionArgs:
|
|
1820
2523
|
pulumi.set(self, "timeout_sec", value)
|
1821
2524
|
|
1822
2525
|
|
2526
|
+
if not MYPY:
|
2527
|
+
class ClusterClusterConfigLifecycleConfigArgsDict(TypedDict):
|
2528
|
+
auto_delete_time: NotRequired[pulumi.Input[str]]
|
2529
|
+
"""
|
2530
|
+
The time when cluster will be auto-deleted.
|
2531
|
+
A timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds.
|
2532
|
+
Example: "2014-10-02T15:01:23.045123456Z".
|
2533
|
+
|
2534
|
+
- - -
|
2535
|
+
"""
|
2536
|
+
idle_delete_ttl: NotRequired[pulumi.Input[str]]
|
2537
|
+
"""
|
2538
|
+
The duration to keep the cluster alive while idling
|
2539
|
+
(no jobs running). After this TTL, the cluster will be deleted. Valid range: [10m, 14d].
|
2540
|
+
"""
|
2541
|
+
idle_start_time: NotRequired[pulumi.Input[str]]
|
2542
|
+
"""
|
2543
|
+
Time when the cluster became idle
|
2544
|
+
(most recent job finished) and became eligible for deletion due to idleness.
|
2545
|
+
"""
|
2546
|
+
elif False:
|
2547
|
+
ClusterClusterConfigLifecycleConfigArgsDict: TypeAlias = Mapping[str, Any]
|
2548
|
+
|
1823
2549
|
@pulumi.input_type
|
1824
2550
|
class ClusterClusterConfigLifecycleConfigArgs:
|
1825
2551
|
def __init__(__self__, *,
|
@@ -1887,6 +2613,47 @@ class ClusterClusterConfigLifecycleConfigArgs:
|
|
1887
2613
|
pulumi.set(self, "idle_start_time", value)
|
1888
2614
|
|
1889
2615
|
|
2616
|
+
if not MYPY:
|
2617
|
+
class ClusterClusterConfigMasterConfigArgsDict(TypedDict):
|
2618
|
+
accelerators: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigMasterConfigAcceleratorArgsDict']]]]
|
2619
|
+
"""
|
2620
|
+
The Compute Engine accelerator (GPU) configuration for these instances. Can be specified multiple times.
|
2621
|
+
"""
|
2622
|
+
disk_config: NotRequired[pulumi.Input['ClusterClusterConfigMasterConfigDiskConfigArgsDict']]
|
2623
|
+
"""
|
2624
|
+
Disk Config
|
2625
|
+
"""
|
2626
|
+
image_uri: NotRequired[pulumi.Input[str]]
|
2627
|
+
"""
|
2628
|
+
The URI for the image to use for this worker. See [the guide](https://cloud.google.com/dataproc/docs/guides/dataproc-images)
|
2629
|
+
for more information.
|
2630
|
+
"""
|
2631
|
+
instance_names: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
2632
|
+
"""
|
2633
|
+
List of master instance names which
|
2634
|
+
have been assigned to the cluster.
|
2635
|
+
"""
|
2636
|
+
machine_type: NotRequired[pulumi.Input[str]]
|
2637
|
+
"""
|
2638
|
+
The name of a Google Compute Engine machine type
|
2639
|
+
to create for the master. If not specified, GCP will default to a predetermined
|
2640
|
+
computed value (currently `n1-standard-4`).
|
2641
|
+
"""
|
2642
|
+
min_cpu_platform: NotRequired[pulumi.Input[str]]
|
2643
|
+
"""
|
2644
|
+
The name of a minimum generation of CPU family
|
2645
|
+
for the master. If not specified, GCP will default to a predetermined computed value
|
2646
|
+
for each zone. See [the guide](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform)
|
2647
|
+
for details about which CPU families are available (and defaulted) for each zone.
|
2648
|
+
"""
|
2649
|
+
num_instances: NotRequired[pulumi.Input[int]]
|
2650
|
+
"""
|
2651
|
+
Specifies the number of master nodes to create.
|
2652
|
+
If not specified, GCP will default to a predetermined computed value (currently 1).
|
2653
|
+
"""
|
2654
|
+
elif False:
|
2655
|
+
ClusterClusterConfigMasterConfigArgsDict: TypeAlias = Mapping[str, Any]
|
2656
|
+
|
1890
2657
|
@pulumi.input_type
|
1891
2658
|
class ClusterClusterConfigMasterConfigArgs:
|
1892
2659
|
def __init__(__self__, *,
|
@@ -2022,6 +2789,25 @@ class ClusterClusterConfigMasterConfigArgs:
|
|
2022
2789
|
pulumi.set(self, "num_instances", value)
|
2023
2790
|
|
2024
2791
|
|
2792
|
+
if not MYPY:
|
2793
|
+
class ClusterClusterConfigMasterConfigAcceleratorArgsDict(TypedDict):
|
2794
|
+
accelerator_count: pulumi.Input[int]
|
2795
|
+
"""
|
2796
|
+
The number of the accelerator cards of this type exposed to this instance. Often restricted to one of `1`, `2`, `4`, or `8`.
|
2797
|
+
|
2798
|
+
> The Cloud Dataproc API can return unintuitive error messages when using accelerators; even when you have defined an accelerator, Auto Zone Placement does not exclusively select
|
2799
|
+
zones that have that accelerator available. If you get a 400 error that the accelerator can't be found, this is a likely cause. Make sure you check [accelerator availability by zone](https://cloud.google.com/compute/docs/reference/rest/v1/acceleratorTypes/list)
|
2800
|
+
if you are trying to use accelerators in a given zone.
|
2801
|
+
|
2802
|
+
- - -
|
2803
|
+
"""
|
2804
|
+
accelerator_type: pulumi.Input[str]
|
2805
|
+
"""
|
2806
|
+
The short name of the accelerator type to expose to this instance. For example, `nvidia-tesla-k80`.
|
2807
|
+
"""
|
2808
|
+
elif False:
|
2809
|
+
ClusterClusterConfigMasterConfigAcceleratorArgsDict: TypeAlias = Mapping[str, Any]
|
2810
|
+
|
2025
2811
|
@pulumi.input_type
|
2026
2812
|
class ClusterClusterConfigMasterConfigAcceleratorArgs:
|
2027
2813
|
def __init__(__self__, *,
|
@@ -2064,12 +2850,42 @@ class ClusterClusterConfigMasterConfigAcceleratorArgs:
|
|
2064
2850
|
"""
|
2065
2851
|
The short name of the accelerator type to expose to this instance. For example, `nvidia-tesla-k80`.
|
2066
2852
|
"""
|
2067
|
-
return pulumi.get(self, "accelerator_type")
|
2068
|
-
|
2069
|
-
@accelerator_type.setter
|
2070
|
-
def accelerator_type(self, value: pulumi.Input[str]):
|
2071
|
-
pulumi.set(self, "accelerator_type", value)
|
2072
|
-
|
2853
|
+
return pulumi.get(self, "accelerator_type")
|
2854
|
+
|
2855
|
+
@accelerator_type.setter
|
2856
|
+
def accelerator_type(self, value: pulumi.Input[str]):
|
2857
|
+
pulumi.set(self, "accelerator_type", value)
|
2858
|
+
|
2859
|
+
|
2860
|
+
if not MYPY:
|
2861
|
+
class ClusterClusterConfigMasterConfigDiskConfigArgsDict(TypedDict):
|
2862
|
+
boot_disk_size_gb: NotRequired[pulumi.Input[int]]
|
2863
|
+
"""
|
2864
|
+
Size of the primary disk attached to each node, specified
|
2865
|
+
in GB. The primary disk contains the boot volume and system libraries, and the
|
2866
|
+
smallest allowed disk size is 10GB. GCP will default to a predetermined
|
2867
|
+
computed value if not set (currently 500GB). Note: If SSDs are not
|
2868
|
+
attached, it also contains the HDFS data blocks and Hadoop working directories.
|
2869
|
+
"""
|
2870
|
+
boot_disk_type: NotRequired[pulumi.Input[str]]
|
2871
|
+
"""
|
2872
|
+
The disk type of the primary disk attached to each node.
|
2873
|
+
One of `"pd-ssd"` or `"pd-standard"`. Defaults to `"pd-standard"`.
|
2874
|
+
"""
|
2875
|
+
local_ssd_interface: NotRequired[pulumi.Input[str]]
|
2876
|
+
"""
|
2877
|
+
Optional. Interface type of local SSDs (default is "scsi").
|
2878
|
+
Valid values: "scsi" (Small Computer System Interface), "nvme" (Non-Volatile
|
2879
|
+
Memory Express). See
|
2880
|
+
[local SSD performance](https://cloud.google.com/compute/docs/disks/local-ssd#performance).
|
2881
|
+
"""
|
2882
|
+
num_local_ssds: NotRequired[pulumi.Input[int]]
|
2883
|
+
"""
|
2884
|
+
The amount of local SSD disks that will be
|
2885
|
+
attached to each master cluster node. Defaults to 0.
|
2886
|
+
"""
|
2887
|
+
elif False:
|
2888
|
+
ClusterClusterConfigMasterConfigDiskConfigArgsDict: TypeAlias = Mapping[str, Any]
|
2073
2889
|
|
2074
2890
|
@pulumi.input_type
|
2075
2891
|
class ClusterClusterConfigMasterConfigDiskConfigArgs:
|
@@ -2160,6 +2976,19 @@ class ClusterClusterConfigMasterConfigDiskConfigArgs:
|
|
2160
2976
|
pulumi.set(self, "num_local_ssds", value)
|
2161
2977
|
|
2162
2978
|
|
2979
|
+
if not MYPY:
|
2980
|
+
class ClusterClusterConfigMetastoreConfigArgsDict(TypedDict):
|
2981
|
+
dataproc_metastore_service: pulumi.Input[str]
|
2982
|
+
"""
|
2983
|
+
Resource name of an existing Dataproc Metastore service.
|
2984
|
+
|
2985
|
+
Only resource names including projectid and location (region) are valid. Examples:
|
2986
|
+
|
2987
|
+
`projects/[projectId]/locations/[dataproc_region]/services/[service-name]`
|
2988
|
+
"""
|
2989
|
+
elif False:
|
2990
|
+
ClusterClusterConfigMetastoreConfigArgsDict: TypeAlias = Mapping[str, Any]
|
2991
|
+
|
2163
2992
|
@pulumi.input_type
|
2164
2993
|
class ClusterClusterConfigMetastoreConfigArgs:
|
2165
2994
|
def __init__(__self__, *,
|
@@ -2190,6 +3019,37 @@ class ClusterClusterConfigMetastoreConfigArgs:
|
|
2190
3019
|
pulumi.set(self, "dataproc_metastore_service", value)
|
2191
3020
|
|
2192
3021
|
|
3022
|
+
if not MYPY:
|
3023
|
+
class ClusterClusterConfigPreemptibleWorkerConfigArgsDict(TypedDict):
|
3024
|
+
disk_config: NotRequired[pulumi.Input['ClusterClusterConfigPreemptibleWorkerConfigDiskConfigArgsDict']]
|
3025
|
+
"""
|
3026
|
+
Disk Config
|
3027
|
+
"""
|
3028
|
+
instance_flexibility_policy: NotRequired[pulumi.Input['ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyArgsDict']]
|
3029
|
+
"""
|
3030
|
+
Instance flexibility Policy allowing a mixture of VM shapes and provisioning models.
|
3031
|
+
"""
|
3032
|
+
instance_names: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
3033
|
+
"""
|
3034
|
+
List of preemptible instance names which have been assigned
|
3035
|
+
to the cluster.
|
3036
|
+
"""
|
3037
|
+
num_instances: NotRequired[pulumi.Input[int]]
|
3038
|
+
"""
|
3039
|
+
Specifies the number of preemptible nodes to create.
|
3040
|
+
Defaults to 0.
|
3041
|
+
"""
|
3042
|
+
preemptibility: NotRequired[pulumi.Input[str]]
|
3043
|
+
"""
|
3044
|
+
Specifies the preemptibility of the secondary workers. The default value is `PREEMPTIBLE`
|
3045
|
+
Accepted values are:
|
3046
|
+
* PREEMPTIBILITY_UNSPECIFIED
|
3047
|
+
* NON_PREEMPTIBLE
|
3048
|
+
* PREEMPTIBLE
|
3049
|
+
"""
|
3050
|
+
elif False:
|
3051
|
+
ClusterClusterConfigPreemptibleWorkerConfigArgsDict: TypeAlias = Mapping[str, Any]
|
3052
|
+
|
2193
3053
|
@pulumi.input_type
|
2194
3054
|
class ClusterClusterConfigPreemptibleWorkerConfigArgs:
|
2195
3055
|
def __init__(__self__, *,
|
@@ -2289,6 +3149,32 @@ class ClusterClusterConfigPreemptibleWorkerConfigArgs:
|
|
2289
3149
|
pulumi.set(self, "preemptibility", value)
|
2290
3150
|
|
2291
3151
|
|
3152
|
+
if not MYPY:
|
3153
|
+
class ClusterClusterConfigPreemptibleWorkerConfigDiskConfigArgsDict(TypedDict):
|
3154
|
+
boot_disk_size_gb: NotRequired[pulumi.Input[int]]
|
3155
|
+
"""
|
3156
|
+
Size of the primary disk attached to each preemptible worker node, specified
|
3157
|
+
in GB. The smallest allowed disk size is 10GB. GCP will default to a predetermined
|
3158
|
+
computed value if not set (currently 500GB). Note: If SSDs are not
|
3159
|
+
attached, it also contains the HDFS data blocks and Hadoop working directories.
|
3160
|
+
"""
|
3161
|
+
boot_disk_type: NotRequired[pulumi.Input[str]]
|
3162
|
+
"""
|
3163
|
+
The disk type of the primary disk attached to each preemptible worker node.
|
3164
|
+
One of `"pd-ssd"` or `"pd-standard"`. Defaults to `"pd-standard"`.
|
3165
|
+
"""
|
3166
|
+
local_ssd_interface: NotRequired[pulumi.Input[str]]
|
3167
|
+
"""
|
3168
|
+
Interface type of local SSDs (default is "scsi"). Valid values: "scsi" (Small Computer System Interface), "nvme" (Non-Volatile Memory Express).
|
3169
|
+
"""
|
3170
|
+
num_local_ssds: NotRequired[pulumi.Input[int]]
|
3171
|
+
"""
|
3172
|
+
The amount of local SSD disks that will be
|
3173
|
+
attached to each preemptible worker node. Defaults to 0.
|
3174
|
+
"""
|
3175
|
+
elif False:
|
3176
|
+
ClusterClusterConfigPreemptibleWorkerConfigDiskConfigArgsDict: TypeAlias = Mapping[str, Any]
|
3177
|
+
|
2292
3178
|
@pulumi.input_type
|
2293
3179
|
class ClusterClusterConfigPreemptibleWorkerConfigDiskConfigArgs:
|
2294
3180
|
def __init__(__self__, *,
|
@@ -2370,6 +3256,19 @@ class ClusterClusterConfigPreemptibleWorkerConfigDiskConfigArgs:
|
|
2370
3256
|
pulumi.set(self, "num_local_ssds", value)
|
2371
3257
|
|
2372
3258
|
|
3259
|
+
if not MYPY:
|
3260
|
+
class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyArgsDict(TypedDict):
|
3261
|
+
instance_selection_lists: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstanceSelectionListArgsDict']]]]
|
3262
|
+
"""
|
3263
|
+
List of instance selection options that the group will use when creating new VMs.
|
3264
|
+
"""
|
3265
|
+
instance_selection_results: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstanceSelectionResultArgsDict']]]]
|
3266
|
+
"""
|
3267
|
+
A list of instance selection results in the group.
|
3268
|
+
"""
|
3269
|
+
elif False:
|
3270
|
+
ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyArgsDict: TypeAlias = Mapping[str, Any]
|
3271
|
+
|
2373
3272
|
@pulumi.input_type
|
2374
3273
|
class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyArgs:
|
2375
3274
|
def __init__(__self__, *,
|
@@ -2409,6 +3308,21 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyArgs:
|
|
2409
3308
|
pulumi.set(self, "instance_selection_results", value)
|
2410
3309
|
|
2411
3310
|
|
3311
|
+
if not MYPY:
|
3312
|
+
class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstanceSelectionListArgsDict(TypedDict):
|
3313
|
+
machine_types: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
3314
|
+
"""
|
3315
|
+
Full machine-type names, e.g. `"n1-standard-16"`.
|
3316
|
+
"""
|
3317
|
+
rank: NotRequired[pulumi.Input[int]]
|
3318
|
+
"""
|
3319
|
+
Preference of this instance selection. A lower number means higher preference. Dataproc will first try to create a VM based on the machine-type with priority rank and fallback to next rank based on availability. Machine types and instance selections with the same priority have the same preference.
|
3320
|
+
|
3321
|
+
- - -
|
3322
|
+
"""
|
3323
|
+
elif False:
|
3324
|
+
ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstanceSelectionListArgsDict: TypeAlias = Mapping[str, Any]
|
3325
|
+
|
2412
3326
|
@pulumi.input_type
|
2413
3327
|
class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstanceSelectionListArgs:
|
2414
3328
|
def __init__(__self__, *,
|
@@ -2452,6 +3366,19 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstan
|
|
2452
3366
|
pulumi.set(self, "rank", value)
|
2453
3367
|
|
2454
3368
|
|
3369
|
+
if not MYPY:
|
3370
|
+
class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstanceSelectionResultArgsDict(TypedDict):
|
3371
|
+
machine_type: NotRequired[pulumi.Input[str]]
|
3372
|
+
"""
|
3373
|
+
Full machine-type names, e.g. "n1-standard-16".
|
3374
|
+
"""
|
3375
|
+
vm_count: NotRequired[pulumi.Input[int]]
|
3376
|
+
"""
|
3377
|
+
Number of VM provisioned with the machine_type.
|
3378
|
+
"""
|
3379
|
+
elif False:
|
3380
|
+
ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstanceSelectionResultArgsDict: TypeAlias = Mapping[str, Any]
|
3381
|
+
|
2455
3382
|
@pulumi.input_type
|
2456
3383
|
class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstanceSelectionResultArgs:
|
2457
3384
|
def __init__(__self__, *,
|
@@ -2491,6 +3418,15 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstan
|
|
2491
3418
|
pulumi.set(self, "vm_count", value)
|
2492
3419
|
|
2493
3420
|
|
3421
|
+
if not MYPY:
|
3422
|
+
class ClusterClusterConfigSecurityConfigArgsDict(TypedDict):
|
3423
|
+
kerberos_config: pulumi.Input['ClusterClusterConfigSecurityConfigKerberosConfigArgsDict']
|
3424
|
+
"""
|
3425
|
+
Kerberos Configuration
|
3426
|
+
"""
|
3427
|
+
elif False:
|
3428
|
+
ClusterClusterConfigSecurityConfigArgsDict: TypeAlias = Mapping[str, Any]
|
3429
|
+
|
2494
3430
|
@pulumi.input_type
|
2495
3431
|
class ClusterClusterConfigSecurityConfigArgs:
|
2496
3432
|
def __init__(__self__, *,
|
@@ -2513,6 +3449,89 @@ class ClusterClusterConfigSecurityConfigArgs:
|
|
2513
3449
|
pulumi.set(self, "kerberos_config", value)
|
2514
3450
|
|
2515
3451
|
|
3452
|
+
if not MYPY:
|
3453
|
+
class ClusterClusterConfigSecurityConfigKerberosConfigArgsDict(TypedDict):
|
3454
|
+
kms_key_uri: pulumi.Input[str]
|
3455
|
+
"""
|
3456
|
+
The URI of the KMS key used to encrypt various sensitive files.
|
3457
|
+
"""
|
3458
|
+
root_principal_password_uri: pulumi.Input[str]
|
3459
|
+
"""
|
3460
|
+
The Cloud Storage URI of a KMS encrypted file
|
3461
|
+
containing the root principal password.
|
3462
|
+
"""
|
3463
|
+
cross_realm_trust_admin_server: NotRequired[pulumi.Input[str]]
|
3464
|
+
"""
|
3465
|
+
The admin server (IP or hostname) for the
|
3466
|
+
remote trusted realm in a cross realm trust relationship.
|
3467
|
+
"""
|
3468
|
+
cross_realm_trust_kdc: NotRequired[pulumi.Input[str]]
|
3469
|
+
"""
|
3470
|
+
The KDC (IP or hostname) for the
|
3471
|
+
remote trusted realm in a cross realm trust relationship.
|
3472
|
+
"""
|
3473
|
+
cross_realm_trust_realm: NotRequired[pulumi.Input[str]]
|
3474
|
+
"""
|
3475
|
+
The remote realm the Dataproc on-cluster KDC will
|
3476
|
+
trust, should the user enable cross realm trust.
|
3477
|
+
"""
|
3478
|
+
cross_realm_trust_shared_password_uri: NotRequired[pulumi.Input[str]]
|
3479
|
+
"""
|
3480
|
+
The Cloud Storage URI of a KMS
|
3481
|
+
encrypted file containing the shared password between the on-cluster Kerberos realm
|
3482
|
+
and the remote trusted realm, in a cross realm trust relationship.
|
3483
|
+
"""
|
3484
|
+
enable_kerberos: NotRequired[pulumi.Input[bool]]
|
3485
|
+
"""
|
3486
|
+
Flag to indicate whether to Kerberize the cluster.
|
3487
|
+
"""
|
3488
|
+
kdc_db_key_uri: NotRequired[pulumi.Input[str]]
|
3489
|
+
"""
|
3490
|
+
The Cloud Storage URI of a KMS encrypted file containing
|
3491
|
+
the master key of the KDC database.
|
3492
|
+
"""
|
3493
|
+
key_password_uri: NotRequired[pulumi.Input[str]]
|
3494
|
+
"""
|
3495
|
+
The Cloud Storage URI of a KMS encrypted file containing
|
3496
|
+
the password to the user provided key. For the self-signed certificate, this password
|
3497
|
+
is generated by Dataproc.
|
3498
|
+
"""
|
3499
|
+
keystore_password_uri: NotRequired[pulumi.Input[str]]
|
3500
|
+
"""
|
3501
|
+
The Cloud Storage URI of a KMS encrypted file containing
|
3502
|
+
the password to the user provided keystore. For the self-signed certificated, the password
|
3503
|
+
is generated by Dataproc.
|
3504
|
+
"""
|
3505
|
+
keystore_uri: NotRequired[pulumi.Input[str]]
|
3506
|
+
"""
|
3507
|
+
The Cloud Storage URI of the keystore file used for SSL encryption.
|
3508
|
+
If not provided, Dataproc will provide a self-signed certificate.
|
3509
|
+
"""
|
3510
|
+
realm: NotRequired[pulumi.Input[str]]
|
3511
|
+
"""
|
3512
|
+
The name of the on-cluster Kerberos realm. If not specified, the
|
3513
|
+
uppercased domain of hostnames will be the realm.
|
3514
|
+
"""
|
3515
|
+
tgt_lifetime_hours: NotRequired[pulumi.Input[int]]
|
3516
|
+
"""
|
3517
|
+
The lifetime of the ticket granting ticket, in hours.
|
3518
|
+
"""
|
3519
|
+
truststore_password_uri: NotRequired[pulumi.Input[str]]
|
3520
|
+
"""
|
3521
|
+
The Cloud Storage URI of a KMS encrypted file
|
3522
|
+
containing the password to the user provided truststore. For the self-signed
|
3523
|
+
certificate, this password is generated by Dataproc.
|
3524
|
+
"""
|
3525
|
+
truststore_uri: NotRequired[pulumi.Input[str]]
|
3526
|
+
"""
|
3527
|
+
The Cloud Storage URI of the truststore file used for
|
3528
|
+
SSL encryption. If not provided, Dataproc will provide a self-signed certificate.
|
3529
|
+
|
3530
|
+
- - -
|
3531
|
+
"""
|
3532
|
+
elif False:
|
3533
|
+
ClusterClusterConfigSecurityConfigKerberosConfigArgsDict: TypeAlias = Mapping[str, Any]
|
3534
|
+
|
2516
3535
|
@pulumi.input_type
|
2517
3536
|
class ClusterClusterConfigSecurityConfigKerberosConfigArgs:
|
2518
3537
|
def __init__(__self__, *,
|
@@ -2794,6 +3813,37 @@ class ClusterClusterConfigSecurityConfigKerberosConfigArgs:
|
|
2794
3813
|
pulumi.set(self, "truststore_uri", value)
|
2795
3814
|
|
2796
3815
|
|
3816
|
+
if not MYPY:
|
3817
|
+
class ClusterClusterConfigSoftwareConfigArgsDict(TypedDict):
|
3818
|
+
image_version: NotRequired[pulumi.Input[str]]
|
3819
|
+
"""
|
3820
|
+
The Cloud Dataproc image version to use
|
3821
|
+
for the cluster - this controls the sets of software versions
|
3822
|
+
installed onto the nodes when you create clusters. If not specified, defaults to the
|
3823
|
+
latest version. For a list of valid versions see
|
3824
|
+
[Cloud Dataproc versions](https://cloud.google.com/dataproc/docs/concepts/dataproc-versions)
|
3825
|
+
"""
|
3826
|
+
optional_components: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
3827
|
+
"""
|
3828
|
+
The set of optional components to activate on the cluster. See [Available Optional Components](https://cloud.google.com/dataproc/docs/concepts/components/overview#available_optional_components).
|
3829
|
+
|
3830
|
+
- - -
|
3831
|
+
"""
|
3832
|
+
override_properties: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
3833
|
+
"""
|
3834
|
+
A list of override and additional properties (key/value pairs)
|
3835
|
+
used to modify various aspects of the common configuration files used when creating
|
3836
|
+
a cluster. For a list of valid properties please see
|
3837
|
+
[Cluster properties](https://cloud.google.com/dataproc/docs/concepts/cluster-properties)
|
3838
|
+
"""
|
3839
|
+
properties: NotRequired[pulumi.Input[Mapping[str, Any]]]
|
3840
|
+
"""
|
3841
|
+
A list of the properties used to set the daemon config files.
|
3842
|
+
This will include any values supplied by the user via `cluster_config.software_config.override_properties`
|
3843
|
+
"""
|
3844
|
+
elif False:
|
3845
|
+
ClusterClusterConfigSoftwareConfigArgsDict: TypeAlias = Mapping[str, Any]
|
3846
|
+
|
2797
3847
|
@pulumi.input_type
|
2798
3848
|
class ClusterClusterConfigSoftwareConfigArgs:
|
2799
3849
|
def __init__(__self__, *,
|
@@ -2885,6 +3935,56 @@ class ClusterClusterConfigSoftwareConfigArgs:
|
|
2885
3935
|
pulumi.set(self, "properties", value)
|
2886
3936
|
|
2887
3937
|
|
3938
|
+
if not MYPY:
|
3939
|
+
class ClusterClusterConfigWorkerConfigArgsDict(TypedDict):
|
3940
|
+
accelerators: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigWorkerConfigAcceleratorArgsDict']]]]
|
3941
|
+
"""
|
3942
|
+
The Compute Engine accelerator configuration for these instances. Can be specified multiple times.
|
3943
|
+
"""
|
3944
|
+
disk_config: NotRequired[pulumi.Input['ClusterClusterConfigWorkerConfigDiskConfigArgsDict']]
|
3945
|
+
"""
|
3946
|
+
Disk Config
|
3947
|
+
"""
|
3948
|
+
image_uri: NotRequired[pulumi.Input[str]]
|
3949
|
+
"""
|
3950
|
+
The URI for the image to use for this worker. See [the guide](https://cloud.google.com/dataproc/docs/guides/dataproc-images)
|
3951
|
+
for more information.
|
3952
|
+
"""
|
3953
|
+
instance_names: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
3954
|
+
"""
|
3955
|
+
List of worker instance names which have been assigned
|
3956
|
+
to the cluster.
|
3957
|
+
"""
|
3958
|
+
machine_type: NotRequired[pulumi.Input[str]]
|
3959
|
+
"""
|
3960
|
+
The name of a Google Compute Engine machine type
|
3961
|
+
to create for the worker nodes. If not specified, GCP will default to a predetermined
|
3962
|
+
computed value (currently `n1-standard-4`).
|
3963
|
+
"""
|
3964
|
+
min_cpu_platform: NotRequired[pulumi.Input[str]]
|
3965
|
+
"""
|
3966
|
+
The name of a minimum generation of CPU family
|
3967
|
+
for the master. If not specified, GCP will default to a predetermined computed value
|
3968
|
+
for each zone. See [the guide](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform)
|
3969
|
+
for details about which CPU families are available (and defaulted) for each zone.
|
3970
|
+
"""
|
3971
|
+
min_num_instances: NotRequired[pulumi.Input[int]]
|
3972
|
+
"""
|
3973
|
+
The minimum number of primary worker instances to create. If `min_num_instances` is set, cluster creation will succeed if the number of primary workers created is at least equal to the `min_num_instances` number.
|
3974
|
+
"""
|
3975
|
+
num_instances: NotRequired[pulumi.Input[int]]
|
3976
|
+
"""
|
3977
|
+
Specifies the number of worker nodes to create.
|
3978
|
+
If not specified, GCP will default to a predetermined computed value (currently 2).
|
3979
|
+
There is currently a beta feature which allows you to run a
|
3980
|
+
[Single Node Cluster](https://cloud.google.com/dataproc/docs/concepts/single-node-clusters).
|
3981
|
+
In order to take advantage of this you need to set
|
3982
|
+
`"dataproc:dataproc.allow.zero.workers" = "true"` in
|
3983
|
+
`cluster_config.software_config.properties`
|
3984
|
+
"""
|
3985
|
+
elif False:
|
3986
|
+
ClusterClusterConfigWorkerConfigArgsDict: TypeAlias = Mapping[str, Any]
|
3987
|
+
|
2888
3988
|
@pulumi.input_type
|
2889
3989
|
class ClusterClusterConfigWorkerConfigArgs:
|
2890
3990
|
def __init__(__self__, *,
|
@@ -3046,6 +4146,25 @@ class ClusterClusterConfigWorkerConfigArgs:
|
|
3046
4146
|
pulumi.set(self, "num_instances", value)
|
3047
4147
|
|
3048
4148
|
|
4149
|
+
if not MYPY:
|
4150
|
+
class ClusterClusterConfigWorkerConfigAcceleratorArgsDict(TypedDict):
|
4151
|
+
accelerator_count: pulumi.Input[int]
|
4152
|
+
"""
|
4153
|
+
The number of the accelerator cards of this type exposed to this instance. Often restricted to one of `1`, `2`, `4`, or `8`.
|
4154
|
+
|
4155
|
+
> The Cloud Dataproc API can return unintuitive error messages when using accelerators; even when you have defined an accelerator, Auto Zone Placement does not exclusively select
|
4156
|
+
zones that have that accelerator available. If you get a 400 error that the accelerator can't be found, this is a likely cause. Make sure you check [accelerator availability by zone](https://cloud.google.com/compute/docs/reference/rest/v1/acceleratorTypes/list)
|
4157
|
+
if you are trying to use accelerators in a given zone.
|
4158
|
+
|
4159
|
+
- - -
|
4160
|
+
"""
|
4161
|
+
accelerator_type: pulumi.Input[str]
|
4162
|
+
"""
|
4163
|
+
The short name of the accelerator type to expose to this instance. For example, `nvidia-tesla-k80`.
|
4164
|
+
"""
|
4165
|
+
elif False:
|
4166
|
+
ClusterClusterConfigWorkerConfigAcceleratorArgsDict: TypeAlias = Mapping[str, Any]
|
4167
|
+
|
3049
4168
|
@pulumi.input_type
|
3050
4169
|
class ClusterClusterConfigWorkerConfigAcceleratorArgs:
|
3051
4170
|
def __init__(__self__, *,
|
@@ -3095,6 +4214,32 @@ class ClusterClusterConfigWorkerConfigAcceleratorArgs:
|
|
3095
4214
|
pulumi.set(self, "accelerator_type", value)
|
3096
4215
|
|
3097
4216
|
|
4217
|
+
if not MYPY:
|
4218
|
+
class ClusterClusterConfigWorkerConfigDiskConfigArgsDict(TypedDict):
|
4219
|
+
boot_disk_size_gb: NotRequired[pulumi.Input[int]]
|
4220
|
+
"""
|
4221
|
+
Size of the primary disk attached to each worker node, specified
|
4222
|
+
in GB. The smallest allowed disk size is 10GB. GCP will default to a predetermined
|
4223
|
+
computed value if not set (currently 500GB). Note: If SSDs are not
|
4224
|
+
attached, it also contains the HDFS data blocks and Hadoop working directories.
|
4225
|
+
"""
|
4226
|
+
boot_disk_type: NotRequired[pulumi.Input[str]]
|
4227
|
+
"""
|
4228
|
+
The disk type of the primary disk attached to each node.
|
4229
|
+
One of `"pd-ssd"` or `"pd-standard"`. Defaults to `"pd-standard"`.
|
4230
|
+
"""
|
4231
|
+
local_ssd_interface: NotRequired[pulumi.Input[str]]
|
4232
|
+
"""
|
4233
|
+
Interface type of local SSDs (default is "scsi"). Valid values: "scsi" (Small Computer System Interface), "nvme" (Non-Volatile Memory Express).
|
4234
|
+
"""
|
4235
|
+
num_local_ssds: NotRequired[pulumi.Input[int]]
|
4236
|
+
"""
|
4237
|
+
The amount of local SSD disks that will be
|
4238
|
+
attached to each worker cluster node. Defaults to 0.
|
4239
|
+
"""
|
4240
|
+
elif False:
|
4241
|
+
ClusterClusterConfigWorkerConfigDiskConfigArgsDict: TypeAlias = Mapping[str, Any]
|
4242
|
+
|
3098
4243
|
@pulumi.input_type
|
3099
4244
|
class ClusterClusterConfigWorkerConfigDiskConfigArgs:
|
3100
4245
|
def __init__(__self__, *,
|
@@ -3176,6 +4321,14 @@ class ClusterClusterConfigWorkerConfigDiskConfigArgs:
|
|
3176
4321
|
pulumi.set(self, "num_local_ssds", value)
|
3177
4322
|
|
3178
4323
|
|
4324
|
+
if not MYPY:
|
4325
|
+
class ClusterIAMBindingConditionArgsDict(TypedDict):
|
4326
|
+
expression: pulumi.Input[str]
|
4327
|
+
title: pulumi.Input[str]
|
4328
|
+
description: NotRequired[pulumi.Input[str]]
|
4329
|
+
elif False:
|
4330
|
+
ClusterIAMBindingConditionArgsDict: TypeAlias = Mapping[str, Any]
|
4331
|
+
|
3179
4332
|
@pulumi.input_type
|
3180
4333
|
class ClusterIAMBindingConditionArgs:
|
3181
4334
|
def __init__(__self__, *,
|
@@ -3215,6 +4368,14 @@ class ClusterIAMBindingConditionArgs:
|
|
3215
4368
|
pulumi.set(self, "description", value)
|
3216
4369
|
|
3217
4370
|
|
4371
|
+
if not MYPY:
|
4372
|
+
class ClusterIAMMemberConditionArgsDict(TypedDict):
|
4373
|
+
expression: pulumi.Input[str]
|
4374
|
+
title: pulumi.Input[str]
|
4375
|
+
description: NotRequired[pulumi.Input[str]]
|
4376
|
+
elif False:
|
4377
|
+
ClusterIAMMemberConditionArgsDict: TypeAlias = Mapping[str, Any]
|
4378
|
+
|
3218
4379
|
@pulumi.input_type
|
3219
4380
|
class ClusterIAMMemberConditionArgs:
|
3220
4381
|
def __init__(__self__, *,
|
@@ -3254,6 +4415,32 @@ class ClusterIAMMemberConditionArgs:
|
|
3254
4415
|
pulumi.set(self, "description", value)
|
3255
4416
|
|
3256
4417
|
|
4418
|
+
if not MYPY:
|
4419
|
+
class ClusterVirtualClusterConfigArgsDict(TypedDict):
|
4420
|
+
auxiliary_services_config: NotRequired[pulumi.Input['ClusterVirtualClusterConfigAuxiliaryServicesConfigArgsDict']]
|
4421
|
+
"""
|
4422
|
+
Configuration of auxiliary services used by this cluster.
|
4423
|
+
Structure defined below.
|
4424
|
+
"""
|
4425
|
+
kubernetes_cluster_config: NotRequired[pulumi.Input['ClusterVirtualClusterConfigKubernetesClusterConfigArgsDict']]
|
4426
|
+
"""
|
4427
|
+
The configuration for running the Dataproc cluster on Kubernetes.
|
4428
|
+
Structure defined below.
|
4429
|
+
- - -
|
4430
|
+
"""
|
4431
|
+
staging_bucket: NotRequired[pulumi.Input[str]]
|
4432
|
+
"""
|
4433
|
+
The Cloud Storage staging bucket used to stage files,
|
4434
|
+
such as Hadoop jars, between client machines and the cluster.
|
4435
|
+
Note: If you don't explicitly specify a `staging_bucket`
|
4436
|
+
then GCP will auto create / assign one for you. However, you are not guaranteed
|
4437
|
+
an auto generated bucket which is solely dedicated to your cluster; it may be shared
|
4438
|
+
with other clusters in the same region/zone also choosing to use the auto generation
|
4439
|
+
option.
|
4440
|
+
"""
|
4441
|
+
elif False:
|
4442
|
+
ClusterVirtualClusterConfigArgsDict: TypeAlias = Mapping[str, Any]
|
4443
|
+
|
3257
4444
|
@pulumi.input_type
|
3258
4445
|
class ClusterVirtualClusterConfigArgs:
|
3259
4446
|
def __init__(__self__, *,
|
@@ -3327,6 +4514,19 @@ class ClusterVirtualClusterConfigArgs:
|
|
3327
4514
|
pulumi.set(self, "staging_bucket", value)
|
3328
4515
|
|
3329
4516
|
|
4517
|
+
if not MYPY:
|
4518
|
+
class ClusterVirtualClusterConfigAuxiliaryServicesConfigArgsDict(TypedDict):
|
4519
|
+
metastore_config: NotRequired[pulumi.Input['ClusterVirtualClusterConfigAuxiliaryServicesConfigMetastoreConfigArgsDict']]
|
4520
|
+
"""
|
4521
|
+
The Hive Metastore configuration for this workload.
|
4522
|
+
"""
|
4523
|
+
spark_history_server_config: NotRequired[pulumi.Input['ClusterVirtualClusterConfigAuxiliaryServicesConfigSparkHistoryServerConfigArgsDict']]
|
4524
|
+
"""
|
4525
|
+
The Spark History Server configuration for the workload.
|
4526
|
+
"""
|
4527
|
+
elif False:
|
4528
|
+
ClusterVirtualClusterConfigAuxiliaryServicesConfigArgsDict: TypeAlias = Mapping[str, Any]
|
4529
|
+
|
3330
4530
|
@pulumi.input_type
|
3331
4531
|
class ClusterVirtualClusterConfigAuxiliaryServicesConfigArgs:
|
3332
4532
|
def __init__(__self__, *,
|
@@ -3366,6 +4566,15 @@ class ClusterVirtualClusterConfigAuxiliaryServicesConfigArgs:
|
|
3366
4566
|
pulumi.set(self, "spark_history_server_config", value)
|
3367
4567
|
|
3368
4568
|
|
4569
|
+
if not MYPY:
|
4570
|
+
class ClusterVirtualClusterConfigAuxiliaryServicesConfigMetastoreConfigArgsDict(TypedDict):
|
4571
|
+
dataproc_metastore_service: NotRequired[pulumi.Input[str]]
|
4572
|
+
"""
|
4573
|
+
Resource name of an existing Dataproc Metastore service.
|
4574
|
+
"""
|
4575
|
+
elif False:
|
4576
|
+
ClusterVirtualClusterConfigAuxiliaryServicesConfigMetastoreConfigArgsDict: TypeAlias = Mapping[str, Any]
|
4577
|
+
|
3369
4578
|
@pulumi.input_type
|
3370
4579
|
class ClusterVirtualClusterConfigAuxiliaryServicesConfigMetastoreConfigArgs:
|
3371
4580
|
def __init__(__self__, *,
|
@@ -3389,6 +4598,16 @@ class ClusterVirtualClusterConfigAuxiliaryServicesConfigMetastoreConfigArgs:
|
|
3389
4598
|
pulumi.set(self, "dataproc_metastore_service", value)
|
3390
4599
|
|
3391
4600
|
|
4601
|
+
if not MYPY:
|
4602
|
+
class ClusterVirtualClusterConfigAuxiliaryServicesConfigSparkHistoryServerConfigArgsDict(TypedDict):
|
4603
|
+
dataproc_cluster: NotRequired[pulumi.Input[str]]
|
4604
|
+
"""
|
4605
|
+
Resource name of an existing Dataproc Cluster to act as a Spark History Server for the workload.
|
4606
|
+
- - -
|
4607
|
+
"""
|
4608
|
+
elif False:
|
4609
|
+
ClusterVirtualClusterConfigAuxiliaryServicesConfigSparkHistoryServerConfigArgsDict: TypeAlias = Mapping[str, Any]
|
4610
|
+
|
3392
4611
|
@pulumi.input_type
|
3393
4612
|
class ClusterVirtualClusterConfigAuxiliaryServicesConfigSparkHistoryServerConfigArgs:
|
3394
4613
|
def __init__(__self__, *,
|
@@ -3414,6 +4633,26 @@ class ClusterVirtualClusterConfigAuxiliaryServicesConfigSparkHistoryServerConfig
|
|
3414
4633
|
pulumi.set(self, "dataproc_cluster", value)
|
3415
4634
|
|
3416
4635
|
|
4636
|
+
if not MYPY:
|
4637
|
+
class ClusterVirtualClusterConfigKubernetesClusterConfigArgsDict(TypedDict):
|
4638
|
+
gke_cluster_config: pulumi.Input['ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigArgsDict']
|
4639
|
+
"""
|
4640
|
+
The configuration for running the Dataproc cluster on GKE.
|
4641
|
+
"""
|
4642
|
+
kubernetes_software_config: pulumi.Input['ClusterVirtualClusterConfigKubernetesClusterConfigKubernetesSoftwareConfigArgsDict']
|
4643
|
+
"""
|
4644
|
+
The software configuration for this Dataproc cluster running on Kubernetes.
|
4645
|
+
"""
|
4646
|
+
kubernetes_namespace: NotRequired[pulumi.Input[str]]
|
4647
|
+
"""
|
4648
|
+
A namespace within the Kubernetes cluster to deploy into.
|
4649
|
+
If this namespace does not exist, it is created.
|
4650
|
+
If it exists, Dataproc verifies that another Dataproc VirtualCluster is not installed into it.
|
4651
|
+
If not specified, the name of the Dataproc Cluster is used.
|
4652
|
+
"""
|
4653
|
+
elif False:
|
4654
|
+
ClusterVirtualClusterConfigKubernetesClusterConfigArgsDict: TypeAlias = Mapping[str, Any]
|
4655
|
+
|
3417
4656
|
@pulumi.input_type
|
3418
4657
|
class ClusterVirtualClusterConfigKubernetesClusterConfigArgs:
|
3419
4658
|
def __init__(__self__, *,
|
@@ -3473,6 +4712,22 @@ class ClusterVirtualClusterConfigKubernetesClusterConfigArgs:
|
|
3473
4712
|
pulumi.set(self, "kubernetes_namespace", value)
|
3474
4713
|
|
3475
4714
|
|
4715
|
+
if not MYPY:
|
4716
|
+
class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigArgsDict(TypedDict):
|
4717
|
+
gke_cluster_target: NotRequired[pulumi.Input[str]]
|
4718
|
+
"""
|
4719
|
+
A target GKE cluster to deploy to. It must be in the same project and region as the Dataproc cluster
|
4720
|
+
(the GKE cluster can be zonal or regional)
|
4721
|
+
"""
|
4722
|
+
node_pool_targets: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetArgsDict']]]]
|
4723
|
+
"""
|
4724
|
+
GKE node pools where workloads will be scheduled. At least one node pool must be assigned the `DEFAULT`
|
4725
|
+
GkeNodePoolTarget.Role. If a GkeNodePoolTarget is not specified, Dataproc constructs a `DEFAULT` GkeNodePoolTarget.
|
4726
|
+
Each role can be given to only one GkeNodePoolTarget. All node pools must have the same location settings.
|
4727
|
+
"""
|
4728
|
+
elif False:
|
4729
|
+
ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigArgsDict: TypeAlias = Mapping[str, Any]
|
4730
|
+
|
3476
4731
|
@pulumi.input_type
|
3477
4732
|
class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigArgs:
|
3478
4733
|
def __init__(__self__, *,
|
@@ -3518,6 +4773,27 @@ class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigArgs:
|
|
3518
4773
|
pulumi.set(self, "node_pool_targets", value)
|
3519
4774
|
|
3520
4775
|
|
4776
|
+
if not MYPY:
|
4777
|
+
class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetArgsDict(TypedDict):
|
4778
|
+
node_pool: pulumi.Input[str]
|
4779
|
+
"""
|
4780
|
+
The target GKE node pool.
|
4781
|
+
"""
|
4782
|
+
roles: pulumi.Input[Sequence[pulumi.Input[str]]]
|
4783
|
+
"""
|
4784
|
+
The roles associated with the GKE node pool.
|
4785
|
+
One of `"DEFAULT"`, `"CONTROLLER"`, `"SPARK_DRIVER"` or `"SPARK_EXECUTOR"`.
|
4786
|
+
"""
|
4787
|
+
node_pool_config: NotRequired[pulumi.Input['ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigArgsDict']]
|
4788
|
+
"""
|
4789
|
+
The configuration for the GKE node pool.
|
4790
|
+
If specified, Dataproc attempts to create a node pool with the specified shape.
|
4791
|
+
If one with the same name already exists, it is verified against all specified fields.
|
4792
|
+
If a field differs, the virtual cluster creation will fail.
|
4793
|
+
"""
|
4794
|
+
elif False:
|
4795
|
+
ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetArgsDict: TypeAlias = Mapping[str, Any]
|
4796
|
+
|
3521
4797
|
@pulumi.input_type
|
3522
4798
|
class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetArgs:
|
3523
4799
|
def __init__(__self__, *,
|
@@ -3579,6 +4855,26 @@ class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePool
|
|
3579
4855
|
pulumi.set(self, "node_pool_config", value)
|
3580
4856
|
|
3581
4857
|
|
4858
|
+
if not MYPY:
|
4859
|
+
class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigArgsDict(TypedDict):
|
4860
|
+
locations: pulumi.Input[Sequence[pulumi.Input[str]]]
|
4861
|
+
"""
|
4862
|
+
The list of Compute Engine zones where node pool nodes associated
|
4863
|
+
with a Dataproc on GKE virtual cluster will be located.
|
4864
|
+
- - -
|
4865
|
+
"""
|
4866
|
+
autoscaling: NotRequired[pulumi.Input['ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigAutoscalingArgsDict']]
|
4867
|
+
"""
|
4868
|
+
The autoscaler configuration for this node pool.
|
4869
|
+
The autoscaler is enabled only when a valid configuration is present.
|
4870
|
+
"""
|
4871
|
+
config: NotRequired[pulumi.Input['ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigConfigArgsDict']]
|
4872
|
+
"""
|
4873
|
+
The node pool configuration.
|
4874
|
+
"""
|
4875
|
+
elif False:
|
4876
|
+
ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigArgsDict: TypeAlias = Mapping[str, Any]
|
4877
|
+
|
3582
4878
|
@pulumi.input_type
|
3583
4879
|
class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigArgs:
|
3584
4880
|
def __init__(__self__, *,
|
@@ -3639,6 +4935,19 @@ class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePool
|
|
3639
4935
|
pulumi.set(self, "config", value)
|
3640
4936
|
|
3641
4937
|
|
4938
|
+
if not MYPY:
|
4939
|
+
class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigAutoscalingArgsDict(TypedDict):
|
4940
|
+
max_node_count: NotRequired[pulumi.Input[int]]
|
4941
|
+
"""
|
4942
|
+
The maximum number of nodes in the node pool. Must be >= minNodeCount, and must be > 0.
|
4943
|
+
"""
|
4944
|
+
min_node_count: NotRequired[pulumi.Input[int]]
|
4945
|
+
"""
|
4946
|
+
The minimum number of nodes in the node pool. Must be >= 0 and <= maxNodeCount.
|
4947
|
+
"""
|
4948
|
+
elif False:
|
4949
|
+
ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigAutoscalingArgsDict: TypeAlias = Mapping[str, Any]
|
4950
|
+
|
3642
4951
|
@pulumi.input_type
|
3643
4952
|
class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigAutoscalingArgs:
|
3644
4953
|
def __init__(__self__, *,
|
@@ -3678,6 +4987,36 @@ class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePool
|
|
3678
4987
|
pulumi.set(self, "min_node_count", value)
|
3679
4988
|
|
3680
4989
|
|
4990
|
+
if not MYPY:
|
4991
|
+
class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigConfigArgsDict(TypedDict):
|
4992
|
+
local_ssd_count: NotRequired[pulumi.Input[int]]
|
4993
|
+
"""
|
4994
|
+
The number of local SSD disks to attach to the node,
|
4995
|
+
which is limited by the maximum number of disks allowable per zone.
|
4996
|
+
"""
|
4997
|
+
machine_type: NotRequired[pulumi.Input[str]]
|
4998
|
+
"""
|
4999
|
+
The name of a Compute Engine machine type.
|
5000
|
+
"""
|
5001
|
+
min_cpu_platform: NotRequired[pulumi.Input[str]]
|
5002
|
+
"""
|
5003
|
+
Minimum CPU platform to be used by this instance.
|
5004
|
+
The instance may be scheduled on the specified or a newer CPU platform.
|
5005
|
+
Specify the friendly names of CPU platforms, such as "Intel Haswell" or "Intel Sandy Bridge".
|
5006
|
+
"""
|
5007
|
+
preemptible: NotRequired[pulumi.Input[bool]]
|
5008
|
+
"""
|
5009
|
+
Whether the nodes are created as preemptible VM instances.
|
5010
|
+
Preemptible nodes cannot be used in a node pool with the CONTROLLER role or in the DEFAULT node pool if the
|
5011
|
+
CONTROLLER role is not assigned (the DEFAULT node pool will assume the CONTROLLER role).
|
5012
|
+
"""
|
5013
|
+
spot: NotRequired[pulumi.Input[bool]]
|
5014
|
+
"""
|
5015
|
+
Spot flag for enabling Spot VM, which is a rebrand of the existing preemptible flag.
|
5016
|
+
"""
|
5017
|
+
elif False:
|
5018
|
+
ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigConfigArgsDict: TypeAlias = Mapping[str, Any]
|
5019
|
+
|
3681
5020
|
@pulumi.input_type
|
3682
5021
|
class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigConfigArgs:
|
3683
5022
|
def __init__(__self__, *,
|
@@ -3775,6 +5114,22 @@ class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePool
|
|
3775
5114
|
pulumi.set(self, "spot", value)
|
3776
5115
|
|
3777
5116
|
|
5117
|
+
if not MYPY:
|
5118
|
+
class ClusterVirtualClusterConfigKubernetesClusterConfigKubernetesSoftwareConfigArgsDict(TypedDict):
|
5119
|
+
component_version: pulumi.Input[Mapping[str, pulumi.Input[str]]]
|
5120
|
+
"""
|
5121
|
+
The components that should be installed in this Dataproc cluster. The key must be a string from the
|
5122
|
+
KubernetesComponent enumeration. The value is the version of the software to be installed. At least one entry must be specified.
|
5123
|
+
* **NOTE** : `component_version[SPARK]` is mandatory to set, or the creation of the cluster will fail.
|
5124
|
+
"""
|
5125
|
+
properties: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
5126
|
+
"""
|
5127
|
+
The properties to set on daemon config files. Property keys are specified in prefix:property format,
|
5128
|
+
for example spark:spark.kubernetes.container.image.
|
5129
|
+
"""
|
5130
|
+
elif False:
|
5131
|
+
ClusterVirtualClusterConfigKubernetesClusterConfigKubernetesSoftwareConfigArgsDict: TypeAlias = Mapping[str, Any]
|
5132
|
+
|
3778
5133
|
@pulumi.input_type
|
3779
5134
|
class ClusterVirtualClusterConfigKubernetesClusterConfigKubernetesSoftwareConfigArgs:
|
3780
5135
|
def __init__(__self__, *,
|
@@ -3819,6 +5174,45 @@ class ClusterVirtualClusterConfigKubernetesClusterConfigKubernetesSoftwareConfig
|
|
3819
5174
|
pulumi.set(self, "properties", value)
|
3820
5175
|
|
3821
5176
|
|
5177
|
+
if not MYPY:
|
5178
|
+
class JobHadoopConfigArgsDict(TypedDict):
|
5179
|
+
archive_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
5180
|
+
"""
|
5181
|
+
HCFS URIs of archives to be extracted in the working directory of .jar, .tar, .tar.gz, .tgz, and .zip.
|
5182
|
+
"""
|
5183
|
+
args: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
5184
|
+
"""
|
5185
|
+
The arguments to pass to the driver. Do not include arguments, such as -libjars or -Dfoo=bar, that can be set as job properties, since a collision may occur that causes an incorrect job submission.
|
5186
|
+
"""
|
5187
|
+
file_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
5188
|
+
"""
|
5189
|
+
HCFS URIs of files to be copied to the working directory of Hadoop drivers and distributed tasks. Useful for naively parallel tasks.
|
5190
|
+
"""
|
5191
|
+
jar_file_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
5192
|
+
"""
|
5193
|
+
HCFS URIs of jar files to add to the CLASSPATHs of the Spark driver and tasks.
|
5194
|
+
"""
|
5195
|
+
logging_config: NotRequired[pulumi.Input['JobHadoopConfigLoggingConfigArgsDict']]
|
5196
|
+
"""
|
5197
|
+
The runtime logging config of the job
|
5198
|
+
"""
|
5199
|
+
main_class: NotRequired[pulumi.Input[str]]
|
5200
|
+
"""
|
5201
|
+
The name of the driver's main class. The jar file containing the class must be in the default CLASSPATH or specified in `jar_file_uris`. Conflicts with `main_jar_file_uri`
|
5202
|
+
"""
|
5203
|
+
main_jar_file_uri: NotRequired[pulumi.Input[str]]
|
5204
|
+
"""
|
5205
|
+
The HCFS URI of the jar file containing the main class. Examples: 'gs://foo-bucket/analytics-binaries/extract-useful-metrics-mr.jar' 'hdfs:/tmp/test-samples/custom-wordcount.jar' 'file:///home/usr/lib/hadoop-mapreduce/hadoop-mapreduce-examples.jar'. Conflicts with `main_class`
|
5206
|
+
"""
|
5207
|
+
properties: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
5208
|
+
"""
|
5209
|
+
A mapping of property names to values, used to configure Hadoop. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in `/etc/hadoop/conf/*-site` and classes in user code..
|
5210
|
+
|
5211
|
+
* `logging_config.driver_log_levels`- (Required) The per-package log levels for the driver. This may include 'root' package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'
|
5212
|
+
"""
|
5213
|
+
elif False:
|
5214
|
+
JobHadoopConfigArgsDict: TypeAlias = Mapping[str, Any]
|
5215
|
+
|
3822
5216
|
@pulumi.input_type
|
3823
5217
|
class JobHadoopConfigArgs:
|
3824
5218
|
def __init__(__self__, *,
|
@@ -3958,6 +5352,15 @@ class JobHadoopConfigArgs:
|
|
3958
5352
|
pulumi.set(self, "properties", value)
|
3959
5353
|
|
3960
5354
|
|
5355
|
+
if not MYPY:
|
5356
|
+
class JobHadoopConfigLoggingConfigArgsDict(TypedDict):
|
5357
|
+
driver_log_levels: pulumi.Input[Mapping[str, pulumi.Input[str]]]
|
5358
|
+
"""
|
5359
|
+
Optional. The per-package log levels for the driver. This may include 'root' package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'.
|
5360
|
+
"""
|
5361
|
+
elif False:
|
5362
|
+
JobHadoopConfigLoggingConfigArgsDict: TypeAlias = Mapping[str, Any]
|
5363
|
+
|
3961
5364
|
@pulumi.input_type
|
3962
5365
|
class JobHadoopConfigLoggingConfigArgs:
|
3963
5366
|
def __init__(__self__, *,
|
@@ -3980,6 +5383,37 @@ class JobHadoopConfigLoggingConfigArgs:
|
|
3980
5383
|
pulumi.set(self, "driver_log_levels", value)
|
3981
5384
|
|
3982
5385
|
|
5386
|
+
if not MYPY:
|
5387
|
+
class JobHiveConfigArgsDict(TypedDict):
|
5388
|
+
continue_on_failure: NotRequired[pulumi.Input[bool]]
|
5389
|
+
"""
|
5390
|
+
Whether to continue executing queries if a query fails. The default value is false. Setting to true can be useful when executing independent parallel queries. Defaults to false.
|
5391
|
+
"""
|
5392
|
+
jar_file_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
5393
|
+
"""
|
5394
|
+
HCFS URIs of jar files to add to the CLASSPATH of the Hive server and Hadoop MapReduce (MR) tasks. Can contain Hive SerDes and UDFs.
|
5395
|
+
"""
|
5396
|
+
properties: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
5397
|
+
"""
|
5398
|
+
A mapping of property names and values, used to configure Hive. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in `/etc/hadoop/conf/*-site.xml`, `/etc/hive/conf/hive-site.xml`, and classes in user code..
|
5399
|
+
"""
|
5400
|
+
query_file_uri: NotRequired[pulumi.Input[str]]
|
5401
|
+
"""
|
5402
|
+
HCFS URI of file containing Hive script to execute as the job.
|
5403
|
+
Conflicts with `query_list`
|
5404
|
+
"""
|
5405
|
+
query_lists: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
5406
|
+
"""
|
5407
|
+
The list of Hive queries or statements to execute as part of the job.
|
5408
|
+
Conflicts with `query_file_uri`
|
5409
|
+
"""
|
5410
|
+
script_variables: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
5411
|
+
"""
|
5412
|
+
Mapping of query variable names to values (equivalent to the Hive command: `SET name="value";`).
|
5413
|
+
"""
|
5414
|
+
elif False:
|
5415
|
+
JobHiveConfigArgsDict: TypeAlias = Mapping[str, Any]
|
5416
|
+
|
3983
5417
|
@pulumi.input_type
|
3984
5418
|
class JobHiveConfigArgs:
|
3985
5419
|
def __init__(__self__, *,
|
@@ -4087,6 +5521,14 @@ class JobHiveConfigArgs:
|
|
4087
5521
|
pulumi.set(self, "script_variables", value)
|
4088
5522
|
|
4089
5523
|
|
5524
|
+
if not MYPY:
|
5525
|
+
class JobIAMBindingConditionArgsDict(TypedDict):
|
5526
|
+
expression: pulumi.Input[str]
|
5527
|
+
title: pulumi.Input[str]
|
5528
|
+
description: NotRequired[pulumi.Input[str]]
|
5529
|
+
elif False:
|
5530
|
+
JobIAMBindingConditionArgsDict: TypeAlias = Mapping[str, Any]
|
5531
|
+
|
4090
5532
|
@pulumi.input_type
|
4091
5533
|
class JobIAMBindingConditionArgs:
|
4092
5534
|
def __init__(__self__, *,
|
@@ -4126,6 +5568,14 @@ class JobIAMBindingConditionArgs:
|
|
4126
5568
|
pulumi.set(self, "description", value)
|
4127
5569
|
|
4128
5570
|
|
5571
|
+
if not MYPY:
|
5572
|
+
class JobIAMMemberConditionArgsDict(TypedDict):
|
5573
|
+
expression: pulumi.Input[str]
|
5574
|
+
title: pulumi.Input[str]
|
5575
|
+
description: NotRequired[pulumi.Input[str]]
|
5576
|
+
elif False:
|
5577
|
+
JobIAMMemberConditionArgsDict: TypeAlias = Mapping[str, Any]
|
5578
|
+
|
4129
5579
|
@pulumi.input_type
|
4130
5580
|
class JobIAMMemberConditionArgs:
|
4131
5581
|
def __init__(__self__, *,
|
@@ -4165,6 +5615,43 @@ class JobIAMMemberConditionArgs:
|
|
4165
5615
|
pulumi.set(self, "description", value)
|
4166
5616
|
|
4167
5617
|
|
5618
|
+
if not MYPY:
|
5619
|
+
class JobPigConfigArgsDict(TypedDict):
|
5620
|
+
continue_on_failure: NotRequired[pulumi.Input[bool]]
|
5621
|
+
"""
|
5622
|
+
Whether to continue executing queries if a query fails. The default value is false. Setting to true can be useful when executing independent parallel queries. Defaults to false.
|
5623
|
+
"""
|
5624
|
+
jar_file_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
5625
|
+
"""
|
5626
|
+
HCFS URIs of jar files to add to the CLASSPATH of the Pig Client and Hadoop MapReduce (MR) tasks. Can contain Pig UDFs.
|
5627
|
+
|
5628
|
+
* `logging_config.driver_log_levels`- (Required) The per-package log levels for the driver. This may include 'root' package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'
|
5629
|
+
"""
|
5630
|
+
logging_config: NotRequired[pulumi.Input['JobPigConfigLoggingConfigArgsDict']]
|
5631
|
+
"""
|
5632
|
+
The runtime logging config of the job
|
5633
|
+
"""
|
5634
|
+
properties: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
5635
|
+
"""
|
5636
|
+
A mapping of property names to values, used to configure Pig. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in `/etc/hadoop/conf/*-site.xml`, `/etc/pig/conf/pig.properties`, and classes in user code.
|
5637
|
+
"""
|
5638
|
+
query_file_uri: NotRequired[pulumi.Input[str]]
|
5639
|
+
"""
|
5640
|
+
HCFS URI of file containing Hive script to execute as the job.
|
5641
|
+
Conflicts with `query_list`
|
5642
|
+
"""
|
5643
|
+
query_lists: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
5644
|
+
"""
|
5645
|
+
The list of Hive queries or statements to execute as part of the job.
|
5646
|
+
Conflicts with `query_file_uri`
|
5647
|
+
"""
|
5648
|
+
script_variables: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
5649
|
+
"""
|
5650
|
+
Mapping of query variable names to values (equivalent to the Pig command: `name=[value]`).
|
5651
|
+
"""
|
5652
|
+
elif False:
|
5653
|
+
JobPigConfigArgsDict: TypeAlias = Mapping[str, Any]
|
5654
|
+
|
4168
5655
|
@pulumi.input_type
|
4169
5656
|
class JobPigConfigArgs:
|
4170
5657
|
def __init__(__self__, *,
|
@@ -4292,6 +5779,15 @@ class JobPigConfigArgs:
|
|
4292
5779
|
pulumi.set(self, "script_variables", value)
|
4293
5780
|
|
4294
5781
|
|
5782
|
+
if not MYPY:
|
5783
|
+
class JobPigConfigLoggingConfigArgsDict(TypedDict):
|
5784
|
+
driver_log_levels: pulumi.Input[Mapping[str, pulumi.Input[str]]]
|
5785
|
+
"""
|
5786
|
+
Optional. The per-package log levels for the driver. This may include 'root' package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'.
|
5787
|
+
"""
|
5788
|
+
elif False:
|
5789
|
+
JobPigConfigLoggingConfigArgsDict: TypeAlias = Mapping[str, Any]
|
5790
|
+
|
4295
5791
|
@pulumi.input_type
|
4296
5792
|
class JobPigConfigLoggingConfigArgs:
|
4297
5793
|
def __init__(__self__, *,
|
@@ -4314,6 +5810,19 @@ class JobPigConfigLoggingConfigArgs:
|
|
4314
5810
|
pulumi.set(self, "driver_log_levels", value)
|
4315
5811
|
|
4316
5812
|
|
5813
|
+
if not MYPY:
|
5814
|
+
class JobPlacementArgsDict(TypedDict):
|
5815
|
+
cluster_name: pulumi.Input[str]
|
5816
|
+
"""
|
5817
|
+
The name of the cluster where the job will be submitted
|
5818
|
+
"""
|
5819
|
+
cluster_uuid: NotRequired[pulumi.Input[str]]
|
5820
|
+
"""
|
5821
|
+
Output-only. A cluster UUID generated by the Cloud Dataproc service when the job is submitted
|
5822
|
+
"""
|
5823
|
+
elif False:
|
5824
|
+
JobPlacementArgsDict: TypeAlias = Mapping[str, Any]
|
5825
|
+
|
4317
5826
|
@pulumi.input_type
|
4318
5827
|
class JobPlacementArgs:
|
4319
5828
|
def __init__(__self__, *,
|
@@ -4352,6 +5861,43 @@ class JobPlacementArgs:
|
|
4352
5861
|
pulumi.set(self, "cluster_uuid", value)
|
4353
5862
|
|
4354
5863
|
|
5864
|
+
if not MYPY:
|
5865
|
+
class JobPrestoConfigArgsDict(TypedDict):
|
5866
|
+
client_tags: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
5867
|
+
"""
|
5868
|
+
Presto client tags to attach to this query.
|
5869
|
+
"""
|
5870
|
+
continue_on_failure: NotRequired[pulumi.Input[bool]]
|
5871
|
+
"""
|
5872
|
+
Whether to continue executing queries if a query fails. Setting to true can be useful when executing independent parallel queries. Defaults to false.
|
5873
|
+
"""
|
5874
|
+
logging_config: NotRequired[pulumi.Input['JobPrestoConfigLoggingConfigArgsDict']]
|
5875
|
+
"""
|
5876
|
+
The runtime logging config of the job
|
5877
|
+
"""
|
5878
|
+
output_format: NotRequired[pulumi.Input[str]]
|
5879
|
+
"""
|
5880
|
+
The format in which query output will be displayed. See the Presto documentation for supported output formats.
|
5881
|
+
|
5882
|
+
* `logging_config.driver_log_levels`- (Required) The per-package log levels for the driver. This may include 'root' package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'
|
5883
|
+
"""
|
5884
|
+
properties: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
5885
|
+
"""
|
5886
|
+
A mapping of property names to values. Used to set Presto session properties Equivalent to using the --session flag in the Presto CLI.
|
5887
|
+
"""
|
5888
|
+
query_file_uri: NotRequired[pulumi.Input[str]]
|
5889
|
+
"""
|
5890
|
+
The HCFS URI of the script that contains SQL queries.
|
5891
|
+
Conflicts with `query_list`
|
5892
|
+
"""
|
5893
|
+
query_lists: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
5894
|
+
"""
|
5895
|
+
The list of SQL queries or statements to execute as part of the job.
|
5896
|
+
Conflicts with `query_file_uri`
|
5897
|
+
"""
|
5898
|
+
elif False:
|
5899
|
+
JobPrestoConfigArgsDict: TypeAlias = Mapping[str, Any]
|
5900
|
+
|
4355
5901
|
@pulumi.input_type
|
4356
5902
|
class JobPrestoConfigArgs:
|
4357
5903
|
def __init__(__self__, *,
|
@@ -4479,27 +6025,75 @@ class JobPrestoConfigArgs:
|
|
4479
6025
|
pulumi.set(self, "query_lists", value)
|
4480
6026
|
|
4481
6027
|
|
6028
|
+
if not MYPY:
|
6029
|
+
class JobPrestoConfigLoggingConfigArgsDict(TypedDict):
|
6030
|
+
driver_log_levels: pulumi.Input[Mapping[str, pulumi.Input[str]]]
|
6031
|
+
"""
|
6032
|
+
Optional. The per-package log levels for the driver. This may include 'root' package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'.
|
6033
|
+
"""
|
6034
|
+
elif False:
|
6035
|
+
JobPrestoConfigLoggingConfigArgsDict: TypeAlias = Mapping[str, Any]
|
6036
|
+
|
4482
6037
|
@pulumi.input_type
|
4483
6038
|
class JobPrestoConfigLoggingConfigArgs:
|
4484
6039
|
def __init__(__self__, *,
|
4485
6040
|
driver_log_levels: pulumi.Input[Mapping[str, pulumi.Input[str]]]):
|
4486
6041
|
"""
|
4487
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] driver_log_levels: Optional. The per-package log levels for the driver. This may include 'root' package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'.
|
6042
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] driver_log_levels: Optional. The per-package log levels for the driver. This may include 'root' package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'.
|
6043
|
+
"""
|
6044
|
+
pulumi.set(__self__, "driver_log_levels", driver_log_levels)
|
6045
|
+
|
6046
|
+
@property
|
6047
|
+
@pulumi.getter(name="driverLogLevels")
|
6048
|
+
def driver_log_levels(self) -> pulumi.Input[Mapping[str, pulumi.Input[str]]]:
|
6049
|
+
"""
|
6050
|
+
Optional. The per-package log levels for the driver. This may include 'root' package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'.
|
6051
|
+
"""
|
6052
|
+
return pulumi.get(self, "driver_log_levels")
|
6053
|
+
|
6054
|
+
@driver_log_levels.setter
|
6055
|
+
def driver_log_levels(self, value: pulumi.Input[Mapping[str, pulumi.Input[str]]]):
|
6056
|
+
pulumi.set(self, "driver_log_levels", value)
|
6057
|
+
|
6058
|
+
|
6059
|
+
if not MYPY:
|
6060
|
+
class JobPysparkConfigArgsDict(TypedDict):
|
6061
|
+
main_python_file_uri: pulumi.Input[str]
|
6062
|
+
"""
|
6063
|
+
The HCFS URI of the main Python file to use as the driver. Must be a .py file.
|
6064
|
+
"""
|
6065
|
+
archive_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
6066
|
+
"""
|
6067
|
+
HCFS URIs of archives to be extracted in the working directory of .jar, .tar, .tar.gz, .tgz, and .zip.
|
6068
|
+
"""
|
6069
|
+
args: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
6070
|
+
"""
|
6071
|
+
The arguments to pass to the driver.
|
6072
|
+
"""
|
6073
|
+
file_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
6074
|
+
"""
|
6075
|
+
HCFS URIs of files to be copied to the working directory of Python drivers and distributed tasks. Useful for naively parallel tasks.
|
6076
|
+
"""
|
6077
|
+
jar_file_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
4488
6078
|
"""
|
4489
|
-
|
4490
|
-
|
4491
|
-
@property
|
4492
|
-
@pulumi.getter(name="driverLogLevels")
|
4493
|
-
def driver_log_levels(self) -> pulumi.Input[Mapping[str, pulumi.Input[str]]]:
|
6079
|
+
HCFS URIs of jar files to add to the CLASSPATHs of the Python driver and tasks.
|
4494
6080
|
"""
|
4495
|
-
|
6081
|
+
logging_config: NotRequired[pulumi.Input['JobPysparkConfigLoggingConfigArgsDict']]
|
4496
6082
|
"""
|
4497
|
-
|
4498
|
-
|
4499
|
-
|
4500
|
-
|
4501
|
-
|
6083
|
+
The runtime logging config of the job
|
6084
|
+
"""
|
6085
|
+
properties: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
6086
|
+
"""
|
6087
|
+
A mapping of property names to values, used to configure PySpark. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in `/etc/spark/conf/spark-defaults.conf` and classes in user code.
|
4502
6088
|
|
6089
|
+
* `logging_config.driver_log_levels`- (Required) The per-package log levels for the driver. This may include 'root' package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'
|
6090
|
+
"""
|
6091
|
+
python_file_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
6092
|
+
"""
|
6093
|
+
HCFS file URIs of Python files to pass to the PySpark framework. Supported file types: .py, .egg, and .zip.
|
6094
|
+
"""
|
6095
|
+
elif False:
|
6096
|
+
JobPysparkConfigArgsDict: TypeAlias = Mapping[str, Any]
|
4503
6097
|
|
4504
6098
|
@pulumi.input_type
|
4505
6099
|
class JobPysparkConfigArgs:
|
@@ -4639,6 +6233,15 @@ class JobPysparkConfigArgs:
|
|
4639
6233
|
pulumi.set(self, "python_file_uris", value)
|
4640
6234
|
|
4641
6235
|
|
6236
|
+
if not MYPY:
|
6237
|
+
class JobPysparkConfigLoggingConfigArgsDict(TypedDict):
|
6238
|
+
driver_log_levels: pulumi.Input[Mapping[str, pulumi.Input[str]]]
|
6239
|
+
"""
|
6240
|
+
Optional. The per-package log levels for the driver. This may include 'root' package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'.
|
6241
|
+
"""
|
6242
|
+
elif False:
|
6243
|
+
JobPysparkConfigLoggingConfigArgsDict: TypeAlias = Mapping[str, Any]
|
6244
|
+
|
4642
6245
|
@pulumi.input_type
|
4643
6246
|
class JobPysparkConfigLoggingConfigArgs:
|
4644
6247
|
def __init__(__self__, *,
|
@@ -4661,6 +6264,15 @@ class JobPysparkConfigLoggingConfigArgs:
|
|
4661
6264
|
pulumi.set(self, "driver_log_levels", value)
|
4662
6265
|
|
4663
6266
|
|
6267
|
+
if not MYPY:
|
6268
|
+
class JobReferenceArgsDict(TypedDict):
|
6269
|
+
job_id: NotRequired[pulumi.Input[str]]
|
6270
|
+
"""
|
6271
|
+
The job ID, which must be unique within the project. The job ID is generated by the server upon job submission or provided by the user as a means to perform retries without creating duplicate jobs
|
6272
|
+
"""
|
6273
|
+
elif False:
|
6274
|
+
JobReferenceArgsDict: TypeAlias = Mapping[str, Any]
|
6275
|
+
|
4664
6276
|
@pulumi.input_type
|
4665
6277
|
class JobReferenceArgs:
|
4666
6278
|
def __init__(__self__, *,
|
@@ -4684,6 +6296,19 @@ class JobReferenceArgs:
|
|
4684
6296
|
pulumi.set(self, "job_id", value)
|
4685
6297
|
|
4686
6298
|
|
6299
|
+
if not MYPY:
|
6300
|
+
class JobSchedulingArgsDict(TypedDict):
|
6301
|
+
max_failures_per_hour: pulumi.Input[int]
|
6302
|
+
"""
|
6303
|
+
Maximum number of times per hour a driver may be restarted as a result of driver exiting with non-zero code before job is reported failed.
|
6304
|
+
"""
|
6305
|
+
max_failures_total: pulumi.Input[int]
|
6306
|
+
"""
|
6307
|
+
Maximum number of times in total a driver may be restarted as a result of driver exiting with non-zero code before job is reported failed.
|
6308
|
+
"""
|
6309
|
+
elif False:
|
6310
|
+
JobSchedulingArgsDict: TypeAlias = Mapping[str, Any]
|
6311
|
+
|
4687
6312
|
@pulumi.input_type
|
4688
6313
|
class JobSchedulingArgs:
|
4689
6314
|
def __init__(__self__, *,
|
@@ -4721,6 +6346,47 @@ class JobSchedulingArgs:
|
|
4721
6346
|
pulumi.set(self, "max_failures_total", value)
|
4722
6347
|
|
4723
6348
|
|
6349
|
+
if not MYPY:
|
6350
|
+
class JobSparkConfigArgsDict(TypedDict):
|
6351
|
+
archive_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
6352
|
+
"""
|
6353
|
+
HCFS URIs of archives to be extracted in the working directory of .jar, .tar, .tar.gz, .tgz, and .zip.
|
6354
|
+
"""
|
6355
|
+
args: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
6356
|
+
"""
|
6357
|
+
The arguments to pass to the driver.
|
6358
|
+
"""
|
6359
|
+
file_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
6360
|
+
"""
|
6361
|
+
HCFS URIs of files to be copied to the working directory of Spark drivers and distributed tasks. Useful for naively parallel tasks.
|
6362
|
+
"""
|
6363
|
+
jar_file_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
6364
|
+
"""
|
6365
|
+
HCFS URIs of jar files to add to the CLASSPATHs of the Spark driver and tasks.
|
6366
|
+
"""
|
6367
|
+
logging_config: NotRequired[pulumi.Input['JobSparkConfigLoggingConfigArgsDict']]
|
6368
|
+
"""
|
6369
|
+
The runtime logging config of the job
|
6370
|
+
"""
|
6371
|
+
main_class: NotRequired[pulumi.Input[str]]
|
6372
|
+
"""
|
6373
|
+
The class containing the main method of the driver. Must be in a
|
6374
|
+
provided jar or jar that is already on the classpath. Conflicts with `main_jar_file_uri`
|
6375
|
+
"""
|
6376
|
+
main_jar_file_uri: NotRequired[pulumi.Input[str]]
|
6377
|
+
"""
|
6378
|
+
The HCFS URI of jar file containing
|
6379
|
+
the driver jar. Conflicts with `main_class`
|
6380
|
+
"""
|
6381
|
+
properties: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
6382
|
+
"""
|
6383
|
+
A mapping of property names to values, used to configure Spark. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in `/etc/spark/conf/spark-defaults.conf` and classes in user code.
|
6384
|
+
|
6385
|
+
* `logging_config.driver_log_levels`- (Required) The per-package log levels for the driver. This may include 'root' package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'
|
6386
|
+
"""
|
6387
|
+
elif False:
|
6388
|
+
JobSparkConfigArgsDict: TypeAlias = Mapping[str, Any]
|
6389
|
+
|
4724
6390
|
@pulumi.input_type
|
4725
6391
|
class JobSparkConfigArgs:
|
4726
6392
|
def __init__(__self__, *,
|
@@ -4864,6 +6530,15 @@ class JobSparkConfigArgs:
|
|
4864
6530
|
pulumi.set(self, "properties", value)
|
4865
6531
|
|
4866
6532
|
|
6533
|
+
if not MYPY:
|
6534
|
+
class JobSparkConfigLoggingConfigArgsDict(TypedDict):
|
6535
|
+
driver_log_levels: pulumi.Input[Mapping[str, pulumi.Input[str]]]
|
6536
|
+
"""
|
6537
|
+
Optional. The per-package log levels for the driver. This may include 'root' package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'.
|
6538
|
+
"""
|
6539
|
+
elif False:
|
6540
|
+
JobSparkConfigLoggingConfigArgsDict: TypeAlias = Mapping[str, Any]
|
6541
|
+
|
4867
6542
|
@pulumi.input_type
|
4868
6543
|
class JobSparkConfigLoggingConfigArgs:
|
4869
6544
|
def __init__(__self__, *,
|
@@ -4886,6 +6561,39 @@ class JobSparkConfigLoggingConfigArgs:
|
|
4886
6561
|
pulumi.set(self, "driver_log_levels", value)
|
4887
6562
|
|
4888
6563
|
|
6564
|
+
if not MYPY:
|
6565
|
+
class JobSparksqlConfigArgsDict(TypedDict):
|
6566
|
+
jar_file_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
6567
|
+
"""
|
6568
|
+
HCFS URIs of jar files to be added to the Spark CLASSPATH.
|
6569
|
+
|
6570
|
+
* `logging_config.driver_log_levels`- (Required) The per-package log levels for the driver. This may include 'root' package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'
|
6571
|
+
"""
|
6572
|
+
logging_config: NotRequired[pulumi.Input['JobSparksqlConfigLoggingConfigArgsDict']]
|
6573
|
+
"""
|
6574
|
+
The runtime logging config of the job
|
6575
|
+
"""
|
6576
|
+
properties: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
6577
|
+
"""
|
6578
|
+
A mapping of property names to values, used to configure Spark SQL's SparkConf. Properties that conflict with values set by the Cloud Dataproc API may be overwritten.
|
6579
|
+
"""
|
6580
|
+
query_file_uri: NotRequired[pulumi.Input[str]]
|
6581
|
+
"""
|
6582
|
+
The HCFS URI of the script that contains SQL queries.
|
6583
|
+
Conflicts with `query_list`
|
6584
|
+
"""
|
6585
|
+
query_lists: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
6586
|
+
"""
|
6587
|
+
The list of SQL queries or statements to execute as part of the job.
|
6588
|
+
Conflicts with `query_file_uri`
|
6589
|
+
"""
|
6590
|
+
script_variables: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
6591
|
+
"""
|
6592
|
+
Mapping of query variable names to values (equivalent to the Spark SQL command: `SET name="value";`).
|
6593
|
+
"""
|
6594
|
+
elif False:
|
6595
|
+
JobSparksqlConfigArgsDict: TypeAlias = Mapping[str, Any]
|
6596
|
+
|
4889
6597
|
@pulumi.input_type
|
4890
6598
|
class JobSparksqlConfigArgs:
|
4891
6599
|
def __init__(__self__, *,
|
@@ -4997,6 +6705,15 @@ class JobSparksqlConfigArgs:
|
|
4997
6705
|
pulumi.set(self, "script_variables", value)
|
4998
6706
|
|
4999
6707
|
|
6708
|
+
if not MYPY:
|
6709
|
+
class JobSparksqlConfigLoggingConfigArgsDict(TypedDict):
|
6710
|
+
driver_log_levels: pulumi.Input[Mapping[str, pulumi.Input[str]]]
|
6711
|
+
"""
|
6712
|
+
Optional. The per-package log levels for the driver. This may include 'root' package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'.
|
6713
|
+
"""
|
6714
|
+
elif False:
|
6715
|
+
JobSparksqlConfigLoggingConfigArgsDict: TypeAlias = Mapping[str, Any]
|
6716
|
+
|
5000
6717
|
@pulumi.input_type
|
5001
6718
|
class JobSparksqlConfigLoggingConfigArgs:
|
5002
6719
|
def __init__(__self__, *,
|
@@ -5019,6 +6736,27 @@ class JobSparksqlConfigLoggingConfigArgs:
|
|
5019
6736
|
pulumi.set(self, "driver_log_levels", value)
|
5020
6737
|
|
5021
6738
|
|
6739
|
+
if not MYPY:
|
6740
|
+
class JobStatusArgsDict(TypedDict):
|
6741
|
+
details: NotRequired[pulumi.Input[str]]
|
6742
|
+
"""
|
6743
|
+
Optional job state details, such as an error description if the state is ERROR.
|
6744
|
+
"""
|
6745
|
+
state: NotRequired[pulumi.Input[str]]
|
6746
|
+
"""
|
6747
|
+
A state message specifying the overall job state.
|
6748
|
+
"""
|
6749
|
+
state_start_time: NotRequired[pulumi.Input[str]]
|
6750
|
+
"""
|
6751
|
+
The time when this state was entered.
|
6752
|
+
"""
|
6753
|
+
substate: NotRequired[pulumi.Input[str]]
|
6754
|
+
"""
|
6755
|
+
Additional state information, which includes status reported by the agent.
|
6756
|
+
"""
|
6757
|
+
elif False:
|
6758
|
+
JobStatusArgsDict: TypeAlias = Mapping[str, Any]
|
6759
|
+
|
5022
6760
|
@pulumi.input_type
|
5023
6761
|
class JobStatusArgs:
|
5024
6762
|
def __init__(__self__, *,
|
@@ -5090,6 +6828,26 @@ class JobStatusArgs:
|
|
5090
6828
|
pulumi.set(self, "substate", value)
|
5091
6829
|
|
5092
6830
|
|
6831
|
+
if not MYPY:
|
6832
|
+
class MetastoreFederationBackendMetastoreArgsDict(TypedDict):
|
6833
|
+
metastore_type: pulumi.Input[str]
|
6834
|
+
"""
|
6835
|
+
The type of the backend metastore.
|
6836
|
+
Possible values are: `METASTORE_TYPE_UNSPECIFIED`, `DATAPROC_METASTORE`, `BIGQUERY`.
|
6837
|
+
|
6838
|
+
- - -
|
6839
|
+
"""
|
6840
|
+
name: pulumi.Input[str]
|
6841
|
+
"""
|
6842
|
+
The relative resource name of the metastore that is being federated. The formats of the relative resource names for the currently supported metastores are listed below: Dataplex: projects/{projectId}/locations/{location}/lakes/{lake_id} BigQuery: projects/{projectId} Dataproc Metastore: projects/{projectId}/locations/{location}/services/{serviceId}
|
6843
|
+
"""
|
6844
|
+
rank: pulumi.Input[str]
|
6845
|
+
"""
|
6846
|
+
The identifier for this object. Format specified above.
|
6847
|
+
"""
|
6848
|
+
elif False:
|
6849
|
+
MetastoreFederationBackendMetastoreArgsDict: TypeAlias = Mapping[str, Any]
|
6850
|
+
|
5093
6851
|
@pulumi.input_type
|
5094
6852
|
class MetastoreFederationBackendMetastoreArgs:
|
5095
6853
|
def __init__(__self__, *,
|
@@ -5148,6 +6906,14 @@ class MetastoreFederationBackendMetastoreArgs:
|
|
5148
6906
|
pulumi.set(self, "rank", value)
|
5149
6907
|
|
5150
6908
|
|
6909
|
+
if not MYPY:
|
6910
|
+
class MetastoreFederationIamBindingConditionArgsDict(TypedDict):
|
6911
|
+
expression: pulumi.Input[str]
|
6912
|
+
title: pulumi.Input[str]
|
6913
|
+
description: NotRequired[pulumi.Input[str]]
|
6914
|
+
elif False:
|
6915
|
+
MetastoreFederationIamBindingConditionArgsDict: TypeAlias = Mapping[str, Any]
|
6916
|
+
|
5151
6917
|
@pulumi.input_type
|
5152
6918
|
class MetastoreFederationIamBindingConditionArgs:
|
5153
6919
|
def __init__(__self__, *,
|
@@ -5187,6 +6953,14 @@ class MetastoreFederationIamBindingConditionArgs:
|
|
5187
6953
|
pulumi.set(self, "description", value)
|
5188
6954
|
|
5189
6955
|
|
6956
|
+
if not MYPY:
|
6957
|
+
class MetastoreFederationIamMemberConditionArgsDict(TypedDict):
|
6958
|
+
expression: pulumi.Input[str]
|
6959
|
+
title: pulumi.Input[str]
|
6960
|
+
description: NotRequired[pulumi.Input[str]]
|
6961
|
+
elif False:
|
6962
|
+
MetastoreFederationIamMemberConditionArgsDict: TypeAlias = Mapping[str, Any]
|
6963
|
+
|
5190
6964
|
@pulumi.input_type
|
5191
6965
|
class MetastoreFederationIamMemberConditionArgs:
|
5192
6966
|
def __init__(__self__, *,
|
@@ -5226,6 +7000,16 @@ class MetastoreFederationIamMemberConditionArgs:
|
|
5226
7000
|
pulumi.set(self, "description", value)
|
5227
7001
|
|
5228
7002
|
|
7003
|
+
if not MYPY:
|
7004
|
+
class MetastoreServiceEncryptionConfigArgsDict(TypedDict):
|
7005
|
+
kms_key: pulumi.Input[str]
|
7006
|
+
"""
|
7007
|
+
The fully qualified customer provided Cloud KMS key name to use for customer data encryption.
|
7008
|
+
Use the following format: `projects/([^/]+)/locations/([^/]+)/keyRings/([^/]+)/cryptoKeys/([^/]+)`
|
7009
|
+
"""
|
7010
|
+
elif False:
|
7011
|
+
MetastoreServiceEncryptionConfigArgsDict: TypeAlias = Mapping[str, Any]
|
7012
|
+
|
5229
7013
|
@pulumi.input_type
|
5230
7014
|
class MetastoreServiceEncryptionConfigArgs:
|
5231
7015
|
def __init__(__self__, *,
|
@@ -5250,6 +7034,40 @@ class MetastoreServiceEncryptionConfigArgs:
|
|
5250
7034
|
pulumi.set(self, "kms_key", value)
|
5251
7035
|
|
5252
7036
|
|
7037
|
+
if not MYPY:
|
7038
|
+
class MetastoreServiceHiveMetastoreConfigArgsDict(TypedDict):
|
7039
|
+
version: pulumi.Input[str]
|
7040
|
+
"""
|
7041
|
+
The Hive metastore schema version.
|
7042
|
+
"""
|
7043
|
+
auxiliary_versions: NotRequired[pulumi.Input[Sequence[pulumi.Input['MetastoreServiceHiveMetastoreConfigAuxiliaryVersionArgsDict']]]]
|
7044
|
+
"""
|
7045
|
+
A mapping of Hive metastore version to the auxiliary version configuration.
|
7046
|
+
When specified, a secondary Hive metastore service is created along with the primary service.
|
7047
|
+
All auxiliary versions must be less than the service's primary version.
|
7048
|
+
The key is the auxiliary service name and it must match the regular expression a-z?.
|
7049
|
+
This means that the first character must be a lowercase letter, and all the following characters must be hyphens, lowercase letters, or digits, except the last character, which cannot be a hyphen.
|
7050
|
+
Structure is documented below.
|
7051
|
+
"""
|
7052
|
+
config_overrides: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
7053
|
+
"""
|
7054
|
+
A mapping of Hive metastore configuration key-value pairs to apply to the Hive metastore (configured in hive-site.xml).
|
7055
|
+
The mappings override system defaults (some keys cannot be overridden)
|
7056
|
+
"""
|
7057
|
+
endpoint_protocol: NotRequired[pulumi.Input[str]]
|
7058
|
+
"""
|
7059
|
+
The protocol to use for the metastore service endpoint. If unspecified, defaults to `THRIFT`.
|
7060
|
+
Default value is `THRIFT`.
|
7061
|
+
Possible values are: `THRIFT`, `GRPC`.
|
7062
|
+
"""
|
7063
|
+
kerberos_config: NotRequired[pulumi.Input['MetastoreServiceHiveMetastoreConfigKerberosConfigArgsDict']]
|
7064
|
+
"""
|
7065
|
+
Information used to configure the Hive metastore service as a service principal in a Kerberos realm.
|
7066
|
+
Structure is documented below.
|
7067
|
+
"""
|
7068
|
+
elif False:
|
7069
|
+
MetastoreServiceHiveMetastoreConfigArgsDict: TypeAlias = Mapping[str, Any]
|
7070
|
+
|
5253
7071
|
@pulumi.input_type
|
5254
7072
|
class MetastoreServiceHiveMetastoreConfigArgs:
|
5255
7073
|
def __init__(__self__, *,
|
@@ -5354,6 +7172,24 @@ class MetastoreServiceHiveMetastoreConfigArgs:
|
|
5354
7172
|
pulumi.set(self, "kerberos_config", value)
|
5355
7173
|
|
5356
7174
|
|
7175
|
+
if not MYPY:
|
7176
|
+
class MetastoreServiceHiveMetastoreConfigAuxiliaryVersionArgsDict(TypedDict):
|
7177
|
+
key: pulumi.Input[str]
|
7178
|
+
"""
|
7179
|
+
The identifier for this object. Format specified above.
|
7180
|
+
"""
|
7181
|
+
version: pulumi.Input[str]
|
7182
|
+
"""
|
7183
|
+
The Hive metastore version of the auxiliary service. It must be less than the primary Hive metastore service's version.
|
7184
|
+
"""
|
7185
|
+
config_overrides: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
7186
|
+
"""
|
7187
|
+
A mapping of Hive metastore configuration key-value pairs to apply to the auxiliary Hive metastore (configured in hive-site.xml) in addition to the primary version's overrides.
|
7188
|
+
If keys are present in both the auxiliary version's overrides and the primary version's overrides, the value from the auxiliary version's overrides takes precedence.
|
7189
|
+
"""
|
7190
|
+
elif False:
|
7191
|
+
MetastoreServiceHiveMetastoreConfigAuxiliaryVersionArgsDict: TypeAlias = Mapping[str, Any]
|
7192
|
+
|
5357
7193
|
@pulumi.input_type
|
5358
7194
|
class MetastoreServiceHiveMetastoreConfigAuxiliaryVersionArgs:
|
5359
7195
|
def __init__(__self__, *,
|
@@ -5409,6 +7245,24 @@ class MetastoreServiceHiveMetastoreConfigAuxiliaryVersionArgs:
|
|
5409
7245
|
pulumi.set(self, "config_overrides", value)
|
5410
7246
|
|
5411
7247
|
|
7248
|
+
if not MYPY:
|
7249
|
+
class MetastoreServiceHiveMetastoreConfigKerberosConfigArgsDict(TypedDict):
|
7250
|
+
keytab: pulumi.Input['MetastoreServiceHiveMetastoreConfigKerberosConfigKeytabArgsDict']
|
7251
|
+
"""
|
7252
|
+
A Kerberos keytab file that can be used to authenticate a service principal with a Kerberos Key Distribution Center (KDC).
|
7253
|
+
Structure is documented below.
|
7254
|
+
"""
|
7255
|
+
krb5_config_gcs_uri: pulumi.Input[str]
|
7256
|
+
"""
|
7257
|
+
A Cloud Storage URI that specifies the path to a krb5.conf file. It is of the form gs://{bucket_name}/path/to/krb5.conf, although the file does not need to be named krb5.conf explicitly.
|
7258
|
+
"""
|
7259
|
+
principal: pulumi.Input[str]
|
7260
|
+
"""
|
7261
|
+
A Kerberos principal that exists in the both the keytab the KDC to authenticate as. A typical principal is of the form "primary/instance@REALM", but there is no exact format.
|
7262
|
+
"""
|
7263
|
+
elif False:
|
7264
|
+
MetastoreServiceHiveMetastoreConfigKerberosConfigArgsDict: TypeAlias = Mapping[str, Any]
|
7265
|
+
|
5412
7266
|
@pulumi.input_type
|
5413
7267
|
class MetastoreServiceHiveMetastoreConfigKerberosConfigArgs:
|
5414
7268
|
def __init__(__self__, *,
|
@@ -5463,6 +7317,16 @@ class MetastoreServiceHiveMetastoreConfigKerberosConfigArgs:
|
|
5463
7317
|
pulumi.set(self, "principal", value)
|
5464
7318
|
|
5465
7319
|
|
7320
|
+
if not MYPY:
|
7321
|
+
class MetastoreServiceHiveMetastoreConfigKerberosConfigKeytabArgsDict(TypedDict):
|
7322
|
+
cloud_secret: pulumi.Input[str]
|
7323
|
+
"""
|
7324
|
+
The relative resource name of a Secret Manager secret version, in the following form:
|
7325
|
+
"projects/{projectNumber}/secrets/{secret_id}/versions/{version_id}".
|
7326
|
+
"""
|
7327
|
+
elif False:
|
7328
|
+
MetastoreServiceHiveMetastoreConfigKerberosConfigKeytabArgsDict: TypeAlias = Mapping[str, Any]
|
7329
|
+
|
5466
7330
|
@pulumi.input_type
|
5467
7331
|
class MetastoreServiceHiveMetastoreConfigKerberosConfigKeytabArgs:
|
5468
7332
|
def __init__(__self__, *,
|
@@ -5487,6 +7351,14 @@ class MetastoreServiceHiveMetastoreConfigKerberosConfigKeytabArgs:
|
|
5487
7351
|
pulumi.set(self, "cloud_secret", value)
|
5488
7352
|
|
5489
7353
|
|
7354
|
+
if not MYPY:
|
7355
|
+
class MetastoreServiceIamBindingConditionArgsDict(TypedDict):
|
7356
|
+
expression: pulumi.Input[str]
|
7357
|
+
title: pulumi.Input[str]
|
7358
|
+
description: NotRequired[pulumi.Input[str]]
|
7359
|
+
elif False:
|
7360
|
+
MetastoreServiceIamBindingConditionArgsDict: TypeAlias = Mapping[str, Any]
|
7361
|
+
|
5490
7362
|
@pulumi.input_type
|
5491
7363
|
class MetastoreServiceIamBindingConditionArgs:
|
5492
7364
|
def __init__(__self__, *,
|
@@ -5526,6 +7398,14 @@ class MetastoreServiceIamBindingConditionArgs:
|
|
5526
7398
|
pulumi.set(self, "description", value)
|
5527
7399
|
|
5528
7400
|
|
7401
|
+
if not MYPY:
|
7402
|
+
class MetastoreServiceIamMemberConditionArgsDict(TypedDict):
|
7403
|
+
expression: pulumi.Input[str]
|
7404
|
+
title: pulumi.Input[str]
|
7405
|
+
description: NotRequired[pulumi.Input[str]]
|
7406
|
+
elif False:
|
7407
|
+
MetastoreServiceIamMemberConditionArgsDict: TypeAlias = Mapping[str, Any]
|
7408
|
+
|
5529
7409
|
@pulumi.input_type
|
5530
7410
|
class MetastoreServiceIamMemberConditionArgs:
|
5531
7411
|
def __init__(__self__, *,
|
@@ -5565,6 +7445,20 @@ class MetastoreServiceIamMemberConditionArgs:
|
|
5565
7445
|
pulumi.set(self, "description", value)
|
5566
7446
|
|
5567
7447
|
|
7448
|
+
if not MYPY:
|
7449
|
+
class MetastoreServiceMaintenanceWindowArgsDict(TypedDict):
|
7450
|
+
day_of_week: pulumi.Input[str]
|
7451
|
+
"""
|
7452
|
+
The day of week, when the window starts.
|
7453
|
+
Possible values are: `MONDAY`, `TUESDAY`, `WEDNESDAY`, `THURSDAY`, `FRIDAY`, `SATURDAY`, `SUNDAY`.
|
7454
|
+
"""
|
7455
|
+
hour_of_day: pulumi.Input[int]
|
7456
|
+
"""
|
7457
|
+
The hour of day (0-23) when the window starts.
|
7458
|
+
"""
|
7459
|
+
elif False:
|
7460
|
+
MetastoreServiceMaintenanceWindowArgsDict: TypeAlias = Mapping[str, Any]
|
7461
|
+
|
5568
7462
|
@pulumi.input_type
|
5569
7463
|
class MetastoreServiceMaintenanceWindowArgs:
|
5570
7464
|
def __init__(__self__, *,
|
@@ -5604,6 +7498,16 @@ class MetastoreServiceMaintenanceWindowArgs:
|
|
5604
7498
|
pulumi.set(self, "hour_of_day", value)
|
5605
7499
|
|
5606
7500
|
|
7501
|
+
if not MYPY:
|
7502
|
+
class MetastoreServiceMetadataIntegrationArgsDict(TypedDict):
|
7503
|
+
data_catalog_config: pulumi.Input['MetastoreServiceMetadataIntegrationDataCatalogConfigArgsDict']
|
7504
|
+
"""
|
7505
|
+
The integration config for the Data Catalog service.
|
7506
|
+
Structure is documented below.
|
7507
|
+
"""
|
7508
|
+
elif False:
|
7509
|
+
MetastoreServiceMetadataIntegrationArgsDict: TypeAlias = Mapping[str, Any]
|
7510
|
+
|
5607
7511
|
@pulumi.input_type
|
5608
7512
|
class MetastoreServiceMetadataIntegrationArgs:
|
5609
7513
|
def __init__(__self__, *,
|
@@ -5628,6 +7532,15 @@ class MetastoreServiceMetadataIntegrationArgs:
|
|
5628
7532
|
pulumi.set(self, "data_catalog_config", value)
|
5629
7533
|
|
5630
7534
|
|
7535
|
+
if not MYPY:
|
7536
|
+
class MetastoreServiceMetadataIntegrationDataCatalogConfigArgsDict(TypedDict):
|
7537
|
+
enabled: pulumi.Input[bool]
|
7538
|
+
"""
|
7539
|
+
Defines whether the metastore metadata should be synced to Data Catalog. The default value is to disable syncing metastore metadata to Data Catalog.
|
7540
|
+
"""
|
7541
|
+
elif False:
|
7542
|
+
MetastoreServiceMetadataIntegrationDataCatalogConfigArgsDict: TypeAlias = Mapping[str, Any]
|
7543
|
+
|
5631
7544
|
@pulumi.input_type
|
5632
7545
|
class MetastoreServiceMetadataIntegrationDataCatalogConfigArgs:
|
5633
7546
|
def __init__(__self__, *,
|
@@ -5650,6 +7563,20 @@ class MetastoreServiceMetadataIntegrationDataCatalogConfigArgs:
|
|
5650
7563
|
pulumi.set(self, "enabled", value)
|
5651
7564
|
|
5652
7565
|
|
7566
|
+
if not MYPY:
|
7567
|
+
class MetastoreServiceNetworkConfigArgsDict(TypedDict):
|
7568
|
+
consumers: pulumi.Input[Sequence[pulumi.Input['MetastoreServiceNetworkConfigConsumerArgsDict']]]
|
7569
|
+
"""
|
7570
|
+
The consumer-side network configuration for the Dataproc Metastore instance.
|
7571
|
+
Structure is documented below.
|
7572
|
+
"""
|
7573
|
+
custom_routes_enabled: NotRequired[pulumi.Input[bool]]
|
7574
|
+
"""
|
7575
|
+
Enables custom routes to be imported and exported for the Dataproc Metastore service's peered VPC network.
|
7576
|
+
"""
|
7577
|
+
elif False:
|
7578
|
+
MetastoreServiceNetworkConfigArgsDict: TypeAlias = Mapping[str, Any]
|
7579
|
+
|
5653
7580
|
@pulumi.input_type
|
5654
7581
|
class MetastoreServiceNetworkConfigArgs:
|
5655
7582
|
def __init__(__self__, *,
|
@@ -5690,6 +7617,23 @@ class MetastoreServiceNetworkConfigArgs:
|
|
5690
7617
|
pulumi.set(self, "custom_routes_enabled", value)
|
5691
7618
|
|
5692
7619
|
|
7620
|
+
if not MYPY:
|
7621
|
+
class MetastoreServiceNetworkConfigConsumerArgsDict(TypedDict):
|
7622
|
+
subnetwork: pulumi.Input[str]
|
7623
|
+
"""
|
7624
|
+
The subnetwork of the customer project from which an IP address is reserved and used as the Dataproc Metastore service's endpoint.
|
7625
|
+
It is accessible to hosts in the subnet and to all hosts in a subnet in the same region and same network.
|
7626
|
+
There must be at least one IP address available in the subnet's primary range. The subnet is specified in the following form:
|
7627
|
+
`projects/{projectNumber}/regions/{region_id}/subnetworks/{subnetwork_id}
|
7628
|
+
"""
|
7629
|
+
endpoint_uri: NotRequired[pulumi.Input[str]]
|
7630
|
+
"""
|
7631
|
+
(Output)
|
7632
|
+
The URI of the endpoint used to access the metastore service.
|
7633
|
+
"""
|
7634
|
+
elif False:
|
7635
|
+
MetastoreServiceNetworkConfigConsumerArgsDict: TypeAlias = Mapping[str, Any]
|
7636
|
+
|
5693
7637
|
@pulumi.input_type
|
5694
7638
|
class MetastoreServiceNetworkConfigConsumerArgs:
|
5695
7639
|
def __init__(__self__, *,
|
@@ -5736,6 +7680,25 @@ class MetastoreServiceNetworkConfigConsumerArgs:
|
|
5736
7680
|
pulumi.set(self, "endpoint_uri", value)
|
5737
7681
|
|
5738
7682
|
|
7683
|
+
if not MYPY:
|
7684
|
+
class MetastoreServiceScalingConfigArgsDict(TypedDict):
|
7685
|
+
autoscaling_config: NotRequired[pulumi.Input['MetastoreServiceScalingConfigAutoscalingConfigArgsDict']]
|
7686
|
+
"""
|
7687
|
+
Represents the autoscaling configuration of a metastore service.
|
7688
|
+
Structure is documented below.
|
7689
|
+
"""
|
7690
|
+
instance_size: NotRequired[pulumi.Input[str]]
|
7691
|
+
"""
|
7692
|
+
Metastore instance sizes.
|
7693
|
+
Possible values are: `EXTRA_SMALL`, `SMALL`, `MEDIUM`, `LARGE`, `EXTRA_LARGE`.
|
7694
|
+
"""
|
7695
|
+
scaling_factor: NotRequired[pulumi.Input[float]]
|
7696
|
+
"""
|
7697
|
+
Scaling factor, in increments of 0.1 for values less than 1.0, and increments of 1.0 for values greater than 1.0.
|
7698
|
+
"""
|
7699
|
+
elif False:
|
7700
|
+
MetastoreServiceScalingConfigArgsDict: TypeAlias = Mapping[str, Any]
|
7701
|
+
|
5739
7702
|
@pulumi.input_type
|
5740
7703
|
class MetastoreServiceScalingConfigArgs:
|
5741
7704
|
def __init__(__self__, *,
|
@@ -5795,6 +7758,20 @@ class MetastoreServiceScalingConfigArgs:
|
|
5795
7758
|
pulumi.set(self, "scaling_factor", value)
|
5796
7759
|
|
5797
7760
|
|
7761
|
+
if not MYPY:
|
7762
|
+
class MetastoreServiceScalingConfigAutoscalingConfigArgsDict(TypedDict):
|
7763
|
+
autoscaling_enabled: NotRequired[pulumi.Input[bool]]
|
7764
|
+
"""
|
7765
|
+
Defines whether autoscaling is enabled. The default value is false.
|
7766
|
+
"""
|
7767
|
+
limit_config: NotRequired[pulumi.Input['MetastoreServiceScalingConfigAutoscalingConfigLimitConfigArgsDict']]
|
7768
|
+
"""
|
7769
|
+
Represents the limit configuration of a metastore service.
|
7770
|
+
Structure is documented below.
|
7771
|
+
"""
|
7772
|
+
elif False:
|
7773
|
+
MetastoreServiceScalingConfigAutoscalingConfigArgsDict: TypeAlias = Mapping[str, Any]
|
7774
|
+
|
5798
7775
|
@pulumi.input_type
|
5799
7776
|
class MetastoreServiceScalingConfigAutoscalingConfigArgs:
|
5800
7777
|
def __init__(__self__, *,
|
@@ -5836,6 +7813,19 @@ class MetastoreServiceScalingConfigAutoscalingConfigArgs:
|
|
5836
7813
|
pulumi.set(self, "limit_config", value)
|
5837
7814
|
|
5838
7815
|
|
7816
|
+
if not MYPY:
|
7817
|
+
class MetastoreServiceScalingConfigAutoscalingConfigLimitConfigArgsDict(TypedDict):
|
7818
|
+
max_scaling_factor: NotRequired[pulumi.Input[float]]
|
7819
|
+
"""
|
7820
|
+
The maximum scaling factor that the service will autoscale to. The default value is 6.0.
|
7821
|
+
"""
|
7822
|
+
min_scaling_factor: NotRequired[pulumi.Input[float]]
|
7823
|
+
"""
|
7824
|
+
The minimum scaling factor that the service will autoscale to. The default value is 0.1.
|
7825
|
+
"""
|
7826
|
+
elif False:
|
7827
|
+
MetastoreServiceScalingConfigAutoscalingConfigLimitConfigArgsDict: TypeAlias = Mapping[str, Any]
|
7828
|
+
|
5839
7829
|
@pulumi.input_type
|
5840
7830
|
class MetastoreServiceScalingConfigAutoscalingConfigLimitConfigArgs:
|
5841
7831
|
def __init__(__self__, *,
|
@@ -5875,6 +7865,27 @@ class MetastoreServiceScalingConfigAutoscalingConfigLimitConfigArgs:
|
|
5875
7865
|
pulumi.set(self, "min_scaling_factor", value)
|
5876
7866
|
|
5877
7867
|
|
7868
|
+
if not MYPY:
|
7869
|
+
class MetastoreServiceScheduledBackupArgsDict(TypedDict):
|
7870
|
+
backup_location: pulumi.Input[str]
|
7871
|
+
"""
|
7872
|
+
A Cloud Storage URI of a folder, in the format gs://<bucket_name>/<path_inside_bucket>. A sub-folder <backup_folder> containing backup files will be stored below it.
|
7873
|
+
"""
|
7874
|
+
cron_schedule: NotRequired[pulumi.Input[str]]
|
7875
|
+
"""
|
7876
|
+
The scheduled interval in Cron format, see https://en.wikipedia.org/wiki/Cron The default is empty: scheduled backup is not enabled. Must be specified to enable scheduled backups.
|
7877
|
+
"""
|
7878
|
+
enabled: NotRequired[pulumi.Input[bool]]
|
7879
|
+
"""
|
7880
|
+
Defines whether the scheduled backup is enabled. The default value is false.
|
7881
|
+
"""
|
7882
|
+
time_zone: NotRequired[pulumi.Input[str]]
|
7883
|
+
"""
|
7884
|
+
Specifies the time zone to be used when interpreting cronSchedule. Must be a time zone name from the time zone database (https://en.wikipedia.org/wiki/List_of_tz_database_time_zones), e.g. America/Los_Angeles or Africa/Abidjan. If left unspecified, the default is UTC.
|
7885
|
+
"""
|
7886
|
+
elif False:
|
7887
|
+
MetastoreServiceScheduledBackupArgsDict: TypeAlias = Mapping[str, Any]
|
7888
|
+
|
5878
7889
|
@pulumi.input_type
|
5879
7890
|
class MetastoreServiceScheduledBackupArgs:
|
5880
7891
|
def __init__(__self__, *,
|
@@ -5945,6 +7956,17 @@ class MetastoreServiceScheduledBackupArgs:
|
|
5945
7956
|
pulumi.set(self, "time_zone", value)
|
5946
7957
|
|
5947
7958
|
|
7959
|
+
if not MYPY:
|
7960
|
+
class MetastoreServiceTelemetryConfigArgsDict(TypedDict):
|
7961
|
+
log_format: NotRequired[pulumi.Input[str]]
|
7962
|
+
"""
|
7963
|
+
The output format of the Dataproc Metastore service's logs.
|
7964
|
+
Default value is `JSON`.
|
7965
|
+
Possible values are: `LEGACY`, `JSON`.
|
7966
|
+
"""
|
7967
|
+
elif False:
|
7968
|
+
MetastoreServiceTelemetryConfigArgsDict: TypeAlias = Mapping[str, Any]
|
7969
|
+
|
5948
7970
|
@pulumi.input_type
|
5949
7971
|
class MetastoreServiceTelemetryConfigArgs:
|
5950
7972
|
def __init__(__self__, *,
|
@@ -5972,6 +7994,59 @@ class MetastoreServiceTelemetryConfigArgs:
|
|
5972
7994
|
pulumi.set(self, "log_format", value)
|
5973
7995
|
|
5974
7996
|
|
7997
|
+
if not MYPY:
|
7998
|
+
class WorkflowTemplateJobArgsDict(TypedDict):
|
7999
|
+
step_id: pulumi.Input[str]
|
8000
|
+
"""
|
8001
|
+
Required. The step id. The id must be unique among all jobs within the template. The step id is used as prefix for job id, as job `goog-dataproc-workflow-step-id` label, and in field from other steps. The id must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). Cannot begin or end with underscore or hyphen. Must consist of between 3 and 50 characters.
|
8002
|
+
"""
|
8003
|
+
hadoop_job: NotRequired[pulumi.Input['WorkflowTemplateJobHadoopJobArgsDict']]
|
8004
|
+
"""
|
8005
|
+
Job is a Hadoop job.
|
8006
|
+
"""
|
8007
|
+
hive_job: NotRequired[pulumi.Input['WorkflowTemplateJobHiveJobArgsDict']]
|
8008
|
+
"""
|
8009
|
+
Job is a Hive job.
|
8010
|
+
"""
|
8011
|
+
labels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
8012
|
+
"""
|
8013
|
+
The labels to associate with this job. Label keys must be between 1 and 63 characters long, and must conform to the following regular expression: {0,63} No more than 32 labels can be associated with a given job.
|
8014
|
+
"""
|
8015
|
+
pig_job: NotRequired[pulumi.Input['WorkflowTemplateJobPigJobArgsDict']]
|
8016
|
+
"""
|
8017
|
+
Job is a Pig job.
|
8018
|
+
"""
|
8019
|
+
prerequisite_step_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
8020
|
+
"""
|
8021
|
+
The optional list of prerequisite job step_ids. If not specified, the job will start at the beginning of workflow.
|
8022
|
+
"""
|
8023
|
+
presto_job: NotRequired[pulumi.Input['WorkflowTemplateJobPrestoJobArgsDict']]
|
8024
|
+
"""
|
8025
|
+
Job is a Presto job.
|
8026
|
+
"""
|
8027
|
+
pyspark_job: NotRequired[pulumi.Input['WorkflowTemplateJobPysparkJobArgsDict']]
|
8028
|
+
"""
|
8029
|
+
Job is a PySpark job.
|
8030
|
+
"""
|
8031
|
+
scheduling: NotRequired[pulumi.Input['WorkflowTemplateJobSchedulingArgsDict']]
|
8032
|
+
"""
|
8033
|
+
Job scheduling configuration.
|
8034
|
+
"""
|
8035
|
+
spark_job: NotRequired[pulumi.Input['WorkflowTemplateJobSparkJobArgsDict']]
|
8036
|
+
"""
|
8037
|
+
Job is a Spark job.
|
8038
|
+
"""
|
8039
|
+
spark_r_job: NotRequired[pulumi.Input['WorkflowTemplateJobSparkRJobArgsDict']]
|
8040
|
+
"""
|
8041
|
+
Job is a SparkR job.
|
8042
|
+
"""
|
8043
|
+
spark_sql_job: NotRequired[pulumi.Input['WorkflowTemplateJobSparkSqlJobArgsDict']]
|
8044
|
+
"""
|
8045
|
+
Job is a SparkSql job.
|
8046
|
+
"""
|
8047
|
+
elif False:
|
8048
|
+
WorkflowTemplateJobArgsDict: TypeAlias = Mapping[str, Any]
|
8049
|
+
|
5975
8050
|
@pulumi.input_type
|
5976
8051
|
class WorkflowTemplateJobArgs:
|
5977
8052
|
def __init__(__self__, *,
|
@@ -6170,6 +8245,43 @@ class WorkflowTemplateJobArgs:
|
|
6170
8245
|
pulumi.set(self, "spark_sql_job", value)
|
6171
8246
|
|
6172
8247
|
|
8248
|
+
if not MYPY:
|
8249
|
+
class WorkflowTemplateJobHadoopJobArgsDict(TypedDict):
|
8250
|
+
archive_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
8251
|
+
"""
|
8252
|
+
HCFS URIs of archives to be extracted in the working directory of Hadoop drivers and tasks. Supported file types: .jar, .tar, .tar.gz, .tgz, or .zip.
|
8253
|
+
"""
|
8254
|
+
args: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
8255
|
+
"""
|
8256
|
+
The arguments to pass to the driver. Do not include arguments, such as `-libjars` or `-Dfoo=bar`, that can be set as job properties, since a collision may occur that causes an incorrect job submission.
|
8257
|
+
"""
|
8258
|
+
file_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
8259
|
+
"""
|
8260
|
+
HCFS (Hadoop Compatible Filesystem) URIs of files to be copied to the working directory of Hadoop drivers and distributed tasks. Useful for naively parallel tasks.
|
8261
|
+
"""
|
8262
|
+
jar_file_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
8263
|
+
"""
|
8264
|
+
Jar file URIs to add to the CLASSPATHs of the Hadoop driver and tasks.
|
8265
|
+
"""
|
8266
|
+
logging_config: NotRequired[pulumi.Input['WorkflowTemplateJobHadoopJobLoggingConfigArgsDict']]
|
8267
|
+
"""
|
8268
|
+
The runtime log config for job execution.
|
8269
|
+
"""
|
8270
|
+
main_class: NotRequired[pulumi.Input[str]]
|
8271
|
+
"""
|
8272
|
+
The name of the driver's main class. The jar file containing the class must be in the default CLASSPATH or specified in `jar_file_uris`.
|
8273
|
+
"""
|
8274
|
+
main_jar_file_uri: NotRequired[pulumi.Input[str]]
|
8275
|
+
"""
|
8276
|
+
The HCFS URI of the jar file containing the main class. Examples: 'gs://foo-bucket/analytics-binaries/extract-useful-metrics-mr.jar' 'hdfs:/tmp/test-samples/custom-wordcount.jar' 'file:///home/usr/lib/hadoop-mapreduce/hadoop-mapreduce-examples.jar'
|
8277
|
+
"""
|
8278
|
+
properties: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
8279
|
+
"""
|
8280
|
+
A mapping of property names to values, used to configure Hadoop. Properties that conflict with values set by the Dataproc API may be overwritten. Can include properties set in /etc/hadoop/conf/*-site and classes in user code.
|
8281
|
+
"""
|
8282
|
+
elif False:
|
8283
|
+
WorkflowTemplateJobHadoopJobArgsDict: TypeAlias = Mapping[str, Any]
|
8284
|
+
|
6173
8285
|
@pulumi.input_type
|
6174
8286
|
class WorkflowTemplateJobHadoopJobArgs:
|
6175
8287
|
def __init__(__self__, *,
|
@@ -6305,6 +8417,15 @@ class WorkflowTemplateJobHadoopJobArgs:
|
|
6305
8417
|
pulumi.set(self, "properties", value)
|
6306
8418
|
|
6307
8419
|
|
8420
|
+
if not MYPY:
|
8421
|
+
class WorkflowTemplateJobHadoopJobLoggingConfigArgsDict(TypedDict):
|
8422
|
+
driver_log_levels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
8423
|
+
"""
|
8424
|
+
The per-package log levels for the driver. This may include "root" package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'
|
8425
|
+
"""
|
8426
|
+
elif False:
|
8427
|
+
WorkflowTemplateJobHadoopJobLoggingConfigArgsDict: TypeAlias = Mapping[str, Any]
|
8428
|
+
|
6308
8429
|
@pulumi.input_type
|
6309
8430
|
class WorkflowTemplateJobHadoopJobLoggingConfigArgs:
|
6310
8431
|
def __init__(__self__, *,
|
@@ -6328,6 +8449,35 @@ class WorkflowTemplateJobHadoopJobLoggingConfigArgs:
|
|
6328
8449
|
pulumi.set(self, "driver_log_levels", value)
|
6329
8450
|
|
6330
8451
|
|
8452
|
+
if not MYPY:
|
8453
|
+
class WorkflowTemplateJobHiveJobArgsDict(TypedDict):
|
8454
|
+
continue_on_failure: NotRequired[pulumi.Input[bool]]
|
8455
|
+
"""
|
8456
|
+
Whether to continue executing queries if a query fails. The default value is `false`. Setting to `true` can be useful when executing independent parallel queries.
|
8457
|
+
"""
|
8458
|
+
jar_file_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
8459
|
+
"""
|
8460
|
+
HCFS URIs of jar files to add to the CLASSPATH of the Hive server and Hadoop MapReduce (MR) tasks. Can contain Hive SerDes and UDFs.
|
8461
|
+
"""
|
8462
|
+
properties: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
8463
|
+
"""
|
8464
|
+
A mapping of property names and values, used to configure Hive. Properties that conflict with values set by the Dataproc API may be overwritten. Can include properties set in /etc/hadoop/conf/*-site.xml, /etc/hive/conf/hive-site.xml, and classes in user code.
|
8465
|
+
"""
|
8466
|
+
query_file_uri: NotRequired[pulumi.Input[str]]
|
8467
|
+
"""
|
8468
|
+
The HCFS URI of the script that contains Hive queries.
|
8469
|
+
"""
|
8470
|
+
query_list: NotRequired[pulumi.Input['WorkflowTemplateJobHiveJobQueryListArgsDict']]
|
8471
|
+
"""
|
8472
|
+
A list of queries.
|
8473
|
+
"""
|
8474
|
+
script_variables: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
8475
|
+
"""
|
8476
|
+
Mapping of query variable names to values (equivalent to the Hive command: `SET name="value";`).
|
8477
|
+
"""
|
8478
|
+
elif False:
|
8479
|
+
WorkflowTemplateJobHiveJobArgsDict: TypeAlias = Mapping[str, Any]
|
8480
|
+
|
6331
8481
|
@pulumi.input_type
|
6332
8482
|
class WorkflowTemplateJobHiveJobArgs:
|
6333
8483
|
def __init__(__self__, *,
|
@@ -6431,6 +8581,15 @@ class WorkflowTemplateJobHiveJobArgs:
|
|
6431
8581
|
pulumi.set(self, "script_variables", value)
|
6432
8582
|
|
6433
8583
|
|
8584
|
+
if not MYPY:
|
8585
|
+
class WorkflowTemplateJobHiveJobQueryListArgsDict(TypedDict):
|
8586
|
+
queries: pulumi.Input[Sequence[pulumi.Input[str]]]
|
8587
|
+
"""
|
8588
|
+
Required. The queries to execute. You do not need to end a query expression with a semicolon. Multiple queries can be specified in one string by separating each with a semicolon. Here is an example of a Dataproc API snippet that uses a QueryList to specify a HiveJob: "hiveJob": { "queryList": { "queries": } }
|
8589
|
+
"""
|
8590
|
+
elif False:
|
8591
|
+
WorkflowTemplateJobHiveJobQueryListArgsDict: TypeAlias = Mapping[str, Any]
|
8592
|
+
|
6434
8593
|
@pulumi.input_type
|
6435
8594
|
class WorkflowTemplateJobHiveJobQueryListArgs:
|
6436
8595
|
def __init__(__self__, *,
|
@@ -6453,6 +8612,39 @@ class WorkflowTemplateJobHiveJobQueryListArgs:
|
|
6453
8612
|
pulumi.set(self, "queries", value)
|
6454
8613
|
|
6455
8614
|
|
8615
|
+
if not MYPY:
|
8616
|
+
class WorkflowTemplateJobPigJobArgsDict(TypedDict):
|
8617
|
+
continue_on_failure: NotRequired[pulumi.Input[bool]]
|
8618
|
+
"""
|
8619
|
+
Whether to continue executing queries if a query fails. The default value is `false`. Setting to `true` can be useful when executing independent parallel queries.
|
8620
|
+
"""
|
8621
|
+
jar_file_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
8622
|
+
"""
|
8623
|
+
HCFS URIs of jar files to add to the CLASSPATH of the Pig Client and Hadoop MapReduce (MR) tasks. Can contain Pig UDFs.
|
8624
|
+
"""
|
8625
|
+
logging_config: NotRequired[pulumi.Input['WorkflowTemplateJobPigJobLoggingConfigArgsDict']]
|
8626
|
+
"""
|
8627
|
+
The runtime log config for job execution.
|
8628
|
+
"""
|
8629
|
+
properties: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
8630
|
+
"""
|
8631
|
+
A mapping of property names to values, used to configure Pig. Properties that conflict with values set by the Dataproc API may be overwritten. Can include properties set in /etc/hadoop/conf/*-site.xml, /etc/pig/conf/pig.properties, and classes in user code.
|
8632
|
+
"""
|
8633
|
+
query_file_uri: NotRequired[pulumi.Input[str]]
|
8634
|
+
"""
|
8635
|
+
The HCFS URI of the script that contains the Pig queries.
|
8636
|
+
"""
|
8637
|
+
query_list: NotRequired[pulumi.Input['WorkflowTemplateJobPigJobQueryListArgsDict']]
|
8638
|
+
"""
|
8639
|
+
A list of queries.
|
8640
|
+
"""
|
8641
|
+
script_variables: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
8642
|
+
"""
|
8643
|
+
Mapping of query variable names to values (equivalent to the Pig command: `name=`).
|
8644
|
+
"""
|
8645
|
+
elif False:
|
8646
|
+
WorkflowTemplateJobPigJobArgsDict: TypeAlias = Mapping[str, Any]
|
8647
|
+
|
6456
8648
|
@pulumi.input_type
|
6457
8649
|
class WorkflowTemplateJobPigJobArgs:
|
6458
8650
|
def __init__(__self__, *,
|
@@ -6572,6 +8764,15 @@ class WorkflowTemplateJobPigJobArgs:
|
|
6572
8764
|
pulumi.set(self, "script_variables", value)
|
6573
8765
|
|
6574
8766
|
|
8767
|
+
if not MYPY:
|
8768
|
+
class WorkflowTemplateJobPigJobLoggingConfigArgsDict(TypedDict):
|
8769
|
+
driver_log_levels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
8770
|
+
"""
|
8771
|
+
The per-package log levels for the driver. This may include "root" package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'
|
8772
|
+
"""
|
8773
|
+
elif False:
|
8774
|
+
WorkflowTemplateJobPigJobLoggingConfigArgsDict: TypeAlias = Mapping[str, Any]
|
8775
|
+
|
6575
8776
|
@pulumi.input_type
|
6576
8777
|
class WorkflowTemplateJobPigJobLoggingConfigArgs:
|
6577
8778
|
def __init__(__self__, *,
|
@@ -6595,6 +8796,15 @@ class WorkflowTemplateJobPigJobLoggingConfigArgs:
|
|
6595
8796
|
pulumi.set(self, "driver_log_levels", value)
|
6596
8797
|
|
6597
8798
|
|
8799
|
+
if not MYPY:
|
8800
|
+
class WorkflowTemplateJobPigJobQueryListArgsDict(TypedDict):
|
8801
|
+
queries: pulumi.Input[Sequence[pulumi.Input[str]]]
|
8802
|
+
"""
|
8803
|
+
Required. The queries to execute. You do not need to end a query expression with a semicolon. Multiple queries can be specified in one string by separating each with a semicolon. Here is an example of a Dataproc API snippet that uses a QueryList to specify a HiveJob: "hiveJob": { "queryList": { "queries": } }
|
8804
|
+
"""
|
8805
|
+
elif False:
|
8806
|
+
WorkflowTemplateJobPigJobQueryListArgsDict: TypeAlias = Mapping[str, Any]
|
8807
|
+
|
6598
8808
|
@pulumi.input_type
|
6599
8809
|
class WorkflowTemplateJobPigJobQueryListArgs:
|
6600
8810
|
def __init__(__self__, *,
|
@@ -6617,6 +8827,39 @@ class WorkflowTemplateJobPigJobQueryListArgs:
|
|
6617
8827
|
pulumi.set(self, "queries", value)
|
6618
8828
|
|
6619
8829
|
|
8830
|
+
if not MYPY:
|
8831
|
+
class WorkflowTemplateJobPrestoJobArgsDict(TypedDict):
|
8832
|
+
client_tags: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
8833
|
+
"""
|
8834
|
+
Presto client tags to attach to this query
|
8835
|
+
"""
|
8836
|
+
continue_on_failure: NotRequired[pulumi.Input[bool]]
|
8837
|
+
"""
|
8838
|
+
Whether to continue executing queries if a query fails. The default value is `false`. Setting to `true` can be useful when executing independent parallel queries.
|
8839
|
+
"""
|
8840
|
+
logging_config: NotRequired[pulumi.Input['WorkflowTemplateJobPrestoJobLoggingConfigArgsDict']]
|
8841
|
+
"""
|
8842
|
+
The runtime log config for job execution.
|
8843
|
+
"""
|
8844
|
+
output_format: NotRequired[pulumi.Input[str]]
|
8845
|
+
"""
|
8846
|
+
The format in which query output will be displayed. See the Presto documentation for supported output formats
|
8847
|
+
"""
|
8848
|
+
properties: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
8849
|
+
"""
|
8850
|
+
A mapping of property names to values. Used to set Presto (https://prestodb.io/docs/current/sql/set-session.html) Equivalent to using the --session flag in the Presto CLI
|
8851
|
+
"""
|
8852
|
+
query_file_uri: NotRequired[pulumi.Input[str]]
|
8853
|
+
"""
|
8854
|
+
The HCFS URI of the script that contains SQL queries.
|
8855
|
+
"""
|
8856
|
+
query_list: NotRequired[pulumi.Input['WorkflowTemplateJobPrestoJobQueryListArgsDict']]
|
8857
|
+
"""
|
8858
|
+
A list of queries.
|
8859
|
+
"""
|
8860
|
+
elif False:
|
8861
|
+
WorkflowTemplateJobPrestoJobArgsDict: TypeAlias = Mapping[str, Any]
|
8862
|
+
|
6620
8863
|
@pulumi.input_type
|
6621
8864
|
class WorkflowTemplateJobPrestoJobArgs:
|
6622
8865
|
def __init__(__self__, *,
|
@@ -6736,6 +8979,15 @@ class WorkflowTemplateJobPrestoJobArgs:
|
|
6736
8979
|
pulumi.set(self, "query_list", value)
|
6737
8980
|
|
6738
8981
|
|
8982
|
+
if not MYPY:
|
8983
|
+
class WorkflowTemplateJobPrestoJobLoggingConfigArgsDict(TypedDict):
|
8984
|
+
driver_log_levels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
8985
|
+
"""
|
8986
|
+
The per-package log levels for the driver. This may include "root" package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'
|
8987
|
+
"""
|
8988
|
+
elif False:
|
8989
|
+
WorkflowTemplateJobPrestoJobLoggingConfigArgsDict: TypeAlias = Mapping[str, Any]
|
8990
|
+
|
6739
8991
|
@pulumi.input_type
|
6740
8992
|
class WorkflowTemplateJobPrestoJobLoggingConfigArgs:
|
6741
8993
|
def __init__(__self__, *,
|
@@ -6759,6 +9011,15 @@ class WorkflowTemplateJobPrestoJobLoggingConfigArgs:
|
|
6759
9011
|
pulumi.set(self, "driver_log_levels", value)
|
6760
9012
|
|
6761
9013
|
|
9014
|
+
if not MYPY:
|
9015
|
+
class WorkflowTemplateJobPrestoJobQueryListArgsDict(TypedDict):
|
9016
|
+
queries: pulumi.Input[Sequence[pulumi.Input[str]]]
|
9017
|
+
"""
|
9018
|
+
Required. The queries to execute. You do not need to end a query expression with a semicolon. Multiple queries can be specified in one string by separating each with a semicolon. Here is an example of a Dataproc API snippet that uses a QueryList to specify a HiveJob: "hiveJob": { "queryList": { "queries": } }
|
9019
|
+
"""
|
9020
|
+
elif False:
|
9021
|
+
WorkflowTemplateJobPrestoJobQueryListArgsDict: TypeAlias = Mapping[str, Any]
|
9022
|
+
|
6762
9023
|
@pulumi.input_type
|
6763
9024
|
class WorkflowTemplateJobPrestoJobQueryListArgs:
|
6764
9025
|
def __init__(__self__, *,
|
@@ -6781,6 +9042,43 @@ class WorkflowTemplateJobPrestoJobQueryListArgs:
|
|
6781
9042
|
pulumi.set(self, "queries", value)
|
6782
9043
|
|
6783
9044
|
|
9045
|
+
if not MYPY:
|
9046
|
+
class WorkflowTemplateJobPysparkJobArgsDict(TypedDict):
|
9047
|
+
main_python_file_uri: pulumi.Input[str]
|
9048
|
+
"""
|
9049
|
+
Required. The HCFS URI of the main Python file to use as the driver. Must be a .py file.
|
9050
|
+
"""
|
9051
|
+
archive_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
9052
|
+
"""
|
9053
|
+
HCFS URIs of archives to be extracted into the working directory of each executor. Supported file types: .jar, .tar, .tar.gz, .tgz, and .zip.
|
9054
|
+
"""
|
9055
|
+
args: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
9056
|
+
"""
|
9057
|
+
The arguments to pass to the driver. Do not include arguments, such as `--conf`, that can be set as job properties, since a collision may occur that causes an incorrect job submission.
|
9058
|
+
"""
|
9059
|
+
file_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
9060
|
+
"""
|
9061
|
+
HCFS URIs of files to be placed in the working directory of each executor. Useful for naively parallel tasks.
|
9062
|
+
"""
|
9063
|
+
jar_file_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
9064
|
+
"""
|
9065
|
+
HCFS URIs of jar files to add to the CLASSPATHs of the Python driver and tasks.
|
9066
|
+
"""
|
9067
|
+
logging_config: NotRequired[pulumi.Input['WorkflowTemplateJobPysparkJobLoggingConfigArgsDict']]
|
9068
|
+
"""
|
9069
|
+
The runtime log config for job execution.
|
9070
|
+
"""
|
9071
|
+
properties: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
9072
|
+
"""
|
9073
|
+
A mapping of property names to values, used to configure PySpark. Properties that conflict with values set by the Dataproc API may be overwritten. Can include properties set in /etc/spark/conf/spark-defaults.conf and classes in user code.
|
9074
|
+
"""
|
9075
|
+
python_file_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
9076
|
+
"""
|
9077
|
+
HCFS file URIs of Python files to pass to the PySpark framework. Supported file types: .py, .egg, and .zip.
|
9078
|
+
"""
|
9079
|
+
elif False:
|
9080
|
+
WorkflowTemplateJobPysparkJobArgsDict: TypeAlias = Mapping[str, Any]
|
9081
|
+
|
6784
9082
|
@pulumi.input_type
|
6785
9083
|
class WorkflowTemplateJobPysparkJobArgs:
|
6786
9084
|
def __init__(__self__, *,
|
@@ -6915,6 +9213,15 @@ class WorkflowTemplateJobPysparkJobArgs:
|
|
6915
9213
|
pulumi.set(self, "python_file_uris", value)
|
6916
9214
|
|
6917
9215
|
|
9216
|
+
if not MYPY:
|
9217
|
+
class WorkflowTemplateJobPysparkJobLoggingConfigArgsDict(TypedDict):
|
9218
|
+
driver_log_levels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
9219
|
+
"""
|
9220
|
+
The per-package log levels for the driver. This may include "root" package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'
|
9221
|
+
"""
|
9222
|
+
elif False:
|
9223
|
+
WorkflowTemplateJobPysparkJobLoggingConfigArgsDict: TypeAlias = Mapping[str, Any]
|
9224
|
+
|
6918
9225
|
@pulumi.input_type
|
6919
9226
|
class WorkflowTemplateJobPysparkJobLoggingConfigArgs:
|
6920
9227
|
def __init__(__self__, *,
|
@@ -6938,6 +9245,19 @@ class WorkflowTemplateJobPysparkJobLoggingConfigArgs:
|
|
6938
9245
|
pulumi.set(self, "driver_log_levels", value)
|
6939
9246
|
|
6940
9247
|
|
9248
|
+
if not MYPY:
|
9249
|
+
class WorkflowTemplateJobSchedulingArgsDict(TypedDict):
|
9250
|
+
max_failures_per_hour: NotRequired[pulumi.Input[int]]
|
9251
|
+
"""
|
9252
|
+
Maximum number of times per hour a driver may be restarted as a result of driver exiting with non-zero code before job is reported failed. A job may be reported as thrashing if driver exits with non-zero code 4 times within 10 minute window. Maximum value is 10.
|
9253
|
+
"""
|
9254
|
+
max_failures_total: NotRequired[pulumi.Input[int]]
|
9255
|
+
"""
|
9256
|
+
Maximum number of times in total a driver may be restarted as a result of driver exiting with non-zero code before job is reported failed. Maximum value is 240
|
9257
|
+
"""
|
9258
|
+
elif False:
|
9259
|
+
WorkflowTemplateJobSchedulingArgsDict: TypeAlias = Mapping[str, Any]
|
9260
|
+
|
6941
9261
|
@pulumi.input_type
|
6942
9262
|
class WorkflowTemplateJobSchedulingArgs:
|
6943
9263
|
def __init__(__self__, *,
|
@@ -6977,6 +9297,43 @@ class WorkflowTemplateJobSchedulingArgs:
|
|
6977
9297
|
pulumi.set(self, "max_failures_total", value)
|
6978
9298
|
|
6979
9299
|
|
9300
|
+
if not MYPY:
|
9301
|
+
class WorkflowTemplateJobSparkJobArgsDict(TypedDict):
|
9302
|
+
archive_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
9303
|
+
"""
|
9304
|
+
HCFS URIs of archives to be extracted into the working directory of each executor. Supported file types: .jar, .tar, .tar.gz, .tgz, and .zip.
|
9305
|
+
"""
|
9306
|
+
args: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
9307
|
+
"""
|
9308
|
+
The arguments to pass to the driver. Do not include arguments, such as `--conf`, that can be set as job properties, since a collision may occur that causes an incorrect job submission.
|
9309
|
+
"""
|
9310
|
+
file_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
9311
|
+
"""
|
9312
|
+
HCFS URIs of files to be placed in the working directory of each executor. Useful for naively parallel tasks.
|
9313
|
+
"""
|
9314
|
+
jar_file_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
9315
|
+
"""
|
9316
|
+
HCFS URIs of jar files to add to the CLASSPATHs of the Spark driver and tasks.
|
9317
|
+
"""
|
9318
|
+
logging_config: NotRequired[pulumi.Input['WorkflowTemplateJobSparkJobLoggingConfigArgsDict']]
|
9319
|
+
"""
|
9320
|
+
The runtime log config for job execution.
|
9321
|
+
"""
|
9322
|
+
main_class: NotRequired[pulumi.Input[str]]
|
9323
|
+
"""
|
9324
|
+
The name of the driver's main class. The jar file that contains the class must be in the default CLASSPATH or specified in `jar_file_uris`.
|
9325
|
+
"""
|
9326
|
+
main_jar_file_uri: NotRequired[pulumi.Input[str]]
|
9327
|
+
"""
|
9328
|
+
The HCFS URI of the jar file that contains the main class.
|
9329
|
+
"""
|
9330
|
+
properties: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
9331
|
+
"""
|
9332
|
+
A mapping of property names to values, used to configure Spark. Properties that conflict with values set by the Dataproc API may be overwritten. Can include properties set in /etc/spark/conf/spark-defaults.conf and classes in user code.
|
9333
|
+
"""
|
9334
|
+
elif False:
|
9335
|
+
WorkflowTemplateJobSparkJobArgsDict: TypeAlias = Mapping[str, Any]
|
9336
|
+
|
6980
9337
|
@pulumi.input_type
|
6981
9338
|
class WorkflowTemplateJobSparkJobArgs:
|
6982
9339
|
def __init__(__self__, *,
|
@@ -7112,28 +9469,66 @@ class WorkflowTemplateJobSparkJobArgs:
|
|
7112
9469
|
pulumi.set(self, "properties", value)
|
7113
9470
|
|
7114
9471
|
|
9472
|
+
if not MYPY:
|
9473
|
+
class WorkflowTemplateJobSparkJobLoggingConfigArgsDict(TypedDict):
|
9474
|
+
driver_log_levels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
9475
|
+
"""
|
9476
|
+
The per-package log levels for the driver. This may include "root" package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'
|
9477
|
+
"""
|
9478
|
+
elif False:
|
9479
|
+
WorkflowTemplateJobSparkJobLoggingConfigArgsDict: TypeAlias = Mapping[str, Any]
|
9480
|
+
|
7115
9481
|
@pulumi.input_type
|
7116
9482
|
class WorkflowTemplateJobSparkJobLoggingConfigArgs:
|
7117
9483
|
def __init__(__self__, *,
|
7118
9484
|
driver_log_levels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
7119
9485
|
"""
|
7120
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] driver_log_levels: The per-package log levels for the driver. This may include "root" package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'
|
9486
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] driver_log_levels: The per-package log levels for the driver. This may include "root" package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'
|
9487
|
+
"""
|
9488
|
+
if driver_log_levels is not None:
|
9489
|
+
pulumi.set(__self__, "driver_log_levels", driver_log_levels)
|
9490
|
+
|
9491
|
+
@property
|
9492
|
+
@pulumi.getter(name="driverLogLevels")
|
9493
|
+
def driver_log_levels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
9494
|
+
"""
|
9495
|
+
The per-package log levels for the driver. This may include "root" package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'
|
9496
|
+
"""
|
9497
|
+
return pulumi.get(self, "driver_log_levels")
|
9498
|
+
|
9499
|
+
@driver_log_levels.setter
|
9500
|
+
def driver_log_levels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
9501
|
+
pulumi.set(self, "driver_log_levels", value)
|
9502
|
+
|
9503
|
+
|
9504
|
+
if not MYPY:
|
9505
|
+
class WorkflowTemplateJobSparkRJobArgsDict(TypedDict):
|
9506
|
+
main_r_file_uri: pulumi.Input[str]
|
9507
|
+
"""
|
9508
|
+
Required. The HCFS URI of the main R file to use as the driver. Must be a .R file.
|
9509
|
+
"""
|
9510
|
+
archive_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
9511
|
+
"""
|
9512
|
+
HCFS URIs of archives to be extracted into the working directory of each executor. Supported file types: .jar, .tar, .tar.gz, .tgz, and .zip.
|
9513
|
+
"""
|
9514
|
+
args: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
9515
|
+
"""
|
9516
|
+
The arguments to pass to the driver. Do not include arguments, such as `--conf`, that can be set as job properties, since a collision may occur that causes an incorrect job submission.
|
9517
|
+
"""
|
9518
|
+
file_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
9519
|
+
"""
|
9520
|
+
HCFS URIs of files to be placed in the working directory of each executor. Useful for naively parallel tasks.
|
9521
|
+
"""
|
9522
|
+
logging_config: NotRequired[pulumi.Input['WorkflowTemplateJobSparkRJobLoggingConfigArgsDict']]
|
9523
|
+
"""
|
9524
|
+
The runtime log config for job execution.
|
7121
9525
|
"""
|
7122
|
-
|
7123
|
-
pulumi.set(__self__, "driver_log_levels", driver_log_levels)
|
7124
|
-
|
7125
|
-
@property
|
7126
|
-
@pulumi.getter(name="driverLogLevels")
|
7127
|
-
def driver_log_levels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
9526
|
+
properties: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
7128
9527
|
"""
|
7129
|
-
|
9528
|
+
A mapping of property names to values, used to configure SparkR. Properties that conflict with values set by the Dataproc API may be overwritten. Can include properties set in /etc/spark/conf/spark-defaults.conf and classes in user code.
|
7130
9529
|
"""
|
7131
|
-
|
7132
|
-
|
7133
|
-
@driver_log_levels.setter
|
7134
|
-
def driver_log_levels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
7135
|
-
pulumi.set(self, "driver_log_levels", value)
|
7136
|
-
|
9530
|
+
elif False:
|
9531
|
+
WorkflowTemplateJobSparkRJobArgsDict: TypeAlias = Mapping[str, Any]
|
7137
9532
|
|
7138
9533
|
@pulumi.input_type
|
7139
9534
|
class WorkflowTemplateJobSparkRJobArgs:
|
@@ -7237,6 +9632,15 @@ class WorkflowTemplateJobSparkRJobArgs:
|
|
7237
9632
|
pulumi.set(self, "properties", value)
|
7238
9633
|
|
7239
9634
|
|
9635
|
+
if not MYPY:
|
9636
|
+
class WorkflowTemplateJobSparkRJobLoggingConfigArgsDict(TypedDict):
|
9637
|
+
driver_log_levels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
9638
|
+
"""
|
9639
|
+
The per-package log levels for the driver. This may include "root" package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'
|
9640
|
+
"""
|
9641
|
+
elif False:
|
9642
|
+
WorkflowTemplateJobSparkRJobLoggingConfigArgsDict: TypeAlias = Mapping[str, Any]
|
9643
|
+
|
7240
9644
|
@pulumi.input_type
|
7241
9645
|
class WorkflowTemplateJobSparkRJobLoggingConfigArgs:
|
7242
9646
|
def __init__(__self__, *,
|
@@ -7260,6 +9664,35 @@ class WorkflowTemplateJobSparkRJobLoggingConfigArgs:
|
|
7260
9664
|
pulumi.set(self, "driver_log_levels", value)
|
7261
9665
|
|
7262
9666
|
|
9667
|
+
if not MYPY:
|
9668
|
+
class WorkflowTemplateJobSparkSqlJobArgsDict(TypedDict):
|
9669
|
+
jar_file_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
9670
|
+
"""
|
9671
|
+
HCFS URIs of jar files to be added to the Spark CLASSPATH.
|
9672
|
+
"""
|
9673
|
+
logging_config: NotRequired[pulumi.Input['WorkflowTemplateJobSparkSqlJobLoggingConfigArgsDict']]
|
9674
|
+
"""
|
9675
|
+
The runtime log config for job execution.
|
9676
|
+
"""
|
9677
|
+
properties: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
9678
|
+
"""
|
9679
|
+
A mapping of property names to values, used to configure Spark SQL's SparkConf. Properties that conflict with values set by the Dataproc API may be overwritten.
|
9680
|
+
"""
|
9681
|
+
query_file_uri: NotRequired[pulumi.Input[str]]
|
9682
|
+
"""
|
9683
|
+
The HCFS URI of the script that contains SQL queries.
|
9684
|
+
"""
|
9685
|
+
query_list: NotRequired[pulumi.Input['WorkflowTemplateJobSparkSqlJobQueryListArgsDict']]
|
9686
|
+
"""
|
9687
|
+
A list of queries.
|
9688
|
+
"""
|
9689
|
+
script_variables: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
9690
|
+
"""
|
9691
|
+
Mapping of query variable names to values (equivalent to the Spark SQL command: SET `name="value";`).
|
9692
|
+
"""
|
9693
|
+
elif False:
|
9694
|
+
WorkflowTemplateJobSparkSqlJobArgsDict: TypeAlias = Mapping[str, Any]
|
9695
|
+
|
7263
9696
|
@pulumi.input_type
|
7264
9697
|
class WorkflowTemplateJobSparkSqlJobArgs:
|
7265
9698
|
def __init__(__self__, *,
|
@@ -7363,6 +9796,15 @@ class WorkflowTemplateJobSparkSqlJobArgs:
|
|
7363
9796
|
pulumi.set(self, "script_variables", value)
|
7364
9797
|
|
7365
9798
|
|
9799
|
+
if not MYPY:
|
9800
|
+
class WorkflowTemplateJobSparkSqlJobLoggingConfigArgsDict(TypedDict):
|
9801
|
+
driver_log_levels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
9802
|
+
"""
|
9803
|
+
The per-package log levels for the driver. This may include "root" package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'
|
9804
|
+
"""
|
9805
|
+
elif False:
|
9806
|
+
WorkflowTemplateJobSparkSqlJobLoggingConfigArgsDict: TypeAlias = Mapping[str, Any]
|
9807
|
+
|
7366
9808
|
@pulumi.input_type
|
7367
9809
|
class WorkflowTemplateJobSparkSqlJobLoggingConfigArgs:
|
7368
9810
|
def __init__(__self__, *,
|
@@ -7386,6 +9828,15 @@ class WorkflowTemplateJobSparkSqlJobLoggingConfigArgs:
|
|
7386
9828
|
pulumi.set(self, "driver_log_levels", value)
|
7387
9829
|
|
7388
9830
|
|
9831
|
+
if not MYPY:
|
9832
|
+
class WorkflowTemplateJobSparkSqlJobQueryListArgsDict(TypedDict):
|
9833
|
+
queries: pulumi.Input[Sequence[pulumi.Input[str]]]
|
9834
|
+
"""
|
9835
|
+
Required. The queries to execute. You do not need to end a query expression with a semicolon. Multiple queries can be specified in one string by separating each with a semicolon. Here is an example of a Dataproc API snippet that uses a QueryList to specify a HiveJob: "hiveJob": { "queryList": { "queries": } }
|
9836
|
+
"""
|
9837
|
+
elif False:
|
9838
|
+
WorkflowTemplateJobSparkSqlJobQueryListArgsDict: TypeAlias = Mapping[str, Any]
|
9839
|
+
|
7389
9840
|
@pulumi.input_type
|
7390
9841
|
class WorkflowTemplateJobSparkSqlJobQueryListArgs:
|
7391
9842
|
def __init__(__self__, *,
|
@@ -7408,6 +9859,27 @@ class WorkflowTemplateJobSparkSqlJobQueryListArgs:
|
|
7408
9859
|
pulumi.set(self, "queries", value)
|
7409
9860
|
|
7410
9861
|
|
9862
|
+
if not MYPY:
|
9863
|
+
class WorkflowTemplateParameterArgsDict(TypedDict):
|
9864
|
+
fields: pulumi.Input[Sequence[pulumi.Input[str]]]
|
9865
|
+
"""
|
9866
|
+
Required. Paths to all fields that the parameter replaces. A field is allowed to appear in at most one parameter's list of field paths. A field path is similar in syntax to a .sparkJob.args
|
9867
|
+
"""
|
9868
|
+
name: pulumi.Input[str]
|
9869
|
+
"""
|
9870
|
+
Required. Parameter name. The parameter name is used as the key, and paired with the parameter value, which are passed to the template when the template is instantiated. The name must contain only capital letters (A-Z), numbers (0-9), and underscores (_), and must not start with a number. The maximum length is 40 characters.
|
9871
|
+
"""
|
9872
|
+
description: NotRequired[pulumi.Input[str]]
|
9873
|
+
"""
|
9874
|
+
Brief description of the parameter. Must not exceed 1024 characters.
|
9875
|
+
"""
|
9876
|
+
validation: NotRequired[pulumi.Input['WorkflowTemplateParameterValidationArgsDict']]
|
9877
|
+
"""
|
9878
|
+
Validation rules to be applied to this parameter's value.
|
9879
|
+
"""
|
9880
|
+
elif False:
|
9881
|
+
WorkflowTemplateParameterArgsDict: TypeAlias = Mapping[str, Any]
|
9882
|
+
|
7411
9883
|
@pulumi.input_type
|
7412
9884
|
class WorkflowTemplateParameterArgs:
|
7413
9885
|
def __init__(__self__, *,
|
@@ -7477,6 +9949,19 @@ class WorkflowTemplateParameterArgs:
|
|
7477
9949
|
pulumi.set(self, "validation", value)
|
7478
9950
|
|
7479
9951
|
|
9952
|
+
if not MYPY:
|
9953
|
+
class WorkflowTemplateParameterValidationArgsDict(TypedDict):
|
9954
|
+
regex: NotRequired[pulumi.Input['WorkflowTemplateParameterValidationRegexArgsDict']]
|
9955
|
+
"""
|
9956
|
+
Validation based on regular expressions.
|
9957
|
+
"""
|
9958
|
+
values: NotRequired[pulumi.Input['WorkflowTemplateParameterValidationValuesArgsDict']]
|
9959
|
+
"""
|
9960
|
+
Validation based on a list of allowed values.
|
9961
|
+
"""
|
9962
|
+
elif False:
|
9963
|
+
WorkflowTemplateParameterValidationArgsDict: TypeAlias = Mapping[str, Any]
|
9964
|
+
|
7480
9965
|
@pulumi.input_type
|
7481
9966
|
class WorkflowTemplateParameterValidationArgs:
|
7482
9967
|
def __init__(__self__, *,
|
@@ -7516,6 +10001,15 @@ class WorkflowTemplateParameterValidationArgs:
|
|
7516
10001
|
pulumi.set(self, "values", value)
|
7517
10002
|
|
7518
10003
|
|
10004
|
+
if not MYPY:
|
10005
|
+
class WorkflowTemplateParameterValidationRegexArgsDict(TypedDict):
|
10006
|
+
regexes: pulumi.Input[Sequence[pulumi.Input[str]]]
|
10007
|
+
"""
|
10008
|
+
Required. RE2 regular expressions used to validate the parameter's value. The value must match the regex in its entirety (substring matches are not sufficient).
|
10009
|
+
"""
|
10010
|
+
elif False:
|
10011
|
+
WorkflowTemplateParameterValidationRegexArgsDict: TypeAlias = Mapping[str, Any]
|
10012
|
+
|
7519
10013
|
@pulumi.input_type
|
7520
10014
|
class WorkflowTemplateParameterValidationRegexArgs:
|
7521
10015
|
def __init__(__self__, *,
|
@@ -7538,6 +10032,15 @@ class WorkflowTemplateParameterValidationRegexArgs:
|
|
7538
10032
|
pulumi.set(self, "regexes", value)
|
7539
10033
|
|
7540
10034
|
|
10035
|
+
if not MYPY:
|
10036
|
+
class WorkflowTemplateParameterValidationValuesArgsDict(TypedDict):
|
10037
|
+
values: pulumi.Input[Sequence[pulumi.Input[str]]]
|
10038
|
+
"""
|
10039
|
+
Required. List of allowed values for the parameter.
|
10040
|
+
"""
|
10041
|
+
elif False:
|
10042
|
+
WorkflowTemplateParameterValidationValuesArgsDict: TypeAlias = Mapping[str, Any]
|
10043
|
+
|
7541
10044
|
@pulumi.input_type
|
7542
10045
|
class WorkflowTemplateParameterValidationValuesArgs:
|
7543
10046
|
def __init__(__self__, *,
|
@@ -7560,6 +10063,19 @@ class WorkflowTemplateParameterValidationValuesArgs:
|
|
7560
10063
|
pulumi.set(self, "values", value)
|
7561
10064
|
|
7562
10065
|
|
10066
|
+
if not MYPY:
|
10067
|
+
class WorkflowTemplatePlacementArgsDict(TypedDict):
|
10068
|
+
cluster_selector: NotRequired[pulumi.Input['WorkflowTemplatePlacementClusterSelectorArgsDict']]
|
10069
|
+
"""
|
10070
|
+
A selector that chooses target cluster for jobs based on metadata. The selector is evaluated at the time each job is submitted.
|
10071
|
+
"""
|
10072
|
+
managed_cluster: NotRequired[pulumi.Input['WorkflowTemplatePlacementManagedClusterArgsDict']]
|
10073
|
+
"""
|
10074
|
+
A cluster that is managed by the workflow.
|
10075
|
+
"""
|
10076
|
+
elif False:
|
10077
|
+
WorkflowTemplatePlacementArgsDict: TypeAlias = Mapping[str, Any]
|
10078
|
+
|
7563
10079
|
@pulumi.input_type
|
7564
10080
|
class WorkflowTemplatePlacementArgs:
|
7565
10081
|
def __init__(__self__, *,
|
@@ -7599,6 +10115,19 @@ class WorkflowTemplatePlacementArgs:
|
|
7599
10115
|
pulumi.set(self, "managed_cluster", value)
|
7600
10116
|
|
7601
10117
|
|
10118
|
+
if not MYPY:
|
10119
|
+
class WorkflowTemplatePlacementClusterSelectorArgsDict(TypedDict):
|
10120
|
+
cluster_labels: pulumi.Input[Mapping[str, pulumi.Input[str]]]
|
10121
|
+
"""
|
10122
|
+
Required. The cluster labels. Cluster must have all labels to match.
|
10123
|
+
"""
|
10124
|
+
zone: NotRequired[pulumi.Input[str]]
|
10125
|
+
"""
|
10126
|
+
The zone where workflow process executes. This parameter does not affect the selection of the cluster. If unspecified, the zone of the first cluster matching the selector is used.
|
10127
|
+
"""
|
10128
|
+
elif False:
|
10129
|
+
WorkflowTemplatePlacementClusterSelectorArgsDict: TypeAlias = Mapping[str, Any]
|
10130
|
+
|
7602
10131
|
@pulumi.input_type
|
7603
10132
|
class WorkflowTemplatePlacementClusterSelectorArgs:
|
7604
10133
|
def __init__(__self__, *,
|
@@ -7637,6 +10166,23 @@ class WorkflowTemplatePlacementClusterSelectorArgs:
|
|
7637
10166
|
pulumi.set(self, "zone", value)
|
7638
10167
|
|
7639
10168
|
|
10169
|
+
if not MYPY:
|
10170
|
+
class WorkflowTemplatePlacementManagedClusterArgsDict(TypedDict):
|
10171
|
+
cluster_name: pulumi.Input[str]
|
10172
|
+
"""
|
10173
|
+
Required. The cluster name prefix. A unique cluster name will be formed by appending a random suffix. The name must contain only lower-case letters (a-z), numbers (0-9), and hyphens (-). Must begin with a letter. Cannot begin or end with hyphen. Must consist of between 2 and 35 characters.
|
10174
|
+
"""
|
10175
|
+
config: pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigArgsDict']
|
10176
|
+
"""
|
10177
|
+
Required. The cluster configuration.
|
10178
|
+
"""
|
10179
|
+
labels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
10180
|
+
"""
|
10181
|
+
The labels to associate with this cluster. Label keys must be between 1 and 63 characters long, and must conform to the following PCRE regular expression: {0,63} No more than 32 labels can be associated with a given cluster.
|
10182
|
+
"""
|
10183
|
+
elif False:
|
10184
|
+
WorkflowTemplatePlacementManagedClusterArgsDict: TypeAlias = Mapping[str, Any]
|
10185
|
+
|
7640
10186
|
@pulumi.input_type
|
7641
10187
|
class WorkflowTemplatePlacementManagedClusterArgs:
|
7642
10188
|
def __init__(__self__, *,
|
@@ -7690,6 +10236,73 @@ class WorkflowTemplatePlacementManagedClusterArgs:
|
|
7690
10236
|
pulumi.set(self, "labels", value)
|
7691
10237
|
|
7692
10238
|
|
10239
|
+
if not MYPY:
|
10240
|
+
class WorkflowTemplatePlacementManagedClusterConfigArgsDict(TypedDict):
|
10241
|
+
autoscaling_config: NotRequired[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigAutoscalingConfigArgsDict']]
|
10242
|
+
"""
|
10243
|
+
Autoscaling config for the policy associated with the cluster. Cluster does not autoscale if this field is unset.
|
10244
|
+
"""
|
10245
|
+
encryption_config: NotRequired[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigEncryptionConfigArgsDict']]
|
10246
|
+
"""
|
10247
|
+
Encryption settings for the cluster.
|
10248
|
+
"""
|
10249
|
+
endpoint_config: NotRequired[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigEndpointConfigArgsDict']]
|
10250
|
+
"""
|
10251
|
+
Port/endpoint configuration for this cluster
|
10252
|
+
"""
|
10253
|
+
gce_cluster_config: NotRequired[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigArgsDict']]
|
10254
|
+
"""
|
10255
|
+
The shared Compute Engine config settings for all instances in a cluster.
|
10256
|
+
"""
|
10257
|
+
gke_cluster_config: NotRequired[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigGkeClusterConfigArgsDict']]
|
10258
|
+
"""
|
10259
|
+
The Kubernetes Engine config for Dataproc clusters deployed to Kubernetes. Setting this is considered mutually exclusive with Compute Engine-based options such as `gce_cluster_config`, `master_config`, `worker_config`, `secondary_worker_config`, and `autoscaling_config`.
|
10260
|
+
"""
|
10261
|
+
initialization_actions: NotRequired[pulumi.Input[Sequence[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigInitializationActionArgsDict']]]]
|
10262
|
+
"""
|
10263
|
+
Commands to execute on each node after config is completed. By default, executables are run on master and all worker nodes. You can test a node's `role` metadata to run an executable on a master or worker node, as shown below using `curl` (you can also use `wget`): ROLE=$(curl -H Metadata-Flavor:Google http://metadata/computeMetadata/v1/instance/attributes/dataproc-role) if ; then ... master specific actions ... else ... worker specific actions ... fi
|
10264
|
+
"""
|
10265
|
+
lifecycle_config: NotRequired[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigLifecycleConfigArgsDict']]
|
10266
|
+
"""
|
10267
|
+
Lifecycle setting for the cluster.
|
10268
|
+
"""
|
10269
|
+
master_config: NotRequired[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigMasterConfigArgsDict']]
|
10270
|
+
"""
|
10271
|
+
The Compute Engine config settings for additional worker instances in a cluster.
|
10272
|
+
"""
|
10273
|
+
metastore_config: NotRequired[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigMetastoreConfigArgsDict']]
|
10274
|
+
"""
|
10275
|
+
Metastore configuration.
|
10276
|
+
"""
|
10277
|
+
secondary_worker_config: NotRequired[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigArgsDict']]
|
10278
|
+
"""
|
10279
|
+
The Compute Engine config settings for additional worker instances in a cluster.
|
10280
|
+
"""
|
10281
|
+
security_config: NotRequired[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigSecurityConfigArgsDict']]
|
10282
|
+
"""
|
10283
|
+
Security settings for the cluster.
|
10284
|
+
"""
|
10285
|
+
software_config: NotRequired[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigSoftwareConfigArgsDict']]
|
10286
|
+
"""
|
10287
|
+
The config settings for software inside the cluster.
|
10288
|
+
"""
|
10289
|
+
staging_bucket: NotRequired[pulumi.Input[str]]
|
10290
|
+
"""
|
10291
|
+
A Cloud Storage bucket used to stage job dependencies, config files, and job driver console output. If you do not specify a staging bucket, Cloud Dataproc will determine a Cloud Storage location (US, ASIA, or EU) for your cluster's staging bucket according to the Compute Engine zone where your cluster is deployed, and then create and manage this project-level, per-location bucket (see (https://cloud.google.com/dataproc/docs/concepts/configuring-clusters/staging-bucket)).
|
10292
|
+
"""
|
10293
|
+
temp_bucket: NotRequired[pulumi.Input[str]]
|
10294
|
+
"""
|
10295
|
+
A Cloud Storage bucket used to store ephemeral cluster and jobs data, such as Spark and MapReduce history files. If you do not specify a temp bucket, Dataproc will determine a Cloud Storage location (US, ASIA, or EU) for your cluster's temp bucket according to the Compute Engine zone where your cluster is deployed, and then create and manage this project-level, per-location bucket. The default bucket has a TTL of 90 days, but you can use any TTL (or none) if you specify a bucket.
|
10296
|
+
"""
|
10297
|
+
worker_config: NotRequired[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigWorkerConfigArgsDict']]
|
10298
|
+
"""
|
10299
|
+
The Compute Engine config settings for additional worker instances in a cluster.
|
10300
|
+
|
10301
|
+
- - -
|
10302
|
+
"""
|
10303
|
+
elif False:
|
10304
|
+
WorkflowTemplatePlacementManagedClusterConfigArgsDict: TypeAlias = Mapping[str, Any]
|
10305
|
+
|
7693
10306
|
@pulumi.input_type
|
7694
10307
|
class WorkflowTemplatePlacementManagedClusterConfigArgs:
|
7695
10308
|
def __init__(__self__, *,
|
@@ -7941,6 +10554,15 @@ class WorkflowTemplatePlacementManagedClusterConfigArgs:
|
|
7941
10554
|
pulumi.set(self, "worker_config", value)
|
7942
10555
|
|
7943
10556
|
|
10557
|
+
if not MYPY:
|
10558
|
+
class WorkflowTemplatePlacementManagedClusterConfigAutoscalingConfigArgsDict(TypedDict):
|
10559
|
+
policy: NotRequired[pulumi.Input[str]]
|
10560
|
+
"""
|
10561
|
+
The autoscaling policy used by the cluster. Only resource names including projectid and location (region) are valid. Examples: * `https://www.googleapis.com/compute/v1/projects/` Note that the policy must be in the same project and Dataproc region.
|
10562
|
+
"""
|
10563
|
+
elif False:
|
10564
|
+
WorkflowTemplatePlacementManagedClusterConfigAutoscalingConfigArgsDict: TypeAlias = Mapping[str, Any]
|
10565
|
+
|
7944
10566
|
@pulumi.input_type
|
7945
10567
|
class WorkflowTemplatePlacementManagedClusterConfigAutoscalingConfigArgs:
|
7946
10568
|
def __init__(__self__, *,
|
@@ -7964,6 +10586,15 @@ class WorkflowTemplatePlacementManagedClusterConfigAutoscalingConfigArgs:
|
|
7964
10586
|
pulumi.set(self, "policy", value)
|
7965
10587
|
|
7966
10588
|
|
10589
|
+
if not MYPY:
|
10590
|
+
class WorkflowTemplatePlacementManagedClusterConfigEncryptionConfigArgsDict(TypedDict):
|
10591
|
+
gce_pd_kms_key_name: NotRequired[pulumi.Input[str]]
|
10592
|
+
"""
|
10593
|
+
The Cloud KMS key name to use for PD disk encryption for all instances in the cluster.
|
10594
|
+
"""
|
10595
|
+
elif False:
|
10596
|
+
WorkflowTemplatePlacementManagedClusterConfigEncryptionConfigArgsDict: TypeAlias = Mapping[str, Any]
|
10597
|
+
|
7967
10598
|
@pulumi.input_type
|
7968
10599
|
class WorkflowTemplatePlacementManagedClusterConfigEncryptionConfigArgs:
|
7969
10600
|
def __init__(__self__, *,
|
@@ -7987,6 +10618,19 @@ class WorkflowTemplatePlacementManagedClusterConfigEncryptionConfigArgs:
|
|
7987
10618
|
pulumi.set(self, "gce_pd_kms_key_name", value)
|
7988
10619
|
|
7989
10620
|
|
10621
|
+
if not MYPY:
|
10622
|
+
class WorkflowTemplatePlacementManagedClusterConfigEndpointConfigArgsDict(TypedDict):
|
10623
|
+
enable_http_port_access: NotRequired[pulumi.Input[bool]]
|
10624
|
+
"""
|
10625
|
+
If true, enable http access to specific ports on the cluster from external sources. Defaults to false.
|
10626
|
+
"""
|
10627
|
+
http_ports: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
10628
|
+
"""
|
10629
|
+
Output only. The map of port descriptions to URLs. Will only be populated if enable_http_port_access is true.
|
10630
|
+
"""
|
10631
|
+
elif False:
|
10632
|
+
WorkflowTemplatePlacementManagedClusterConfigEndpointConfigArgsDict: TypeAlias = Mapping[str, Any]
|
10633
|
+
|
7990
10634
|
@pulumi.input_type
|
7991
10635
|
class WorkflowTemplatePlacementManagedClusterConfigEndpointConfigArgs:
|
7992
10636
|
def __init__(__self__, *,
|
@@ -8026,6 +10670,59 @@ class WorkflowTemplatePlacementManagedClusterConfigEndpointConfigArgs:
|
|
8026
10670
|
pulumi.set(self, "http_ports", value)
|
8027
10671
|
|
8028
10672
|
|
10673
|
+
if not MYPY:
|
10674
|
+
class WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigArgsDict(TypedDict):
|
10675
|
+
internal_ip_only: NotRequired[pulumi.Input[bool]]
|
10676
|
+
"""
|
10677
|
+
If true, all instances in the cluster will only have internal IP addresses. By default, clusters are not restricted to internal IP addresses, and will have ephemeral external IP addresses assigned to each instance. This `internal_ip_only` restriction can only be enabled for subnetwork enabled networks, and all off-cluster dependencies must be configured to be accessible without external IP addresses.
|
10678
|
+
"""
|
10679
|
+
metadata: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
10680
|
+
"""
|
10681
|
+
The Compute Engine metadata entries to add to all instances (see (https://cloud.google.com/compute/docs/storing-retrieving-metadata#project_and_instance_metadata)).
|
10682
|
+
"""
|
10683
|
+
network: NotRequired[pulumi.Input[str]]
|
10684
|
+
"""
|
10685
|
+
The Compute Engine network to be used for machine communications. Cannot be specified with subnetwork_uri. If neither `network_uri` nor `subnetwork_uri` is specified, the "default" network of the project is used, if it exists. Cannot be a "Custom Subnet Network" (see /regions/global/default` * `default`
|
10686
|
+
"""
|
10687
|
+
node_group_affinity: NotRequired[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigNodeGroupAffinityArgsDict']]
|
10688
|
+
"""
|
10689
|
+
Node Group Affinity for sole-tenant clusters.
|
10690
|
+
"""
|
10691
|
+
private_ipv6_google_access: NotRequired[pulumi.Input[str]]
|
10692
|
+
"""
|
10693
|
+
The type of IPv6 access for a cluster. Possible values: PRIVATE_IPV6_GOOGLE_ACCESS_UNSPECIFIED, INHERIT_FROM_SUBNETWORK, OUTBOUND, BIDIRECTIONAL
|
10694
|
+
"""
|
10695
|
+
reservation_affinity: NotRequired[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigReservationAffinityArgsDict']]
|
10696
|
+
"""
|
10697
|
+
Reservation Affinity for consuming Zonal reservation.
|
10698
|
+
"""
|
10699
|
+
service_account: NotRequired[pulumi.Input[str]]
|
10700
|
+
"""
|
10701
|
+
The (https://cloud.google.com/compute/docs/access/service-accounts#default_service_account) is used.
|
10702
|
+
"""
|
10703
|
+
service_account_scopes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
10704
|
+
"""
|
10705
|
+
The URIs of service account scopes to be included in Compute Engine instances. The following base set of scopes is always included: * https://www.googleapis.com/auth/cloud.useraccounts.readonly * https://www.googleapis.com/auth/devstorage.read_write * https://www.googleapis.com/auth/logging.write If no scopes are specified, the following defaults are also provided: * https://www.googleapis.com/auth/bigquery * https://www.googleapis.com/auth/bigtable.admin.table * https://www.googleapis.com/auth/bigtable.data * https://www.googleapis.com/auth/devstorage.full_control
|
10706
|
+
"""
|
10707
|
+
shielded_instance_config: NotRequired[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigShieldedInstanceConfigArgsDict']]
|
10708
|
+
"""
|
10709
|
+
Shielded Instance Config for clusters using [Compute Engine Shielded VMs](https://cloud.google.com/security/shielded-cloud/shielded-vm). Structure defined below.
|
10710
|
+
"""
|
10711
|
+
subnetwork: NotRequired[pulumi.Input[str]]
|
10712
|
+
"""
|
10713
|
+
The Compute Engine subnetwork to be used for machine communications. Cannot be specified with network_uri. A full URL, partial URI, or short name are valid. Examples: * `https://www.googleapis.com/compute/v1/projects//regions/us-east1/subnetworks/sub0` * `sub0`
|
10714
|
+
"""
|
10715
|
+
tags: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
10716
|
+
"""
|
10717
|
+
The Compute Engine tags to add to all instances (see (https://cloud.google.com/compute/docs/label-or-tag-resources#tags)).
|
10718
|
+
"""
|
10719
|
+
zone: NotRequired[pulumi.Input[str]]
|
10720
|
+
"""
|
10721
|
+
The zone where the Compute Engine cluster will be located. On a create request, it is required in the "global" region. If omitted in a non-global Dataproc region, the service will pick a zone in the corresponding Compute Engine region. On a get request, zone will always be present. A full URL, partial URI, or short name are valid. Examples: * `https://www.googleapis.com/compute/v1/projects/` * `us-central1-f`
|
10722
|
+
"""
|
10723
|
+
elif False:
|
10724
|
+
WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigArgsDict: TypeAlias = Mapping[str, Any]
|
10725
|
+
|
8029
10726
|
@pulumi.input_type
|
8030
10727
|
class WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigArgs:
|
8031
10728
|
def __init__(__self__, *,
|
@@ -8225,6 +10922,15 @@ class WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigArgs:
|
|
8225
10922
|
pulumi.set(self, "zone", value)
|
8226
10923
|
|
8227
10924
|
|
10925
|
+
if not MYPY:
|
10926
|
+
class WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigNodeGroupAffinityArgsDict(TypedDict):
|
10927
|
+
node_group: pulumi.Input[str]
|
10928
|
+
"""
|
10929
|
+
Required. The URI of a sole-tenant /zones/us-central1-a/nodeGroups/node-group-1` * `node-group-1`
|
10930
|
+
"""
|
10931
|
+
elif False:
|
10932
|
+
WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigNodeGroupAffinityArgsDict: TypeAlias = Mapping[str, Any]
|
10933
|
+
|
8228
10934
|
@pulumi.input_type
|
8229
10935
|
class WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigNodeGroupAffinityArgs:
|
8230
10936
|
def __init__(__self__, *,
|
@@ -8247,6 +10953,23 @@ class WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigNodeGroupAffi
|
|
8247
10953
|
pulumi.set(self, "node_group", value)
|
8248
10954
|
|
8249
10955
|
|
10956
|
+
if not MYPY:
|
10957
|
+
class WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigReservationAffinityArgsDict(TypedDict):
|
10958
|
+
consume_reservation_type: NotRequired[pulumi.Input[str]]
|
10959
|
+
"""
|
10960
|
+
Type of reservation to consume Possible values: TYPE_UNSPECIFIED, NO_RESERVATION, ANY_RESERVATION, SPECIFIC_RESERVATION
|
10961
|
+
"""
|
10962
|
+
key: NotRequired[pulumi.Input[str]]
|
10963
|
+
"""
|
10964
|
+
Corresponds to the label key of reservation resource.
|
10965
|
+
"""
|
10966
|
+
values: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
10967
|
+
"""
|
10968
|
+
Corresponds to the label values of reservation resource.
|
10969
|
+
"""
|
10970
|
+
elif False:
|
10971
|
+
WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigReservationAffinityArgsDict: TypeAlias = Mapping[str, Any]
|
10972
|
+
|
8250
10973
|
@pulumi.input_type
|
8251
10974
|
class WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigReservationAffinityArgs:
|
8252
10975
|
def __init__(__self__, *,
|
@@ -8302,6 +11025,23 @@ class WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigReservationAf
|
|
8302
11025
|
pulumi.set(self, "values", value)
|
8303
11026
|
|
8304
11027
|
|
11028
|
+
if not MYPY:
|
11029
|
+
class WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigShieldedInstanceConfigArgsDict(TypedDict):
|
11030
|
+
enable_integrity_monitoring: NotRequired[pulumi.Input[bool]]
|
11031
|
+
"""
|
11032
|
+
Defines whether instances have [Integrity Monitoring](https://cloud.google.com/compute/shielded-vm/docs/shielded-vm#integrity-monitoring) enabled.
|
11033
|
+
"""
|
11034
|
+
enable_secure_boot: NotRequired[pulumi.Input[bool]]
|
11035
|
+
"""
|
11036
|
+
Defines whether instances have [Secure Boot](https://cloud.google.com/compute/shielded-vm/docs/shielded-vm#secure-boot) enabled.
|
11037
|
+
"""
|
11038
|
+
enable_vtpm: NotRequired[pulumi.Input[bool]]
|
11039
|
+
"""
|
11040
|
+
Defines whether instances have the [vTPM](https://cloud.google.com/compute/shielded-vm/docs/shielded-vm#vtpm) enabled.
|
11041
|
+
"""
|
11042
|
+
elif False:
|
11043
|
+
WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigShieldedInstanceConfigArgsDict: TypeAlias = Mapping[str, Any]
|
11044
|
+
|
8305
11045
|
@pulumi.input_type
|
8306
11046
|
class WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigShieldedInstanceConfigArgs:
|
8307
11047
|
def __init__(__self__, *,
|
@@ -8357,6 +11097,15 @@ class WorkflowTemplatePlacementManagedClusterConfigGceClusterConfigShieldedInsta
|
|
8357
11097
|
pulumi.set(self, "enable_vtpm", value)
|
8358
11098
|
|
8359
11099
|
|
11100
|
+
if not MYPY:
|
11101
|
+
class WorkflowTemplatePlacementManagedClusterConfigGkeClusterConfigArgsDict(TypedDict):
|
11102
|
+
namespaced_gke_deployment_target: NotRequired[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigGkeClusterConfigNamespacedGkeDeploymentTargetArgsDict']]
|
11103
|
+
"""
|
11104
|
+
A target for the deployment.
|
11105
|
+
"""
|
11106
|
+
elif False:
|
11107
|
+
WorkflowTemplatePlacementManagedClusterConfigGkeClusterConfigArgsDict: TypeAlias = Mapping[str, Any]
|
11108
|
+
|
8360
11109
|
@pulumi.input_type
|
8361
11110
|
class WorkflowTemplatePlacementManagedClusterConfigGkeClusterConfigArgs:
|
8362
11111
|
def __init__(__self__, *,
|
@@ -8380,6 +11129,19 @@ class WorkflowTemplatePlacementManagedClusterConfigGkeClusterConfigArgs:
|
|
8380
11129
|
pulumi.set(self, "namespaced_gke_deployment_target", value)
|
8381
11130
|
|
8382
11131
|
|
11132
|
+
if not MYPY:
|
11133
|
+
class WorkflowTemplatePlacementManagedClusterConfigGkeClusterConfigNamespacedGkeDeploymentTargetArgsDict(TypedDict):
|
11134
|
+
cluster_namespace: NotRequired[pulumi.Input[str]]
|
11135
|
+
"""
|
11136
|
+
A namespace within the GKE cluster to deploy into.
|
11137
|
+
"""
|
11138
|
+
target_gke_cluster: NotRequired[pulumi.Input[str]]
|
11139
|
+
"""
|
11140
|
+
The target GKE cluster to deploy to. Format: 'projects/{project}/locations/{location}/clusters/{cluster_id}'
|
11141
|
+
"""
|
11142
|
+
elif False:
|
11143
|
+
WorkflowTemplatePlacementManagedClusterConfigGkeClusterConfigNamespacedGkeDeploymentTargetArgsDict: TypeAlias = Mapping[str, Any]
|
11144
|
+
|
8383
11145
|
@pulumi.input_type
|
8384
11146
|
class WorkflowTemplatePlacementManagedClusterConfigGkeClusterConfigNamespacedGkeDeploymentTargetArgs:
|
8385
11147
|
def __init__(__self__, *,
|
@@ -8419,6 +11181,19 @@ class WorkflowTemplatePlacementManagedClusterConfigGkeClusterConfigNamespacedGke
|
|
8419
11181
|
pulumi.set(self, "target_gke_cluster", value)
|
8420
11182
|
|
8421
11183
|
|
11184
|
+
if not MYPY:
|
11185
|
+
class WorkflowTemplatePlacementManagedClusterConfigInitializationActionArgsDict(TypedDict):
|
11186
|
+
executable_file: NotRequired[pulumi.Input[str]]
|
11187
|
+
"""
|
11188
|
+
Required. Cloud Storage URI of executable file.
|
11189
|
+
"""
|
11190
|
+
execution_timeout: NotRequired[pulumi.Input[str]]
|
11191
|
+
"""
|
11192
|
+
Amount of time executable has to complete. Default is 10 minutes (see JSON representation of (https://developers.google.com/protocol-buffers/docs/proto3#json)). Cluster creation fails with an explanatory error message (the name of the executable that caused the error and the exceeded timeout period) if the executable is not completed at end of the timeout period.
|
11193
|
+
"""
|
11194
|
+
elif False:
|
11195
|
+
WorkflowTemplatePlacementManagedClusterConfigInitializationActionArgsDict: TypeAlias = Mapping[str, Any]
|
11196
|
+
|
8422
11197
|
@pulumi.input_type
|
8423
11198
|
class WorkflowTemplatePlacementManagedClusterConfigInitializationActionArgs:
|
8424
11199
|
def __init__(__self__, *,
|
@@ -8449,14 +11224,35 @@ class WorkflowTemplatePlacementManagedClusterConfigInitializationActionArgs:
|
|
8449
11224
|
@pulumi.getter(name="executionTimeout")
|
8450
11225
|
def execution_timeout(self) -> Optional[pulumi.Input[str]]:
|
8451
11226
|
"""
|
8452
|
-
Amount of time executable has to complete. Default is 10 minutes (see JSON representation of (https://developers.google.com/protocol-buffers/docs/proto3#json)). Cluster creation fails with an explanatory error message (the name of the executable that caused the error and the exceeded timeout period) if the executable is not completed at end of the timeout period.
|
11227
|
+
Amount of time executable has to complete. Default is 10 minutes (see JSON representation of (https://developers.google.com/protocol-buffers/docs/proto3#json)). Cluster creation fails with an explanatory error message (the name of the executable that caused the error and the exceeded timeout period) if the executable is not completed at end of the timeout period.
|
11228
|
+
"""
|
11229
|
+
return pulumi.get(self, "execution_timeout")
|
11230
|
+
|
11231
|
+
@execution_timeout.setter
|
11232
|
+
def execution_timeout(self, value: Optional[pulumi.Input[str]]):
|
11233
|
+
pulumi.set(self, "execution_timeout", value)
|
11234
|
+
|
11235
|
+
|
11236
|
+
if not MYPY:
|
11237
|
+
class WorkflowTemplatePlacementManagedClusterConfigLifecycleConfigArgsDict(TypedDict):
|
11238
|
+
auto_delete_time: NotRequired[pulumi.Input[str]]
|
11239
|
+
"""
|
11240
|
+
The time when cluster will be auto-deleted (see JSON representation of (https://developers.google.com/protocol-buffers/docs/proto3#json)).
|
11241
|
+
"""
|
11242
|
+
auto_delete_ttl: NotRequired[pulumi.Input[str]]
|
11243
|
+
"""
|
11244
|
+
The lifetime duration of cluster. The cluster will be auto-deleted at the end of this period. Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of (https://developers.google.com/protocol-buffers/docs/proto3#json)).
|
11245
|
+
"""
|
11246
|
+
idle_delete_ttl: NotRequired[pulumi.Input[str]]
|
8453
11247
|
"""
|
8454
|
-
|
8455
|
-
|
8456
|
-
|
8457
|
-
|
8458
|
-
|
8459
|
-
|
11248
|
+
The duration to keep the cluster alive while idling (when no jobs are running). Passing this threshold will cause the cluster to be deleted. Minimum value is 5 minutes; maximum value is 14 days (see JSON representation of (https://developers.google.com/protocol-buffers/docs/proto3#json).
|
11249
|
+
"""
|
11250
|
+
idle_start_time: NotRequired[pulumi.Input[str]]
|
11251
|
+
"""
|
11252
|
+
Output only. The time when cluster became idle (most recent job finished) and became eligible for deletion due to idleness (see JSON representation of (https://developers.google.com/protocol-buffers/docs/proto3#json)).
|
11253
|
+
"""
|
11254
|
+
elif False:
|
11255
|
+
WorkflowTemplatePlacementManagedClusterConfigLifecycleConfigArgsDict: TypeAlias = Mapping[str, Any]
|
8460
11256
|
|
8461
11257
|
@pulumi.input_type
|
8462
11258
|
class WorkflowTemplatePlacementManagedClusterConfigLifecycleConfigArgs:
|
@@ -8529,6 +11325,51 @@ class WorkflowTemplatePlacementManagedClusterConfigLifecycleConfigArgs:
|
|
8529
11325
|
pulumi.set(self, "idle_start_time", value)
|
8530
11326
|
|
8531
11327
|
|
11328
|
+
if not MYPY:
|
11329
|
+
class WorkflowTemplatePlacementManagedClusterConfigMasterConfigArgsDict(TypedDict):
|
11330
|
+
accelerators: NotRequired[pulumi.Input[Sequence[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigMasterConfigAcceleratorArgsDict']]]]
|
11331
|
+
"""
|
11332
|
+
The Compute Engine accelerator configuration for these instances.
|
11333
|
+
"""
|
11334
|
+
disk_config: NotRequired[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigMasterConfigDiskConfigArgsDict']]
|
11335
|
+
"""
|
11336
|
+
Disk option config settings.
|
11337
|
+
"""
|
11338
|
+
image: NotRequired[pulumi.Input[str]]
|
11339
|
+
"""
|
11340
|
+
The Compute Engine image resource used for cluster instances. The URI can represent an image or image family. Image examples: * `https://www.googleapis.com/compute/beta/projects/` If the URI is unspecified, it will be inferred from `SoftwareConfig.image_version` or the system default.
|
11341
|
+
"""
|
11342
|
+
instance_names: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
11343
|
+
"""
|
11344
|
+
Output only. The list of instance names. Dataproc derives the names from `cluster_name`, `num_instances`, and the instance group.
|
11345
|
+
"""
|
11346
|
+
is_preemptible: NotRequired[pulumi.Input[bool]]
|
11347
|
+
"""
|
11348
|
+
Output only. Specifies that this instance group contains preemptible instances.
|
11349
|
+
"""
|
11350
|
+
machine_type: NotRequired[pulumi.Input[str]]
|
11351
|
+
"""
|
11352
|
+
The Compute Engine machine type used for cluster instances. A full URL, partial URI, or short name are valid. Examples: * `https://www.googleapis.com/compute/v1/projects/(https://cloud.google.com/dataproc/docs/concepts/configuring-clusters/auto-zone#using_auto_zone_placement) feature, you must use the short name of the machine type resource, for example, `n1-standard-2`.
|
11353
|
+
"""
|
11354
|
+
managed_group_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigMasterConfigManagedGroupConfigArgsDict']]]]
|
11355
|
+
"""
|
11356
|
+
Output only. The config for Compute Engine Instance Group Manager that manages this group. This is only used for preemptible instance groups.
|
11357
|
+
"""
|
11358
|
+
min_cpu_platform: NotRequired[pulumi.Input[str]]
|
11359
|
+
"""
|
11360
|
+
Specifies the minimum cpu platform for the Instance Group. See (https://cloud.google.com/dataproc/docs/concepts/compute/dataproc-min-cpu).
|
11361
|
+
"""
|
11362
|
+
num_instances: NotRequired[pulumi.Input[int]]
|
11363
|
+
"""
|
11364
|
+
The number of VM instances in the instance group. For master instance groups, must be set to 1.
|
11365
|
+
"""
|
11366
|
+
preemptibility: NotRequired[pulumi.Input[str]]
|
11367
|
+
"""
|
11368
|
+
Specifies the preemptibility of the instance group. The default value for master and worker groups is `NON_PREEMPTIBLE`. This default cannot be changed. The default value for secondary instances is `PREEMPTIBLE`. Possible values: PREEMPTIBILITY_UNSPECIFIED, NON_PREEMPTIBLE, PREEMPTIBLE
|
11369
|
+
"""
|
11370
|
+
elif False:
|
11371
|
+
WorkflowTemplatePlacementManagedClusterConfigMasterConfigArgsDict: TypeAlias = Mapping[str, Any]
|
11372
|
+
|
8532
11373
|
@pulumi.input_type
|
8533
11374
|
class WorkflowTemplatePlacementManagedClusterConfigMasterConfigArgs:
|
8534
11375
|
def __init__(__self__, *,
|
@@ -8696,6 +11537,19 @@ class WorkflowTemplatePlacementManagedClusterConfigMasterConfigArgs:
|
|
8696
11537
|
pulumi.set(self, "preemptibility", value)
|
8697
11538
|
|
8698
11539
|
|
11540
|
+
if not MYPY:
|
11541
|
+
class WorkflowTemplatePlacementManagedClusterConfigMasterConfigAcceleratorArgsDict(TypedDict):
|
11542
|
+
accelerator_count: NotRequired[pulumi.Input[int]]
|
11543
|
+
"""
|
11544
|
+
The number of the accelerator cards of this type exposed to this instance.
|
11545
|
+
"""
|
11546
|
+
accelerator_type: NotRequired[pulumi.Input[str]]
|
11547
|
+
"""
|
11548
|
+
Full URL, partial URI, or short name of the accelerator type resource to expose to this instance. See (https://cloud.google.com/dataproc/docs/concepts/configuring-clusters/auto-zone#using_auto_zone_placement) feature, you must use the short name of the accelerator type resource, for example, `nvidia-tesla-k80`.
|
11549
|
+
"""
|
11550
|
+
elif False:
|
11551
|
+
WorkflowTemplatePlacementManagedClusterConfigMasterConfigAcceleratorArgsDict: TypeAlias = Mapping[str, Any]
|
11552
|
+
|
8699
11553
|
@pulumi.input_type
|
8700
11554
|
class WorkflowTemplatePlacementManagedClusterConfigMasterConfigAcceleratorArgs:
|
8701
11555
|
def __init__(__self__, *,
|
@@ -8735,6 +11589,23 @@ class WorkflowTemplatePlacementManagedClusterConfigMasterConfigAcceleratorArgs:
|
|
8735
11589
|
pulumi.set(self, "accelerator_type", value)
|
8736
11590
|
|
8737
11591
|
|
11592
|
+
if not MYPY:
|
11593
|
+
class WorkflowTemplatePlacementManagedClusterConfigMasterConfigDiskConfigArgsDict(TypedDict):
|
11594
|
+
boot_disk_size_gb: NotRequired[pulumi.Input[int]]
|
11595
|
+
"""
|
11596
|
+
Size in GB of the boot disk (default is 500GB).
|
11597
|
+
"""
|
11598
|
+
boot_disk_type: NotRequired[pulumi.Input[str]]
|
11599
|
+
"""
|
11600
|
+
Type of the boot disk (default is "pd-standard"). Valid values: "pd-ssd" (Persistent Disk Solid State Drive) or "pd-standard" (Persistent Disk Hard Disk Drive).
|
11601
|
+
"""
|
11602
|
+
num_local_ssds: NotRequired[pulumi.Input[int]]
|
11603
|
+
"""
|
11604
|
+
Number of attached SSDs, from 0 to 4 (default is 0). If SSDs are not attached, the boot disk is used to store runtime logs and (https://hadoop.apache.org/docs/r1.2.1/hdfs_user_guide.html) data. If one or more SSDs are attached, this runtime bulk data is spread across them, and the boot disk contains only basic config and installed binaries.
|
11605
|
+
"""
|
11606
|
+
elif False:
|
11607
|
+
WorkflowTemplatePlacementManagedClusterConfigMasterConfigDiskConfigArgsDict: TypeAlias = Mapping[str, Any]
|
11608
|
+
|
8738
11609
|
@pulumi.input_type
|
8739
11610
|
class WorkflowTemplatePlacementManagedClusterConfigMasterConfigDiskConfigArgs:
|
8740
11611
|
def __init__(__self__, *,
|
@@ -8790,6 +11661,19 @@ class WorkflowTemplatePlacementManagedClusterConfigMasterConfigDiskConfigArgs:
|
|
8790
11661
|
pulumi.set(self, "num_local_ssds", value)
|
8791
11662
|
|
8792
11663
|
|
11664
|
+
if not MYPY:
|
11665
|
+
class WorkflowTemplatePlacementManagedClusterConfigMasterConfigManagedGroupConfigArgsDict(TypedDict):
|
11666
|
+
instance_group_manager_name: NotRequired[pulumi.Input[str]]
|
11667
|
+
"""
|
11668
|
+
Output only. The name of the Instance Group Manager for this group.
|
11669
|
+
"""
|
11670
|
+
instance_template_name: NotRequired[pulumi.Input[str]]
|
11671
|
+
"""
|
11672
|
+
Output only. The name of the Instance Template used for the Managed Instance Group.
|
11673
|
+
"""
|
11674
|
+
elif False:
|
11675
|
+
WorkflowTemplatePlacementManagedClusterConfigMasterConfigManagedGroupConfigArgsDict: TypeAlias = Mapping[str, Any]
|
11676
|
+
|
8793
11677
|
@pulumi.input_type
|
8794
11678
|
class WorkflowTemplatePlacementManagedClusterConfigMasterConfigManagedGroupConfigArgs:
|
8795
11679
|
def __init__(__self__, *,
|
@@ -8829,6 +11713,15 @@ class WorkflowTemplatePlacementManagedClusterConfigMasterConfigManagedGroupConfi
|
|
8829
11713
|
pulumi.set(self, "instance_template_name", value)
|
8830
11714
|
|
8831
11715
|
|
11716
|
+
if not MYPY:
|
11717
|
+
class WorkflowTemplatePlacementManagedClusterConfigMetastoreConfigArgsDict(TypedDict):
|
11718
|
+
dataproc_metastore_service: pulumi.Input[str]
|
11719
|
+
"""
|
11720
|
+
Required. Resource name of an existing Dataproc Metastore service. Example: * `projects/`
|
11721
|
+
"""
|
11722
|
+
elif False:
|
11723
|
+
WorkflowTemplatePlacementManagedClusterConfigMetastoreConfigArgsDict: TypeAlias = Mapping[str, Any]
|
11724
|
+
|
8832
11725
|
@pulumi.input_type
|
8833
11726
|
class WorkflowTemplatePlacementManagedClusterConfigMetastoreConfigArgs:
|
8834
11727
|
def __init__(__self__, *,
|
@@ -8851,6 +11744,51 @@ class WorkflowTemplatePlacementManagedClusterConfigMetastoreConfigArgs:
|
|
8851
11744
|
pulumi.set(self, "dataproc_metastore_service", value)
|
8852
11745
|
|
8853
11746
|
|
11747
|
+
if not MYPY:
|
11748
|
+
class WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigArgsDict(TypedDict):
|
11749
|
+
accelerators: NotRequired[pulumi.Input[Sequence[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigAcceleratorArgsDict']]]]
|
11750
|
+
"""
|
11751
|
+
Optional. The Compute Engine accelerator configuration for these instances.
|
11752
|
+
"""
|
11753
|
+
disk_config: NotRequired[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigDiskConfigArgsDict']]
|
11754
|
+
"""
|
11755
|
+
Optional. Disk option config settings.
|
11756
|
+
"""
|
11757
|
+
image: NotRequired[pulumi.Input[str]]
|
11758
|
+
"""
|
11759
|
+
Optional. The Compute Engine image resource used for cluster instances. The URI can represent an image or image family. Image examples: * `https://www.googleapis.com/compute/beta/projects/[project_id]/global/images/[image-id]` * `projects/[project_id]/global/images/[image-id]` * `image-id` Image family examples. Dataproc will use the most recent image from the family: * `https://www.googleapis.com/compute/beta/projects/[project_id]/global/images/family/[custom-image-family-name]` * `projects/[project_id]/global/images/family/[custom-image-family-name]` If the URI is unspecified, it will be inferred from `SoftwareConfig.image_version` or the system default.
|
11760
|
+
"""
|
11761
|
+
instance_names: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
11762
|
+
"""
|
11763
|
+
Output only. The list of instance names. Dataproc derives the names from `cluster_name`, `num_instances`, and the instance group.
|
11764
|
+
"""
|
11765
|
+
is_preemptible: NotRequired[pulumi.Input[bool]]
|
11766
|
+
"""
|
11767
|
+
Output only. Specifies that this instance group contains preemptible instances.
|
11768
|
+
"""
|
11769
|
+
machine_type: NotRequired[pulumi.Input[str]]
|
11770
|
+
"""
|
11771
|
+
Optional. The Compute Engine machine type used for cluster instances. A full URL, partial URI, or short name are valid. Examples: * `https://www.googleapis.com/compute/v1/projects/[project_id]/zones/us-east1-a/machineTypes/n1-standard-2` * `projects/[project_id]/zones/us-east1-a/machineTypes/n1-standard-2` * `n1-standard-2` **Auto Zone Exception**: If you are using the Dataproc [Auto Zone Placement](https://cloud.google.com/dataproc/docs/concepts/configuring-clusters/auto-zone#using_auto_zone_placement) feature, you must use the short name of the machine type resource, for example, `n1-standard-2`.
|
11772
|
+
"""
|
11773
|
+
managed_group_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigManagedGroupConfigArgsDict']]]]
|
11774
|
+
"""
|
11775
|
+
Output only. The config for Compute Engine Instance Group Manager that manages this group. This is only used for preemptible instance groups.
|
11776
|
+
"""
|
11777
|
+
min_cpu_platform: NotRequired[pulumi.Input[str]]
|
11778
|
+
"""
|
11779
|
+
Optional. Specifies the minimum cpu platform for the Instance Group. See [Dataproc > Minimum CPU Platform](https://cloud.google.com/dataproc/docs/concepts/compute/dataproc-min-cpu).
|
11780
|
+
"""
|
11781
|
+
num_instances: NotRequired[pulumi.Input[int]]
|
11782
|
+
"""
|
11783
|
+
Optional. The number of VM instances in the instance group. For [HA cluster](https://www.terraform.io/dataproc/docs/concepts/configuring-clusters/high-availability) master_config groups, **must be set to 3**. For standard cluster master_config groups, **must be set to 1**.
|
11784
|
+
"""
|
11785
|
+
preemptibility: NotRequired[pulumi.Input[str]]
|
11786
|
+
"""
|
11787
|
+
Optional. Specifies the preemptibility of the instance group. The default value for master and worker groups is `NON_PREEMPTIBLE`. This default cannot be changed. The default value for secondary instances is `PREEMPTIBLE`. Possible values: PREEMPTIBILITY_UNSPECIFIED, NON_PREEMPTIBLE, PREEMPTIBLE
|
11788
|
+
"""
|
11789
|
+
elif False:
|
11790
|
+
WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigArgsDict: TypeAlias = Mapping[str, Any]
|
11791
|
+
|
8854
11792
|
@pulumi.input_type
|
8855
11793
|
class WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigArgs:
|
8856
11794
|
def __init__(__self__, *,
|
@@ -9018,6 +11956,19 @@ class WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigArgs:
|
|
9018
11956
|
pulumi.set(self, "preemptibility", value)
|
9019
11957
|
|
9020
11958
|
|
11959
|
+
if not MYPY:
|
11960
|
+
class WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigAcceleratorArgsDict(TypedDict):
|
11961
|
+
accelerator_count: NotRequired[pulumi.Input[int]]
|
11962
|
+
"""
|
11963
|
+
The number of the accelerator cards of this type exposed to this instance.
|
11964
|
+
"""
|
11965
|
+
accelerator_type: NotRequired[pulumi.Input[str]]
|
11966
|
+
"""
|
11967
|
+
Full URL, partial URI, or short name of the accelerator type resource to expose to this instance. See (https://cloud.google.com/dataproc/docs/concepts/configuring-clusters/auto-zone#using_auto_zone_placement) feature, you must use the short name of the accelerator type resource, for example, `nvidia-tesla-k80`.
|
11968
|
+
"""
|
11969
|
+
elif False:
|
11970
|
+
WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigAcceleratorArgsDict: TypeAlias = Mapping[str, Any]
|
11971
|
+
|
9021
11972
|
@pulumi.input_type
|
9022
11973
|
class WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigAcceleratorArgs:
|
9023
11974
|
def __init__(__self__, *,
|
@@ -9057,6 +12008,23 @@ class WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigAccelera
|
|
9057
12008
|
pulumi.set(self, "accelerator_type", value)
|
9058
12009
|
|
9059
12010
|
|
12011
|
+
if not MYPY:
|
12012
|
+
class WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigDiskConfigArgsDict(TypedDict):
|
12013
|
+
boot_disk_size_gb: NotRequired[pulumi.Input[int]]
|
12014
|
+
"""
|
12015
|
+
Size in GB of the boot disk (default is 500GB).
|
12016
|
+
"""
|
12017
|
+
boot_disk_type: NotRequired[pulumi.Input[str]]
|
12018
|
+
"""
|
12019
|
+
Type of the boot disk (default is "pd-standard"). Valid values: "pd-ssd" (Persistent Disk Solid State Drive) or "pd-standard" (Persistent Disk Hard Disk Drive).
|
12020
|
+
"""
|
12021
|
+
num_local_ssds: NotRequired[pulumi.Input[int]]
|
12022
|
+
"""
|
12023
|
+
Number of attached SSDs, from 0 to 4 (default is 0). If SSDs are not attached, the boot disk is used to store runtime logs and (https://hadoop.apache.org/docs/r1.2.1/hdfs_user_guide.html) data. If one or more SSDs are attached, this runtime bulk data is spread across them, and the boot disk contains only basic config and installed binaries.
|
12024
|
+
"""
|
12025
|
+
elif False:
|
12026
|
+
WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigDiskConfigArgsDict: TypeAlias = Mapping[str, Any]
|
12027
|
+
|
9060
12028
|
@pulumi.input_type
|
9061
12029
|
class WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigDiskConfigArgs:
|
9062
12030
|
def __init__(__self__, *,
|
@@ -9112,6 +12080,19 @@ class WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigDiskConf
|
|
9112
12080
|
pulumi.set(self, "num_local_ssds", value)
|
9113
12081
|
|
9114
12082
|
|
12083
|
+
if not MYPY:
|
12084
|
+
class WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigManagedGroupConfigArgsDict(TypedDict):
|
12085
|
+
instance_group_manager_name: NotRequired[pulumi.Input[str]]
|
12086
|
+
"""
|
12087
|
+
Output only. The name of the Instance Group Manager for this group.
|
12088
|
+
"""
|
12089
|
+
instance_template_name: NotRequired[pulumi.Input[str]]
|
12090
|
+
"""
|
12091
|
+
Output only. The name of the Instance Template used for the Managed Instance Group.
|
12092
|
+
"""
|
12093
|
+
elif False:
|
12094
|
+
WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigManagedGroupConfigArgsDict: TypeAlias = Mapping[str, Any]
|
12095
|
+
|
9115
12096
|
@pulumi.input_type
|
9116
12097
|
class WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigManagedGroupConfigArgs:
|
9117
12098
|
def __init__(__self__, *,
|
@@ -9151,6 +12132,15 @@ class WorkflowTemplatePlacementManagedClusterConfigSecondaryWorkerConfigManagedG
|
|
9151
12132
|
pulumi.set(self, "instance_template_name", value)
|
9152
12133
|
|
9153
12134
|
|
12135
|
+
if not MYPY:
|
12136
|
+
class WorkflowTemplatePlacementManagedClusterConfigSecurityConfigArgsDict(TypedDict):
|
12137
|
+
kerberos_config: NotRequired[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigSecurityConfigKerberosConfigArgsDict']]
|
12138
|
+
"""
|
12139
|
+
Kerberos related configuration.
|
12140
|
+
"""
|
12141
|
+
elif False:
|
12142
|
+
WorkflowTemplatePlacementManagedClusterConfigSecurityConfigArgsDict: TypeAlias = Mapping[str, Any]
|
12143
|
+
|
9154
12144
|
@pulumi.input_type
|
9155
12145
|
class WorkflowTemplatePlacementManagedClusterConfigSecurityConfigArgs:
|
9156
12146
|
def __init__(__self__, *,
|
@@ -9174,6 +12164,71 @@ class WorkflowTemplatePlacementManagedClusterConfigSecurityConfigArgs:
|
|
9174
12164
|
pulumi.set(self, "kerberos_config", value)
|
9175
12165
|
|
9176
12166
|
|
12167
|
+
if not MYPY:
|
12168
|
+
class WorkflowTemplatePlacementManagedClusterConfigSecurityConfigKerberosConfigArgsDict(TypedDict):
|
12169
|
+
cross_realm_trust_admin_server: NotRequired[pulumi.Input[str]]
|
12170
|
+
"""
|
12171
|
+
The admin server (IP or hostname) for the remote trusted realm in a cross realm trust relationship.
|
12172
|
+
"""
|
12173
|
+
cross_realm_trust_kdc: NotRequired[pulumi.Input[str]]
|
12174
|
+
"""
|
12175
|
+
The KDC (IP or hostname) for the remote trusted realm in a cross realm trust relationship.
|
12176
|
+
"""
|
12177
|
+
cross_realm_trust_realm: NotRequired[pulumi.Input[str]]
|
12178
|
+
"""
|
12179
|
+
The remote realm the Dataproc on-cluster KDC will trust, should the user enable cross realm trust.
|
12180
|
+
"""
|
12181
|
+
cross_realm_trust_shared_password: NotRequired[pulumi.Input[str]]
|
12182
|
+
"""
|
12183
|
+
The Cloud Storage URI of a KMS encrypted file containing the shared password between the on-cluster Kerberos realm and the remote trusted realm, in a cross realm trust relationship.
|
12184
|
+
"""
|
12185
|
+
enable_kerberos: NotRequired[pulumi.Input[bool]]
|
12186
|
+
"""
|
12187
|
+
Flag to indicate whether to Kerberize the cluster (default: false). Set this field to true to enable Kerberos on a cluster.
|
12188
|
+
"""
|
12189
|
+
kdc_db_key: NotRequired[pulumi.Input[str]]
|
12190
|
+
"""
|
12191
|
+
The Cloud Storage URI of a KMS encrypted file containing the master key of the KDC database.
|
12192
|
+
"""
|
12193
|
+
key_password: NotRequired[pulumi.Input[str]]
|
12194
|
+
"""
|
12195
|
+
The Cloud Storage URI of a KMS encrypted file containing the password to the user provided key. For the self-signed certificate, this password is generated by Dataproc.
|
12196
|
+
"""
|
12197
|
+
keystore: NotRequired[pulumi.Input[str]]
|
12198
|
+
"""
|
12199
|
+
The Cloud Storage URI of the keystore file used for SSL encryption. If not provided, Dataproc will provide a self-signed certificate.
|
12200
|
+
"""
|
12201
|
+
keystore_password: NotRequired[pulumi.Input[str]]
|
12202
|
+
"""
|
12203
|
+
The Cloud Storage URI of a KMS encrypted file containing the password to the user provided keystore. For the self-signed certificate, this password is generated by Dataproc.
|
12204
|
+
"""
|
12205
|
+
kms_key: NotRequired[pulumi.Input[str]]
|
12206
|
+
"""
|
12207
|
+
The uri of the KMS key used to encrypt various sensitive files.
|
12208
|
+
"""
|
12209
|
+
realm: NotRequired[pulumi.Input[str]]
|
12210
|
+
"""
|
12211
|
+
The name of the on-cluster Kerberos realm. If not specified, the uppercased domain of hostnames will be the realm.
|
12212
|
+
"""
|
12213
|
+
root_principal_password: NotRequired[pulumi.Input[str]]
|
12214
|
+
"""
|
12215
|
+
The Cloud Storage URI of a KMS encrypted file containing the root principal password.
|
12216
|
+
"""
|
12217
|
+
tgt_lifetime_hours: NotRequired[pulumi.Input[int]]
|
12218
|
+
"""
|
12219
|
+
The lifetime of the ticket granting ticket, in hours. If not specified, or user specifies 0, then default value 10 will be used.
|
12220
|
+
"""
|
12221
|
+
truststore: NotRequired[pulumi.Input[str]]
|
12222
|
+
"""
|
12223
|
+
The Cloud Storage URI of the truststore file used for SSL encryption. If not provided, Dataproc will provide a self-signed certificate.
|
12224
|
+
"""
|
12225
|
+
truststore_password: NotRequired[pulumi.Input[str]]
|
12226
|
+
"""
|
12227
|
+
The Cloud Storage URI of a KMS encrypted file containing the password to the user provided truststore. For the self-signed certificate, this password is generated by Dataproc.
|
12228
|
+
"""
|
12229
|
+
elif False:
|
12230
|
+
WorkflowTemplatePlacementManagedClusterConfigSecurityConfigKerberosConfigArgsDict: TypeAlias = Mapping[str, Any]
|
12231
|
+
|
9177
12232
|
@pulumi.input_type
|
9178
12233
|
class WorkflowTemplatePlacementManagedClusterConfigSecurityConfigKerberosConfigArgs:
|
9179
12234
|
def __init__(__self__, *,
|
@@ -9421,6 +12476,38 @@ class WorkflowTemplatePlacementManagedClusterConfigSecurityConfigKerberosConfigA
|
|
9421
12476
|
pulumi.set(self, "truststore_password", value)
|
9422
12477
|
|
9423
12478
|
|
12479
|
+
if not MYPY:
|
12480
|
+
class WorkflowTemplatePlacementManagedClusterConfigSoftwareConfigArgsDict(TypedDict):
|
12481
|
+
image_version: NotRequired[pulumi.Input[str]]
|
12482
|
+
"""
|
12483
|
+
The version of software inside the cluster. It must be one of the supported [Dataproc Versions](https://cloud.google.com/dataproc/docs/concepts/versioning/dataproc-versions#supported_dataproc_versions), such as "1.2" (including a subminor version, such as "1.2.29"), or the ["preview" version](https://cloud.google.com/dataproc/docs/concepts/versioning/dataproc-versions#other_versions). If unspecified, it defaults to the latest Debian version.
|
12484
|
+
"""
|
12485
|
+
optional_components: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
12486
|
+
"""
|
12487
|
+
The set of components to activate on the cluster.
|
12488
|
+
"""
|
12489
|
+
properties: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
12490
|
+
"""
|
12491
|
+
The properties to set on daemon config files.
|
12492
|
+
|
12493
|
+
Property keys are specified in `prefix:property` format, for example `core:hadoop.tmp.dir`. The following are supported prefixes and their mappings:
|
12494
|
+
|
12495
|
+
* capacity-scheduler: `capacity-scheduler.xml`
|
12496
|
+
* core: `core-site.xml`
|
12497
|
+
* distcp: `distcp-default.xml`
|
12498
|
+
* hdfs: `hdfs-site.xml`
|
12499
|
+
* hive: `hive-site.xml`
|
12500
|
+
* mapred: `mapred-site.xml`
|
12501
|
+
* pig: `pig.properties`
|
12502
|
+
* spark: `spark-defaults.conf`
|
12503
|
+
* yarn: `yarn-site.xml`
|
12504
|
+
|
12505
|
+
|
12506
|
+
For more information, see [Cluster properties](https://cloud.google.com/dataproc/docs/concepts/cluster-properties).
|
12507
|
+
"""
|
12508
|
+
elif False:
|
12509
|
+
WorkflowTemplatePlacementManagedClusterConfigSoftwareConfigArgsDict: TypeAlias = Mapping[str, Any]
|
12510
|
+
|
9424
12511
|
@pulumi.input_type
|
9425
12512
|
class WorkflowTemplatePlacementManagedClusterConfigSoftwareConfigArgs:
|
9426
12513
|
def __init__(__self__, *,
|
@@ -9506,6 +12593,51 @@ class WorkflowTemplatePlacementManagedClusterConfigSoftwareConfigArgs:
|
|
9506
12593
|
pulumi.set(self, "properties", value)
|
9507
12594
|
|
9508
12595
|
|
12596
|
+
if not MYPY:
|
12597
|
+
class WorkflowTemplatePlacementManagedClusterConfigWorkerConfigArgsDict(TypedDict):
|
12598
|
+
accelerators: NotRequired[pulumi.Input[Sequence[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigWorkerConfigAcceleratorArgsDict']]]]
|
12599
|
+
"""
|
12600
|
+
Optional. The Compute Engine accelerator configuration for these instances.
|
12601
|
+
"""
|
12602
|
+
disk_config: NotRequired[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigWorkerConfigDiskConfigArgsDict']]
|
12603
|
+
"""
|
12604
|
+
Optional. Disk option config settings.
|
12605
|
+
"""
|
12606
|
+
image: NotRequired[pulumi.Input[str]]
|
12607
|
+
"""
|
12608
|
+
Optional. The Compute Engine image resource used for cluster instances. The URI can represent an image or image family. Image examples: * `https://www.googleapis.com/compute/beta/projects/[project_id]/global/images/[image-id]` * `projects/[project_id]/global/images/[image-id]` * `image-id` Image family examples. Dataproc will use the most recent image from the family: * `https://www.googleapis.com/compute/beta/projects/[project_id]/global/images/family/[custom-image-family-name]` * `projects/[project_id]/global/images/family/[custom-image-family-name]` If the URI is unspecified, it will be inferred from `SoftwareConfig.image_version` or the system default.
|
12609
|
+
"""
|
12610
|
+
instance_names: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
12611
|
+
"""
|
12612
|
+
Output only. The list of instance names. Dataproc derives the names from `cluster_name`, `num_instances`, and the instance group.
|
12613
|
+
"""
|
12614
|
+
is_preemptible: NotRequired[pulumi.Input[bool]]
|
12615
|
+
"""
|
12616
|
+
Output only. Specifies that this instance group contains preemptible instances.
|
12617
|
+
"""
|
12618
|
+
machine_type: NotRequired[pulumi.Input[str]]
|
12619
|
+
"""
|
12620
|
+
Optional. The Compute Engine machine type used for cluster instances. A full URL, partial URI, or short name are valid. Examples: * `https://www.googleapis.com/compute/v1/projects/[project_id]/zones/us-east1-a/machineTypes/n1-standard-2` * `projects/[project_id]/zones/us-east1-a/machineTypes/n1-standard-2` * `n1-standard-2` **Auto Zone Exception**: If you are using the Dataproc [Auto Zone Placement](https://cloud.google.com/dataproc/docs/concepts/configuring-clusters/auto-zone#using_auto_zone_placement) feature, you must use the short name of the machine type resource, for example, `n1-standard-2`.
|
12621
|
+
"""
|
12622
|
+
managed_group_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input['WorkflowTemplatePlacementManagedClusterConfigWorkerConfigManagedGroupConfigArgsDict']]]]
|
12623
|
+
"""
|
12624
|
+
Output only. The config for Compute Engine Instance Group Manager that manages this group. This is only used for preemptible instance groups.
|
12625
|
+
"""
|
12626
|
+
min_cpu_platform: NotRequired[pulumi.Input[str]]
|
12627
|
+
"""
|
12628
|
+
Optional. Specifies the minimum cpu platform for the Instance Group. See [Dataproc > Minimum CPU Platform](https://cloud.google.com/dataproc/docs/concepts/compute/dataproc-min-cpu).
|
12629
|
+
"""
|
12630
|
+
num_instances: NotRequired[pulumi.Input[int]]
|
12631
|
+
"""
|
12632
|
+
Optional. The number of VM instances in the instance group. For [HA cluster](https://www.terraform.io/dataproc/docs/concepts/configuring-clusters/high-availability) master_config groups, **must be set to 3**. For standard cluster master_config groups, **must be set to 1**.
|
12633
|
+
"""
|
12634
|
+
preemptibility: NotRequired[pulumi.Input[str]]
|
12635
|
+
"""
|
12636
|
+
Optional. Specifies the preemptibility of the instance group. The default value for master and worker groups is `NON_PREEMPTIBLE`. This default cannot be changed. The default value for secondary instances is `PREEMPTIBLE`. Possible values: PREEMPTIBILITY_UNSPECIFIED, NON_PREEMPTIBLE, PREEMPTIBLE
|
12637
|
+
"""
|
12638
|
+
elif False:
|
12639
|
+
WorkflowTemplatePlacementManagedClusterConfigWorkerConfigArgsDict: TypeAlias = Mapping[str, Any]
|
12640
|
+
|
9509
12641
|
@pulumi.input_type
|
9510
12642
|
class WorkflowTemplatePlacementManagedClusterConfigWorkerConfigArgs:
|
9511
12643
|
def __init__(__self__, *,
|
@@ -9673,6 +12805,19 @@ class WorkflowTemplatePlacementManagedClusterConfigWorkerConfigArgs:
|
|
9673
12805
|
pulumi.set(self, "preemptibility", value)
|
9674
12806
|
|
9675
12807
|
|
12808
|
+
if not MYPY:
|
12809
|
+
class WorkflowTemplatePlacementManagedClusterConfigWorkerConfigAcceleratorArgsDict(TypedDict):
|
12810
|
+
accelerator_count: NotRequired[pulumi.Input[int]]
|
12811
|
+
"""
|
12812
|
+
The number of the accelerator cards of this type exposed to this instance.
|
12813
|
+
"""
|
12814
|
+
accelerator_type: NotRequired[pulumi.Input[str]]
|
12815
|
+
"""
|
12816
|
+
Full URL, partial URI, or short name of the accelerator type resource to expose to this instance. See (https://cloud.google.com/dataproc/docs/concepts/configuring-clusters/auto-zone#using_auto_zone_placement) feature, you must use the short name of the accelerator type resource, for example, `nvidia-tesla-k80`.
|
12817
|
+
"""
|
12818
|
+
elif False:
|
12819
|
+
WorkflowTemplatePlacementManagedClusterConfigWorkerConfigAcceleratorArgsDict: TypeAlias = Mapping[str, Any]
|
12820
|
+
|
9676
12821
|
@pulumi.input_type
|
9677
12822
|
class WorkflowTemplatePlacementManagedClusterConfigWorkerConfigAcceleratorArgs:
|
9678
12823
|
def __init__(__self__, *,
|
@@ -9712,6 +12857,23 @@ class WorkflowTemplatePlacementManagedClusterConfigWorkerConfigAcceleratorArgs:
|
|
9712
12857
|
pulumi.set(self, "accelerator_type", value)
|
9713
12858
|
|
9714
12859
|
|
12860
|
+
if not MYPY:
|
12861
|
+
class WorkflowTemplatePlacementManagedClusterConfigWorkerConfigDiskConfigArgsDict(TypedDict):
|
12862
|
+
boot_disk_size_gb: NotRequired[pulumi.Input[int]]
|
12863
|
+
"""
|
12864
|
+
Size in GB of the boot disk (default is 500GB).
|
12865
|
+
"""
|
12866
|
+
boot_disk_type: NotRequired[pulumi.Input[str]]
|
12867
|
+
"""
|
12868
|
+
Type of the boot disk (default is "pd-standard"). Valid values: "pd-ssd" (Persistent Disk Solid State Drive) or "pd-standard" (Persistent Disk Hard Disk Drive).
|
12869
|
+
"""
|
12870
|
+
num_local_ssds: NotRequired[pulumi.Input[int]]
|
12871
|
+
"""
|
12872
|
+
Number of attached SSDs, from 0 to 4 (default is 0). If SSDs are not attached, the boot disk is used to store runtime logs and (https://hadoop.apache.org/docs/r1.2.1/hdfs_user_guide.html) data. If one or more SSDs are attached, this runtime bulk data is spread across them, and the boot disk contains only basic config and installed binaries.
|
12873
|
+
"""
|
12874
|
+
elif False:
|
12875
|
+
WorkflowTemplatePlacementManagedClusterConfigWorkerConfigDiskConfigArgsDict: TypeAlias = Mapping[str, Any]
|
12876
|
+
|
9715
12877
|
@pulumi.input_type
|
9716
12878
|
class WorkflowTemplatePlacementManagedClusterConfigWorkerConfigDiskConfigArgs:
|
9717
12879
|
def __init__(__self__, *,
|
@@ -9767,6 +12929,19 @@ class WorkflowTemplatePlacementManagedClusterConfigWorkerConfigDiskConfigArgs:
|
|
9767
12929
|
pulumi.set(self, "num_local_ssds", value)
|
9768
12930
|
|
9769
12931
|
|
12932
|
+
if not MYPY:
|
12933
|
+
class WorkflowTemplatePlacementManagedClusterConfigWorkerConfigManagedGroupConfigArgsDict(TypedDict):
|
12934
|
+
instance_group_manager_name: NotRequired[pulumi.Input[str]]
|
12935
|
+
"""
|
12936
|
+
Output only. The name of the Instance Group Manager for this group.
|
12937
|
+
"""
|
12938
|
+
instance_template_name: NotRequired[pulumi.Input[str]]
|
12939
|
+
"""
|
12940
|
+
Output only. The name of the Instance Template used for the Managed Instance Group.
|
12941
|
+
"""
|
12942
|
+
elif False:
|
12943
|
+
WorkflowTemplatePlacementManagedClusterConfigWorkerConfigManagedGroupConfigArgsDict: TypeAlias = Mapping[str, Any]
|
12944
|
+
|
9770
12945
|
@pulumi.input_type
|
9771
12946
|
class WorkflowTemplatePlacementManagedClusterConfigWorkerConfigManagedGroupConfigArgs:
|
9772
12947
|
def __init__(__self__, *,
|