pulumi-gcp 7.30.0a1719470057__py3-none-any.whl → 7.30.0a1719513455__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/_inputs.py +15 -0
- pulumi_gcp/accessapproval/get_folder_service_account.py +5 -0
- pulumi_gcp/accessapproval/get_organization_service_account.py +5 -0
- pulumi_gcp/accessapproval/get_project_service_account.py +5 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +2066 -6
- pulumi_gcp/accesscontextmanager/access_level.py +37 -32
- pulumi_gcp/accesscontextmanager/access_level_condition.py +53 -48
- pulumi_gcp/accesscontextmanager/access_levels.py +70 -65
- pulumi_gcp/accesscontextmanager/access_policy.py +5 -0
- pulumi_gcp/accesscontextmanager/access_policy_iam_binding.py +24 -19
- pulumi_gcp/accesscontextmanager/access_policy_iam_member.py +24 -19
- pulumi_gcp/accesscontextmanager/access_policy_iam_policy.py +21 -16
- pulumi_gcp/accesscontextmanager/authorized_orgs_desc.py +5 -0
- pulumi_gcp/accesscontextmanager/egress_policy.py +5 -0
- pulumi_gcp/accesscontextmanager/gcp_user_access_binding.py +33 -28
- pulumi_gcp/accesscontextmanager/get_access_policy_iam_policy.py +5 -0
- pulumi_gcp/accesscontextmanager/ingress_policy.py +5 -0
- pulumi_gcp/accesscontextmanager/outputs.py +5 -0
- pulumi_gcp/accesscontextmanager/service_perimeter.py +201 -196
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_resource.py +11 -6
- pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +15 -10
- pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +15 -10
- pulumi_gcp/accesscontextmanager/service_perimeter_resource.py +11 -6
- pulumi_gcp/accesscontextmanager/service_perimeters.py +60 -55
- pulumi_gcp/activedirectory/domain.py +5 -0
- pulumi_gcp/activedirectory/domain_trust.py +5 -0
- pulumi_gcp/activedirectory/peering.py +5 -0
- pulumi_gcp/alloydb/_inputs.py +535 -0
- pulumi_gcp/alloydb/backup.py +26 -21
- pulumi_gcp/alloydb/cluster.py +177 -172
- pulumi_gcp/alloydb/get_locations.py +5 -0
- pulumi_gcp/alloydb/get_supported_database_flags.py +5 -0
- pulumi_gcp/alloydb/instance.py +77 -72
- pulumi_gcp/alloydb/outputs.py +5 -0
- pulumi_gcp/alloydb/user.py +17 -12
- pulumi_gcp/apigateway/_inputs.py +168 -0
- pulumi_gcp/apigateway/api.py +5 -0
- pulumi_gcp/apigateway/api_config.py +25 -20
- pulumi_gcp/apigateway/api_config_iam_binding.py +24 -19
- pulumi_gcp/apigateway/api_config_iam_member.py +24 -19
- pulumi_gcp/apigateway/api_config_iam_policy.py +21 -16
- pulumi_gcp/apigateway/api_iam_binding.py +24 -19
- pulumi_gcp/apigateway/api_iam_member.py +24 -19
- pulumi_gcp/apigateway/api_iam_policy.py +21 -16
- pulumi_gcp/apigateway/gateway.py +5 -0
- pulumi_gcp/apigateway/gateway_iam_binding.py +24 -19
- pulumi_gcp/apigateway/gateway_iam_member.py +24 -19
- pulumi_gcp/apigateway/gateway_iam_policy.py +21 -16
- pulumi_gcp/apigateway/get_api_config_iam_policy.py +5 -0
- pulumi_gcp/apigateway/get_api_iam_policy.py +5 -0
- pulumi_gcp/apigateway/get_gateway_iam_policy.py +5 -0
- pulumi_gcp/apigateway/outputs.py +5 -0
- pulumi_gcp/apigee/_inputs.py +508 -0
- pulumi_gcp/apigee/addons_config.py +60 -55
- pulumi_gcp/apigee/endpoint_attachment.py +5 -0
- pulumi_gcp/apigee/env_group.py +5 -0
- pulumi_gcp/apigee/env_group_attachment.py +5 -0
- pulumi_gcp/apigee/env_keystore.py +5 -0
- pulumi_gcp/apigee/env_references.py +5 -0
- pulumi_gcp/apigee/environment.py +10 -5
- pulumi_gcp/apigee/environment_iam_binding.py +24 -19
- pulumi_gcp/apigee/environment_iam_member.py +24 -19
- pulumi_gcp/apigee/environment_iam_policy.py +21 -16
- pulumi_gcp/apigee/flowhook.py +5 -0
- pulumi_gcp/apigee/get_environment_iam_policy.py +5 -0
- pulumi_gcp/apigee/instance.py +5 -0
- pulumi_gcp/apigee/instance_attachment.py +5 -0
- pulumi_gcp/apigee/keystores_aliases_key_cert_file.py +10 -5
- pulumi_gcp/apigee/keystores_aliases_pkcs12.py +7 -2
- pulumi_gcp/apigee/keystores_aliases_self_signed_cert.py +31 -26
- pulumi_gcp/apigee/nat_address.py +5 -0
- pulumi_gcp/apigee/organization.py +10 -5
- pulumi_gcp/apigee/outputs.py +5 -0
- pulumi_gcp/apigee/sharedflow.py +7 -2
- pulumi_gcp/apigee/sharedflow_deployment.py +5 -0
- pulumi_gcp/apigee/sync_authorization.py +5 -0
- pulumi_gcp/apigee/target_server.py +10 -5
- pulumi_gcp/appengine/_inputs.py +990 -7
- pulumi_gcp/appengine/application.py +17 -12
- pulumi_gcp/appengine/application_url_dispatch_rules.py +46 -41
- pulumi_gcp/appengine/domain_mapping.py +18 -13
- pulumi_gcp/appengine/engine_split_traffic.py +50 -45
- pulumi_gcp/appengine/firewall_rule.py +5 -0
- pulumi_gcp/appengine/flexible_app_version.py +130 -125
- pulumi_gcp/appengine/get_default_service_account.py +5 -0
- pulumi_gcp/appengine/outputs.py +5 -0
- pulumi_gcp/appengine/service_network_settings.py +32 -27
- pulumi_gcp/appengine/standard_app_version.py +109 -104
- pulumi_gcp/apphub/_inputs.py +370 -0
- pulumi_gcp/apphub/application.py +67 -62
- pulumi_gcp/apphub/get_application.py +5 -0
- pulumi_gcp/apphub/get_discovered_service.py +5 -0
- pulumi_gcp/apphub/get_discovered_workload.py +5 -0
- pulumi_gcp/apphub/outputs.py +5 -0
- pulumi_gcp/apphub/service.py +78 -73
- pulumi_gcp/apphub/service_project_attachment.py +5 -0
- pulumi_gcp/apphub/workload.py +14 -9
- pulumi_gcp/applicationintegration/_inputs.py +324 -0
- pulumi_gcp/applicationintegration/auth_config.py +29 -24
- pulumi_gcp/applicationintegration/client.py +24 -19
- pulumi_gcp/applicationintegration/outputs.py +5 -0
- pulumi_gcp/artifactregistry/_inputs.py +392 -0
- pulumi_gcp/artifactregistry/get_docker_image.py +5 -0
- pulumi_gcp/artifactregistry/get_repository.py +5 -0
- pulumi_gcp/artifactregistry/get_repository_iam_policy.py +5 -0
- pulumi_gcp/artifactregistry/outputs.py +5 -0
- pulumi_gcp/artifactregistry/repository.py +338 -333
- pulumi_gcp/artifactregistry/repository_iam_binding.py +24 -19
- pulumi_gcp/artifactregistry/repository_iam_member.py +24 -19
- pulumi_gcp/artifactregistry/repository_iam_policy.py +21 -16
- pulumi_gcp/artifactregistry/vpcsc_config.py +5 -0
- pulumi_gcp/assuredworkloads/_inputs.py +117 -0
- pulumi_gcp/assuredworkloads/outputs.py +5 -0
- pulumi_gcp/assuredworkloads/workload.py +86 -81
- pulumi_gcp/backupdisasterrecovery/_inputs.py +41 -0
- pulumi_gcp/backupdisasterrecovery/get_management_server.py +5 -0
- pulumi_gcp/backupdisasterrecovery/management_server.py +20 -15
- pulumi_gcp/backupdisasterrecovery/outputs.py +5 -0
- pulumi_gcp/beyondcorp/_inputs.py +86 -0
- pulumi_gcp/beyondcorp/app_connection.py +57 -52
- pulumi_gcp/beyondcorp/app_connector.py +30 -25
- pulumi_gcp/beyondcorp/app_gateway.py +7 -2
- pulumi_gcp/beyondcorp/get_app_connection.py +5 -0
- pulumi_gcp/beyondcorp/get_app_connector.py +5 -0
- pulumi_gcp/beyondcorp/get_app_gateway.py +5 -0
- pulumi_gcp/beyondcorp/outputs.py +5 -0
- pulumi_gcp/biglake/_inputs.py +64 -0
- pulumi_gcp/biglake/catalog.py +5 -0
- pulumi_gcp/biglake/database.py +18 -13
- pulumi_gcp/biglake/outputs.py +5 -0
- pulumi_gcp/biglake/table.py +36 -31
- pulumi_gcp/bigquery/_inputs.py +1930 -6
- pulumi_gcp/bigquery/app_profile.py +133 -128
- pulumi_gcp/bigquery/bi_reservation.py +10 -5
- pulumi_gcp/bigquery/capacity_commitment.py +5 -0
- pulumi_gcp/bigquery/connection.py +181 -176
- pulumi_gcp/bigquery/connection_iam_binding.py +24 -19
- pulumi_gcp/bigquery/connection_iam_member.py +24 -19
- pulumi_gcp/bigquery/connection_iam_policy.py +21 -16
- pulumi_gcp/bigquery/data_transfer_config.py +20 -15
- pulumi_gcp/bigquery/dataset.py +132 -127
- pulumi_gcp/bigquery/dataset_access.py +72 -67
- pulumi_gcp/bigquery/dataset_iam_binding.py +24 -19
- pulumi_gcp/bigquery/dataset_iam_member.py +24 -19
- pulumi_gcp/bigquery/dataset_iam_policy.py +21 -16
- pulumi_gcp/bigquery/get_connection_iam_policy.py +5 -0
- pulumi_gcp/bigquery/get_dataset.py +5 -0
- pulumi_gcp/bigquery/get_dataset_iam_policy.py +5 -0
- pulumi_gcp/bigquery/get_default_service_account.py +5 -0
- pulumi_gcp/bigquery/get_table_iam_policy.py +5 -0
- pulumi_gcp/bigquery/iam_binding.py +102 -97
- pulumi_gcp/bigquery/iam_member.py +102 -97
- pulumi_gcp/bigquery/iam_policy.py +97 -92
- pulumi_gcp/bigquery/job.py +229 -224
- pulumi_gcp/bigquery/outputs.py +5 -0
- pulumi_gcp/bigquery/reservation.py +16 -11
- pulumi_gcp/bigquery/reservation_assignment.py +5 -0
- pulumi_gcp/bigquery/routine.py +114 -109
- pulumi_gcp/bigquery/table.py +67 -62
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +97 -0
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +5 -0
- pulumi_gcp/bigqueryanalyticshub/data_exchange_iam_binding.py +24 -19
- pulumi_gcp/bigqueryanalyticshub/data_exchange_iam_member.py +24 -19
- pulumi_gcp/bigqueryanalyticshub/data_exchange_iam_policy.py +21 -16
- pulumi_gcp/bigqueryanalyticshub/get_data_exchange_iam_policy.py +5 -0
- pulumi_gcp/bigqueryanalyticshub/get_listing_iam_policy.py +5 -0
- pulumi_gcp/bigqueryanalyticshub/listing.py +45 -40
- pulumi_gcp/bigqueryanalyticshub/listing_iam_binding.py +24 -19
- pulumi_gcp/bigqueryanalyticshub/listing_iam_member.py +24 -19
- pulumi_gcp/bigqueryanalyticshub/listing_iam_policy.py +21 -16
- pulumi_gcp/bigqueryanalyticshub/outputs.py +5 -0
- pulumi_gcp/bigquerydatapolicy/_inputs.py +40 -0
- pulumi_gcp/bigquerydatapolicy/data_policy.py +24 -19
- pulumi_gcp/bigquerydatapolicy/data_policy_iam_binding.py +24 -19
- pulumi_gcp/bigquerydatapolicy/data_policy_iam_member.py +24 -19
- pulumi_gcp/bigquerydatapolicy/data_policy_iam_policy.py +21 -16
- pulumi_gcp/bigquerydatapolicy/get_iam_policy.py +5 -0
- pulumi_gcp/bigquerydatapolicy/outputs.py +5 -0
- pulumi_gcp/bigtable/_inputs.py +202 -0
- pulumi_gcp/bigtable/authorized_view.py +10 -5
- pulumi_gcp/bigtable/gc_policy.py +45 -40
- pulumi_gcp/bigtable/get_instance_iam_policy.py +5 -0
- pulumi_gcp/bigtable/get_table_iam_policy.py +5 -0
- pulumi_gcp/bigtable/instance.py +52 -47
- pulumi_gcp/bigtable/instance_iam_binding.py +24 -19
- pulumi_gcp/bigtable/instance_iam_member.py +24 -19
- pulumi_gcp/bigtable/instance_iam_policy.py +21 -16
- pulumi_gcp/bigtable/outputs.py +5 -0
- pulumi_gcp/bigtable/table.py +39 -34
- pulumi_gcp/bigtable/table_iam_binding.py +24 -19
- pulumi_gcp/bigtable/table_iam_member.py +24 -19
- pulumi_gcp/bigtable/table_iam_policy.py +21 -16
- pulumi_gcp/billing/_inputs.py +257 -0
- pulumi_gcp/billing/account_iam_binding.py +24 -19
- pulumi_gcp/billing/account_iam_member.py +24 -19
- pulumi_gcp/billing/account_iam_policy.py +21 -16
- pulumi_gcp/billing/budget.py +225 -220
- pulumi_gcp/billing/get_account_iam_policy.py +5 -0
- pulumi_gcp/billing/outputs.py +5 -0
- pulumi_gcp/billing/project_info.py +5 -0
- pulumi_gcp/billing/sub_account.py +5 -0
- pulumi_gcp/binaryauthorization/_inputs.py +199 -0
- pulumi_gcp/binaryauthorization/attestor.py +68 -63
- pulumi_gcp/binaryauthorization/attestor_iam_binding.py +24 -19
- pulumi_gcp/binaryauthorization/attestor_iam_member.py +24 -19
- pulumi_gcp/binaryauthorization/attestor_iam_policy.py +21 -16
- pulumi_gcp/binaryauthorization/get_attestor_iam_policy.py +5 -0
- pulumi_gcp/binaryauthorization/outputs.py +5 -0
- pulumi_gcp/binaryauthorization/policy.py +88 -83
- pulumi_gcp/blockchainnodeengine/_inputs.py +131 -0
- pulumi_gcp/blockchainnodeengine/blockchain_nodes.py +62 -57
- pulumi_gcp/blockchainnodeengine/outputs.py +5 -0
- pulumi_gcp/certificateauthority/_inputs.py +2157 -36
- pulumi_gcp/certificateauthority/authority.py +398 -393
- pulumi_gcp/certificateauthority/ca_pool.py +189 -184
- pulumi_gcp/certificateauthority/ca_pool_iam_binding.py +102 -97
- pulumi_gcp/certificateauthority/ca_pool_iam_member.py +102 -97
- pulumi_gcp/certificateauthority/ca_pool_iam_policy.py +97 -92
- pulumi_gcp/certificateauthority/certificate.py +636 -631
- pulumi_gcp/certificateauthority/certificate_template.py +134 -129
- pulumi_gcp/certificateauthority/certificate_template_iam_binding.py +102 -97
- pulumi_gcp/certificateauthority/certificate_template_iam_member.py +102 -97
- pulumi_gcp/certificateauthority/certificate_template_iam_policy.py +97 -92
- pulumi_gcp/certificateauthority/get_authority.py +5 -0
- pulumi_gcp/certificateauthority/get_ca_pool_iam_policy.py +5 -0
- pulumi_gcp/certificateauthority/get_certificate_template_iam_policy.py +5 -0
- pulumi_gcp/certificateauthority/outputs.py +5 -0
- pulumi_gcp/certificatemanager/_inputs.py +256 -0
- pulumi_gcp/certificatemanager/certificate.py +203 -198
- pulumi_gcp/certificatemanager/certificate_issuance_config.py +76 -71
- pulumi_gcp/certificatemanager/certificate_map.py +7 -2
- pulumi_gcp/certificatemanager/certificate_map_entry.py +13 -8
- pulumi_gcp/certificatemanager/dns_authorization.py +7 -2
- pulumi_gcp/certificatemanager/get_certificate_map.py +5 -0
- pulumi_gcp/certificatemanager/outputs.py +5 -0
- pulumi_gcp/certificatemanager/trust_config.py +26 -21
- pulumi_gcp/cloudasset/_inputs.py +151 -0
- pulumi_gcp/cloudasset/folder_feed.py +35 -30
- pulumi_gcp/cloudasset/get_resources_search_all.py +5 -0
- pulumi_gcp/cloudasset/get_search_all_resources.py +5 -0
- pulumi_gcp/cloudasset/organization_feed.py +35 -30
- pulumi_gcp/cloudasset/outputs.py +5 -0
- pulumi_gcp/cloudasset/project_feed.py +35 -30
- pulumi_gcp/cloudbuild/_inputs.py +1038 -29
- pulumi_gcp/cloudbuild/bitbucket_server_config.py +61 -56
- pulumi_gcp/cloudbuild/get_trigger.py +5 -0
- pulumi_gcp/cloudbuild/outputs.py +5 -0
- pulumi_gcp/cloudbuild/trigger.py +733 -728
- pulumi_gcp/cloudbuild/worker_pool.py +43 -38
- pulumi_gcp/cloudbuildv2/_inputs.py +335 -0
- pulumi_gcp/cloudbuildv2/connection.py +106 -101
- pulumi_gcp/cloudbuildv2/connection_iam_binding.py +24 -19
- pulumi_gcp/cloudbuildv2/connection_iam_member.py +24 -19
- pulumi_gcp/cloudbuildv2/connection_iam_policy.py +21 -16
- pulumi_gcp/cloudbuildv2/get_connection_iam_policy.py +5 -0
- pulumi_gcp/cloudbuildv2/outputs.py +5 -0
- pulumi_gcp/cloudbuildv2/repository.py +67 -62
- pulumi_gcp/clouddeploy/_inputs.py +700 -0
- pulumi_gcp/clouddeploy/automation.py +101 -96
- pulumi_gcp/clouddeploy/custom_target_type.py +88 -83
- pulumi_gcp/clouddeploy/custom_target_type_iam_binding.py +8 -3
- pulumi_gcp/clouddeploy/custom_target_type_iam_member.py +8 -3
- pulumi_gcp/clouddeploy/custom_target_type_iam_policy.py +5 -0
- pulumi_gcp/clouddeploy/delivery_pipeline.py +162 -157
- pulumi_gcp/clouddeploy/delivery_pipeline_iam_binding.py +8 -3
- pulumi_gcp/clouddeploy/delivery_pipeline_iam_member.py +8 -3
- pulumi_gcp/clouddeploy/delivery_pipeline_iam_policy.py +5 -0
- pulumi_gcp/clouddeploy/get_custom_target_type_iam_policy.py +5 -0
- pulumi_gcp/clouddeploy/get_delivery_pipeline_iam_policy.py +5 -0
- pulumi_gcp/clouddeploy/get_target_iam_policy.py +5 -0
- pulumi_gcp/clouddeploy/outputs.py +5 -0
- pulumi_gcp/clouddeploy/target.py +69 -64
- pulumi_gcp/clouddeploy/target_iam_binding.py +8 -3
- pulumi_gcp/clouddeploy/target_iam_member.py +8 -3
- pulumi_gcp/clouddeploy/target_iam_policy.py +5 -0
- pulumi_gcp/clouddomains/_inputs.py +372 -0
- pulumi_gcp/clouddomains/outputs.py +5 -0
- pulumi_gcp/clouddomains/registration.py +121 -116
- pulumi_gcp/cloudfunctions/_inputs.py +132 -0
- pulumi_gcp/cloudfunctions/function.py +25 -20
- pulumi_gcp/cloudfunctions/function_iam_binding.py +24 -19
- pulumi_gcp/cloudfunctions/function_iam_member.py +24 -19
- pulumi_gcp/cloudfunctions/function_iam_policy.py +21 -16
- pulumi_gcp/cloudfunctions/get_function.py +5 -0
- pulumi_gcp/cloudfunctions/get_function_iam_policy.py +5 -0
- pulumi_gcp/cloudfunctions/outputs.py +5 -0
- pulumi_gcp/cloudfunctionsv2/_inputs.py +357 -0
- pulumi_gcp/cloudfunctionsv2/function.py +514 -509
- pulumi_gcp/cloudfunctionsv2/function_iam_binding.py +24 -19
- pulumi_gcp/cloudfunctionsv2/function_iam_member.py +24 -19
- pulumi_gcp/cloudfunctionsv2/function_iam_policy.py +21 -16
- pulumi_gcp/cloudfunctionsv2/get_function.py +5 -0
- pulumi_gcp/cloudfunctionsv2/get_function_iam_policy.py +5 -0
- pulumi_gcp/cloudfunctionsv2/outputs.py +5 -0
- pulumi_gcp/cloudidentity/_inputs.py +161 -0
- pulumi_gcp/cloudidentity/get_group_lookup.py +9 -4
- pulumi_gcp/cloudidentity/get_group_memberships.py +5 -0
- pulumi_gcp/cloudidentity/get_groups.py +5 -0
- pulumi_gcp/cloudidentity/group.py +18 -13
- pulumi_gcp/cloudidentity/group_membership.py +68 -63
- pulumi_gcp/cloudidentity/outputs.py +5 -0
- pulumi_gcp/cloudids/endpoint.py +5 -0
- pulumi_gcp/cloudquota/_inputs.py +44 -0
- pulumi_gcp/cloudquota/get_s_quota_info.py +5 -0
- pulumi_gcp/cloudquota/get_s_quota_infos.py +5 -0
- pulumi_gcp/cloudquota/outputs.py +5 -0
- pulumi_gcp/cloudquota/s_quota_preference.py +16 -11
- pulumi_gcp/cloudrun/_inputs.py +1165 -15
- pulumi_gcp/cloudrun/domain_mapping.py +49 -44
- pulumi_gcp/cloudrun/get_locations.py +5 -0
- pulumi_gcp/cloudrun/get_service.py +5 -0
- pulumi_gcp/cloudrun/get_service_iam_policy.py +5 -0
- pulumi_gcp/cloudrun/iam_binding.py +24 -19
- pulumi_gcp/cloudrun/iam_member.py +24 -19
- pulumi_gcp/cloudrun/iam_policy.py +21 -16
- pulumi_gcp/cloudrun/outputs.py +5 -0
- pulumi_gcp/cloudrun/service.py +270 -265
- pulumi_gcp/cloudrunv2/_inputs.py +1338 -5
- pulumi_gcp/cloudrunv2/get_job.py +5 -0
- pulumi_gcp/cloudrunv2/get_job_iam_policy.py +5 -0
- pulumi_gcp/cloudrunv2/get_service.py +5 -0
- pulumi_gcp/cloudrunv2/get_service_iam_policy.py +5 -0
- pulumi_gcp/cloudrunv2/job.py +287 -282
- pulumi_gcp/cloudrunv2/job_iam_binding.py +24 -19
- pulumi_gcp/cloudrunv2/job_iam_member.py +24 -19
- pulumi_gcp/cloudrunv2/job_iam_policy.py +21 -16
- pulumi_gcp/cloudrunv2/outputs.py +5 -0
- pulumi_gcp/cloudrunv2/service.py +437 -432
- pulumi_gcp/cloudrunv2/service_iam_binding.py +24 -19
- pulumi_gcp/cloudrunv2/service_iam_member.py +24 -19
- pulumi_gcp/cloudrunv2/service_iam_policy.py +21 -16
- pulumi_gcp/cloudscheduler/_inputs.py +193 -0
- pulumi_gcp/cloudscheduler/job.py +127 -122
- pulumi_gcp/cloudscheduler/outputs.py +5 -0
- pulumi_gcp/cloudtasks/_inputs.py +134 -0
- pulumi_gcp/cloudtasks/get_queue_iam_policy.py +5 -0
- pulumi_gcp/cloudtasks/outputs.py +5 -0
- pulumi_gcp/cloudtasks/queue.py +63 -58
- pulumi_gcp/cloudtasks/queue_iam_binding.py +24 -19
- pulumi_gcp/cloudtasks/queue_iam_member.py +24 -19
- pulumi_gcp/cloudtasks/queue_iam_policy.py +21 -16
- pulumi_gcp/composer/_inputs.py +566 -0
- pulumi_gcp/composer/environment.py +15 -10
- pulumi_gcp/composer/get_environment.py +5 -0
- pulumi_gcp/composer/get_image_versions.py +15 -10
- pulumi_gcp/composer/get_user_workloads_config_map.py +15 -10
- pulumi_gcp/composer/get_user_workloads_secret.py +15 -10
- pulumi_gcp/composer/outputs.py +5 -0
- pulumi_gcp/composer/user_workloads_config_map.py +15 -10
- pulumi_gcp/composer/user_workloads_secret.py +15 -10
- pulumi_gcp/compute/_inputs.py +13512 -145
- pulumi_gcp/compute/address.py +27 -22
- pulumi_gcp/compute/attached_disk.py +21 -16
- pulumi_gcp/compute/autoscaler.py +98 -93
- pulumi_gcp/compute/backend_bucket.py +30 -25
- pulumi_gcp/compute/backend_bucket_iam_binding.py +8 -3
- pulumi_gcp/compute/backend_bucket_iam_member.py +8 -3
- pulumi_gcp/compute/backend_bucket_iam_policy.py +5 -0
- pulumi_gcp/compute/backend_bucket_signed_url_key.py +5 -0
- pulumi_gcp/compute/backend_service.py +204 -199
- pulumi_gcp/compute/backend_service_iam_binding.py +10 -5
- pulumi_gcp/compute/backend_service_iam_member.py +10 -5
- pulumi_gcp/compute/backend_service_iam_policy.py +5 -0
- pulumi_gcp/compute/backend_service_signed_url_key.py +35 -30
- pulumi_gcp/compute/ca_external_account_key.py +5 -0
- pulumi_gcp/compute/disk.py +54 -49
- pulumi_gcp/compute/disk_async_replication.py +10 -5
- pulumi_gcp/compute/disk_iam_binding.py +24 -19
- pulumi_gcp/compute/disk_iam_member.py +24 -19
- pulumi_gcp/compute/disk_iam_policy.py +21 -16
- pulumi_gcp/compute/disk_resource_policy_attachment.py +21 -16
- pulumi_gcp/compute/external_vpn_gateway.py +24 -19
- pulumi_gcp/compute/firewall.py +42 -37
- pulumi_gcp/compute/firewall_policy.py +5 -0
- pulumi_gcp/compute/firewall_policy_association.py +5 -0
- pulumi_gcp/compute/firewall_policy_rule.py +44 -39
- pulumi_gcp/compute/forwarding_rule.py +248 -243
- pulumi_gcp/compute/get_address.py +5 -0
- pulumi_gcp/compute/get_addresses.py +5 -0
- pulumi_gcp/compute/get_backend_bucket.py +5 -0
- pulumi_gcp/compute/get_backend_bucket_iam_policy.py +5 -0
- pulumi_gcp/compute/get_backend_service.py +5 -0
- pulumi_gcp/compute/get_backend_service_iam_policy.py +5 -0
- pulumi_gcp/compute/get_certificate.py +5 -0
- pulumi_gcp/compute/get_default_service_account.py +5 -0
- pulumi_gcp/compute/get_disk.py +13 -8
- pulumi_gcp/compute/get_disk_iam_policy.py +5 -0
- pulumi_gcp/compute/get_forwarding_rule.py +5 -0
- pulumi_gcp/compute/get_forwarding_rules.py +5 -0
- pulumi_gcp/compute/get_global_address.py +5 -0
- pulumi_gcp/compute/get_global_forwarding_rule.py +5 -0
- pulumi_gcp/compute/get_hc_vpn_gateway.py +5 -0
- pulumi_gcp/compute/get_health_check.py +5 -0
- pulumi_gcp/compute/get_image.py +15 -10
- pulumi_gcp/compute/get_image_iam_policy.py +5 -0
- pulumi_gcp/compute/get_instance.py +5 -0
- pulumi_gcp/compute/get_instance_group.py +5 -0
- pulumi_gcp/compute/get_instance_group_manager.py +5 -0
- pulumi_gcp/compute/get_instance_iam_policy.py +5 -0
- pulumi_gcp/compute/get_instance_serial_port.py +29 -24
- pulumi_gcp/compute/get_instance_template.py +5 -0
- pulumi_gcp/compute/get_lbip_ranges.py +5 -0
- pulumi_gcp/compute/get_machine_image_iam_policy.py +5 -0
- pulumi_gcp/compute/get_machine_types.py +5 -0
- pulumi_gcp/compute/get_netblock_ip_ranges.py +5 -0
- pulumi_gcp/compute/get_network.py +5 -0
- pulumi_gcp/compute/get_network_endpoint_group.py +5 -0
- pulumi_gcp/compute/get_network_peering.py +5 -0
- pulumi_gcp/compute/get_networks.py +5 -0
- pulumi_gcp/compute/get_node_types.py +5 -0
- pulumi_gcp/compute/get_region_backend_service_iam_policy.py +5 -0
- pulumi_gcp/compute/get_region_disk.py +5 -0
- pulumi_gcp/compute/get_region_disk_iam_policy.py +5 -0
- pulumi_gcp/compute/get_region_instance_group.py +5 -0
- pulumi_gcp/compute/get_region_instance_template.py +5 -0
- pulumi_gcp/compute/get_region_network_endpoint_group.py +5 -0
- pulumi_gcp/compute/get_region_ssl_certificate.py +5 -0
- pulumi_gcp/compute/get_regions.py +5 -0
- pulumi_gcp/compute/get_reservation.py +5 -0
- pulumi_gcp/compute/get_resource_policy.py +5 -0
- pulumi_gcp/compute/get_router.py +5 -0
- pulumi_gcp/compute/get_router_nat.py +5 -0
- pulumi_gcp/compute/get_router_status.py +5 -0
- pulumi_gcp/compute/get_security_policy.py +5 -0
- pulumi_gcp/compute/get_snapshot.py +5 -0
- pulumi_gcp/compute/get_snapshot_iam_policy.py +5 -0
- pulumi_gcp/compute/get_ssl_policy.py +5 -0
- pulumi_gcp/compute/get_subnetwork.py +5 -0
- pulumi_gcp/compute/get_subnetwork_iam_policy.py +5 -0
- pulumi_gcp/compute/get_subnetworks.py +5 -0
- pulumi_gcp/compute/get_vpn_gateway.py +5 -0
- pulumi_gcp/compute/get_zones.py +5 -0
- pulumi_gcp/compute/global_address.py +5 -0
- pulumi_gcp/compute/global_forwarding_rule.py +211 -206
- pulumi_gcp/compute/global_network_endpoint.py +5 -0
- pulumi_gcp/compute/global_network_endpoint_group.py +5 -0
- pulumi_gcp/compute/ha_vpn_gateway.py +32 -27
- pulumi_gcp/compute/health_check.py +174 -169
- pulumi_gcp/compute/http_health_check.py +5 -0
- pulumi_gcp/compute/https_health_check.py +5 -0
- pulumi_gcp/compute/image.py +50 -45
- pulumi_gcp/compute/image_iam_binding.py +102 -97
- pulumi_gcp/compute/image_iam_member.py +102 -97
- pulumi_gcp/compute/image_iam_policy.py +97 -92
- pulumi_gcp/compute/instance.py +104 -99
- pulumi_gcp/compute/instance_from_machine_image.py +61 -56
- pulumi_gcp/compute/instance_from_template.py +88 -83
- pulumi_gcp/compute/instance_group.py +26 -21
- pulumi_gcp/compute/instance_group_manager.py +138 -133
- pulumi_gcp/compute/instance_group_membership.py +21 -16
- pulumi_gcp/compute/instance_group_named_port.py +13 -8
- pulumi_gcp/compute/instance_iam_binding.py +102 -97
- pulumi_gcp/compute/instance_iam_member.py +102 -97
- pulumi_gcp/compute/instance_iam_policy.py +97 -92
- pulumi_gcp/compute/instance_settings.py +16 -11
- pulumi_gcp/compute/instance_template.py +147 -142
- pulumi_gcp/compute/interconnect.py +14 -9
- pulumi_gcp/compute/interconnect_attachment.py +19 -14
- pulumi_gcp/compute/machine_image.py +48 -43
- pulumi_gcp/compute/machine_image_iam_binding.py +102 -97
- pulumi_gcp/compute/machine_image_iam_member.py +102 -97
- pulumi_gcp/compute/machine_image_iam_policy.py +97 -92
- pulumi_gcp/compute/managed_ssl_certificate.py +40 -35
- pulumi_gcp/compute/manged_ssl_certificate.py +40 -35
- pulumi_gcp/compute/network.py +5 -0
- pulumi_gcp/compute/network_attachment.py +29 -24
- pulumi_gcp/compute/network_edge_security_service.py +5 -0
- pulumi_gcp/compute/network_endpoint.py +23 -18
- pulumi_gcp/compute/network_endpoint_group.py +5 -0
- pulumi_gcp/compute/network_endpoint_list.py +66 -61
- pulumi_gcp/compute/network_firewall_policy.py +5 -0
- pulumi_gcp/compute/network_firewall_policy_association.py +5 -0
- pulumi_gcp/compute/network_firewall_policy_rule.py +41 -36
- pulumi_gcp/compute/network_peering.py +5 -0
- pulumi_gcp/compute/network_peering_routes_config.py +41 -36
- pulumi_gcp/compute/node_group.py +50 -45
- pulumi_gcp/compute/node_template.py +21 -16
- pulumi_gcp/compute/organization_security_policy.py +5 -0
- pulumi_gcp/compute/organization_security_policy_association.py +31 -26
- pulumi_gcp/compute/organization_security_policy_rule.py +36 -31
- pulumi_gcp/compute/outputs.py +5 -0
- pulumi_gcp/compute/packet_mirroring.py +83 -78
- pulumi_gcp/compute/per_instance_config.py +56 -51
- pulumi_gcp/compute/project_cloud_armor_tier.py +5 -0
- pulumi_gcp/compute/project_default_network_tier.py +5 -0
- pulumi_gcp/compute/project_metadata.py +5 -0
- pulumi_gcp/compute/project_metadata_item.py +5 -0
- pulumi_gcp/compute/public_advertised_prefix.py +5 -0
- pulumi_gcp/compute/public_delegated_prefix.py +5 -0
- pulumi_gcp/compute/region_autoscaler.py +60 -55
- pulumi_gcp/compute/region_backend_service.py +203 -198
- pulumi_gcp/compute/region_backend_service_iam_binding.py +10 -5
- pulumi_gcp/compute/region_backend_service_iam_member.py +10 -5
- pulumi_gcp/compute/region_backend_service_iam_policy.py +5 -0
- pulumi_gcp/compute/region_commitment.py +47 -42
- pulumi_gcp/compute/region_disk.py +49 -44
- pulumi_gcp/compute/region_disk_iam_binding.py +24 -19
- pulumi_gcp/compute/region_disk_iam_member.py +24 -19
- pulumi_gcp/compute/region_disk_iam_policy.py +21 -16
- pulumi_gcp/compute/region_disk_resource_policy_attachment.py +21 -16
- pulumi_gcp/compute/region_health_check.py +174 -169
- pulumi_gcp/compute/region_instance_group_manager.py +134 -129
- pulumi_gcp/compute/region_instance_template.py +55 -50
- pulumi_gcp/compute/region_network_endpoint.py +23 -18
- pulumi_gcp/compute/region_network_endpoint_group.py +135 -130
- pulumi_gcp/compute/region_network_firewall_policy.py +5 -0
- pulumi_gcp/compute/region_network_firewall_policy_association.py +5 -0
- pulumi_gcp/compute/region_network_firewall_policy_rule.py +41 -36
- pulumi_gcp/compute/region_per_instance_config.py +66 -61
- pulumi_gcp/compute/region_security_policy.py +49 -44
- pulumi_gcp/compute/region_security_policy_rule.py +161 -156
- pulumi_gcp/compute/region_ssl_certificate.py +5 -0
- pulumi_gcp/compute/region_ssl_policy.py +5 -0
- pulumi_gcp/compute/region_target_http_proxy.py +43 -38
- pulumi_gcp/compute/region_target_https_proxy.py +97 -92
- pulumi_gcp/compute/region_target_tcp_proxy.py +11 -6
- pulumi_gcp/compute/region_url_map.py +824 -819
- pulumi_gcp/compute/reservation.py +29 -24
- pulumi_gcp/compute/resource_policy.py +153 -148
- pulumi_gcp/compute/route.py +17 -12
- pulumi_gcp/compute/router.py +40 -35
- pulumi_gcp/compute/router_interface.py +5 -0
- pulumi_gcp/compute/router_nat.py +98 -93
- pulumi_gcp/compute/router_peer.py +78 -73
- pulumi_gcp/compute/router_status.py +5 -0
- pulumi_gcp/compute/security_policy.py +201 -196
- pulumi_gcp/compute/security_policy_rule.py +80 -75
- pulumi_gcp/compute/security_scan_config.py +15 -10
- pulumi_gcp/compute/service_attachment.py +60 -55
- pulumi_gcp/compute/shared_vpc_host_project.py +5 -0
- pulumi_gcp/compute/shared_vpc_service_project.py +5 -0
- pulumi_gcp/compute/snapshot.py +15 -10
- pulumi_gcp/compute/snapshot_iam_binding.py +24 -19
- pulumi_gcp/compute/snapshot_iam_member.py +24 -19
- pulumi_gcp/compute/snapshot_iam_policy.py +21 -16
- pulumi_gcp/compute/ssl_certificate.py +5 -0
- pulumi_gcp/compute/ssl_policy.py +5 -0
- pulumi_gcp/compute/subnetwork.py +33 -28
- pulumi_gcp/compute/subnetwork_iam_binding.py +102 -97
- pulumi_gcp/compute/subnetwork_iam_member.py +102 -97
- pulumi_gcp/compute/subnetwork_iam_policy.py +97 -92
- pulumi_gcp/compute/target_grpc_proxy.py +129 -124
- pulumi_gcp/compute/target_http_proxy.py +61 -56
- pulumi_gcp/compute/target_https_proxy.py +133 -128
- pulumi_gcp/compute/target_instance.py +63 -58
- pulumi_gcp/compute/target_pool.py +5 -0
- pulumi_gcp/compute/target_ssl_proxy.py +11 -6
- pulumi_gcp/compute/target_tcp_proxy.py +11 -6
- pulumi_gcp/compute/url_map.py +731 -726
- pulumi_gcp/compute/vpn_gateway.py +5 -0
- pulumi_gcp/compute/vpn_tunnel.py +5 -0
- pulumi_gcp/config/__init__.pyi +5 -0
- pulumi_gcp/config/outputs.py +5 -0
- pulumi_gcp/config/vars.py +5 -0
- pulumi_gcp/container/_inputs.py +5502 -823
- pulumi_gcp/container/attached_cluster.py +128 -123
- pulumi_gcp/container/aws_cluster.py +359 -354
- pulumi_gcp/container/aws_node_pool.py +554 -549
- pulumi_gcp/container/azure_client.py +5 -0
- pulumi_gcp/container/azure_cluster.py +133 -128
- pulumi_gcp/container/azure_node_pool.py +115 -110
- pulumi_gcp/container/cluster.py +224 -219
- pulumi_gcp/container/get_attached_install_manifest.py +5 -0
- pulumi_gcp/container/get_attached_versions.py +5 -0
- pulumi_gcp/container/get_aws_versions.py +5 -0
- pulumi_gcp/container/get_azure_versions.py +5 -0
- pulumi_gcp/container/get_cluster.py +5 -0
- pulumi_gcp/container/get_engine_versions.py +5 -0
- pulumi_gcp/container/get_registry_image.py +5 -0
- pulumi_gcp/container/get_registry_repository.py +5 -0
- pulumi_gcp/container/node_pool.py +78 -73
- pulumi_gcp/container/outputs.py +5 -0
- pulumi_gcp/container/registry.py +5 -0
- pulumi_gcp/containeranalysis/_inputs.py +121 -0
- pulumi_gcp/containeranalysis/get_note_iam_policy.py +5 -0
- pulumi_gcp/containeranalysis/note.py +49 -44
- pulumi_gcp/containeranalysis/note_iam_binding.py +24 -19
- pulumi_gcp/containeranalysis/note_iam_member.py +24 -19
- pulumi_gcp/containeranalysis/note_iam_policy.py +21 -16
- pulumi_gcp/containeranalysis/occurence.py +10 -5
- pulumi_gcp/containeranalysis/outputs.py +5 -0
- pulumi_gcp/databasemigrationservice/_inputs.py +578 -0
- pulumi_gcp/databasemigrationservice/connection_profile.py +188 -183
- pulumi_gcp/databasemigrationservice/outputs.py +5 -0
- pulumi_gcp/databasemigrationservice/private_connection.py +20 -15
- pulumi_gcp/datacatalog/_inputs.py +318 -0
- pulumi_gcp/datacatalog/entry.py +20 -15
- pulumi_gcp/datacatalog/entry_group.py +5 -0
- pulumi_gcp/datacatalog/entry_group_iam_binding.py +24 -19
- pulumi_gcp/datacatalog/entry_group_iam_member.py +24 -19
- pulumi_gcp/datacatalog/entry_group_iam_policy.py +21 -16
- pulumi_gcp/datacatalog/get_entry_group_iam_policy.py +5 -0
- pulumi_gcp/datacatalog/get_policy_tag_iam_policy.py +5 -0
- pulumi_gcp/datacatalog/get_tag_template_iam_policy.py +5 -0
- pulumi_gcp/datacatalog/get_taxonomy_iam_policy.py +5 -0
- pulumi_gcp/datacatalog/outputs.py +5 -0
- pulumi_gcp/datacatalog/policy_tag.py +5 -0
- pulumi_gcp/datacatalog/policy_tag_iam_binding.py +24 -19
- pulumi_gcp/datacatalog/policy_tag_iam_member.py +24 -19
- pulumi_gcp/datacatalog/policy_tag_iam_policy.py +21 -16
- pulumi_gcp/datacatalog/tag.py +264 -259
- pulumi_gcp/datacatalog/tag_template.py +76 -71
- pulumi_gcp/datacatalog/tag_template_iam_binding.py +24 -19
- pulumi_gcp/datacatalog/tag_template_iam_member.py +24 -19
- pulumi_gcp/datacatalog/tag_template_iam_policy.py +21 -16
- pulumi_gcp/datacatalog/taxonomy.py +5 -0
- pulumi_gcp/datacatalog/taxonomy_iam_binding.py +24 -19
- pulumi_gcp/datacatalog/taxonomy_iam_member.py +24 -19
- pulumi_gcp/datacatalog/taxonomy_iam_policy.py +21 -16
- pulumi_gcp/dataflow/_inputs.py +316 -0
- pulumi_gcp/dataflow/flex_template_job.py +5 -0
- pulumi_gcp/dataflow/job.py +5 -0
- pulumi_gcp/dataflow/outputs.py +5 -0
- pulumi_gcp/dataflow/pipeline.py +75 -70
- pulumi_gcp/dataform/_inputs.py +251 -0
- pulumi_gcp/dataform/get_repository_iam_policy.py +5 -0
- pulumi_gcp/dataform/outputs.py +5 -0
- pulumi_gcp/dataform/repository.py +41 -36
- pulumi_gcp/dataform/repository_iam_binding.py +8 -3
- pulumi_gcp/dataform/repository_iam_member.py +8 -3
- pulumi_gcp/dataform/repository_iam_policy.py +5 -0
- pulumi_gcp/dataform/repository_release_config.py +58 -53
- pulumi_gcp/dataform/repository_workflow_config.py +94 -89
- pulumi_gcp/datafusion/_inputs.py +64 -0
- pulumi_gcp/datafusion/get_instance_iam_policy.py +5 -0
- pulumi_gcp/datafusion/instance.py +55 -50
- pulumi_gcp/datafusion/outputs.py +5 -0
- pulumi_gcp/dataloss/_inputs.py +6566 -114
- pulumi_gcp/dataloss/outputs.py +5 -0
- pulumi_gcp/dataloss/prevention_deidentify_template.py +226 -221
- pulumi_gcp/dataloss/prevention_discovery_config.py +22 -17
- pulumi_gcp/dataloss/prevention_inspect_template.py +442 -437
- pulumi_gcp/dataloss/prevention_job_trigger.py +701 -696
- pulumi_gcp/dataloss/prevention_stored_info_type.py +62 -57
- pulumi_gcp/dataplex/_inputs.py +1212 -6
- pulumi_gcp/dataplex/aspect_type.py +5 -0
- pulumi_gcp/dataplex/aspect_type_iam_binding.py +24 -19
- pulumi_gcp/dataplex/aspect_type_iam_member.py +24 -19
- pulumi_gcp/dataplex/aspect_type_iam_policy.py +21 -16
- pulumi_gcp/dataplex/asset.py +47 -42
- pulumi_gcp/dataplex/asset_iam_binding.py +24 -19
- pulumi_gcp/dataplex/asset_iam_member.py +24 -19
- pulumi_gcp/dataplex/asset_iam_policy.py +21 -16
- pulumi_gcp/dataplex/datascan.py +289 -284
- pulumi_gcp/dataplex/datascan_iam_binding.py +24 -19
- pulumi_gcp/dataplex/datascan_iam_member.py +24 -19
- pulumi_gcp/dataplex/datascan_iam_policy.py +21 -16
- pulumi_gcp/dataplex/entry_group.py +5 -0
- pulumi_gcp/dataplex/entry_group_iam_binding.py +24 -19
- pulumi_gcp/dataplex/entry_group_iam_member.py +24 -19
- pulumi_gcp/dataplex/entry_group_iam_policy.py +21 -16
- pulumi_gcp/dataplex/entry_type.py +16 -11
- pulumi_gcp/dataplex/entry_type_iam_binding.py +24 -19
- pulumi_gcp/dataplex/entry_type_iam_member.py +24 -19
- pulumi_gcp/dataplex/entry_type_iam_policy.py +21 -16
- pulumi_gcp/dataplex/get_aspect_type_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_asset_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_datascan_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_entry_group_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_entry_type_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_lake_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_task_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_zone_iam_policy.py +5 -0
- pulumi_gcp/dataplex/lake.py +14 -9
- pulumi_gcp/dataplex/lake_iam_binding.py +24 -19
- pulumi_gcp/dataplex/lake_iam_member.py +24 -19
- pulumi_gcp/dataplex/lake_iam_policy.py +21 -16
- pulumi_gcp/dataplex/outputs.py +5 -0
- pulumi_gcp/dataplex/task.py +173 -168
- pulumi_gcp/dataplex/task_iam_binding.py +24 -19
- pulumi_gcp/dataplex/task_iam_member.py +24 -19
- pulumi_gcp/dataplex/task_iam_policy.py +21 -16
- pulumi_gcp/dataplex/zone.py +29 -24
- pulumi_gcp/dataplex/zone_iam_binding.py +24 -19
- pulumi_gcp/dataplex/zone_iam_member.py +24 -19
- pulumi_gcp/dataplex/zone_iam_policy.py +21 -16
- pulumi_gcp/dataproc/_inputs.py +3214 -39
- pulumi_gcp/dataproc/autoscaling_policy.py +50 -45
- pulumi_gcp/dataproc/autoscaling_policy_iam_binding.py +24 -19
- pulumi_gcp/dataproc/autoscaling_policy_iam_member.py +24 -19
- pulumi_gcp/dataproc/autoscaling_policy_iam_policy.py +21 -16
- pulumi_gcp/dataproc/cluster.py +109 -104
- pulumi_gcp/dataproc/cluster_iam_binding.py +24 -19
- pulumi_gcp/dataproc/cluster_iam_member.py +24 -19
- pulumi_gcp/dataproc/cluster_iam_policy.py +21 -16
- pulumi_gcp/dataproc/get_autoscaling_policy_iam_policy.py +5 -0
- pulumi_gcp/dataproc/get_cluster_iam_policy.py +5 -0
- pulumi_gcp/dataproc/get_job_iam_policy.py +5 -0
- pulumi_gcp/dataproc/get_metastore_federation_iam_policy.py +5 -0
- pulumi_gcp/dataproc/get_metastore_service.py +5 -0
- pulumi_gcp/dataproc/get_metastore_service_iam_policy.py +5 -0
- pulumi_gcp/dataproc/job.py +95 -90
- pulumi_gcp/dataproc/job_iam_binding.py +24 -19
- pulumi_gcp/dataproc/job_iam_member.py +24 -19
- pulumi_gcp/dataproc/job_iam_policy.py +21 -16
- pulumi_gcp/dataproc/metastore_federation.py +56 -51
- pulumi_gcp/dataproc/metastore_federation_iam_binding.py +24 -19
- pulumi_gcp/dataproc/metastore_federation_iam_member.py +24 -19
- pulumi_gcp/dataproc/metastore_federation_iam_policy.py +21 -16
- pulumi_gcp/dataproc/metastore_service.py +239 -234
- pulumi_gcp/dataproc/metastore_service_iam_binding.py +24 -19
- pulumi_gcp/dataproc/metastore_service_iam_member.py +24 -19
- pulumi_gcp/dataproc/metastore_service_iam_policy.py +21 -16
- pulumi_gcp/dataproc/outputs.py +5 -0
- pulumi_gcp/dataproc/workflow_template.py +112 -107
- pulumi_gcp/datastore/_inputs.py +22 -0
- pulumi_gcp/datastore/data_store_index.py +26 -21
- pulumi_gcp/datastore/outputs.py +5 -0
- pulumi_gcp/datastream/_inputs.py +1631 -35
- pulumi_gcp/datastream/connection_profile.py +251 -246
- pulumi_gcp/datastream/get_static_ips.py +5 -0
- pulumi_gcp/datastream/outputs.py +5 -0
- pulumi_gcp/datastream/private_connection.py +20 -15
- pulumi_gcp/datastream/stream.py +777 -772
- pulumi_gcp/deploymentmanager/_inputs.py +66 -0
- pulumi_gcp/deploymentmanager/deployment.py +33 -28
- pulumi_gcp/deploymentmanager/outputs.py +5 -0
- pulumi_gcp/diagflow/_inputs.py +2590 -41
- pulumi_gcp/diagflow/agent.py +5 -0
- pulumi_gcp/diagflow/cx_agent.py +75 -70
- pulumi_gcp/diagflow/cx_entity_type.py +37 -32
- pulumi_gcp/diagflow/cx_environment.py +22 -17
- pulumi_gcp/diagflow/cx_flow.py +455 -450
- pulumi_gcp/diagflow/cx_intent.py +55 -50
- pulumi_gcp/diagflow/cx_page.py +718 -713
- pulumi_gcp/diagflow/cx_security_settings.py +69 -64
- pulumi_gcp/diagflow/cx_test_case.py +197 -192
- pulumi_gcp/diagflow/cx_version.py +13 -8
- pulumi_gcp/diagflow/cx_webhook.py +27 -22
- pulumi_gcp/diagflow/entity_type.py +26 -21
- pulumi_gcp/diagflow/fulfillment.py +27 -22
- pulumi_gcp/diagflow/intent.py +7 -2
- pulumi_gcp/diagflow/outputs.py +5 -0
- pulumi_gcp/discoveryengine/_inputs.py +183 -0
- pulumi_gcp/discoveryengine/chat_engine.py +37 -32
- pulumi_gcp/discoveryengine/data_store.py +32 -27
- pulumi_gcp/discoveryengine/outputs.py +5 -0
- pulumi_gcp/discoveryengine/search_engine.py +17 -12
- pulumi_gcp/dns/_inputs.py +589 -0
- pulumi_gcp/dns/dns_managed_zone_iam_binding.py +24 -19
- pulumi_gcp/dns/dns_managed_zone_iam_member.py +24 -19
- pulumi_gcp/dns/dns_managed_zone_iam_policy.py +21 -16
- pulumi_gcp/dns/get_keys.py +13 -8
- pulumi_gcp/dns/get_managed_zone.py +5 -0
- pulumi_gcp/dns/get_managed_zone_iam_policy.py +5 -0
- pulumi_gcp/dns/get_managed_zones.py +5 -0
- pulumi_gcp/dns/get_record_set.py +5 -0
- pulumi_gcp/dns/managed_zone.py +183 -178
- pulumi_gcp/dns/outputs.py +5 -0
- pulumi_gcp/dns/policy.py +47 -42
- pulumi_gcp/dns/record_set.py +100 -95
- pulumi_gcp/dns/response_policy.py +81 -76
- pulumi_gcp/dns/response_policy_rule.py +38 -33
- pulumi_gcp/edgecontainer/_inputs.py +464 -0
- pulumi_gcp/edgecontainer/cluster.py +152 -147
- pulumi_gcp/edgecontainer/node_pool.py +109 -104
- pulumi_gcp/edgecontainer/outputs.py +5 -0
- pulumi_gcp/edgecontainer/vpn_connection.py +36 -31
- pulumi_gcp/edgenetwork/network.py +5 -0
- pulumi_gcp/edgenetwork/subnet.py +5 -0
- pulumi_gcp/endpoints/_inputs.py +101 -0
- pulumi_gcp/endpoints/consumers_iam_binding.py +8 -3
- pulumi_gcp/endpoints/consumers_iam_member.py +8 -3
- pulumi_gcp/endpoints/consumers_iam_policy.py +5 -0
- pulumi_gcp/endpoints/get_service_consumers_iam_policy.py +5 -0
- pulumi_gcp/endpoints/get_service_iam_policy.py +5 -0
- pulumi_gcp/endpoints/outputs.py +5 -0
- pulumi_gcp/endpoints/service.py +9 -4
- pulumi_gcp/endpoints/service_iam_binding.py +24 -19
- pulumi_gcp/endpoints/service_iam_member.py +24 -19
- pulumi_gcp/endpoints/service_iam_policy.py +21 -16
- pulumi_gcp/essentialcontacts/_inputs.py +313 -0
- pulumi_gcp/essentialcontacts/contact.py +5 -0
- pulumi_gcp/essentialcontacts/document_ai_processor.py +5 -0
- pulumi_gcp/essentialcontacts/document_ai_processor_default_version.py +5 -0
- pulumi_gcp/essentialcontacts/document_ai_warehouse_document_schema.py +40 -35
- pulumi_gcp/essentialcontacts/document_ai_warehouse_location.py +5 -0
- pulumi_gcp/essentialcontacts/outputs.py +5 -0
- pulumi_gcp/eventarc/_inputs.py +145 -0
- pulumi_gcp/eventarc/channel.py +5 -0
- pulumi_gcp/eventarc/google_channel_config.py +5 -0
- pulumi_gcp/eventarc/outputs.py +5 -0
- pulumi_gcp/eventarc/trigger.py +78 -73
- pulumi_gcp/filestore/_inputs.py +108 -0
- pulumi_gcp/filestore/backup.py +23 -18
- pulumi_gcp/filestore/get_instance.py +5 -0
- pulumi_gcp/filestore/instance.py +107 -102
- pulumi_gcp/filestore/outputs.py +5 -0
- pulumi_gcp/filestore/snapshot.py +37 -32
- pulumi_gcp/firebase/_inputs.py +511 -0
- pulumi_gcp/firebase/android_app.py +21 -16
- pulumi_gcp/firebase/app_check_app_attest_config.py +5 -0
- pulumi_gcp/firebase/app_check_debug_token.py +5 -0
- pulumi_gcp/firebase/app_check_device_check_config.py +5 -0
- pulumi_gcp/firebase/app_check_play_integrity_config.py +5 -0
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +5 -0
- pulumi_gcp/firebase/app_check_recaptcha_v3_config.py +5 -0
- pulumi_gcp/firebase/app_check_service_config.py +5 -0
- pulumi_gcp/firebase/apple_app.py +15 -10
- pulumi_gcp/firebase/database_instance.py +5 -0
- pulumi_gcp/firebase/extensions_instance.py +30 -25
- pulumi_gcp/firebase/get_android_app.py +5 -0
- pulumi_gcp/firebase/get_android_app_config.py +5 -0
- pulumi_gcp/firebase/get_apple_app.py +5 -0
- pulumi_gcp/firebase/get_apple_app_config.py +5 -0
- pulumi_gcp/firebase/get_hosting_channel.py +5 -0
- pulumi_gcp/firebase/get_web_app.py +5 -0
- pulumi_gcp/firebase/get_web_app_config.py +5 -0
- pulumi_gcp/firebase/hosting_channel.py +5 -0
- pulumi_gcp/firebase/hosting_custom_domain.py +39 -34
- pulumi_gcp/firebase/hosting_release.py +33 -28
- pulumi_gcp/firebase/hosting_site.py +5 -0
- pulumi_gcp/firebase/hosting_version.py +76 -71
- pulumi_gcp/firebase/outputs.py +5 -0
- pulumi_gcp/firebase/project.py +5 -0
- pulumi_gcp/firebase/storage_bucket.py +5 -0
- pulumi_gcp/firebase/web_app.py +15 -10
- pulumi_gcp/firebaserules/_inputs.py +51 -0
- pulumi_gcp/firebaserules/outputs.py +5 -0
- pulumi_gcp/firebaserules/release.py +5 -0
- pulumi_gcp/firebaserules/ruleset.py +40 -35
- pulumi_gcp/firestore/_inputs.py +154 -0
- pulumi_gcp/firestore/backup_schedule.py +23 -18
- pulumi_gcp/firestore/database.py +22 -17
- pulumi_gcp/firestore/document.py +5 -0
- pulumi_gcp/firestore/field.py +63 -58
- pulumi_gcp/firestore/index.py +72 -67
- pulumi_gcp/firestore/outputs.py +5 -0
- pulumi_gcp/folder/_inputs.py +165 -0
- pulumi_gcp/folder/access_approval_settings.py +28 -23
- pulumi_gcp/folder/get_iam_policy.py +5 -0
- pulumi_gcp/folder/get_organization_policy.py +5 -0
- pulumi_gcp/folder/iam_audit_config.py +130 -125
- pulumi_gcp/folder/iam_binding.py +8 -3
- pulumi_gcp/folder/iam_member.py +130 -125
- pulumi_gcp/folder/iam_policy.py +125 -120
- pulumi_gcp/folder/organization_policy.py +54 -49
- pulumi_gcp/folder/outputs.py +5 -0
- pulumi_gcp/gkebackup/_inputs.py +694 -0
- pulumi_gcp/gkebackup/backup_plan.py +436 -431
- pulumi_gcp/gkebackup/backup_plan_iam_binding.py +24 -19
- pulumi_gcp/gkebackup/backup_plan_iam_member.py +24 -19
- pulumi_gcp/gkebackup/backup_plan_iam_policy.py +21 -16
- pulumi_gcp/gkebackup/get_backup_plan_iam_policy.py +5 -0
- pulumi_gcp/gkebackup/get_restore_plan_iam_policy.py +5 -0
- pulumi_gcp/gkebackup/outputs.py +5 -0
- pulumi_gcp/gkebackup/restore_plan.py +580 -575
- pulumi_gcp/gkebackup/restore_plan_iam_binding.py +578 -573
- pulumi_gcp/gkebackup/restore_plan_iam_member.py +578 -573
- pulumi_gcp/gkebackup/restore_plan_iam_policy.py +575 -570
- pulumi_gcp/gkehub/_inputs.py +1204 -6
- pulumi_gcp/gkehub/feature.py +319 -314
- pulumi_gcp/gkehub/feature_iam_binding.py +24 -19
- pulumi_gcp/gkehub/feature_iam_member.py +24 -19
- pulumi_gcp/gkehub/feature_iam_policy.py +21 -16
- pulumi_gcp/gkehub/feature_membership.py +184 -179
- pulumi_gcp/gkehub/fleet.py +24 -19
- pulumi_gcp/gkehub/get_feature_iam_policy.py +5 -0
- pulumi_gcp/gkehub/get_membership_iam_policy.py +5 -0
- pulumi_gcp/gkehub/get_scope_iam_policy.py +5 -0
- pulumi_gcp/gkehub/membership.py +57 -52
- pulumi_gcp/gkehub/membership_binding.py +17 -12
- pulumi_gcp/gkehub/membership_iam_binding.py +24 -19
- pulumi_gcp/gkehub/membership_iam_member.py +24 -19
- pulumi_gcp/gkehub/membership_iam_policy.py +21 -16
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +28 -23
- pulumi_gcp/gkehub/namespace.py +7 -2
- pulumi_gcp/gkehub/outputs.py +5 -0
- pulumi_gcp/gkehub/scope.py +7 -2
- pulumi_gcp/gkehub/scope_iam_binding.py +24 -19
- pulumi_gcp/gkehub/scope_iam_member.py +24 -19
- pulumi_gcp/gkehub/scope_iam_policy.py +21 -16
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +18 -13
- pulumi_gcp/gkeonprem/_inputs.py +2318 -18
- pulumi_gcp/gkeonprem/bare_metal_admin_cluster.py +335 -330
- pulumi_gcp/gkeonprem/bare_metal_cluster.py +528 -523
- pulumi_gcp/gkeonprem/bare_metal_node_pool.py +262 -257
- pulumi_gcp/gkeonprem/outputs.py +5 -0
- pulumi_gcp/gkeonprem/v_mware_cluster.py +399 -394
- pulumi_gcp/gkeonprem/v_mware_node_pool.py +89 -84
- pulumi_gcp/healthcare/_inputs.py +316 -0
- pulumi_gcp/healthcare/consent_store.py +5 -0
- pulumi_gcp/healthcare/consent_store_iam_binding.py +24 -19
- pulumi_gcp/healthcare/consent_store_iam_member.py +24 -19
- pulumi_gcp/healthcare/consent_store_iam_policy.py +21 -16
- pulumi_gcp/healthcare/dataset.py +5 -0
- pulumi_gcp/healthcare/dataset_iam_binding.py +24 -19
- pulumi_gcp/healthcare/dataset_iam_member.py +24 -19
- pulumi_gcp/healthcare/dataset_iam_policy.py +21 -16
- pulumi_gcp/healthcare/dicom_store.py +39 -34
- pulumi_gcp/healthcare/dicom_store_iam_binding.py +24 -19
- pulumi_gcp/healthcare/dicom_store_iam_member.py +24 -19
- pulumi_gcp/healthcare/dicom_store_iam_policy.py +21 -16
- pulumi_gcp/healthcare/fhir_store.py +62 -57
- pulumi_gcp/healthcare/fhir_store_iam_binding.py +24 -19
- pulumi_gcp/healthcare/fhir_store_iam_member.py +24 -19
- pulumi_gcp/healthcare/fhir_store_iam_policy.py +21 -16
- pulumi_gcp/healthcare/get_consent_store_iam_policy.py +5 -0
- pulumi_gcp/healthcare/get_dataset_iam_policy.py +5 -0
- pulumi_gcp/healthcare/get_dicom_store_iam_policy.py +5 -0
- pulumi_gcp/healthcare/get_fhir_store_iam_policy.py +5 -0
- pulumi_gcp/healthcare/get_hl7_v2_store_iam_policy.py +5 -0
- pulumi_gcp/healthcare/hl7_store.py +46 -41
- pulumi_gcp/healthcare/hl7_store_iam_binding.py +24 -19
- pulumi_gcp/healthcare/hl7_store_iam_member.py +24 -19
- pulumi_gcp/healthcare/hl7_store_iam_policy.py +21 -16
- pulumi_gcp/healthcare/outputs.py +5 -0
- pulumi_gcp/iam/_inputs.py +433 -0
- pulumi_gcp/iam/access_boundary_policy.py +54 -49
- pulumi_gcp/iam/deny_policy.py +56 -51
- pulumi_gcp/iam/get_rule.py +5 -0
- pulumi_gcp/iam/get_testable_permissions.py +5 -0
- pulumi_gcp/iam/get_workload_identity_pool.py +5 -0
- pulumi_gcp/iam/get_workload_identity_pool_provider.py +5 -0
- pulumi_gcp/iam/outputs.py +5 -0
- pulumi_gcp/iam/workforce_pool.py +22 -17
- pulumi_gcp/iam/workforce_pool_provider.py +184 -179
- pulumi_gcp/iam/workload_identity_pool.py +5 -0
- pulumi_gcp/iam/workload_identity_pool_provider.py +68 -63
- pulumi_gcp/iap/_inputs.py +411 -0
- pulumi_gcp/iap/app_engine_service_iam_binding.py +102 -97
- pulumi_gcp/iap/app_engine_service_iam_member.py +102 -97
- pulumi_gcp/iap/app_engine_service_iam_policy.py +97 -92
- pulumi_gcp/iap/app_engine_version_iam_binding.py +102 -97
- pulumi_gcp/iap/app_engine_version_iam_member.py +102 -97
- pulumi_gcp/iap/app_engine_version_iam_policy.py +97 -92
- pulumi_gcp/iap/brand.py +5 -0
- pulumi_gcp/iap/client.py +5 -0
- pulumi_gcp/iap/get_app_engine_service_iam_policy.py +5 -0
- pulumi_gcp/iap/get_app_engine_version_iam_policy.py +5 -0
- pulumi_gcp/iap/get_client.py +5 -0
- pulumi_gcp/iap/get_tunnel_dest_group_iam_policy.py +5 -0
- pulumi_gcp/iap/get_tunnel_iam_policy.py +5 -0
- pulumi_gcp/iap/get_tunnel_instance_iam_policy.py +5 -0
- pulumi_gcp/iap/get_web_backend_service_iam_policy.py +5 -0
- pulumi_gcp/iap/get_web_iam_policy.py +5 -0
- pulumi_gcp/iap/get_web_region_backend_service_iam_policy.py +5 -0
- pulumi_gcp/iap/get_web_type_app_engine_iam_policy.py +5 -0
- pulumi_gcp/iap/get_web_type_compute_iam_policy.py +5 -0
- pulumi_gcp/iap/outputs.py +5 -0
- pulumi_gcp/iap/tunnel_dest_group.py +5 -0
- pulumi_gcp/iap/tunnel_dest_group_iam_binding.py +102 -97
- pulumi_gcp/iap/tunnel_dest_group_iam_member.py +102 -97
- pulumi_gcp/iap/tunnel_dest_group_iam_policy.py +97 -92
- pulumi_gcp/iap/tunnel_iam_binding.py +102 -97
- pulumi_gcp/iap/tunnel_iam_member.py +102 -97
- pulumi_gcp/iap/tunnel_iam_policy.py +97 -92
- pulumi_gcp/iap/tunnel_instance_iam_binding.py +102 -97
- pulumi_gcp/iap/tunnel_instance_iam_member.py +102 -97
- pulumi_gcp/iap/tunnel_instance_iam_policy.py +97 -92
- pulumi_gcp/iap/web_backend_service_iam_binding.py +102 -97
- pulumi_gcp/iap/web_backend_service_iam_member.py +102 -97
- pulumi_gcp/iap/web_backend_service_iam_policy.py +97 -92
- pulumi_gcp/iap/web_iam_binding.py +102 -97
- pulumi_gcp/iap/web_iam_member.py +102 -97
- pulumi_gcp/iap/web_iam_policy.py +97 -92
- pulumi_gcp/iap/web_region_backend_service_iam_binding.py +102 -97
- pulumi_gcp/iap/web_region_backend_service_iam_member.py +102 -97
- pulumi_gcp/iap/web_region_backend_service_iam_policy.py +97 -92
- pulumi_gcp/iap/web_type_app_enging_iam_binding.py +102 -97
- pulumi_gcp/iap/web_type_app_enging_iam_member.py +102 -97
- pulumi_gcp/iap/web_type_app_enging_iam_policy.py +97 -92
- pulumi_gcp/iap/web_type_compute_iam_binding.py +102 -97
- pulumi_gcp/iap/web_type_compute_iam_member.py +102 -97
- pulumi_gcp/iap/web_type_compute_iam_policy.py +97 -92
- pulumi_gcp/identityplatform/_inputs.py +576 -0
- pulumi_gcp/identityplatform/config.py +119 -114
- pulumi_gcp/identityplatform/default_supported_idp_config.py +5 -0
- pulumi_gcp/identityplatform/inbound_saml_config.py +39 -34
- pulumi_gcp/identityplatform/oauth_idp_config.py +5 -0
- pulumi_gcp/identityplatform/outputs.py +5 -0
- pulumi_gcp/identityplatform/project_default_config.py +38 -33
- pulumi_gcp/identityplatform/tenant.py +5 -0
- pulumi_gcp/identityplatform/tenant_default_supported_idp_config.py +5 -0
- pulumi_gcp/identityplatform/tenant_inbound_saml_config.py +39 -34
- pulumi_gcp/identityplatform/tenant_oauth_idp_config.py +5 -0
- pulumi_gcp/integrationconnectors/_inputs.py +868 -0
- pulumi_gcp/integrationconnectors/connection.py +465 -460
- pulumi_gcp/integrationconnectors/endpoint_attachment.py +5 -0
- pulumi_gcp/integrationconnectors/managed_zone.py +15 -10
- pulumi_gcp/integrationconnectors/outputs.py +5 -0
- pulumi_gcp/kms/_inputs.py +303 -0
- pulumi_gcp/kms/autokey_config.py +5 -0
- pulumi_gcp/kms/crypto_key.py +18 -13
- pulumi_gcp/kms/crypto_key_iam_binding.py +56 -51
- pulumi_gcp/kms/crypto_key_iam_member.py +56 -51
- pulumi_gcp/kms/crypto_key_iam_policy.py +51 -46
- pulumi_gcp/kms/crypto_key_version.py +12 -7
- pulumi_gcp/kms/ekm_connection.py +24 -19
- pulumi_gcp/kms/get_crypto_key_iam_policy.py +5 -0
- pulumi_gcp/kms/get_key_ring_iam_policy.py +5 -0
- pulumi_gcp/kms/get_kms_crypto_key.py +5 -0
- pulumi_gcp/kms/get_kms_crypto_key_version.py +5 -0
- pulumi_gcp/kms/get_kms_key_ring.py +5 -0
- pulumi_gcp/kms/get_kms_secret.py +11 -6
- pulumi_gcp/kms/get_kms_secret_asymmetric.py +17 -12
- pulumi_gcp/kms/get_kms_secret_ciphertext.py +23 -18
- pulumi_gcp/kms/key_handle.py +5 -0
- pulumi_gcp/kms/key_ring.py +5 -0
- pulumi_gcp/kms/key_ring_iam_binding.py +102 -97
- pulumi_gcp/kms/key_ring_iam_member.py +102 -97
- pulumi_gcp/kms/key_ring_iam_policy.py +97 -92
- pulumi_gcp/kms/key_ring_import_job.py +9 -4
- pulumi_gcp/kms/outputs.py +5 -0
- pulumi_gcp/kms/secret_ciphertext.py +23 -18
- pulumi_gcp/logging/_inputs.py +520 -0
- pulumi_gcp/logging/billing_account_bucket_config.py +15 -10
- pulumi_gcp/logging/billing_account_exclusion.py +5 -0
- pulumi_gcp/logging/billing_account_sink.py +15 -10
- pulumi_gcp/logging/folder_bucket_config.py +15 -10
- pulumi_gcp/logging/folder_exclusion.py +5 -0
- pulumi_gcp/logging/folder_settings.py +5 -0
- pulumi_gcp/logging/folder_sink.py +15 -10
- pulumi_gcp/logging/get_folder_settings.py +5 -0
- pulumi_gcp/logging/get_log_view_iam_policy.py +5 -0
- pulumi_gcp/logging/get_organization_settings.py +5 -0
- pulumi_gcp/logging/get_project_cmek_settings.py +5 -0
- pulumi_gcp/logging/get_project_settings.py +5 -0
- pulumi_gcp/logging/get_sink.py +5 -0
- pulumi_gcp/logging/linked_dataset.py +10 -5
- pulumi_gcp/logging/log_view.py +5 -0
- pulumi_gcp/logging/log_view_iam_binding.py +10 -5
- pulumi_gcp/logging/log_view_iam_member.py +10 -5
- pulumi_gcp/logging/log_view_iam_policy.py +5 -0
- pulumi_gcp/logging/metric.py +97 -92
- pulumi_gcp/logging/organization_bucket_config.py +15 -10
- pulumi_gcp/logging/organization_exclusion.py +5 -0
- pulumi_gcp/logging/organization_settings.py +5 -0
- pulumi_gcp/logging/organization_sink.py +15 -10
- pulumi_gcp/logging/outputs.py +5 -0
- pulumi_gcp/logging/project_bucket_config.py +21 -16
- pulumi_gcp/logging/project_exclusion.py +5 -0
- pulumi_gcp/logging/project_sink.py +15 -10
- pulumi_gcp/looker/_inputs.py +211 -0
- pulumi_gcp/looker/instance.py +204 -199
- pulumi_gcp/looker/outputs.py +5 -0
- pulumi_gcp/managedkafka/_inputs.py +69 -0
- pulumi_gcp/managedkafka/cluster.py +72 -67
- pulumi_gcp/managedkafka/outputs.py +5 -0
- pulumi_gcp/managedkafka/topic.py +27 -22
- pulumi_gcp/memcache/_inputs.py +184 -0
- pulumi_gcp/memcache/instance.py +56 -51
- pulumi_gcp/memcache/outputs.py +5 -0
- pulumi_gcp/migrationcenter/_inputs.py +182 -0
- pulumi_gcp/migrationcenter/group.py +5 -0
- pulumi_gcp/migrationcenter/outputs.py +5 -0
- pulumi_gcp/migrationcenter/preference_set.py +82 -77
- pulumi_gcp/ml/_inputs.py +17 -0
- pulumi_gcp/ml/engine_model.py +10 -5
- pulumi_gcp/ml/outputs.py +5 -0
- pulumi_gcp/monitoring/_inputs.py +1651 -12
- pulumi_gcp/monitoring/alert_policy.py +128 -123
- pulumi_gcp/monitoring/custom_service.py +16 -11
- pulumi_gcp/monitoring/dashboard.py +5 -0
- pulumi_gcp/monitoring/generic_service.py +20 -15
- pulumi_gcp/monitoring/get_app_engine_service.py +21 -16
- pulumi_gcp/monitoring/get_cluster_istio_service.py +5 -0
- pulumi_gcp/monitoring/get_istio_canonical_service.py +5 -0
- pulumi_gcp/monitoring/get_mesh_istio_service.py +5 -0
- pulumi_gcp/monitoring/get_notification_channel.py +29 -24
- pulumi_gcp/monitoring/get_secret_version.py +5 -0
- pulumi_gcp/monitoring/get_uptime_check_i_ps.py +5 -0
- pulumi_gcp/monitoring/group.py +5 -0
- pulumi_gcp/monitoring/metric_descriptor.py +49 -44
- pulumi_gcp/monitoring/monitored_project.py +5 -0
- pulumi_gcp/monitoring/notification_channel.py +16 -11
- pulumi_gcp/monitoring/outputs.py +5 -0
- pulumi_gcp/monitoring/slo.py +120 -115
- pulumi_gcp/monitoring/uptime_check_config.py +241 -236
- pulumi_gcp/netapp/_inputs.py +311 -0
- pulumi_gcp/netapp/active_directory.py +5 -0
- pulumi_gcp/netapp/backup.py +11 -6
- pulumi_gcp/netapp/backup_policy.py +5 -0
- pulumi_gcp/netapp/backup_vault.py +5 -0
- pulumi_gcp/netapp/kmsconfig.py +5 -0
- pulumi_gcp/netapp/outputs.py +5 -0
- pulumi_gcp/netapp/storage_pool.py +5 -0
- pulumi_gcp/netapp/volume.py +27 -22
- pulumi_gcp/netapp/volume_replication.py +24 -19
- pulumi_gcp/netapp/volume_snapshot.py +5 -0
- pulumi_gcp/networkconnectivity/_inputs.py +253 -0
- pulumi_gcp/networkconnectivity/hub.py +7 -2
- pulumi_gcp/networkconnectivity/internal_range.py +5 -0
- pulumi_gcp/networkconnectivity/outputs.py +5 -0
- pulumi_gcp/networkconnectivity/policy_based_route.py +46 -41
- pulumi_gcp/networkconnectivity/regional_endpoint.py +5 -0
- pulumi_gcp/networkconnectivity/service_connection_policy.py +20 -15
- pulumi_gcp/networkconnectivity/spoke.py +71 -66
- pulumi_gcp/networkmanagement/_inputs.py +87 -0
- pulumi_gcp/networkmanagement/connectivity_test.py +85 -80
- pulumi_gcp/networkmanagement/outputs.py +5 -0
- pulumi_gcp/networksecurity/_inputs.py +321 -0
- pulumi_gcp/networksecurity/address_group.py +5 -0
- pulumi_gcp/networksecurity/address_group_iam_binding.py +8 -3
- pulumi_gcp/networksecurity/address_group_iam_member.py +8 -3
- pulumi_gcp/networksecurity/address_group_iam_policy.py +5 -0
- pulumi_gcp/networksecurity/authorization_policy.py +52 -47
- pulumi_gcp/networksecurity/client_tls_policy.py +45 -40
- pulumi_gcp/networksecurity/firewall_endpoint.py +5 -0
- pulumi_gcp/networksecurity/firewall_endpoint_association.py +5 -0
- pulumi_gcp/networksecurity/gateway_security_policy.py +91 -86
- pulumi_gcp/networksecurity/gateway_security_policy_rule.py +5 -0
- pulumi_gcp/networksecurity/get_address_group_iam_policy.py +5 -0
- pulumi_gcp/networksecurity/outputs.py +5 -0
- pulumi_gcp/networksecurity/security_profile.py +40 -35
- pulumi_gcp/networksecurity/security_profile_group.py +5 -0
- pulumi_gcp/networksecurity/server_tls_policy.py +101 -96
- pulumi_gcp/networksecurity/tls_inspection_policy.py +193 -188
- pulumi_gcp/networksecurity/url_list.py +5 -0
- pulumi_gcp/networkservices/_inputs.py +1781 -29
- pulumi_gcp/networkservices/edge_cache_keyset.py +51 -46
- pulumi_gcp/networkservices/edge_cache_origin.py +89 -84
- pulumi_gcp/networkservices/edge_cache_service.py +567 -562
- pulumi_gcp/networkservices/endpoint_policy.py +55 -50
- pulumi_gcp/networkservices/gateway.py +21 -16
- pulumi_gcp/networkservices/grpc_route.py +146 -141
- pulumi_gcp/networkservices/http_route.py +294 -289
- pulumi_gcp/networkservices/lb_route_extension.py +10 -5
- pulumi_gcp/networkservices/lb_traffic_extension.py +10 -5
- pulumi_gcp/networkservices/mesh.py +5 -0
- pulumi_gcp/networkservices/outputs.py +5 -0
- pulumi_gcp/networkservices/service_binding.py +5 -0
- pulumi_gcp/networkservices/service_lb_policies.py +27 -22
- pulumi_gcp/networkservices/tcp_route.py +106 -101
- pulumi_gcp/networkservices/tls_route.py +82 -77
- pulumi_gcp/notebooks/_inputs.py +615 -0
- pulumi_gcp/notebooks/environment.py +21 -16
- pulumi_gcp/notebooks/get_instance_iam_policy.py +5 -0
- pulumi_gcp/notebooks/get_runtime_iam_policy.py +5 -0
- pulumi_gcp/notebooks/instance.py +78 -73
- pulumi_gcp/notebooks/instance_iam_binding.py +24 -19
- pulumi_gcp/notebooks/instance_iam_member.py +24 -19
- pulumi_gcp/notebooks/instance_iam_policy.py +21 -16
- pulumi_gcp/notebooks/location.py +5 -0
- pulumi_gcp/notebooks/outputs.py +5 -0
- pulumi_gcp/notebooks/runtime.py +222 -217
- pulumi_gcp/notebooks/runtime_iam_binding.py +24 -19
- pulumi_gcp/notebooks/runtime_iam_member.py +24 -19
- pulumi_gcp/notebooks/runtime_iam_policy.py +21 -16
- pulumi_gcp/organizations/_inputs.py +231 -0
- pulumi_gcp/organizations/access_approval_settings.py +36 -31
- pulumi_gcp/organizations/folder.py +5 -0
- pulumi_gcp/organizations/get_active_folder.py +5 -0
- pulumi_gcp/organizations/get_billing_account.py +5 -0
- pulumi_gcp/organizations/get_client_config.py +5 -0
- pulumi_gcp/organizations/get_client_open_id_user_info.py +5 -0
- pulumi_gcp/organizations/get_folder.py +5 -0
- pulumi_gcp/organizations/get_folders.py +5 -0
- pulumi_gcp/organizations/get_iam_policy.py +13 -8
- pulumi_gcp/organizations/get_organization.py +5 -0
- pulumi_gcp/organizations/get_project.py +5 -0
- pulumi_gcp/organizations/iam_audit_config.py +18 -13
- pulumi_gcp/organizations/iam_binding.py +8 -3
- pulumi_gcp/organizations/iam_custom_role.py +5 -0
- pulumi_gcp/organizations/iam_member.py +130 -125
- pulumi_gcp/organizations/iam_policy.py +125 -120
- pulumi_gcp/organizations/outputs.py +5 -0
- pulumi_gcp/organizations/policy.py +54 -49
- pulumi_gcp/organizations/project.py +5 -0
- pulumi_gcp/orgpolicy/_inputs.py +183 -0
- pulumi_gcp/orgpolicy/custom_constraint.py +15 -10
- pulumi_gcp/orgpolicy/outputs.py +5 -0
- pulumi_gcp/orgpolicy/policy.py +103 -98
- pulumi_gcp/osconfig/_inputs.py +2235 -30
- pulumi_gcp/osconfig/guest_policies.py +171 -166
- pulumi_gcp/osconfig/os_policy_assignment.py +158 -153
- pulumi_gcp/osconfig/outputs.py +5 -0
- pulumi_gcp/osconfig/patch_deployment.py +326 -321
- pulumi_gcp/oslogin/ssh_public_key.py +5 -0
- pulumi_gcp/parallelstore/instance.py +5 -0
- pulumi_gcp/privilegedaccessmanager/_inputs.py +170 -0
- pulumi_gcp/privilegedaccessmanager/entitlement.py +94 -89
- pulumi_gcp/privilegedaccessmanager/outputs.py +5 -0
- pulumi_gcp/projects/_inputs.py +262 -0
- pulumi_gcp/projects/access_approval_settings.py +30 -25
- pulumi_gcp/projects/api_key.py +88 -83
- pulumi_gcp/projects/default_service_accounts.py +5 -0
- pulumi_gcp/projects/get_iam_policy.py +5 -0
- pulumi_gcp/projects/get_organization_policy.py +5 -0
- pulumi_gcp/projects/get_project.py +5 -0
- pulumi_gcp/projects/get_project_service.py +5 -0
- pulumi_gcp/projects/iam_audit_config.py +130 -125
- pulumi_gcp/projects/iam_binding.py +130 -125
- pulumi_gcp/projects/iam_custom_role.py +5 -0
- pulumi_gcp/projects/iam_member.py +130 -125
- pulumi_gcp/projects/iam_member_remove.py +5 -0
- pulumi_gcp/projects/iam_policy.py +125 -120
- pulumi_gcp/projects/organization_policy.py +54 -49
- pulumi_gcp/projects/outputs.py +5 -0
- pulumi_gcp/projects/service.py +5 -0
- pulumi_gcp/projects/service_identity.py +5 -0
- pulumi_gcp/projects/usage_export_bucket.py +5 -0
- pulumi_gcp/provider.py +7 -2
- pulumi_gcp/pubsub/_inputs.py +438 -0
- pulumi_gcp/pubsub/get_schema_iam_policy.py +5 -0
- pulumi_gcp/pubsub/get_subscription.py +5 -0
- pulumi_gcp/pubsub/get_subscription_iam_policy.py +5 -0
- pulumi_gcp/pubsub/get_topic.py +5 -0
- pulumi_gcp/pubsub/get_topic_iam_policy.py +5 -0
- pulumi_gcp/pubsub/lite_reservation.py +5 -0
- pulumi_gcp/pubsub/lite_subscription.py +36 -31
- pulumi_gcp/pubsub/lite_topic.py +46 -41
- pulumi_gcp/pubsub/outputs.py +5 -0
- pulumi_gcp/pubsub/schema.py +13 -8
- pulumi_gcp/pubsub/schema_iam_binding.py +24 -19
- pulumi_gcp/pubsub/schema_iam_member.py +24 -19
- pulumi_gcp/pubsub/schema_iam_policy.py +21 -16
- pulumi_gcp/pubsub/subscription.py +141 -136
- pulumi_gcp/pubsub/subscription_iam_binding.py +24 -19
- pulumi_gcp/pubsub/subscription_iam_member.py +24 -19
- pulumi_gcp/pubsub/subscription_iam_policy.py +21 -16
- pulumi_gcp/pubsub/topic.py +50 -45
- pulumi_gcp/pubsub/topic_iam_binding.py +24 -19
- pulumi_gcp/pubsub/topic_iam_member.py +24 -19
- pulumi_gcp/pubsub/topic_iam_policy.py +21 -16
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/recaptcha/_inputs.py +89 -0
- pulumi_gcp/recaptcha/enterprise_key.py +132 -127
- pulumi_gcp/recaptcha/outputs.py +5 -0
- pulumi_gcp/redis/_inputs.py +321 -0
- pulumi_gcp/redis/cluster.py +59 -54
- pulumi_gcp/redis/get_instance.py +5 -0
- pulumi_gcp/redis/instance.py +51 -46
- pulumi_gcp/redis/outputs.py +5 -0
- pulumi_gcp/resourcemanager/lien.py +5 -0
- pulumi_gcp/runtimeconfig/_inputs.py +25 -0
- pulumi_gcp/runtimeconfig/config.py +5 -0
- pulumi_gcp/runtimeconfig/config_iam_binding.py +8 -3
- pulumi_gcp/runtimeconfig/config_iam_member.py +8 -3
- pulumi_gcp/runtimeconfig/config_iam_policy.py +5 -0
- pulumi_gcp/runtimeconfig/get_config.py +5 -0
- pulumi_gcp/runtimeconfig/get_config_iam_policy.py +5 -0
- pulumi_gcp/runtimeconfig/get_variable.py +5 -0
- pulumi_gcp/runtimeconfig/outputs.py +5 -0
- pulumi_gcp/runtimeconfig/variable.py +5 -0
- pulumi_gcp/secretmanager/_inputs.py +143 -0
- pulumi_gcp/secretmanager/get_secret.py +5 -0
- pulumi_gcp/secretmanager/get_secret_iam_policy.py +5 -0
- pulumi_gcp/secretmanager/get_secret_version.py +5 -0
- pulumi_gcp/secretmanager/get_secret_version_access.py +5 -0
- pulumi_gcp/secretmanager/get_secrets.py +5 -0
- pulumi_gcp/secretmanager/outputs.py +5 -0
- pulumi_gcp/secretmanager/secret.py +68 -63
- pulumi_gcp/secretmanager/secret_iam_binding.py +102 -97
- pulumi_gcp/secretmanager/secret_iam_member.py +102 -97
- pulumi_gcp/secretmanager/secret_iam_policy.py +97 -92
- pulumi_gcp/secretmanager/secret_version.py +53 -48
- pulumi_gcp/securesourcemanager/_inputs.py +75 -0
- pulumi_gcp/securesourcemanager/get_instance_iam_policy.py +5 -0
- pulumi_gcp/securesourcemanager/instance.py +78 -73
- pulumi_gcp/securesourcemanager/instance_iam_binding.py +8 -3
- pulumi_gcp/securesourcemanager/instance_iam_member.py +8 -3
- pulumi_gcp/securesourcemanager/instance_iam_policy.py +5 -0
- pulumi_gcp/securesourcemanager/outputs.py +5 -0
- pulumi_gcp/securitycenter/_inputs.py +860 -7
- pulumi_gcp/securitycenter/event_threat_detection_custom_module.py +5 -0
- pulumi_gcp/securitycenter/folder_custom_module.py +82 -77
- pulumi_gcp/securitycenter/get_source_iam_policy.py +5 -0
- pulumi_gcp/securitycenter/instance_iam_binding.py +38 -33
- pulumi_gcp/securitycenter/instance_iam_member.py +38 -33
- pulumi_gcp/securitycenter/instance_iam_policy.py +35 -30
- pulumi_gcp/securitycenter/management_folder_security_health_analytics_custom_module.py +82 -77
- pulumi_gcp/securitycenter/management_organization_event_threat_detection_custom_module.py +5 -0
- pulumi_gcp/securitycenter/management_organization_security_health_analytics_custom_module.py +82 -77
- pulumi_gcp/securitycenter/management_project_security_health_analytics_custom_module.py +82 -77
- pulumi_gcp/securitycenter/mute_config.py +5 -0
- pulumi_gcp/securitycenter/notification_config.py +16 -11
- pulumi_gcp/securitycenter/organization_custom_module.py +82 -77
- pulumi_gcp/securitycenter/outputs.py +5 -0
- pulumi_gcp/securitycenter/project_custom_module.py +82 -77
- pulumi_gcp/securitycenter/source.py +5 -0
- pulumi_gcp/securitycenter/source_iam_binding.py +8 -3
- pulumi_gcp/securitycenter/source_iam_member.py +8 -3
- pulumi_gcp/securitycenter/source_iam_policy.py +5 -0
- pulumi_gcp/securityposture/_inputs.py +457 -0
- pulumi_gcp/securityposture/outputs.py +5 -0
- pulumi_gcp/securityposture/posture.py +186 -181
- pulumi_gcp/securityposture/posture_deployment.py +35 -30
- pulumi_gcp/serviceaccount/_inputs.py +51 -0
- pulumi_gcp/serviceaccount/account.py +5 -0
- pulumi_gcp/serviceaccount/get_account.py +5 -0
- pulumi_gcp/serviceaccount/get_account_access_token.py +5 -0
- pulumi_gcp/serviceaccount/get_account_id_token.py +5 -0
- pulumi_gcp/serviceaccount/get_account_jwt.py +5 -0
- pulumi_gcp/serviceaccount/get_account_key.py +5 -0
- pulumi_gcp/serviceaccount/get_iam_policy.py +5 -0
- pulumi_gcp/serviceaccount/iam_binding.py +66 -61
- pulumi_gcp/serviceaccount/iam_member.py +66 -61
- pulumi_gcp/serviceaccount/iam_policy.py +61 -56
- pulumi_gcp/serviceaccount/key.py +5 -0
- pulumi_gcp/serviceaccount/outputs.py +5 -0
- pulumi_gcp/servicedirectory/_inputs.py +43 -0
- pulumi_gcp/servicedirectory/endpoint.py +5 -0
- pulumi_gcp/servicedirectory/get_namespace_iam_policy.py +5 -0
- pulumi_gcp/servicedirectory/get_service_iam_policy.py +5 -0
- pulumi_gcp/servicedirectory/namespace.py +5 -0
- pulumi_gcp/servicedirectory/namespace_iam_binding.py +24 -19
- pulumi_gcp/servicedirectory/namespace_iam_member.py +24 -19
- pulumi_gcp/servicedirectory/namespace_iam_policy.py +21 -16
- pulumi_gcp/servicedirectory/outputs.py +5 -0
- pulumi_gcp/servicedirectory/service.py +5 -0
- pulumi_gcp/servicedirectory/service_iam_binding.py +24 -19
- pulumi_gcp/servicedirectory/service_iam_member.py +24 -19
- pulumi_gcp/servicedirectory/service_iam_policy.py +21 -16
- pulumi_gcp/servicenetworking/connection.py +5 -0
- pulumi_gcp/servicenetworking/get_peered_dns_domain.py +5 -0
- pulumi_gcp/servicenetworking/peered_dns_domain.py +5 -0
- pulumi_gcp/servicenetworking/vpc_service_controls.py +5 -0
- pulumi_gcp/serviceusage/consumer_quota_override.py +5 -0
- pulumi_gcp/sourcerepo/_inputs.py +49 -0
- pulumi_gcp/sourcerepo/get_repository.py +5 -0
- pulumi_gcp/sourcerepo/get_repository_iam_policy.py +5 -0
- pulumi_gcp/sourcerepo/outputs.py +5 -0
- pulumi_gcp/sourcerepo/repository.py +20 -15
- pulumi_gcp/sourcerepo/repository_iam_binding.py +24 -19
- pulumi_gcp/sourcerepo/repository_iam_member.py +24 -19
- pulumi_gcp/sourcerepo/repository_iam_policy.py +21 -16
- pulumi_gcp/spanner/_inputs.py +157 -0
- pulumi_gcp/spanner/database.py +10 -5
- pulumi_gcp/spanner/database_iam_binding.py +102 -97
- pulumi_gcp/spanner/database_iam_member.py +102 -97
- pulumi_gcp/spanner/database_iam_policy.py +97 -92
- pulumi_gcp/spanner/get_database_iam_policy.py +5 -0
- pulumi_gcp/spanner/get_instance.py +5 -0
- pulumi_gcp/spanner/get_instance_iam_policy.py +5 -0
- pulumi_gcp/spanner/instance.py +30 -25
- pulumi_gcp/spanner/instance_config.py +10 -5
- pulumi_gcp/spanner/instance_iam_binding.py +24 -19
- pulumi_gcp/spanner/instance_iam_member.py +24 -19
- pulumi_gcp/spanner/instance_iam_policy.py +21 -16
- pulumi_gcp/spanner/outputs.py +5 -0
- pulumi_gcp/sql/_inputs.py +616 -0
- pulumi_gcp/sql/database.py +17 -12
- pulumi_gcp/sql/database_instance.py +93 -88
- pulumi_gcp/sql/get_backup_run.py +5 -0
- pulumi_gcp/sql/get_ca_certs.py +5 -0
- pulumi_gcp/sql/get_database.py +5 -0
- pulumi_gcp/sql/get_database_instance.py +5 -0
- pulumi_gcp/sql/get_database_instance_latest_recovery_time.py +5 -0
- pulumi_gcp/sql/get_database_instances.py +5 -0
- pulumi_gcp/sql/get_databases.py +5 -0
- pulumi_gcp/sql/get_tiers.py +5 -0
- pulumi_gcp/sql/outputs.py +5 -0
- pulumi_gcp/sql/source_representation_instance.py +5 -0
- pulumi_gcp/sql/ssl_cert.py +11 -6
- pulumi_gcp/sql/user.py +43 -38
- pulumi_gcp/storage/_inputs.py +828 -0
- pulumi_gcp/storage/bucket.py +125 -120
- pulumi_gcp/storage/bucket_access_control.py +5 -0
- pulumi_gcp/storage/bucket_acl.py +5 -0
- pulumi_gcp/storage/bucket_iam_binding.py +102 -97
- pulumi_gcp/storage/bucket_iam_member.py +102 -97
- pulumi_gcp/storage/bucket_iam_policy.py +97 -92
- pulumi_gcp/storage/bucket_object.py +15 -10
- pulumi_gcp/storage/default_object_access_control.py +7 -2
- pulumi_gcp/storage/default_object_acl.py +5 -0
- pulumi_gcp/storage/get_bucket.py +5 -0
- pulumi_gcp/storage/get_bucket_iam_policy.py +5 -0
- pulumi_gcp/storage/get_bucket_object.py +5 -0
- pulumi_gcp/storage/get_bucket_object_content.py +5 -0
- pulumi_gcp/storage/get_bucket_objects.py +5 -0
- pulumi_gcp/storage/get_buckets.py +5 -0
- pulumi_gcp/storage/get_object_signed_url.py +5 -0
- pulumi_gcp/storage/get_project_service_account.py +11 -6
- pulumi_gcp/storage/get_transfer_project_service_account.py +5 -0
- pulumi_gcp/storage/get_transfer_project_servie_account.py +5 -0
- pulumi_gcp/storage/hmac_key.py +5 -0
- pulumi_gcp/storage/insights_report_config.py +76 -71
- pulumi_gcp/storage/notification.py +5 -0
- pulumi_gcp/storage/object_access_control.py +7 -2
- pulumi_gcp/storage/object_acl.py +5 -0
- pulumi_gcp/storage/outputs.py +5 -0
- pulumi_gcp/storage/transfer_agent_pool.py +16 -11
- pulumi_gcp/storage/transfer_job.py +113 -108
- pulumi_gcp/tags/_inputs.py +43 -0
- pulumi_gcp/tags/get_tag_key.py +5 -0
- pulumi_gcp/tags/get_tag_key_iam_policy.py +5 -0
- pulumi_gcp/tags/get_tag_keys.py +5 -0
- pulumi_gcp/tags/get_tag_value.py +5 -0
- pulumi_gcp/tags/get_tag_value_iam_policy.py +5 -0
- pulumi_gcp/tags/get_tag_values.py +5 -0
- pulumi_gcp/tags/location_tag_binding.py +5 -0
- pulumi_gcp/tags/outputs.py +5 -0
- pulumi_gcp/tags/tag_binding.py +5 -0
- pulumi_gcp/tags/tag_key.py +5 -0
- pulumi_gcp/tags/tag_key_iam_binding.py +24 -19
- pulumi_gcp/tags/tag_key_iam_member.py +24 -19
- pulumi_gcp/tags/tag_key_iam_policy.py +21 -16
- pulumi_gcp/tags/tag_value.py +5 -0
- pulumi_gcp/tags/tag_value_iam_binding.py +24 -19
- pulumi_gcp/tags/tag_value_iam_member.py +24 -19
- pulumi_gcp/tags/tag_value_iam_policy.py +21 -16
- pulumi_gcp/tpu/_inputs.py +194 -0
- pulumi_gcp/tpu/get_tensorflow_versions.py +5 -0
- pulumi_gcp/tpu/get_v2_accelerator_types.py +5 -0
- pulumi_gcp/tpu/get_v2_runtime_versions.py +5 -0
- pulumi_gcp/tpu/node.py +18 -13
- pulumi_gcp/tpu/outputs.py +5 -0
- pulumi_gcp/tpu/v2_vm.py +87 -82
- pulumi_gcp/vertex/_inputs.py +841 -0
- pulumi_gcp/vertex/ai_dataset.py +10 -5
- pulumi_gcp/vertex/ai_deployment_resource_pool.py +36 -31
- pulumi_gcp/vertex/ai_endpoint.py +18 -13
- pulumi_gcp/vertex/ai_endpoint_iam_binding.py +8 -3
- pulumi_gcp/vertex/ai_endpoint_iam_member.py +8 -3
- pulumi_gcp/vertex/ai_endpoint_iam_policy.py +5 -0
- pulumi_gcp/vertex/ai_feature_group.py +22 -17
- pulumi_gcp/vertex/ai_feature_group_feature.py +17 -12
- pulumi_gcp/vertex/ai_feature_online_store.py +73 -68
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +151 -146
- pulumi_gcp/vertex/ai_feature_store.py +57 -52
- pulumi_gcp/vertex/ai_feature_store_entity_type.py +92 -87
- pulumi_gcp/vertex/ai_feature_store_entity_type_feature.py +41 -36
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_binding.py +8 -3
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_member.py +8 -3
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_policy.py +5 -0
- pulumi_gcp/vertex/ai_feature_store_iam_binding.py +8 -3
- pulumi_gcp/vertex/ai_feature_store_iam_member.py +8 -3
- pulumi_gcp/vertex/ai_feature_store_iam_policy.py +5 -0
- pulumi_gcp/vertex/ai_index.py +68 -63
- pulumi_gcp/vertex/ai_index_endpoint.py +18 -13
- pulumi_gcp/vertex/ai_metadata_store.py +12 -7
- pulumi_gcp/vertex/ai_tensorboard.py +16 -11
- pulumi_gcp/vertex/get_ai_endpoint_iam_policy.py +5 -0
- pulumi_gcp/vertex/get_ai_featurestore_entitytype_iam_policy.py +5 -0
- pulumi_gcp/vertex/get_ai_featurestore_iam_policy.py +5 -0
- pulumi_gcp/vertex/get_ai_index.py +5 -0
- pulumi_gcp/vertex/outputs.py +5 -0
- pulumi_gcp/vmwareengine/_inputs.py +290 -0
- pulumi_gcp/vmwareengine/cluster.py +74 -69
- pulumi_gcp/vmwareengine/external_access_rule.py +61 -56
- pulumi_gcp/vmwareengine/external_address.py +27 -22
- pulumi_gcp/vmwareengine/get_cluster.py +5 -0
- pulumi_gcp/vmwareengine/get_external_access_rule.py +5 -0
- pulumi_gcp/vmwareengine/get_external_address.py +5 -0
- pulumi_gcp/vmwareengine/get_network.py +5 -0
- pulumi_gcp/vmwareengine/get_network_peering.py +5 -0
- pulumi_gcp/vmwareengine/get_network_policy.py +5 -0
- pulumi_gcp/vmwareengine/get_nsx_credentials.py +5 -0
- pulumi_gcp/vmwareengine/get_private_cloud.py +5 -0
- pulumi_gcp/vmwareengine/get_subnet.py +5 -0
- pulumi_gcp/vmwareengine/get_vcenter_credentials.py +5 -0
- pulumi_gcp/vmwareengine/network.py +7 -2
- pulumi_gcp/vmwareengine/network_peering.py +5 -0
- pulumi_gcp/vmwareengine/network_policy.py +27 -22
- pulumi_gcp/vmwareengine/outputs.py +5 -0
- pulumi_gcp/vmwareengine/private_cloud.py +67 -62
- pulumi_gcp/vmwareengine/subnet.py +29 -24
- pulumi_gcp/vpcaccess/_inputs.py +22 -0
- pulumi_gcp/vpcaccess/connector.py +16 -11
- pulumi_gcp/vpcaccess/get_connector.py +5 -0
- pulumi_gcp/vpcaccess/outputs.py +5 -0
- pulumi_gcp/workbench/_inputs.py +319 -0
- pulumi_gcp/workbench/get_instance_iam_policy.py +5 -0
- pulumi_gcp/workbench/instance.py +144 -139
- pulumi_gcp/workbench/instance_iam_binding.py +8 -3
- pulumi_gcp/workbench/instance_iam_member.py +8 -3
- pulumi_gcp/workbench/instance_iam_policy.py +5 -0
- pulumi_gcp/workbench/outputs.py +5 -0
- pulumi_gcp/workflows/workflow.py +5 -0
- pulumi_gcp/workstations/_inputs.py +433 -0
- pulumi_gcp/workstations/get_workstation_config_iam_policy.py +5 -0
- pulumi_gcp/workstations/get_workstation_iam_policy.py +5 -0
- pulumi_gcp/workstations/outputs.py +5 -0
- pulumi_gcp/workstations/workstation.py +19 -14
- pulumi_gcp/workstations/workstation_cluster.py +35 -30
- pulumi_gcp/workstations/workstation_config.py +251 -246
- pulumi_gcp/workstations/workstation_config_iam_binding.py +8 -3
- pulumi_gcp/workstations/workstation_config_iam_member.py +8 -3
- pulumi_gcp/workstations/workstation_config_iam_policy.py +5 -0
- pulumi_gcp/workstations/workstation_iam_binding.py +8 -3
- pulumi_gcp/workstations/workstation_iam_member.py +8 -3
- pulumi_gcp/workstations/workstation_iam_policy.py +5 -0
- {pulumi_gcp-7.30.0a1719470057.dist-info → pulumi_gcp-7.30.0a1719513455.dist-info}/METADATA +2 -1
- pulumi_gcp-7.30.0a1719513455.dist-info/RECORD +1600 -0
- pulumi_gcp-7.30.0a1719470057.dist-info/RECORD +0 -1600
- {pulumi_gcp-7.30.0a1719470057.dist-info → pulumi_gcp-7.30.0a1719513455.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.30.0a1719470057.dist-info → pulumi_gcp-7.30.0a1719513455.dist-info}/top_level.txt +0 -0
pulumi_gcp/gkeonprem/_inputs.py
CHANGED
@@ -4,137 +4,276 @@
|
|
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
|
'BareMetalAdminClusterClusterOperationsArgs',
|
19
|
+
'BareMetalAdminClusterClusterOperationsArgsDict',
|
14
20
|
'BareMetalAdminClusterControlPlaneArgs',
|
21
|
+
'BareMetalAdminClusterControlPlaneArgsDict',
|
15
22
|
'BareMetalAdminClusterControlPlaneApiServerArgArgs',
|
23
|
+
'BareMetalAdminClusterControlPlaneApiServerArgArgsDict',
|
16
24
|
'BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigArgs',
|
25
|
+
'BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigArgsDict',
|
17
26
|
'BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigArgs',
|
27
|
+
'BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigArgsDict',
|
18
28
|
'BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigNodeConfigArgs',
|
29
|
+
'BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigNodeConfigArgsDict',
|
19
30
|
'BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigTaintArgs',
|
31
|
+
'BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigTaintArgsDict',
|
20
32
|
'BareMetalAdminClusterFleetArgs',
|
33
|
+
'BareMetalAdminClusterFleetArgsDict',
|
21
34
|
'BareMetalAdminClusterLoadBalancerArgs',
|
35
|
+
'BareMetalAdminClusterLoadBalancerArgsDict',
|
22
36
|
'BareMetalAdminClusterLoadBalancerManualLbConfigArgs',
|
37
|
+
'BareMetalAdminClusterLoadBalancerManualLbConfigArgsDict',
|
23
38
|
'BareMetalAdminClusterLoadBalancerPortConfigArgs',
|
39
|
+
'BareMetalAdminClusterLoadBalancerPortConfigArgsDict',
|
24
40
|
'BareMetalAdminClusterLoadBalancerVipConfigArgs',
|
41
|
+
'BareMetalAdminClusterLoadBalancerVipConfigArgsDict',
|
25
42
|
'BareMetalAdminClusterMaintenanceConfigArgs',
|
43
|
+
'BareMetalAdminClusterMaintenanceConfigArgsDict',
|
26
44
|
'BareMetalAdminClusterNetworkConfigArgs',
|
45
|
+
'BareMetalAdminClusterNetworkConfigArgsDict',
|
27
46
|
'BareMetalAdminClusterNetworkConfigIslandModeCidrArgs',
|
47
|
+
'BareMetalAdminClusterNetworkConfigIslandModeCidrArgsDict',
|
28
48
|
'BareMetalAdminClusterNodeAccessConfigArgs',
|
49
|
+
'BareMetalAdminClusterNodeAccessConfigArgsDict',
|
29
50
|
'BareMetalAdminClusterNodeConfigArgs',
|
51
|
+
'BareMetalAdminClusterNodeConfigArgsDict',
|
30
52
|
'BareMetalAdminClusterProxyArgs',
|
53
|
+
'BareMetalAdminClusterProxyArgsDict',
|
31
54
|
'BareMetalAdminClusterSecurityConfigArgs',
|
55
|
+
'BareMetalAdminClusterSecurityConfigArgsDict',
|
32
56
|
'BareMetalAdminClusterSecurityConfigAuthorizationArgs',
|
57
|
+
'BareMetalAdminClusterSecurityConfigAuthorizationArgsDict',
|
33
58
|
'BareMetalAdminClusterSecurityConfigAuthorizationAdminUserArgs',
|
59
|
+
'BareMetalAdminClusterSecurityConfigAuthorizationAdminUserArgsDict',
|
34
60
|
'BareMetalAdminClusterStatusArgs',
|
61
|
+
'BareMetalAdminClusterStatusArgsDict',
|
35
62
|
'BareMetalAdminClusterStatusConditionArgs',
|
63
|
+
'BareMetalAdminClusterStatusConditionArgsDict',
|
36
64
|
'BareMetalAdminClusterStorageArgs',
|
65
|
+
'BareMetalAdminClusterStorageArgsDict',
|
37
66
|
'BareMetalAdminClusterStorageLvpNodeMountsConfigArgs',
|
67
|
+
'BareMetalAdminClusterStorageLvpNodeMountsConfigArgsDict',
|
38
68
|
'BareMetalAdminClusterStorageLvpShareConfigArgs',
|
69
|
+
'BareMetalAdminClusterStorageLvpShareConfigArgsDict',
|
39
70
|
'BareMetalAdminClusterStorageLvpShareConfigLvpConfigArgs',
|
71
|
+
'BareMetalAdminClusterStorageLvpShareConfigLvpConfigArgsDict',
|
40
72
|
'BareMetalAdminClusterValidationCheckArgs',
|
73
|
+
'BareMetalAdminClusterValidationCheckArgsDict',
|
41
74
|
'BareMetalAdminClusterValidationCheckStatusArgs',
|
75
|
+
'BareMetalAdminClusterValidationCheckStatusArgsDict',
|
42
76
|
'BareMetalAdminClusterValidationCheckStatusResultArgs',
|
77
|
+
'BareMetalAdminClusterValidationCheckStatusResultArgsDict',
|
43
78
|
'BareMetalClusterBinaryAuthorizationArgs',
|
79
|
+
'BareMetalClusterBinaryAuthorizationArgsDict',
|
44
80
|
'BareMetalClusterClusterOperationsArgs',
|
81
|
+
'BareMetalClusterClusterOperationsArgsDict',
|
45
82
|
'BareMetalClusterControlPlaneArgs',
|
83
|
+
'BareMetalClusterControlPlaneArgsDict',
|
46
84
|
'BareMetalClusterControlPlaneApiServerArgArgs',
|
85
|
+
'BareMetalClusterControlPlaneApiServerArgArgsDict',
|
47
86
|
'BareMetalClusterControlPlaneControlPlaneNodePoolConfigArgs',
|
87
|
+
'BareMetalClusterControlPlaneControlPlaneNodePoolConfigArgsDict',
|
48
88
|
'BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigArgs',
|
89
|
+
'BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigArgsDict',
|
49
90
|
'BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigNodeConfigArgs',
|
91
|
+
'BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigNodeConfigArgsDict',
|
50
92
|
'BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigTaintArgs',
|
93
|
+
'BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigTaintArgsDict',
|
51
94
|
'BareMetalClusterFleetArgs',
|
95
|
+
'BareMetalClusterFleetArgsDict',
|
52
96
|
'BareMetalClusterLoadBalancerArgs',
|
97
|
+
'BareMetalClusterLoadBalancerArgsDict',
|
53
98
|
'BareMetalClusterLoadBalancerBgpLbConfigArgs',
|
99
|
+
'BareMetalClusterLoadBalancerBgpLbConfigArgsDict',
|
54
100
|
'BareMetalClusterLoadBalancerBgpLbConfigAddressPoolArgs',
|
101
|
+
'BareMetalClusterLoadBalancerBgpLbConfigAddressPoolArgsDict',
|
55
102
|
'BareMetalClusterLoadBalancerBgpLbConfigBgpPeerConfigArgs',
|
103
|
+
'BareMetalClusterLoadBalancerBgpLbConfigBgpPeerConfigArgsDict',
|
56
104
|
'BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigArgs',
|
105
|
+
'BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigArgsDict',
|
57
106
|
'BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigArgs',
|
107
|
+
'BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigArgsDict',
|
58
108
|
'BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigKubeletConfigArgs',
|
109
|
+
'BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigKubeletConfigArgsDict',
|
59
110
|
'BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigNodeConfigArgs',
|
111
|
+
'BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigNodeConfigArgsDict',
|
60
112
|
'BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigTaintArgs',
|
113
|
+
'BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigTaintArgsDict',
|
61
114
|
'BareMetalClusterLoadBalancerManualLbConfigArgs',
|
115
|
+
'BareMetalClusterLoadBalancerManualLbConfigArgsDict',
|
62
116
|
'BareMetalClusterLoadBalancerMetalLbConfigArgs',
|
117
|
+
'BareMetalClusterLoadBalancerMetalLbConfigArgsDict',
|
63
118
|
'BareMetalClusterLoadBalancerMetalLbConfigAddressPoolArgs',
|
119
|
+
'BareMetalClusterLoadBalancerMetalLbConfigAddressPoolArgsDict',
|
64
120
|
'BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigArgs',
|
121
|
+
'BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigArgsDict',
|
65
122
|
'BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoolConfigArgs',
|
123
|
+
'BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoolConfigArgsDict',
|
66
124
|
'BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoolConfigNodeConfigArgs',
|
125
|
+
'BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoolConfigNodeConfigArgsDict',
|
67
126
|
'BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoolConfigTaintArgs',
|
127
|
+
'BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoolConfigTaintArgsDict',
|
68
128
|
'BareMetalClusterLoadBalancerPortConfigArgs',
|
129
|
+
'BareMetalClusterLoadBalancerPortConfigArgsDict',
|
69
130
|
'BareMetalClusterLoadBalancerVipConfigArgs',
|
131
|
+
'BareMetalClusterLoadBalancerVipConfigArgsDict',
|
70
132
|
'BareMetalClusterMaintenanceConfigArgs',
|
133
|
+
'BareMetalClusterMaintenanceConfigArgsDict',
|
71
134
|
'BareMetalClusterNetworkConfigArgs',
|
135
|
+
'BareMetalClusterNetworkConfigArgsDict',
|
72
136
|
'BareMetalClusterNetworkConfigIslandModeCidrArgs',
|
137
|
+
'BareMetalClusterNetworkConfigIslandModeCidrArgsDict',
|
73
138
|
'BareMetalClusterNetworkConfigMultipleNetworkInterfacesConfigArgs',
|
139
|
+
'BareMetalClusterNetworkConfigMultipleNetworkInterfacesConfigArgsDict',
|
74
140
|
'BareMetalClusterNetworkConfigSrIovConfigArgs',
|
141
|
+
'BareMetalClusterNetworkConfigSrIovConfigArgsDict',
|
75
142
|
'BareMetalClusterNodeAccessConfigArgs',
|
143
|
+
'BareMetalClusterNodeAccessConfigArgsDict',
|
76
144
|
'BareMetalClusterNodeConfigArgs',
|
145
|
+
'BareMetalClusterNodeConfigArgsDict',
|
77
146
|
'BareMetalClusterOsEnvironmentConfigArgs',
|
147
|
+
'BareMetalClusterOsEnvironmentConfigArgsDict',
|
78
148
|
'BareMetalClusterProxyArgs',
|
149
|
+
'BareMetalClusterProxyArgsDict',
|
79
150
|
'BareMetalClusterSecurityConfigArgs',
|
151
|
+
'BareMetalClusterSecurityConfigArgsDict',
|
80
152
|
'BareMetalClusterSecurityConfigAuthorizationArgs',
|
153
|
+
'BareMetalClusterSecurityConfigAuthorizationArgsDict',
|
81
154
|
'BareMetalClusterSecurityConfigAuthorizationAdminUserArgs',
|
155
|
+
'BareMetalClusterSecurityConfigAuthorizationAdminUserArgsDict',
|
82
156
|
'BareMetalClusterStatusArgs',
|
157
|
+
'BareMetalClusterStatusArgsDict',
|
83
158
|
'BareMetalClusterStatusConditionArgs',
|
159
|
+
'BareMetalClusterStatusConditionArgsDict',
|
84
160
|
'BareMetalClusterStorageArgs',
|
161
|
+
'BareMetalClusterStorageArgsDict',
|
85
162
|
'BareMetalClusterStorageLvpNodeMountsConfigArgs',
|
163
|
+
'BareMetalClusterStorageLvpNodeMountsConfigArgsDict',
|
86
164
|
'BareMetalClusterStorageLvpShareConfigArgs',
|
165
|
+
'BareMetalClusterStorageLvpShareConfigArgsDict',
|
87
166
|
'BareMetalClusterStorageLvpShareConfigLvpConfigArgs',
|
167
|
+
'BareMetalClusterStorageLvpShareConfigLvpConfigArgsDict',
|
88
168
|
'BareMetalClusterUpgradePolicyArgs',
|
169
|
+
'BareMetalClusterUpgradePolicyArgsDict',
|
89
170
|
'BareMetalClusterValidationCheckArgs',
|
171
|
+
'BareMetalClusterValidationCheckArgsDict',
|
90
172
|
'BareMetalClusterValidationCheckStatusArgs',
|
173
|
+
'BareMetalClusterValidationCheckStatusArgsDict',
|
91
174
|
'BareMetalClusterValidationCheckStatusResultArgs',
|
175
|
+
'BareMetalClusterValidationCheckStatusResultArgsDict',
|
92
176
|
'BareMetalNodePoolNodePoolConfigArgs',
|
177
|
+
'BareMetalNodePoolNodePoolConfigArgsDict',
|
93
178
|
'BareMetalNodePoolNodePoolConfigNodeConfigArgs',
|
179
|
+
'BareMetalNodePoolNodePoolConfigNodeConfigArgsDict',
|
94
180
|
'BareMetalNodePoolNodePoolConfigTaintArgs',
|
181
|
+
'BareMetalNodePoolNodePoolConfigTaintArgsDict',
|
95
182
|
'BareMetalNodePoolStatusArgs',
|
183
|
+
'BareMetalNodePoolStatusArgsDict',
|
96
184
|
'BareMetalNodePoolStatusConditionArgs',
|
185
|
+
'BareMetalNodePoolStatusConditionArgsDict',
|
97
186
|
'VMwareClusterAntiAffinityGroupsArgs',
|
187
|
+
'VMwareClusterAntiAffinityGroupsArgsDict',
|
98
188
|
'VMwareClusterAuthorizationArgs',
|
189
|
+
'VMwareClusterAuthorizationArgsDict',
|
99
190
|
'VMwareClusterAuthorizationAdminUserArgs',
|
191
|
+
'VMwareClusterAuthorizationAdminUserArgsDict',
|
100
192
|
'VMwareClusterAutoRepairConfigArgs',
|
193
|
+
'VMwareClusterAutoRepairConfigArgsDict',
|
101
194
|
'VMwareClusterControlPlaneNodeArgs',
|
195
|
+
'VMwareClusterControlPlaneNodeArgsDict',
|
102
196
|
'VMwareClusterControlPlaneNodeAutoResizeConfigArgs',
|
197
|
+
'VMwareClusterControlPlaneNodeAutoResizeConfigArgsDict',
|
103
198
|
'VMwareClusterControlPlaneNodeVsphereConfigArgs',
|
199
|
+
'VMwareClusterControlPlaneNodeVsphereConfigArgsDict',
|
104
200
|
'VMwareClusterDataplaneV2Args',
|
201
|
+
'VMwareClusterDataplaneV2ArgsDict',
|
105
202
|
'VMwareClusterFleetArgs',
|
203
|
+
'VMwareClusterFleetArgsDict',
|
106
204
|
'VMwareClusterLoadBalancerArgs',
|
205
|
+
'VMwareClusterLoadBalancerArgsDict',
|
107
206
|
'VMwareClusterLoadBalancerF5ConfigArgs',
|
207
|
+
'VMwareClusterLoadBalancerF5ConfigArgsDict',
|
108
208
|
'VMwareClusterLoadBalancerManualLbConfigArgs',
|
209
|
+
'VMwareClusterLoadBalancerManualLbConfigArgsDict',
|
109
210
|
'VMwareClusterLoadBalancerMetalLbConfigArgs',
|
211
|
+
'VMwareClusterLoadBalancerMetalLbConfigArgsDict',
|
110
212
|
'VMwareClusterLoadBalancerMetalLbConfigAddressPoolArgs',
|
213
|
+
'VMwareClusterLoadBalancerMetalLbConfigAddressPoolArgsDict',
|
111
214
|
'VMwareClusterLoadBalancerVipConfigArgs',
|
215
|
+
'VMwareClusterLoadBalancerVipConfigArgsDict',
|
112
216
|
'VMwareClusterNetworkConfigArgs',
|
217
|
+
'VMwareClusterNetworkConfigArgsDict',
|
113
218
|
'VMwareClusterNetworkConfigControlPlaneV2ConfigArgs',
|
219
|
+
'VMwareClusterNetworkConfigControlPlaneV2ConfigArgsDict',
|
114
220
|
'VMwareClusterNetworkConfigControlPlaneV2ConfigControlPlaneIpBlockArgs',
|
221
|
+
'VMwareClusterNetworkConfigControlPlaneV2ConfigControlPlaneIpBlockArgsDict',
|
115
222
|
'VMwareClusterNetworkConfigControlPlaneV2ConfigControlPlaneIpBlockIpArgs',
|
223
|
+
'VMwareClusterNetworkConfigControlPlaneV2ConfigControlPlaneIpBlockIpArgsDict',
|
116
224
|
'VMwareClusterNetworkConfigDhcpIpConfigArgs',
|
225
|
+
'VMwareClusterNetworkConfigDhcpIpConfigArgsDict',
|
117
226
|
'VMwareClusterNetworkConfigHostConfigArgs',
|
227
|
+
'VMwareClusterNetworkConfigHostConfigArgsDict',
|
118
228
|
'VMwareClusterNetworkConfigStaticIpConfigArgs',
|
229
|
+
'VMwareClusterNetworkConfigStaticIpConfigArgsDict',
|
119
230
|
'VMwareClusterNetworkConfigStaticIpConfigIpBlockArgs',
|
231
|
+
'VMwareClusterNetworkConfigStaticIpConfigIpBlockArgsDict',
|
120
232
|
'VMwareClusterNetworkConfigStaticIpConfigIpBlockIpArgs',
|
233
|
+
'VMwareClusterNetworkConfigStaticIpConfigIpBlockIpArgsDict',
|
121
234
|
'VMwareClusterStatusArgs',
|
235
|
+
'VMwareClusterStatusArgsDict',
|
122
236
|
'VMwareClusterStatusConditionArgs',
|
237
|
+
'VMwareClusterStatusConditionArgsDict',
|
123
238
|
'VMwareClusterStorageArgs',
|
239
|
+
'VMwareClusterStorageArgsDict',
|
124
240
|
'VMwareClusterUpgradePolicyArgs',
|
241
|
+
'VMwareClusterUpgradePolicyArgsDict',
|
125
242
|
'VMwareClusterValidationCheckArgs',
|
243
|
+
'VMwareClusterValidationCheckArgsDict',
|
126
244
|
'VMwareClusterValidationCheckStatusArgs',
|
245
|
+
'VMwareClusterValidationCheckStatusArgsDict',
|
127
246
|
'VMwareClusterValidationCheckStatusResultArgs',
|
247
|
+
'VMwareClusterValidationCheckStatusResultArgsDict',
|
128
248
|
'VMwareClusterVcenterArgs',
|
249
|
+
'VMwareClusterVcenterArgsDict',
|
129
250
|
'VMwareNodePoolConfigArgs',
|
251
|
+
'VMwareNodePoolConfigArgsDict',
|
130
252
|
'VMwareNodePoolConfigTaintArgs',
|
253
|
+
'VMwareNodePoolConfigTaintArgsDict',
|
131
254
|
'VMwareNodePoolConfigVsphereConfigArgs',
|
255
|
+
'VMwareNodePoolConfigVsphereConfigArgsDict',
|
132
256
|
'VMwareNodePoolConfigVsphereConfigTagArgs',
|
257
|
+
'VMwareNodePoolConfigVsphereConfigTagArgsDict',
|
133
258
|
'VMwareNodePoolNodePoolAutoscalingArgs',
|
259
|
+
'VMwareNodePoolNodePoolAutoscalingArgsDict',
|
134
260
|
'VMwareNodePoolStatusArgs',
|
261
|
+
'VMwareNodePoolStatusArgsDict',
|
135
262
|
'VMwareNodePoolStatusConditionArgs',
|
263
|
+
'VMwareNodePoolStatusConditionArgsDict',
|
136
264
|
]
|
137
265
|
|
266
|
+
MYPY = False
|
267
|
+
|
268
|
+
if not MYPY:
|
269
|
+
class BareMetalAdminClusterClusterOperationsArgsDict(TypedDict):
|
270
|
+
enable_application_logs: NotRequired[pulumi.Input[bool]]
|
271
|
+
"""
|
272
|
+
Whether collection of application logs/metrics should be enabled (in addition to system logs/metrics).
|
273
|
+
"""
|
274
|
+
elif False:
|
275
|
+
BareMetalAdminClusterClusterOperationsArgsDict: TypeAlias = Mapping[str, Any]
|
276
|
+
|
138
277
|
@pulumi.input_type
|
139
278
|
class BareMetalAdminClusterClusterOperationsArgs:
|
140
279
|
def __init__(__self__, *,
|
@@ -158,6 +297,24 @@ class BareMetalAdminClusterClusterOperationsArgs:
|
|
158
297
|
pulumi.set(self, "enable_application_logs", value)
|
159
298
|
|
160
299
|
|
300
|
+
if not MYPY:
|
301
|
+
class BareMetalAdminClusterControlPlaneArgsDict(TypedDict):
|
302
|
+
control_plane_node_pool_config: pulumi.Input['BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigArgsDict']
|
303
|
+
"""
|
304
|
+
Configures the node pool running the control plane. If specified the corresponding NodePool will be created for the cluster's control plane. The NodePool will have the same name and namespace as the cluster.
|
305
|
+
Structure is documented below.
|
306
|
+
"""
|
307
|
+
api_server_args: NotRequired[pulumi.Input[Sequence[pulumi.Input['BareMetalAdminClusterControlPlaneApiServerArgArgsDict']]]]
|
308
|
+
"""
|
309
|
+
Customizes the default API server args. Only a subset of
|
310
|
+
customized flags are supported. Please refer to the API server
|
311
|
+
documentation below to know the exact format:
|
312
|
+
https://kubernetes.io/docs/reference/command-line-tools-reference/kube-apiserver/
|
313
|
+
Structure is documented below.
|
314
|
+
"""
|
315
|
+
elif False:
|
316
|
+
BareMetalAdminClusterControlPlaneArgsDict: TypeAlias = Mapping[str, Any]
|
317
|
+
|
161
318
|
@pulumi.input_type
|
162
319
|
class BareMetalAdminClusterControlPlaneArgs:
|
163
320
|
def __init__(__self__, *,
|
@@ -206,6 +363,19 @@ class BareMetalAdminClusterControlPlaneArgs:
|
|
206
363
|
pulumi.set(self, "api_server_args", value)
|
207
364
|
|
208
365
|
|
366
|
+
if not MYPY:
|
367
|
+
class BareMetalAdminClusterControlPlaneApiServerArgArgsDict(TypedDict):
|
368
|
+
argument: pulumi.Input[str]
|
369
|
+
"""
|
370
|
+
The argument name as it appears on the API Server command line please make sure to remove the leading dashes.
|
371
|
+
"""
|
372
|
+
value: pulumi.Input[str]
|
373
|
+
"""
|
374
|
+
The value of the arg as it will be passed to the API Server command line.
|
375
|
+
"""
|
376
|
+
elif False:
|
377
|
+
BareMetalAdminClusterControlPlaneApiServerArgArgsDict: TypeAlias = Mapping[str, Any]
|
378
|
+
|
209
379
|
@pulumi.input_type
|
210
380
|
class BareMetalAdminClusterControlPlaneApiServerArgArgs:
|
211
381
|
def __init__(__self__, *,
|
@@ -243,6 +413,16 @@ class BareMetalAdminClusterControlPlaneApiServerArgArgs:
|
|
243
413
|
pulumi.set(self, "value", value)
|
244
414
|
|
245
415
|
|
416
|
+
if not MYPY:
|
417
|
+
class BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigArgsDict(TypedDict):
|
418
|
+
node_pool_config: pulumi.Input['BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigArgsDict']
|
419
|
+
"""
|
420
|
+
The generic configuration for a node pool running the control plane.
|
421
|
+
Structure is documented below.
|
422
|
+
"""
|
423
|
+
elif False:
|
424
|
+
BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigArgsDict: TypeAlias = Mapping[str, Any]
|
425
|
+
|
246
426
|
@pulumi.input_type
|
247
427
|
class BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigArgs:
|
248
428
|
def __init__(__self__, *,
|
@@ -267,6 +447,38 @@ class BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigArgs:
|
|
267
447
|
pulumi.set(self, "node_pool_config", value)
|
268
448
|
|
269
449
|
|
450
|
+
if not MYPY:
|
451
|
+
class BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigArgsDict(TypedDict):
|
452
|
+
labels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
453
|
+
"""
|
454
|
+
The map of Kubernetes labels (key/value pairs) to be applied to
|
455
|
+
each node. These will added in addition to any default label(s)
|
456
|
+
that Kubernetes may apply to the node. In case of conflict in
|
457
|
+
label keys, the applied set may differ depending on the Kubernetes
|
458
|
+
version -- it's best to assume the behavior is undefined and
|
459
|
+
conflicts should be avoided. For more information, including usage
|
460
|
+
and the valid values, see:
|
461
|
+
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
462
|
+
An object containing a list of "key": value pairs.
|
463
|
+
Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
464
|
+
"""
|
465
|
+
node_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input['BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigNodeConfigArgsDict']]]]
|
466
|
+
"""
|
467
|
+
The list of machine addresses in the Bare Metal Node Pool.
|
468
|
+
Structure is documented below.
|
469
|
+
"""
|
470
|
+
operating_system: NotRequired[pulumi.Input[str]]
|
471
|
+
"""
|
472
|
+
Specifies the nodes operating system (default: LINUX).
|
473
|
+
"""
|
474
|
+
taints: NotRequired[pulumi.Input[Sequence[pulumi.Input['BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigTaintArgsDict']]]]
|
475
|
+
"""
|
476
|
+
The initial taints assigned to nodes of this node pool.
|
477
|
+
Structure is documented below.
|
478
|
+
"""
|
479
|
+
elif False:
|
480
|
+
BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigArgsDict: TypeAlias = Mapping[str, Any]
|
481
|
+
|
270
482
|
@pulumi.input_type
|
271
483
|
class BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigArgs:
|
272
484
|
def __init__(__self__, *,
|
@@ -360,6 +572,29 @@ class BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigA
|
|
360
572
|
pulumi.set(self, "taints", value)
|
361
573
|
|
362
574
|
|
575
|
+
if not MYPY:
|
576
|
+
class BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigNodeConfigArgsDict(TypedDict):
|
577
|
+
labels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
578
|
+
"""
|
579
|
+
The map of Kubernetes labels (key/value pairs) to be applied to
|
580
|
+
each node. These will added in addition to any default label(s)
|
581
|
+
that Kubernetes may apply to the node. In case of conflict in
|
582
|
+
label keys, the applied set may differ depending on the Kubernetes
|
583
|
+
version -- it's best to assume the behavior is undefined and
|
584
|
+
conflicts should be avoided. For more information, including usage
|
585
|
+
and the valid values, see:
|
586
|
+
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
587
|
+
An object containing a list of "key": value pairs.
|
588
|
+
Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
589
|
+
"""
|
590
|
+
node_ip: NotRequired[pulumi.Input[str]]
|
591
|
+
"""
|
592
|
+
The default IPv4 address for SSH access and Kubernetes node.
|
593
|
+
Example: 192.168.0.1
|
594
|
+
"""
|
595
|
+
elif False:
|
596
|
+
BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigNodeConfigArgsDict: TypeAlias = Mapping[str, Any]
|
597
|
+
|
363
598
|
@pulumi.input_type
|
364
599
|
class BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigNodeConfigArgs:
|
365
600
|
def __init__(__self__, *,
|
@@ -419,6 +654,24 @@ class BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigN
|
|
419
654
|
pulumi.set(self, "node_ip", value)
|
420
655
|
|
421
656
|
|
657
|
+
if not MYPY:
|
658
|
+
class BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigTaintArgsDict(TypedDict):
|
659
|
+
effect: NotRequired[pulumi.Input[str]]
|
660
|
+
"""
|
661
|
+
Specifies the nodes operating system (default: LINUX).
|
662
|
+
Possible values are: `EFFECT_UNSPECIFIED`, `PREFER_NO_SCHEDULE`, `NO_EXECUTE`.
|
663
|
+
"""
|
664
|
+
key: NotRequired[pulumi.Input[str]]
|
665
|
+
"""
|
666
|
+
Key associated with the effect.
|
667
|
+
"""
|
668
|
+
value: NotRequired[pulumi.Input[str]]
|
669
|
+
"""
|
670
|
+
Value associated with the effect.
|
671
|
+
"""
|
672
|
+
elif False:
|
673
|
+
BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigTaintArgsDict: TypeAlias = Mapping[str, Any]
|
674
|
+
|
422
675
|
@pulumi.input_type
|
423
676
|
class BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigTaintArgs:
|
424
677
|
def __init__(__self__, *,
|
@@ -476,6 +729,18 @@ class BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigT
|
|
476
729
|
pulumi.set(self, "value", value)
|
477
730
|
|
478
731
|
|
732
|
+
if not MYPY:
|
733
|
+
class BareMetalAdminClusterFleetArgsDict(TypedDict):
|
734
|
+
membership: NotRequired[pulumi.Input[str]]
|
735
|
+
"""
|
736
|
+
(Output)
|
737
|
+
The name of the managed Hub Membership resource associated to this cluster.
|
738
|
+
Membership names are formatted as
|
739
|
+
`projects/<project-number>/locations/<location>/memberships/<cluster-id>`.
|
740
|
+
"""
|
741
|
+
elif False:
|
742
|
+
BareMetalAdminClusterFleetArgsDict: TypeAlias = Mapping[str, Any]
|
743
|
+
|
479
744
|
@pulumi.input_type
|
480
745
|
class BareMetalAdminClusterFleetArgs:
|
481
746
|
def __init__(__self__, *,
|
@@ -505,6 +770,26 @@ class BareMetalAdminClusterFleetArgs:
|
|
505
770
|
pulumi.set(self, "membership", value)
|
506
771
|
|
507
772
|
|
773
|
+
if not MYPY:
|
774
|
+
class BareMetalAdminClusterLoadBalancerArgsDict(TypedDict):
|
775
|
+
port_config: pulumi.Input['BareMetalAdminClusterLoadBalancerPortConfigArgsDict']
|
776
|
+
"""
|
777
|
+
Specifies the load balancer ports.
|
778
|
+
Structure is documented below.
|
779
|
+
"""
|
780
|
+
vip_config: pulumi.Input['BareMetalAdminClusterLoadBalancerVipConfigArgsDict']
|
781
|
+
"""
|
782
|
+
Specified the Bare Metal Load Balancer Config
|
783
|
+
Structure is documented below.
|
784
|
+
"""
|
785
|
+
manual_lb_config: NotRequired[pulumi.Input['BareMetalAdminClusterLoadBalancerManualLbConfigArgsDict']]
|
786
|
+
"""
|
787
|
+
A nested object resource
|
788
|
+
Structure is documented below.
|
789
|
+
"""
|
790
|
+
elif False:
|
791
|
+
BareMetalAdminClusterLoadBalancerArgsDict: TypeAlias = Mapping[str, Any]
|
792
|
+
|
508
793
|
@pulumi.input_type
|
509
794
|
class BareMetalAdminClusterLoadBalancerArgs:
|
510
795
|
def __init__(__self__, *,
|
@@ -564,6 +849,15 @@ class BareMetalAdminClusterLoadBalancerArgs:
|
|
564
849
|
pulumi.set(self, "manual_lb_config", value)
|
565
850
|
|
566
851
|
|
852
|
+
if not MYPY:
|
853
|
+
class BareMetalAdminClusterLoadBalancerManualLbConfigArgsDict(TypedDict):
|
854
|
+
enabled: pulumi.Input[bool]
|
855
|
+
"""
|
856
|
+
Whether manual load balancing is enabled.
|
857
|
+
"""
|
858
|
+
elif False:
|
859
|
+
BareMetalAdminClusterLoadBalancerManualLbConfigArgsDict: TypeAlias = Mapping[str, Any]
|
860
|
+
|
567
861
|
@pulumi.input_type
|
568
862
|
class BareMetalAdminClusterLoadBalancerManualLbConfigArgs:
|
569
863
|
def __init__(__self__, *,
|
@@ -586,6 +880,15 @@ class BareMetalAdminClusterLoadBalancerManualLbConfigArgs:
|
|
586
880
|
pulumi.set(self, "enabled", value)
|
587
881
|
|
588
882
|
|
883
|
+
if not MYPY:
|
884
|
+
class BareMetalAdminClusterLoadBalancerPortConfigArgsDict(TypedDict):
|
885
|
+
control_plane_load_balancer_port: pulumi.Input[int]
|
886
|
+
"""
|
887
|
+
The port that control plane hosted load balancers will listen on.
|
888
|
+
"""
|
889
|
+
elif False:
|
890
|
+
BareMetalAdminClusterLoadBalancerPortConfigArgsDict: TypeAlias = Mapping[str, Any]
|
891
|
+
|
589
892
|
@pulumi.input_type
|
590
893
|
class BareMetalAdminClusterLoadBalancerPortConfigArgs:
|
591
894
|
def __init__(__self__, *,
|
@@ -608,6 +911,15 @@ class BareMetalAdminClusterLoadBalancerPortConfigArgs:
|
|
608
911
|
pulumi.set(self, "control_plane_load_balancer_port", value)
|
609
912
|
|
610
913
|
|
914
|
+
if not MYPY:
|
915
|
+
class BareMetalAdminClusterLoadBalancerVipConfigArgsDict(TypedDict):
|
916
|
+
control_plane_vip: pulumi.Input[str]
|
917
|
+
"""
|
918
|
+
The VIP which you previously set aside for the Kubernetes API of this Bare Metal Admin Cluster.
|
919
|
+
"""
|
920
|
+
elif False:
|
921
|
+
BareMetalAdminClusterLoadBalancerVipConfigArgsDict: TypeAlias = Mapping[str, Any]
|
922
|
+
|
611
923
|
@pulumi.input_type
|
612
924
|
class BareMetalAdminClusterLoadBalancerVipConfigArgs:
|
613
925
|
def __init__(__self__, *,
|
@@ -630,6 +942,18 @@ class BareMetalAdminClusterLoadBalancerVipConfigArgs:
|
|
630
942
|
pulumi.set(self, "control_plane_vip", value)
|
631
943
|
|
632
944
|
|
945
|
+
if not MYPY:
|
946
|
+
class BareMetalAdminClusterMaintenanceConfigArgsDict(TypedDict):
|
947
|
+
maintenance_address_cidr_blocks: pulumi.Input[Sequence[pulumi.Input[str]]]
|
948
|
+
"""
|
949
|
+
All IPv4 address from these ranges will be placed into maintenance mode.
|
950
|
+
Nodes in maintenance mode will be cordoned and drained. When both of these
|
951
|
+
are true, the "baremetal.cluster.gke.io/maintenance" annotation will be set
|
952
|
+
on the node resource.
|
953
|
+
"""
|
954
|
+
elif False:
|
955
|
+
BareMetalAdminClusterMaintenanceConfigArgsDict: TypeAlias = Mapping[str, Any]
|
956
|
+
|
633
957
|
@pulumi.input_type
|
634
958
|
class BareMetalAdminClusterMaintenanceConfigArgs:
|
635
959
|
def __init__(__self__, *,
|
@@ -658,6 +982,16 @@ class BareMetalAdminClusterMaintenanceConfigArgs:
|
|
658
982
|
pulumi.set(self, "maintenance_address_cidr_blocks", value)
|
659
983
|
|
660
984
|
|
985
|
+
if not MYPY:
|
986
|
+
class BareMetalAdminClusterNetworkConfigArgsDict(TypedDict):
|
987
|
+
island_mode_cidr: NotRequired[pulumi.Input['BareMetalAdminClusterNetworkConfigIslandModeCidrArgsDict']]
|
988
|
+
"""
|
989
|
+
A nested object resource
|
990
|
+
Structure is documented below.
|
991
|
+
"""
|
992
|
+
elif False:
|
993
|
+
BareMetalAdminClusterNetworkConfigArgsDict: TypeAlias = Mapping[str, Any]
|
994
|
+
|
661
995
|
@pulumi.input_type
|
662
996
|
class BareMetalAdminClusterNetworkConfigArgs:
|
663
997
|
def __init__(__self__, *,
|
@@ -683,6 +1017,19 @@ class BareMetalAdminClusterNetworkConfigArgs:
|
|
683
1017
|
pulumi.set(self, "island_mode_cidr", value)
|
684
1018
|
|
685
1019
|
|
1020
|
+
if not MYPY:
|
1021
|
+
class BareMetalAdminClusterNetworkConfigIslandModeCidrArgsDict(TypedDict):
|
1022
|
+
pod_address_cidr_blocks: pulumi.Input[Sequence[pulumi.Input[str]]]
|
1023
|
+
"""
|
1024
|
+
All pods in the cluster are assigned an RFC1918 IPv4 address from these ranges. This field cannot be changed after creation.
|
1025
|
+
"""
|
1026
|
+
service_address_cidr_blocks: pulumi.Input[Sequence[pulumi.Input[str]]]
|
1027
|
+
"""
|
1028
|
+
All services in the cluster are assigned an RFC1918 IPv4 address from these ranges. This field cannot be changed after creation.
|
1029
|
+
"""
|
1030
|
+
elif False:
|
1031
|
+
BareMetalAdminClusterNetworkConfigIslandModeCidrArgsDict: TypeAlias = Mapping[str, Any]
|
1032
|
+
|
686
1033
|
@pulumi.input_type
|
687
1034
|
class BareMetalAdminClusterNetworkConfigIslandModeCidrArgs:
|
688
1035
|
def __init__(__self__, *,
|
@@ -720,6 +1067,16 @@ class BareMetalAdminClusterNetworkConfigIslandModeCidrArgs:
|
|
720
1067
|
pulumi.set(self, "service_address_cidr_blocks", value)
|
721
1068
|
|
722
1069
|
|
1070
|
+
if not MYPY:
|
1071
|
+
class BareMetalAdminClusterNodeAccessConfigArgsDict(TypedDict):
|
1072
|
+
login_user: NotRequired[pulumi.Input[str]]
|
1073
|
+
"""
|
1074
|
+
LoginUser is the user name used to access node machines.
|
1075
|
+
It defaults to "root" if not set.
|
1076
|
+
"""
|
1077
|
+
elif False:
|
1078
|
+
BareMetalAdminClusterNodeAccessConfigArgsDict: TypeAlias = Mapping[str, Any]
|
1079
|
+
|
723
1080
|
@pulumi.input_type
|
724
1081
|
class BareMetalAdminClusterNodeAccessConfigArgs:
|
725
1082
|
def __init__(__self__, *,
|
@@ -745,6 +1102,16 @@ class BareMetalAdminClusterNodeAccessConfigArgs:
|
|
745
1102
|
pulumi.set(self, "login_user", value)
|
746
1103
|
|
747
1104
|
|
1105
|
+
if not MYPY:
|
1106
|
+
class BareMetalAdminClusterNodeConfigArgsDict(TypedDict):
|
1107
|
+
max_pods_per_node: NotRequired[pulumi.Input[int]]
|
1108
|
+
"""
|
1109
|
+
The maximum number of pods a node can run. The size of the CIDR range
|
1110
|
+
assigned to the node will be derived from this parameter.
|
1111
|
+
"""
|
1112
|
+
elif False:
|
1113
|
+
BareMetalAdminClusterNodeConfigArgsDict: TypeAlias = Mapping[str, Any]
|
1114
|
+
|
748
1115
|
@pulumi.input_type
|
749
1116
|
class BareMetalAdminClusterNodeConfigArgs:
|
750
1117
|
def __init__(__self__, *,
|
@@ -770,6 +1137,23 @@ class BareMetalAdminClusterNodeConfigArgs:
|
|
770
1137
|
pulumi.set(self, "max_pods_per_node", value)
|
771
1138
|
|
772
1139
|
|
1140
|
+
if not MYPY:
|
1141
|
+
class BareMetalAdminClusterProxyArgsDict(TypedDict):
|
1142
|
+
uri: pulumi.Input[str]
|
1143
|
+
"""
|
1144
|
+
Specifies the address of your proxy server.
|
1145
|
+
Examples: http://domain
|
1146
|
+
WARNING: Do not provide credentials in the format
|
1147
|
+
http://(username:password@)domain these will be rejected by the server.
|
1148
|
+
"""
|
1149
|
+
no_proxies: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
1150
|
+
"""
|
1151
|
+
A list of IPs, hostnames, and domains that should skip the proxy.
|
1152
|
+
Examples: ["127.0.0.1", "example.com", ".corp", "localhost"].
|
1153
|
+
"""
|
1154
|
+
elif False:
|
1155
|
+
BareMetalAdminClusterProxyArgsDict: TypeAlias = Mapping[str, Any]
|
1156
|
+
|
773
1157
|
@pulumi.input_type
|
774
1158
|
class BareMetalAdminClusterProxyArgs:
|
775
1159
|
def __init__(__self__, *,
|
@@ -816,6 +1200,16 @@ class BareMetalAdminClusterProxyArgs:
|
|
816
1200
|
pulumi.set(self, "no_proxies", value)
|
817
1201
|
|
818
1202
|
|
1203
|
+
if not MYPY:
|
1204
|
+
class BareMetalAdminClusterSecurityConfigArgsDict(TypedDict):
|
1205
|
+
authorization: NotRequired[pulumi.Input['BareMetalAdminClusterSecurityConfigAuthorizationArgsDict']]
|
1206
|
+
"""
|
1207
|
+
Configures user access to the Bare Metal User cluster.
|
1208
|
+
Structure is documented below.
|
1209
|
+
"""
|
1210
|
+
elif False:
|
1211
|
+
BareMetalAdminClusterSecurityConfigArgsDict: TypeAlias = Mapping[str, Any]
|
1212
|
+
|
819
1213
|
@pulumi.input_type
|
820
1214
|
class BareMetalAdminClusterSecurityConfigArgs:
|
821
1215
|
def __init__(__self__, *,
|
@@ -841,6 +1235,16 @@ class BareMetalAdminClusterSecurityConfigArgs:
|
|
841
1235
|
pulumi.set(self, "authorization", value)
|
842
1236
|
|
843
1237
|
|
1238
|
+
if not MYPY:
|
1239
|
+
class BareMetalAdminClusterSecurityConfigAuthorizationArgsDict(TypedDict):
|
1240
|
+
admin_users: pulumi.Input[Sequence[pulumi.Input['BareMetalAdminClusterSecurityConfigAuthorizationAdminUserArgsDict']]]
|
1241
|
+
"""
|
1242
|
+
Users that will be granted the cluster-admin role on the cluster, providing full access to the cluster.
|
1243
|
+
Structure is documented below.
|
1244
|
+
"""
|
1245
|
+
elif False:
|
1246
|
+
BareMetalAdminClusterSecurityConfigAuthorizationArgsDict: TypeAlias = Mapping[str, Any]
|
1247
|
+
|
844
1248
|
@pulumi.input_type
|
845
1249
|
class BareMetalAdminClusterSecurityConfigAuthorizationArgs:
|
846
1250
|
def __init__(__self__, *,
|
@@ -865,6 +1269,15 @@ class BareMetalAdminClusterSecurityConfigAuthorizationArgs:
|
|
865
1269
|
pulumi.set(self, "admin_users", value)
|
866
1270
|
|
867
1271
|
|
1272
|
+
if not MYPY:
|
1273
|
+
class BareMetalAdminClusterSecurityConfigAuthorizationAdminUserArgsDict(TypedDict):
|
1274
|
+
username: pulumi.Input[str]
|
1275
|
+
"""
|
1276
|
+
The name of the user, e.g. `my-gcp-id@gmail.com`.
|
1277
|
+
"""
|
1278
|
+
elif False:
|
1279
|
+
BareMetalAdminClusterSecurityConfigAuthorizationAdminUserArgsDict: TypeAlias = Mapping[str, Any]
|
1280
|
+
|
868
1281
|
@pulumi.input_type
|
869
1282
|
class BareMetalAdminClusterSecurityConfigAuthorizationAdminUserArgs:
|
870
1283
|
def __init__(__self__, *,
|
@@ -887,6 +1300,26 @@ class BareMetalAdminClusterSecurityConfigAuthorizationAdminUserArgs:
|
|
887
1300
|
pulumi.set(self, "username", value)
|
888
1301
|
|
889
1302
|
|
1303
|
+
if not MYPY:
|
1304
|
+
class BareMetalAdminClusterStatusArgsDict(TypedDict):
|
1305
|
+
conditions: NotRequired[pulumi.Input[Sequence[pulumi.Input['BareMetalAdminClusterStatusConditionArgsDict']]]]
|
1306
|
+
"""
|
1307
|
+
(Output)
|
1308
|
+
ResourceConditions provide a standard mechanism for higher-level status reporting from admin cluster controller.
|
1309
|
+
Structure is documented below.
|
1310
|
+
"""
|
1311
|
+
error_message: NotRequired[pulumi.Input[str]]
|
1312
|
+
"""
|
1313
|
+
(Output)
|
1314
|
+
Human-friendly representation of the error message from the admin cluster
|
1315
|
+
controller. The error message can be temporary as the admin cluster
|
1316
|
+
controller creates a cluster or node pool. If the error message persists
|
1317
|
+
for a longer period of time, it can be used to surface error message to
|
1318
|
+
indicate real problems requiring user intervention.
|
1319
|
+
"""
|
1320
|
+
elif False:
|
1321
|
+
BareMetalAdminClusterStatusArgsDict: TypeAlias = Mapping[str, Any]
|
1322
|
+
|
890
1323
|
@pulumi.input_type
|
891
1324
|
class BareMetalAdminClusterStatusArgs:
|
892
1325
|
def __init__(__self__, *,
|
@@ -940,6 +1373,35 @@ class BareMetalAdminClusterStatusArgs:
|
|
940
1373
|
pulumi.set(self, "error_message", value)
|
941
1374
|
|
942
1375
|
|
1376
|
+
if not MYPY:
|
1377
|
+
class BareMetalAdminClusterStatusConditionArgsDict(TypedDict):
|
1378
|
+
last_transition_time: NotRequired[pulumi.Input[str]]
|
1379
|
+
"""
|
1380
|
+
(Output)
|
1381
|
+
Last time the condition transit from one status to another.
|
1382
|
+
"""
|
1383
|
+
message: NotRequired[pulumi.Input[str]]
|
1384
|
+
"""
|
1385
|
+
Human-readable message indicating details about last transition.
|
1386
|
+
"""
|
1387
|
+
reason: NotRequired[pulumi.Input[str]]
|
1388
|
+
"""
|
1389
|
+
(Output)
|
1390
|
+
A human-readable message of the check failure.
|
1391
|
+
"""
|
1392
|
+
state: NotRequired[pulumi.Input[str]]
|
1393
|
+
"""
|
1394
|
+
(Output)
|
1395
|
+
The lifecycle state of the condition.
|
1396
|
+
"""
|
1397
|
+
type: NotRequired[pulumi.Input[str]]
|
1398
|
+
"""
|
1399
|
+
Type of the condition.
|
1400
|
+
(e.g., ClusterRunning, NodePoolRunning or ServerSidePreflightReady)
|
1401
|
+
"""
|
1402
|
+
elif False:
|
1403
|
+
BareMetalAdminClusterStatusConditionArgsDict: TypeAlias = Mapping[str, Any]
|
1404
|
+
|
943
1405
|
@pulumi.input_type
|
944
1406
|
class BareMetalAdminClusterStatusConditionArgs:
|
945
1407
|
def __init__(__self__, *,
|
@@ -1035,6 +1497,25 @@ class BareMetalAdminClusterStatusConditionArgs:
|
|
1035
1497
|
pulumi.set(self, "type", value)
|
1036
1498
|
|
1037
1499
|
|
1500
|
+
if not MYPY:
|
1501
|
+
class BareMetalAdminClusterStorageArgsDict(TypedDict):
|
1502
|
+
lvp_node_mounts_config: pulumi.Input['BareMetalAdminClusterStorageLvpNodeMountsConfigArgsDict']
|
1503
|
+
"""
|
1504
|
+
Specifies the config for local PersistentVolumes backed
|
1505
|
+
by mounted node disks. These disks need to be formatted and mounted by the
|
1506
|
+
user, which can be done before or after cluster creation.
|
1507
|
+
Structure is documented below.
|
1508
|
+
"""
|
1509
|
+
lvp_share_config: pulumi.Input['BareMetalAdminClusterStorageLvpShareConfigArgsDict']
|
1510
|
+
"""
|
1511
|
+
Specifies the config for local PersistentVolumes backed by
|
1512
|
+
subdirectories in a shared filesystem. These subdirectores are
|
1513
|
+
automatically created during cluster creation.
|
1514
|
+
Structure is documented below.
|
1515
|
+
"""
|
1516
|
+
elif False:
|
1517
|
+
BareMetalAdminClusterStorageArgsDict: TypeAlias = Mapping[str, Any]
|
1518
|
+
|
1038
1519
|
@pulumi.input_type
|
1039
1520
|
class BareMetalAdminClusterStorageArgs:
|
1040
1521
|
def __init__(__self__, *,
|
@@ -1084,6 +1565,19 @@ class BareMetalAdminClusterStorageArgs:
|
|
1084
1565
|
pulumi.set(self, "lvp_share_config", value)
|
1085
1566
|
|
1086
1567
|
|
1568
|
+
if not MYPY:
|
1569
|
+
class BareMetalAdminClusterStorageLvpNodeMountsConfigArgsDict(TypedDict):
|
1570
|
+
path: pulumi.Input[str]
|
1571
|
+
"""
|
1572
|
+
The host machine path.
|
1573
|
+
"""
|
1574
|
+
storage_class: pulumi.Input[str]
|
1575
|
+
"""
|
1576
|
+
The StorageClass name that PVs will be created with.
|
1577
|
+
"""
|
1578
|
+
elif False:
|
1579
|
+
BareMetalAdminClusterStorageLvpNodeMountsConfigArgsDict: TypeAlias = Mapping[str, Any]
|
1580
|
+
|
1087
1581
|
@pulumi.input_type
|
1088
1582
|
class BareMetalAdminClusterStorageLvpNodeMountsConfigArgs:
|
1089
1583
|
def __init__(__self__, *,
|
@@ -1121,6 +1615,20 @@ class BareMetalAdminClusterStorageLvpNodeMountsConfigArgs:
|
|
1121
1615
|
pulumi.set(self, "storage_class", value)
|
1122
1616
|
|
1123
1617
|
|
1618
|
+
if not MYPY:
|
1619
|
+
class BareMetalAdminClusterStorageLvpShareConfigArgsDict(TypedDict):
|
1620
|
+
lvp_config: pulumi.Input['BareMetalAdminClusterStorageLvpShareConfigLvpConfigArgsDict']
|
1621
|
+
"""
|
1622
|
+
Defines the machine path and storage class for the LVP Share.
|
1623
|
+
Structure is documented below.
|
1624
|
+
"""
|
1625
|
+
shared_path_pv_count: NotRequired[pulumi.Input[int]]
|
1626
|
+
"""
|
1627
|
+
The number of subdirectories to create under path.
|
1628
|
+
"""
|
1629
|
+
elif False:
|
1630
|
+
BareMetalAdminClusterStorageLvpShareConfigArgsDict: TypeAlias = Mapping[str, Any]
|
1631
|
+
|
1124
1632
|
@pulumi.input_type
|
1125
1633
|
class BareMetalAdminClusterStorageLvpShareConfigArgs:
|
1126
1634
|
def __init__(__self__, *,
|
@@ -1161,6 +1669,19 @@ class BareMetalAdminClusterStorageLvpShareConfigArgs:
|
|
1161
1669
|
pulumi.set(self, "shared_path_pv_count", value)
|
1162
1670
|
|
1163
1671
|
|
1672
|
+
if not MYPY:
|
1673
|
+
class BareMetalAdminClusterStorageLvpShareConfigLvpConfigArgsDict(TypedDict):
|
1674
|
+
path: pulumi.Input[str]
|
1675
|
+
"""
|
1676
|
+
The host machine path.
|
1677
|
+
"""
|
1678
|
+
storage_class: pulumi.Input[str]
|
1679
|
+
"""
|
1680
|
+
The StorageClass name that PVs will be created with.
|
1681
|
+
"""
|
1682
|
+
elif False:
|
1683
|
+
BareMetalAdminClusterStorageLvpShareConfigLvpConfigArgsDict: TypeAlias = Mapping[str, Any]
|
1684
|
+
|
1164
1685
|
@pulumi.input_type
|
1165
1686
|
class BareMetalAdminClusterStorageLvpShareConfigLvpConfigArgs:
|
1166
1687
|
def __init__(__self__, *,
|
@@ -1198,6 +1719,27 @@ class BareMetalAdminClusterStorageLvpShareConfigLvpConfigArgs:
|
|
1198
1719
|
pulumi.set(self, "storage_class", value)
|
1199
1720
|
|
1200
1721
|
|
1722
|
+
if not MYPY:
|
1723
|
+
class BareMetalAdminClusterValidationCheckArgsDict(TypedDict):
|
1724
|
+
options: NotRequired[pulumi.Input[str]]
|
1725
|
+
"""
|
1726
|
+
(Output)
|
1727
|
+
Options used for the validation check.
|
1728
|
+
"""
|
1729
|
+
scenario: NotRequired[pulumi.Input[str]]
|
1730
|
+
"""
|
1731
|
+
(Output)
|
1732
|
+
The scenario when the preflight checks were run..
|
1733
|
+
"""
|
1734
|
+
statuses: NotRequired[pulumi.Input[Sequence[pulumi.Input['BareMetalAdminClusterValidationCheckStatusArgsDict']]]]
|
1735
|
+
"""
|
1736
|
+
(Output)
|
1737
|
+
Specifies the detailed validation check status
|
1738
|
+
Structure is documented below.
|
1739
|
+
"""
|
1740
|
+
elif False:
|
1741
|
+
BareMetalAdminClusterValidationCheckArgsDict: TypeAlias = Mapping[str, Any]
|
1742
|
+
|
1201
1743
|
@pulumi.input_type
|
1202
1744
|
class BareMetalAdminClusterValidationCheckArgs:
|
1203
1745
|
def __init__(__self__, *,
|
@@ -1261,6 +1803,17 @@ class BareMetalAdminClusterValidationCheckArgs:
|
|
1261
1803
|
pulumi.set(self, "statuses", value)
|
1262
1804
|
|
1263
1805
|
|
1806
|
+
if not MYPY:
|
1807
|
+
class BareMetalAdminClusterValidationCheckStatusArgsDict(TypedDict):
|
1808
|
+
results: NotRequired[pulumi.Input[Sequence[pulumi.Input['BareMetalAdminClusterValidationCheckStatusResultArgsDict']]]]
|
1809
|
+
"""
|
1810
|
+
(Output)
|
1811
|
+
Individual checks which failed as part of the Preflight check execution.
|
1812
|
+
Structure is documented below.
|
1813
|
+
"""
|
1814
|
+
elif False:
|
1815
|
+
BareMetalAdminClusterValidationCheckStatusArgsDict: TypeAlias = Mapping[str, Any]
|
1816
|
+
|
1264
1817
|
@pulumi.input_type
|
1265
1818
|
class BareMetalAdminClusterValidationCheckStatusArgs:
|
1266
1819
|
def __init__(__self__, *,
|
@@ -1288,6 +1841,35 @@ class BareMetalAdminClusterValidationCheckStatusArgs:
|
|
1288
1841
|
pulumi.set(self, "results", value)
|
1289
1842
|
|
1290
1843
|
|
1844
|
+
if not MYPY:
|
1845
|
+
class BareMetalAdminClusterValidationCheckStatusResultArgsDict(TypedDict):
|
1846
|
+
category: NotRequired[pulumi.Input[str]]
|
1847
|
+
"""
|
1848
|
+
(Output)
|
1849
|
+
The category of the validation.
|
1850
|
+
"""
|
1851
|
+
description: NotRequired[pulumi.Input[str]]
|
1852
|
+
"""
|
1853
|
+
A human readable description of this Bare Metal Admin Cluster.
|
1854
|
+
"""
|
1855
|
+
details: NotRequired[pulumi.Input[str]]
|
1856
|
+
"""
|
1857
|
+
(Output)
|
1858
|
+
Detailed failure information, which might be unformatted.
|
1859
|
+
"""
|
1860
|
+
options: NotRequired[pulumi.Input[str]]
|
1861
|
+
"""
|
1862
|
+
(Output)
|
1863
|
+
Options used for the validation check.
|
1864
|
+
"""
|
1865
|
+
reason: NotRequired[pulumi.Input[str]]
|
1866
|
+
"""
|
1867
|
+
(Output)
|
1868
|
+
A human-readable message of the check failure.
|
1869
|
+
"""
|
1870
|
+
elif False:
|
1871
|
+
BareMetalAdminClusterValidationCheckStatusResultArgsDict: TypeAlias = Mapping[str, Any]
|
1872
|
+
|
1291
1873
|
@pulumi.input_type
|
1292
1874
|
class BareMetalAdminClusterValidationCheckStatusResultArgs:
|
1293
1875
|
def __init__(__self__, *,
|
@@ -1383,6 +1965,17 @@ class BareMetalAdminClusterValidationCheckStatusResultArgs:
|
|
1383
1965
|
pulumi.set(self, "reason", value)
|
1384
1966
|
|
1385
1967
|
|
1968
|
+
if not MYPY:
|
1969
|
+
class BareMetalClusterBinaryAuthorizationArgsDict(TypedDict):
|
1970
|
+
evaluation_mode: NotRequired[pulumi.Input[str]]
|
1971
|
+
"""
|
1972
|
+
Mode of operation for binauthz policy evaluation. If unspecified,
|
1973
|
+
defaults to DISABLED.
|
1974
|
+
Possible values are: `DISABLED`, `PROJECT_SINGLETON_POLICY_ENFORCE`.
|
1975
|
+
"""
|
1976
|
+
elif False:
|
1977
|
+
BareMetalClusterBinaryAuthorizationArgsDict: TypeAlias = Mapping[str, Any]
|
1978
|
+
|
1386
1979
|
@pulumi.input_type
|
1387
1980
|
class BareMetalClusterBinaryAuthorizationArgs:
|
1388
1981
|
def __init__(__self__, *,
|
@@ -1410,6 +2003,15 @@ class BareMetalClusterBinaryAuthorizationArgs:
|
|
1410
2003
|
pulumi.set(self, "evaluation_mode", value)
|
1411
2004
|
|
1412
2005
|
|
2006
|
+
if not MYPY:
|
2007
|
+
class BareMetalClusterClusterOperationsArgsDict(TypedDict):
|
2008
|
+
enable_application_logs: NotRequired[pulumi.Input[bool]]
|
2009
|
+
"""
|
2010
|
+
Whether collection of application logs/metrics should be enabled (in addition to system logs/metrics).
|
2011
|
+
"""
|
2012
|
+
elif False:
|
2013
|
+
BareMetalClusterClusterOperationsArgsDict: TypeAlias = Mapping[str, Any]
|
2014
|
+
|
1413
2015
|
@pulumi.input_type
|
1414
2016
|
class BareMetalClusterClusterOperationsArgs:
|
1415
2017
|
def __init__(__self__, *,
|
@@ -1433,6 +2035,24 @@ class BareMetalClusterClusterOperationsArgs:
|
|
1433
2035
|
pulumi.set(self, "enable_application_logs", value)
|
1434
2036
|
|
1435
2037
|
|
2038
|
+
if not MYPY:
|
2039
|
+
class BareMetalClusterControlPlaneArgsDict(TypedDict):
|
2040
|
+
control_plane_node_pool_config: pulumi.Input['BareMetalClusterControlPlaneControlPlaneNodePoolConfigArgsDict']
|
2041
|
+
"""
|
2042
|
+
Configures the node pool running the control plane. If specified the corresponding NodePool will be created for the cluster's control plane. The NodePool will have the same name and namespace as the cluster.
|
2043
|
+
Structure is documented below.
|
2044
|
+
"""
|
2045
|
+
api_server_args: NotRequired[pulumi.Input[Sequence[pulumi.Input['BareMetalClusterControlPlaneApiServerArgArgsDict']]]]
|
2046
|
+
"""
|
2047
|
+
Customizes the default API server args. Only a subset of
|
2048
|
+
customized flags are supported. Please refer to the API server
|
2049
|
+
documentation below to know the exact format:
|
2050
|
+
https://kubernetes.io/docs/reference/command-line-tools-reference/kube-apiserver/
|
2051
|
+
Structure is documented below.
|
2052
|
+
"""
|
2053
|
+
elif False:
|
2054
|
+
BareMetalClusterControlPlaneArgsDict: TypeAlias = Mapping[str, Any]
|
2055
|
+
|
1436
2056
|
@pulumi.input_type
|
1437
2057
|
class BareMetalClusterControlPlaneArgs:
|
1438
2058
|
def __init__(__self__, *,
|
@@ -1481,6 +2101,19 @@ class BareMetalClusterControlPlaneArgs:
|
|
1481
2101
|
pulumi.set(self, "api_server_args", value)
|
1482
2102
|
|
1483
2103
|
|
2104
|
+
if not MYPY:
|
2105
|
+
class BareMetalClusterControlPlaneApiServerArgArgsDict(TypedDict):
|
2106
|
+
argument: pulumi.Input[str]
|
2107
|
+
"""
|
2108
|
+
The argument name as it appears on the API Server command line please make sure to remove the leading dashes.
|
2109
|
+
"""
|
2110
|
+
value: pulumi.Input[str]
|
2111
|
+
"""
|
2112
|
+
The value of the arg as it will be passed to the API Server command line.
|
2113
|
+
"""
|
2114
|
+
elif False:
|
2115
|
+
BareMetalClusterControlPlaneApiServerArgArgsDict: TypeAlias = Mapping[str, Any]
|
2116
|
+
|
1484
2117
|
@pulumi.input_type
|
1485
2118
|
class BareMetalClusterControlPlaneApiServerArgArgs:
|
1486
2119
|
def __init__(__self__, *,
|
@@ -1518,6 +2151,16 @@ class BareMetalClusterControlPlaneApiServerArgArgs:
|
|
1518
2151
|
pulumi.set(self, "value", value)
|
1519
2152
|
|
1520
2153
|
|
2154
|
+
if not MYPY:
|
2155
|
+
class BareMetalClusterControlPlaneControlPlaneNodePoolConfigArgsDict(TypedDict):
|
2156
|
+
node_pool_config: pulumi.Input['BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigArgsDict']
|
2157
|
+
"""
|
2158
|
+
The generic configuration for a node pool running the control plane.
|
2159
|
+
Structure is documented below.
|
2160
|
+
"""
|
2161
|
+
elif False:
|
2162
|
+
BareMetalClusterControlPlaneControlPlaneNodePoolConfigArgsDict: TypeAlias = Mapping[str, Any]
|
2163
|
+
|
1521
2164
|
@pulumi.input_type
|
1522
2165
|
class BareMetalClusterControlPlaneControlPlaneNodePoolConfigArgs:
|
1523
2166
|
def __init__(__self__, *,
|
@@ -1542,6 +2185,38 @@ class BareMetalClusterControlPlaneControlPlaneNodePoolConfigArgs:
|
|
1542
2185
|
pulumi.set(self, "node_pool_config", value)
|
1543
2186
|
|
1544
2187
|
|
2188
|
+
if not MYPY:
|
2189
|
+
class BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigArgsDict(TypedDict):
|
2190
|
+
labels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
2191
|
+
"""
|
2192
|
+
The map of Kubernetes labels (key/value pairs) to be applied to
|
2193
|
+
each node. These will added in addition to any default label(s)
|
2194
|
+
that Kubernetes may apply to the node. In case of conflict in
|
2195
|
+
label keys, the applied set may differ depending on the Kubernetes
|
2196
|
+
version -- it's best to assume the behavior is undefined and
|
2197
|
+
conflicts should be avoided. For more information, including usage
|
2198
|
+
and the valid values, see:
|
2199
|
+
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
2200
|
+
An object containing a list of "key": value pairs.
|
2201
|
+
Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
2202
|
+
"""
|
2203
|
+
node_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input['BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigNodeConfigArgsDict']]]]
|
2204
|
+
"""
|
2205
|
+
The list of machine addresses in the Bare Metal Node Pool.
|
2206
|
+
Structure is documented below.
|
2207
|
+
"""
|
2208
|
+
operating_system: NotRequired[pulumi.Input[str]]
|
2209
|
+
"""
|
2210
|
+
Specifies the nodes operating system (default: LINUX).
|
2211
|
+
"""
|
2212
|
+
taints: NotRequired[pulumi.Input[Sequence[pulumi.Input['BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigTaintArgsDict']]]]
|
2213
|
+
"""
|
2214
|
+
The initial taints assigned to nodes of this node pool.
|
2215
|
+
Structure is documented below.
|
2216
|
+
"""
|
2217
|
+
elif False:
|
2218
|
+
BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigArgsDict: TypeAlias = Mapping[str, Any]
|
2219
|
+
|
1545
2220
|
@pulumi.input_type
|
1546
2221
|
class BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigArgs:
|
1547
2222
|
def __init__(__self__, *,
|
@@ -1635,6 +2310,29 @@ class BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigArgs:
|
|
1635
2310
|
pulumi.set(self, "taints", value)
|
1636
2311
|
|
1637
2312
|
|
2313
|
+
if not MYPY:
|
2314
|
+
class BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigNodeConfigArgsDict(TypedDict):
|
2315
|
+
labels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
2316
|
+
"""
|
2317
|
+
The map of Kubernetes labels (key/value pairs) to be applied to
|
2318
|
+
each node. These will added in addition to any default label(s)
|
2319
|
+
that Kubernetes may apply to the node. In case of conflict in
|
2320
|
+
label keys, the applied set may differ depending on the Kubernetes
|
2321
|
+
version -- it's best to assume the behavior is undefined and
|
2322
|
+
conflicts should be avoided. For more information, including usage
|
2323
|
+
and the valid values, see:
|
2324
|
+
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
2325
|
+
An object containing a list of "key": value pairs.
|
2326
|
+
Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
2327
|
+
"""
|
2328
|
+
node_ip: NotRequired[pulumi.Input[str]]
|
2329
|
+
"""
|
2330
|
+
The default IPv4 address for SSH access and Kubernetes node.
|
2331
|
+
Example: 192.168.0.1
|
2332
|
+
"""
|
2333
|
+
elif False:
|
2334
|
+
BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigNodeConfigArgsDict: TypeAlias = Mapping[str, Any]
|
2335
|
+
|
1638
2336
|
@pulumi.input_type
|
1639
2337
|
class BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigNodeConfigArgs:
|
1640
2338
|
def __init__(__self__, *,
|
@@ -1694,6 +2392,24 @@ class BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigNodeCo
|
|
1694
2392
|
pulumi.set(self, "node_ip", value)
|
1695
2393
|
|
1696
2394
|
|
2395
|
+
if not MYPY:
|
2396
|
+
class BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigTaintArgsDict(TypedDict):
|
2397
|
+
effect: NotRequired[pulumi.Input[str]]
|
2398
|
+
"""
|
2399
|
+
Specifies the nodes operating system (default: LINUX).
|
2400
|
+
Possible values are: `EFFECT_UNSPECIFIED`, `PREFER_NO_SCHEDULE`, `NO_EXECUTE`.
|
2401
|
+
"""
|
2402
|
+
key: NotRequired[pulumi.Input[str]]
|
2403
|
+
"""
|
2404
|
+
Key associated with the effect.
|
2405
|
+
"""
|
2406
|
+
value: NotRequired[pulumi.Input[str]]
|
2407
|
+
"""
|
2408
|
+
Value associated with the effect.
|
2409
|
+
"""
|
2410
|
+
elif False:
|
2411
|
+
BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigTaintArgsDict: TypeAlias = Mapping[str, Any]
|
2412
|
+
|
1697
2413
|
@pulumi.input_type
|
1698
2414
|
class BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigTaintArgs:
|
1699
2415
|
def __init__(__self__, *,
|
@@ -1751,6 +2467,18 @@ class BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigTaintA
|
|
1751
2467
|
pulumi.set(self, "value", value)
|
1752
2468
|
|
1753
2469
|
|
2470
|
+
if not MYPY:
|
2471
|
+
class BareMetalClusterFleetArgsDict(TypedDict):
|
2472
|
+
membership: NotRequired[pulumi.Input[str]]
|
2473
|
+
"""
|
2474
|
+
(Output)
|
2475
|
+
The name of the managed Hub Membership resource associated to this cluster.
|
2476
|
+
Membership names are formatted as
|
2477
|
+
`projects/<project-number>/locations/<location>/memberships/<cluster-id>`.
|
2478
|
+
"""
|
2479
|
+
elif False:
|
2480
|
+
BareMetalClusterFleetArgsDict: TypeAlias = Mapping[str, Any]
|
2481
|
+
|
1754
2482
|
@pulumi.input_type
|
1755
2483
|
class BareMetalClusterFleetArgs:
|
1756
2484
|
def __init__(__self__, *,
|
@@ -1780,6 +2508,36 @@ class BareMetalClusterFleetArgs:
|
|
1780
2508
|
pulumi.set(self, "membership", value)
|
1781
2509
|
|
1782
2510
|
|
2511
|
+
if not MYPY:
|
2512
|
+
class BareMetalClusterLoadBalancerArgsDict(TypedDict):
|
2513
|
+
port_config: pulumi.Input['BareMetalClusterLoadBalancerPortConfigArgsDict']
|
2514
|
+
"""
|
2515
|
+
Specifies the load balancer ports.
|
2516
|
+
Structure is documented below.
|
2517
|
+
"""
|
2518
|
+
vip_config: pulumi.Input['BareMetalClusterLoadBalancerVipConfigArgsDict']
|
2519
|
+
"""
|
2520
|
+
Specified the Bare Metal Load Balancer Config
|
2521
|
+
Structure is documented below.
|
2522
|
+
"""
|
2523
|
+
bgp_lb_config: NotRequired[pulumi.Input['BareMetalClusterLoadBalancerBgpLbConfigArgsDict']]
|
2524
|
+
"""
|
2525
|
+
Configuration for BGP typed load balancers.
|
2526
|
+
Structure is documented below.
|
2527
|
+
"""
|
2528
|
+
manual_lb_config: NotRequired[pulumi.Input['BareMetalClusterLoadBalancerManualLbConfigArgsDict']]
|
2529
|
+
"""
|
2530
|
+
A nested object resource
|
2531
|
+
Structure is documented below.
|
2532
|
+
"""
|
2533
|
+
metal_lb_config: NotRequired[pulumi.Input['BareMetalClusterLoadBalancerMetalLbConfigArgsDict']]
|
2534
|
+
"""
|
2535
|
+
A nested object resource
|
2536
|
+
Structure is documented below.
|
2537
|
+
"""
|
2538
|
+
elif False:
|
2539
|
+
BareMetalClusterLoadBalancerArgsDict: TypeAlias = Mapping[str, Any]
|
2540
|
+
|
1783
2541
|
@pulumi.input_type
|
1784
2542
|
class BareMetalClusterLoadBalancerArgs:
|
1785
2543
|
def __init__(__self__, *,
|
@@ -1875,6 +2633,39 @@ class BareMetalClusterLoadBalancerArgs:
|
|
1875
2633
|
pulumi.set(self, "metal_lb_config", value)
|
1876
2634
|
|
1877
2635
|
|
2636
|
+
if not MYPY:
|
2637
|
+
class BareMetalClusterLoadBalancerBgpLbConfigArgsDict(TypedDict):
|
2638
|
+
address_pools: pulumi.Input[Sequence[pulumi.Input['BareMetalClusterLoadBalancerBgpLbConfigAddressPoolArgsDict']]]
|
2639
|
+
"""
|
2640
|
+
AddressPools is a list of non-overlapping IP pools used by load balancer
|
2641
|
+
typed services. All addresses must be routable to load balancer nodes.
|
2642
|
+
IngressVIP must be included in the pools.
|
2643
|
+
Structure is documented below.
|
2644
|
+
"""
|
2645
|
+
asn: pulumi.Input[int]
|
2646
|
+
"""
|
2647
|
+
BGP autonomous system number (ASN) of the cluster.
|
2648
|
+
This field can be updated after cluster creation.
|
2649
|
+
"""
|
2650
|
+
bgp_peer_configs: pulumi.Input[Sequence[pulumi.Input['BareMetalClusterLoadBalancerBgpLbConfigBgpPeerConfigArgsDict']]]
|
2651
|
+
"""
|
2652
|
+
The list of BGP peers that the cluster will connect to.
|
2653
|
+
At least one peer must be configured for each control plane node.
|
2654
|
+
Control plane nodes will connect to these peers to advertise the control
|
2655
|
+
plane VIP. The Services load balancer also uses these peers by default.
|
2656
|
+
This field can be updated after cluster creation.
|
2657
|
+
Structure is documented below.
|
2658
|
+
"""
|
2659
|
+
load_balancer_node_pool_config: NotRequired[pulumi.Input['BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigArgsDict']]
|
2660
|
+
"""
|
2661
|
+
Specifies the node pool running data plane load balancing. L2 connectivity
|
2662
|
+
is required among nodes in this pool. If missing, the control plane node
|
2663
|
+
pool is used for data plane load balancing.
|
2664
|
+
Structure is documented below.
|
2665
|
+
"""
|
2666
|
+
elif False:
|
2667
|
+
BareMetalClusterLoadBalancerBgpLbConfigArgsDict: TypeAlias = Mapping[str, Any]
|
2668
|
+
|
1878
2669
|
@pulumi.input_type
|
1879
2670
|
class BareMetalClusterLoadBalancerBgpLbConfigArgs:
|
1880
2671
|
def __init__(__self__, *,
|
@@ -1967,6 +2758,28 @@ class BareMetalClusterLoadBalancerBgpLbConfigArgs:
|
|
1967
2758
|
pulumi.set(self, "load_balancer_node_pool_config", value)
|
1968
2759
|
|
1969
2760
|
|
2761
|
+
if not MYPY:
|
2762
|
+
class BareMetalClusterLoadBalancerBgpLbConfigAddressPoolArgsDict(TypedDict):
|
2763
|
+
addresses: pulumi.Input[Sequence[pulumi.Input[str]]]
|
2764
|
+
"""
|
2765
|
+
The addresses that are part of this pool. Each address must be either in the CIDR form (1.2.3.0/24) or range form (1.2.3.1-1.2.3.5).
|
2766
|
+
"""
|
2767
|
+
pool: pulumi.Input[str]
|
2768
|
+
"""
|
2769
|
+
The name of the address pool.
|
2770
|
+
"""
|
2771
|
+
avoid_buggy_ips: NotRequired[pulumi.Input[bool]]
|
2772
|
+
"""
|
2773
|
+
If true, avoid using IPs ending in .0 or .255.
|
2774
|
+
This avoids buggy consumer devices mistakenly dropping IPv4 traffic for those special IP addresses.
|
2775
|
+
"""
|
2776
|
+
manual_assign: NotRequired[pulumi.Input[str]]
|
2777
|
+
"""
|
2778
|
+
If true, prevent IP addresses from being automatically assigned.
|
2779
|
+
"""
|
2780
|
+
elif False:
|
2781
|
+
BareMetalClusterLoadBalancerBgpLbConfigAddressPoolArgsDict: TypeAlias = Mapping[str, Any]
|
2782
|
+
|
1970
2783
|
@pulumi.input_type
|
1971
2784
|
class BareMetalClusterLoadBalancerBgpLbConfigAddressPoolArgs:
|
1972
2785
|
def __init__(__self__, *,
|
@@ -2038,6 +2851,28 @@ class BareMetalClusterLoadBalancerBgpLbConfigAddressPoolArgs:
|
|
2038
2851
|
pulumi.set(self, "manual_assign", value)
|
2039
2852
|
|
2040
2853
|
|
2854
|
+
if not MYPY:
|
2855
|
+
class BareMetalClusterLoadBalancerBgpLbConfigBgpPeerConfigArgsDict(TypedDict):
|
2856
|
+
asn: pulumi.Input[int]
|
2857
|
+
"""
|
2858
|
+
BGP autonomous system number (ASN) for the network that contains the
|
2859
|
+
external peer device.
|
2860
|
+
"""
|
2861
|
+
ip_address: pulumi.Input[str]
|
2862
|
+
"""
|
2863
|
+
The IP address of the external peer device.
|
2864
|
+
"""
|
2865
|
+
control_plane_nodes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
2866
|
+
"""
|
2867
|
+
The IP address of the control plane node that connects to the external
|
2868
|
+
peer.
|
2869
|
+
If you don't specify any control plane nodes, all control plane nodes
|
2870
|
+
can connect to the external peer. If you specify one or more IP addresses,
|
2871
|
+
only the nodes specified participate in peering sessions.
|
2872
|
+
"""
|
2873
|
+
elif False:
|
2874
|
+
BareMetalClusterLoadBalancerBgpLbConfigBgpPeerConfigArgsDict: TypeAlias = Mapping[str, Any]
|
2875
|
+
|
2041
2876
|
@pulumi.input_type
|
2042
2877
|
class BareMetalClusterLoadBalancerBgpLbConfigBgpPeerConfigArgs:
|
2043
2878
|
def __init__(__self__, *,
|
@@ -2101,6 +2936,16 @@ class BareMetalClusterLoadBalancerBgpLbConfigBgpPeerConfigArgs:
|
|
2101
2936
|
pulumi.set(self, "control_plane_nodes", value)
|
2102
2937
|
|
2103
2938
|
|
2939
|
+
if not MYPY:
|
2940
|
+
class BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigArgsDict(TypedDict):
|
2941
|
+
node_pool_config: NotRequired[pulumi.Input['BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigArgsDict']]
|
2942
|
+
"""
|
2943
|
+
The generic configuration for a node pool running a load balancer.
|
2944
|
+
Structure is documented below.
|
2945
|
+
"""
|
2946
|
+
elif False:
|
2947
|
+
BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigArgsDict: TypeAlias = Mapping[str, Any]
|
2948
|
+
|
2104
2949
|
@pulumi.input_type
|
2105
2950
|
class BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigArgs:
|
2106
2951
|
def __init__(__self__, *,
|
@@ -2126,6 +2971,43 @@ class BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigArgs:
|
|
2126
2971
|
pulumi.set(self, "node_pool_config", value)
|
2127
2972
|
|
2128
2973
|
|
2974
|
+
if not MYPY:
|
2975
|
+
class BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigArgsDict(TypedDict):
|
2976
|
+
kubelet_config: NotRequired[pulumi.Input['BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigKubeletConfigArgsDict']]
|
2977
|
+
"""
|
2978
|
+
The modifiable kubelet configurations for the baremetal machines.
|
2979
|
+
Structure is documented below.
|
2980
|
+
"""
|
2981
|
+
labels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
2982
|
+
"""
|
2983
|
+
The map of Kubernetes labels (key/value pairs) to be applied to
|
2984
|
+
each node. These will added in addition to any default label(s)
|
2985
|
+
that Kubernetes may apply to the node. In case of conflict in
|
2986
|
+
label keys, the applied set may differ depending on the Kubernetes
|
2987
|
+
version -- it's best to assume the behavior is undefined and
|
2988
|
+
conflicts should be avoided. For more information, including usage
|
2989
|
+
and the valid values, see:
|
2990
|
+
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
2991
|
+
An object containing a list of "key": value pairs.
|
2992
|
+
Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
2993
|
+
"""
|
2994
|
+
node_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input['BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigNodeConfigArgsDict']]]]
|
2995
|
+
"""
|
2996
|
+
The list of machine addresses in the Bare Metal Node Pool.
|
2997
|
+
Structure is documented below.
|
2998
|
+
"""
|
2999
|
+
operating_system: NotRequired[pulumi.Input[str]]
|
3000
|
+
"""
|
3001
|
+
Specifies the nodes operating system (default: LINUX).
|
3002
|
+
"""
|
3003
|
+
taints: NotRequired[pulumi.Input[Sequence[pulumi.Input['BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigTaintArgsDict']]]]
|
3004
|
+
"""
|
3005
|
+
The initial taints assigned to nodes of this node pool.
|
3006
|
+
Structure is documented below.
|
3007
|
+
"""
|
3008
|
+
elif False:
|
3009
|
+
BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigArgsDict: TypeAlias = Mapping[str, Any]
|
3010
|
+
|
2129
3011
|
@pulumi.input_type
|
2130
3012
|
class BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigArgs:
|
2131
3013
|
def __init__(__self__, *,
|
@@ -2237,6 +3119,36 @@ class BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolC
|
|
2237
3119
|
pulumi.set(self, "taints", value)
|
2238
3120
|
|
2239
3121
|
|
3122
|
+
if not MYPY:
|
3123
|
+
class BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigKubeletConfigArgsDict(TypedDict):
|
3124
|
+
registry_burst: NotRequired[pulumi.Input[int]]
|
3125
|
+
"""
|
3126
|
+
The maximum size of bursty pulls, temporarily allows pulls to burst to this
|
3127
|
+
number, while still not exceeding registry_pull_qps.
|
3128
|
+
The value must not be a negative number.
|
3129
|
+
Updating this field may impact scalability by changing the amount of
|
3130
|
+
traffic produced by image pulls.
|
3131
|
+
Defaults to 10.
|
3132
|
+
"""
|
3133
|
+
registry_pull_qps: NotRequired[pulumi.Input[int]]
|
3134
|
+
"""
|
3135
|
+
The limit of registry pulls per second.
|
3136
|
+
Setting this value to 0 means no limit.
|
3137
|
+
Updating this field may impact scalability by changing the amount of
|
3138
|
+
traffic produced by image pulls.
|
3139
|
+
Defaults to 5.
|
3140
|
+
"""
|
3141
|
+
serialize_image_pulls_disabled: NotRequired[pulumi.Input[bool]]
|
3142
|
+
"""
|
3143
|
+
Prevents the Kubelet from pulling multiple images at a time.
|
3144
|
+
We recommend *not* changing the default value on nodes that run docker
|
3145
|
+
daemon with version < 1.9 or an Another Union File System (Aufs) storage
|
3146
|
+
backend. Issue https://github.com/kubernetes/kubernetes/issues/10959 has
|
3147
|
+
more details.
|
3148
|
+
"""
|
3149
|
+
elif False:
|
3150
|
+
BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigKubeletConfigArgsDict: TypeAlias = Mapping[str, Any]
|
3151
|
+
|
2240
3152
|
@pulumi.input_type
|
2241
3153
|
class BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigKubeletConfigArgs:
|
2242
3154
|
def __init__(__self__, *,
|
@@ -2318,6 +3230,29 @@ class BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolC
|
|
2318
3230
|
pulumi.set(self, "serialize_image_pulls_disabled", value)
|
2319
3231
|
|
2320
3232
|
|
3233
|
+
if not MYPY:
|
3234
|
+
class BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigNodeConfigArgsDict(TypedDict):
|
3235
|
+
labels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
3236
|
+
"""
|
3237
|
+
The map of Kubernetes labels (key/value pairs) to be applied to
|
3238
|
+
each node. These will added in addition to any default label(s)
|
3239
|
+
that Kubernetes may apply to the node. In case of conflict in
|
3240
|
+
label keys, the applied set may differ depending on the Kubernetes
|
3241
|
+
version -- it's best to assume the behavior is undefined and
|
3242
|
+
conflicts should be avoided. For more information, including usage
|
3243
|
+
and the valid values, see:
|
3244
|
+
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
3245
|
+
An object containing a list of "key": value pairs.
|
3246
|
+
Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
3247
|
+
"""
|
3248
|
+
node_ip: NotRequired[pulumi.Input[str]]
|
3249
|
+
"""
|
3250
|
+
The default IPv4 address for SSH access and Kubernetes node.
|
3251
|
+
Example: 192.168.0.1
|
3252
|
+
"""
|
3253
|
+
elif False:
|
3254
|
+
BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigNodeConfigArgsDict: TypeAlias = Mapping[str, Any]
|
3255
|
+
|
2321
3256
|
@pulumi.input_type
|
2322
3257
|
class BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigNodeConfigArgs:
|
2323
3258
|
def __init__(__self__, *,
|
@@ -2377,6 +3312,24 @@ class BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolC
|
|
2377
3312
|
pulumi.set(self, "node_ip", value)
|
2378
3313
|
|
2379
3314
|
|
3315
|
+
if not MYPY:
|
3316
|
+
class BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigTaintArgsDict(TypedDict):
|
3317
|
+
effect: NotRequired[pulumi.Input[str]]
|
3318
|
+
"""
|
3319
|
+
Specifies the nodes operating system (default: LINUX).
|
3320
|
+
Possible values are: `EFFECT_UNSPECIFIED`, `PREFER_NO_SCHEDULE`, `NO_EXECUTE`.
|
3321
|
+
"""
|
3322
|
+
key: NotRequired[pulumi.Input[str]]
|
3323
|
+
"""
|
3324
|
+
Key associated with the effect.
|
3325
|
+
"""
|
3326
|
+
value: NotRequired[pulumi.Input[str]]
|
3327
|
+
"""
|
3328
|
+
Value associated with the effect.
|
3329
|
+
"""
|
3330
|
+
elif False:
|
3331
|
+
BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigTaintArgsDict: TypeAlias = Mapping[str, Any]
|
3332
|
+
|
2380
3333
|
@pulumi.input_type
|
2381
3334
|
class BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigTaintArgs:
|
2382
3335
|
def __init__(__self__, *,
|
@@ -2434,6 +3387,15 @@ class BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolC
|
|
2434
3387
|
pulumi.set(self, "value", value)
|
2435
3388
|
|
2436
3389
|
|
3390
|
+
if not MYPY:
|
3391
|
+
class BareMetalClusterLoadBalancerManualLbConfigArgsDict(TypedDict):
|
3392
|
+
enabled: pulumi.Input[bool]
|
3393
|
+
"""
|
3394
|
+
Whether manual load balancing is enabled.
|
3395
|
+
"""
|
3396
|
+
elif False:
|
3397
|
+
BareMetalClusterLoadBalancerManualLbConfigArgsDict: TypeAlias = Mapping[str, Any]
|
3398
|
+
|
2437
3399
|
@pulumi.input_type
|
2438
3400
|
class BareMetalClusterLoadBalancerManualLbConfigArgs:
|
2439
3401
|
def __init__(__self__, *,
|
@@ -2456,6 +3418,23 @@ class BareMetalClusterLoadBalancerManualLbConfigArgs:
|
|
2456
3418
|
pulumi.set(self, "enabled", value)
|
2457
3419
|
|
2458
3420
|
|
3421
|
+
if not MYPY:
|
3422
|
+
class BareMetalClusterLoadBalancerMetalLbConfigArgsDict(TypedDict):
|
3423
|
+
address_pools: pulumi.Input[Sequence[pulumi.Input['BareMetalClusterLoadBalancerMetalLbConfigAddressPoolArgsDict']]]
|
3424
|
+
"""
|
3425
|
+
AddressPools is a list of non-overlapping IP pools used by load balancer
|
3426
|
+
typed services. All addresses must be routable to load balancer nodes.
|
3427
|
+
IngressVIP must be included in the pools.
|
3428
|
+
Structure is documented below.
|
3429
|
+
"""
|
3430
|
+
load_balancer_node_pool_config: NotRequired[pulumi.Input['BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigArgsDict']]
|
3431
|
+
"""
|
3432
|
+
Specifies the load balancer's node pool configuration.
|
3433
|
+
Structure is documented below.
|
3434
|
+
"""
|
3435
|
+
elif False:
|
3436
|
+
BareMetalClusterLoadBalancerMetalLbConfigArgsDict: TypeAlias = Mapping[str, Any]
|
3437
|
+
|
2459
3438
|
@pulumi.input_type
|
2460
3439
|
class BareMetalClusterLoadBalancerMetalLbConfigArgs:
|
2461
3440
|
def __init__(__self__, *,
|
@@ -2502,6 +3481,28 @@ class BareMetalClusterLoadBalancerMetalLbConfigArgs:
|
|
2502
3481
|
pulumi.set(self, "load_balancer_node_pool_config", value)
|
2503
3482
|
|
2504
3483
|
|
3484
|
+
if not MYPY:
|
3485
|
+
class BareMetalClusterLoadBalancerMetalLbConfigAddressPoolArgsDict(TypedDict):
|
3486
|
+
addresses: pulumi.Input[Sequence[pulumi.Input[str]]]
|
3487
|
+
"""
|
3488
|
+
The addresses that are part of this pool. Each address must be either in the CIDR form (1.2.3.0/24) or range form (1.2.3.1-1.2.3.5).
|
3489
|
+
"""
|
3490
|
+
pool: pulumi.Input[str]
|
3491
|
+
"""
|
3492
|
+
The name of the address pool.
|
3493
|
+
"""
|
3494
|
+
avoid_buggy_ips: NotRequired[pulumi.Input[bool]]
|
3495
|
+
"""
|
3496
|
+
If true, avoid using IPs ending in .0 or .255.
|
3497
|
+
This avoids buggy consumer devices mistakenly dropping IPv4 traffic for those special IP addresses.
|
3498
|
+
"""
|
3499
|
+
manual_assign: NotRequired[pulumi.Input[bool]]
|
3500
|
+
"""
|
3501
|
+
If true, prevent IP addresses from being automatically assigned.
|
3502
|
+
"""
|
3503
|
+
elif False:
|
3504
|
+
BareMetalClusterLoadBalancerMetalLbConfigAddressPoolArgsDict: TypeAlias = Mapping[str, Any]
|
3505
|
+
|
2505
3506
|
@pulumi.input_type
|
2506
3507
|
class BareMetalClusterLoadBalancerMetalLbConfigAddressPoolArgs:
|
2507
3508
|
def __init__(__self__, *,
|
@@ -2573,6 +3574,16 @@ class BareMetalClusterLoadBalancerMetalLbConfigAddressPoolArgs:
|
|
2573
3574
|
pulumi.set(self, "manual_assign", value)
|
2574
3575
|
|
2575
3576
|
|
3577
|
+
if not MYPY:
|
3578
|
+
class BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigArgsDict(TypedDict):
|
3579
|
+
node_pool_config: NotRequired[pulumi.Input['BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoolConfigArgsDict']]
|
3580
|
+
"""
|
3581
|
+
The generic configuration for a node pool running a load balancer.
|
3582
|
+
Structure is documented below.
|
3583
|
+
"""
|
3584
|
+
elif False:
|
3585
|
+
BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigArgsDict: TypeAlias = Mapping[str, Any]
|
3586
|
+
|
2576
3587
|
@pulumi.input_type
|
2577
3588
|
class BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigArgs:
|
2578
3589
|
def __init__(__self__, *,
|
@@ -2598,6 +3609,38 @@ class BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigArgs:
|
|
2598
3609
|
pulumi.set(self, "node_pool_config", value)
|
2599
3610
|
|
2600
3611
|
|
3612
|
+
if not MYPY:
|
3613
|
+
class BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoolConfigArgsDict(TypedDict):
|
3614
|
+
labels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
3615
|
+
"""
|
3616
|
+
The map of Kubernetes labels (key/value pairs) to be applied to
|
3617
|
+
each node. These will added in addition to any default label(s)
|
3618
|
+
that Kubernetes may apply to the node. In case of conflict in
|
3619
|
+
label keys, the applied set may differ depending on the Kubernetes
|
3620
|
+
version -- it's best to assume the behavior is undefined and
|
3621
|
+
conflicts should be avoided. For more information, including usage
|
3622
|
+
and the valid values, see:
|
3623
|
+
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
3624
|
+
An object containing a list of "key": value pairs.
|
3625
|
+
Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
3626
|
+
"""
|
3627
|
+
node_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input['BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoolConfigNodeConfigArgsDict']]]]
|
3628
|
+
"""
|
3629
|
+
The list of machine addresses in the Bare Metal Node Pool.
|
3630
|
+
Structure is documented below.
|
3631
|
+
"""
|
3632
|
+
operating_system: NotRequired[pulumi.Input[str]]
|
3633
|
+
"""
|
3634
|
+
Specifies the nodes operating system (default: LINUX).
|
3635
|
+
"""
|
3636
|
+
taints: NotRequired[pulumi.Input[Sequence[pulumi.Input['BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoolConfigTaintArgsDict']]]]
|
3637
|
+
"""
|
3638
|
+
The initial taints assigned to nodes of this node pool.
|
3639
|
+
Structure is documented below.
|
3640
|
+
"""
|
3641
|
+
elif False:
|
3642
|
+
BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoolConfigArgsDict: TypeAlias = Mapping[str, Any]
|
3643
|
+
|
2601
3644
|
@pulumi.input_type
|
2602
3645
|
class BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoolConfigArgs:
|
2603
3646
|
def __init__(__self__, *,
|
@@ -2691,6 +3734,29 @@ class BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoo
|
|
2691
3734
|
pulumi.set(self, "taints", value)
|
2692
3735
|
|
2693
3736
|
|
3737
|
+
if not MYPY:
|
3738
|
+
class BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoolConfigNodeConfigArgsDict(TypedDict):
|
3739
|
+
labels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
3740
|
+
"""
|
3741
|
+
The map of Kubernetes labels (key/value pairs) to be applied to
|
3742
|
+
each node. These will added in addition to any default label(s)
|
3743
|
+
that Kubernetes may apply to the node. In case of conflict in
|
3744
|
+
label keys, the applied set may differ depending on the Kubernetes
|
3745
|
+
version -- it's best to assume the behavior is undefined and
|
3746
|
+
conflicts should be avoided. For more information, including usage
|
3747
|
+
and the valid values, see:
|
3748
|
+
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
3749
|
+
An object containing a list of "key": value pairs.
|
3750
|
+
Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
3751
|
+
"""
|
3752
|
+
node_ip: NotRequired[pulumi.Input[str]]
|
3753
|
+
"""
|
3754
|
+
The default IPv4 address for SSH access and Kubernetes node.
|
3755
|
+
Example: 192.168.0.1
|
3756
|
+
"""
|
3757
|
+
elif False:
|
3758
|
+
BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoolConfigNodeConfigArgsDict: TypeAlias = Mapping[str, Any]
|
3759
|
+
|
2694
3760
|
@pulumi.input_type
|
2695
3761
|
class BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoolConfigNodeConfigArgs:
|
2696
3762
|
def __init__(__self__, *,
|
@@ -2750,6 +3816,24 @@ class BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoo
|
|
2750
3816
|
pulumi.set(self, "node_ip", value)
|
2751
3817
|
|
2752
3818
|
|
3819
|
+
if not MYPY:
|
3820
|
+
class BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoolConfigTaintArgsDict(TypedDict):
|
3821
|
+
effect: NotRequired[pulumi.Input[str]]
|
3822
|
+
"""
|
3823
|
+
Specifies the nodes operating system (default: LINUX).
|
3824
|
+
Possible values are: `EFFECT_UNSPECIFIED`, `PREFER_NO_SCHEDULE`, `NO_EXECUTE`.
|
3825
|
+
"""
|
3826
|
+
key: NotRequired[pulumi.Input[str]]
|
3827
|
+
"""
|
3828
|
+
Key associated with the effect.
|
3829
|
+
"""
|
3830
|
+
value: NotRequired[pulumi.Input[str]]
|
3831
|
+
"""
|
3832
|
+
Value associated with the effect.
|
3833
|
+
"""
|
3834
|
+
elif False:
|
3835
|
+
BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoolConfigTaintArgsDict: TypeAlias = Mapping[str, Any]
|
3836
|
+
|
2753
3837
|
@pulumi.input_type
|
2754
3838
|
class BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoolConfigTaintArgs:
|
2755
3839
|
def __init__(__self__, *,
|
@@ -2807,6 +3891,15 @@ class BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoo
|
|
2807
3891
|
pulumi.set(self, "value", value)
|
2808
3892
|
|
2809
3893
|
|
3894
|
+
if not MYPY:
|
3895
|
+
class BareMetalClusterLoadBalancerPortConfigArgsDict(TypedDict):
|
3896
|
+
control_plane_load_balancer_port: pulumi.Input[int]
|
3897
|
+
"""
|
3898
|
+
The port that control plane hosted load balancers will listen on.
|
3899
|
+
"""
|
3900
|
+
elif False:
|
3901
|
+
BareMetalClusterLoadBalancerPortConfigArgsDict: TypeAlias = Mapping[str, Any]
|
3902
|
+
|
2810
3903
|
@pulumi.input_type
|
2811
3904
|
class BareMetalClusterLoadBalancerPortConfigArgs:
|
2812
3905
|
def __init__(__self__, *,
|
@@ -2829,6 +3922,19 @@ class BareMetalClusterLoadBalancerPortConfigArgs:
|
|
2829
3922
|
pulumi.set(self, "control_plane_load_balancer_port", value)
|
2830
3923
|
|
2831
3924
|
|
3925
|
+
if not MYPY:
|
3926
|
+
class BareMetalClusterLoadBalancerVipConfigArgsDict(TypedDict):
|
3927
|
+
control_plane_vip: pulumi.Input[str]
|
3928
|
+
"""
|
3929
|
+
The VIP which you previously set aside for the Kubernetes API of this Bare Metal User Cluster.
|
3930
|
+
"""
|
3931
|
+
ingress_vip: pulumi.Input[str]
|
3932
|
+
"""
|
3933
|
+
The VIP which you previously set aside for ingress traffic into this Bare Metal User Cluster.
|
3934
|
+
"""
|
3935
|
+
elif False:
|
3936
|
+
BareMetalClusterLoadBalancerVipConfigArgsDict: TypeAlias = Mapping[str, Any]
|
3937
|
+
|
2832
3938
|
@pulumi.input_type
|
2833
3939
|
class BareMetalClusterLoadBalancerVipConfigArgs:
|
2834
3940
|
def __init__(__self__, *,
|
@@ -2866,6 +3972,18 @@ class BareMetalClusterLoadBalancerVipConfigArgs:
|
|
2866
3972
|
pulumi.set(self, "ingress_vip", value)
|
2867
3973
|
|
2868
3974
|
|
3975
|
+
if not MYPY:
|
3976
|
+
class BareMetalClusterMaintenanceConfigArgsDict(TypedDict):
|
3977
|
+
maintenance_address_cidr_blocks: pulumi.Input[Sequence[pulumi.Input[str]]]
|
3978
|
+
"""
|
3979
|
+
All IPv4 address from these ranges will be placed into maintenance mode.
|
3980
|
+
Nodes in maintenance mode will be cordoned and drained. When both of these
|
3981
|
+
are true, the "baremetal.cluster.gke.io/maintenance" annotation will be set
|
3982
|
+
on the node resource.
|
3983
|
+
"""
|
3984
|
+
elif False:
|
3985
|
+
BareMetalClusterMaintenanceConfigArgsDict: TypeAlias = Mapping[str, Any]
|
3986
|
+
|
2869
3987
|
@pulumi.input_type
|
2870
3988
|
class BareMetalClusterMaintenanceConfigArgs:
|
2871
3989
|
def __init__(__self__, *,
|
@@ -2887,12 +4005,39 @@ class BareMetalClusterMaintenanceConfigArgs:
|
|
2887
4005
|
are true, the "baremetal.cluster.gke.io/maintenance" annotation will be set
|
2888
4006
|
on the node resource.
|
2889
4007
|
"""
|
2890
|
-
return pulumi.get(self, "maintenance_address_cidr_blocks")
|
2891
|
-
|
2892
|
-
@maintenance_address_cidr_blocks.setter
|
2893
|
-
def maintenance_address_cidr_blocks(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
2894
|
-
pulumi.set(self, "maintenance_address_cidr_blocks", value)
|
2895
|
-
|
4008
|
+
return pulumi.get(self, "maintenance_address_cidr_blocks")
|
4009
|
+
|
4010
|
+
@maintenance_address_cidr_blocks.setter
|
4011
|
+
def maintenance_address_cidr_blocks(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
4012
|
+
pulumi.set(self, "maintenance_address_cidr_blocks", value)
|
4013
|
+
|
4014
|
+
|
4015
|
+
if not MYPY:
|
4016
|
+
class BareMetalClusterNetworkConfigArgsDict(TypedDict):
|
4017
|
+
advanced_networking: NotRequired[pulumi.Input[bool]]
|
4018
|
+
"""
|
4019
|
+
Enables the use of advanced Anthos networking features, such as Bundled
|
4020
|
+
Load Balancing with BGP or the egress NAT gateway.
|
4021
|
+
Setting configuration for advanced networking features will automatically
|
4022
|
+
set this flag.
|
4023
|
+
"""
|
4024
|
+
island_mode_cidr: NotRequired[pulumi.Input['BareMetalClusterNetworkConfigIslandModeCidrArgsDict']]
|
4025
|
+
"""
|
4026
|
+
A nested object resource
|
4027
|
+
Structure is documented below.
|
4028
|
+
"""
|
4029
|
+
multiple_network_interfaces_config: NotRequired[pulumi.Input['BareMetalClusterNetworkConfigMultipleNetworkInterfacesConfigArgsDict']]
|
4030
|
+
"""
|
4031
|
+
Configuration for multiple network interfaces.
|
4032
|
+
Structure is documented below.
|
4033
|
+
"""
|
4034
|
+
sr_iov_config: NotRequired[pulumi.Input['BareMetalClusterNetworkConfigSrIovConfigArgsDict']]
|
4035
|
+
"""
|
4036
|
+
Configuration for SR-IOV.
|
4037
|
+
Structure is documented below.
|
4038
|
+
"""
|
4039
|
+
elif False:
|
4040
|
+
BareMetalClusterNetworkConfigArgsDict: TypeAlias = Mapping[str, Any]
|
2896
4041
|
|
2897
4042
|
@pulumi.input_type
|
2898
4043
|
class BareMetalClusterNetworkConfigArgs:
|
@@ -2977,6 +4122,19 @@ class BareMetalClusterNetworkConfigArgs:
|
|
2977
4122
|
pulumi.set(self, "sr_iov_config", value)
|
2978
4123
|
|
2979
4124
|
|
4125
|
+
if not MYPY:
|
4126
|
+
class BareMetalClusterNetworkConfigIslandModeCidrArgsDict(TypedDict):
|
4127
|
+
pod_address_cidr_blocks: pulumi.Input[Sequence[pulumi.Input[str]]]
|
4128
|
+
"""
|
4129
|
+
All pods in the cluster are assigned an RFC1918 IPv4 address from these ranges. This field cannot be changed after creation.
|
4130
|
+
"""
|
4131
|
+
service_address_cidr_blocks: pulumi.Input[Sequence[pulumi.Input[str]]]
|
4132
|
+
"""
|
4133
|
+
All services in the cluster are assigned an RFC1918 IPv4 address from these ranges. This field cannot be changed after creation.
|
4134
|
+
"""
|
4135
|
+
elif False:
|
4136
|
+
BareMetalClusterNetworkConfigIslandModeCidrArgsDict: TypeAlias = Mapping[str, Any]
|
4137
|
+
|
2980
4138
|
@pulumi.input_type
|
2981
4139
|
class BareMetalClusterNetworkConfigIslandModeCidrArgs:
|
2982
4140
|
def __init__(__self__, *,
|
@@ -3014,6 +4172,17 @@ class BareMetalClusterNetworkConfigIslandModeCidrArgs:
|
|
3014
4172
|
pulumi.set(self, "service_address_cidr_blocks", value)
|
3015
4173
|
|
3016
4174
|
|
4175
|
+
if not MYPY:
|
4176
|
+
class BareMetalClusterNetworkConfigMultipleNetworkInterfacesConfigArgsDict(TypedDict):
|
4177
|
+
enabled: NotRequired[pulumi.Input[bool]]
|
4178
|
+
"""
|
4179
|
+
Whether to enable multiple network interfaces for your pods.
|
4180
|
+
When set network_config.advanced_networking is automatically
|
4181
|
+
set to true.
|
4182
|
+
"""
|
4183
|
+
elif False:
|
4184
|
+
BareMetalClusterNetworkConfigMultipleNetworkInterfacesConfigArgsDict: TypeAlias = Mapping[str, Any]
|
4185
|
+
|
3017
4186
|
@pulumi.input_type
|
3018
4187
|
class BareMetalClusterNetworkConfigMultipleNetworkInterfacesConfigArgs:
|
3019
4188
|
def __init__(__self__, *,
|
@@ -3041,6 +4210,15 @@ class BareMetalClusterNetworkConfigMultipleNetworkInterfacesConfigArgs:
|
|
3041
4210
|
pulumi.set(self, "enabled", value)
|
3042
4211
|
|
3043
4212
|
|
4213
|
+
if not MYPY:
|
4214
|
+
class BareMetalClusterNetworkConfigSrIovConfigArgsDict(TypedDict):
|
4215
|
+
enabled: NotRequired[pulumi.Input[bool]]
|
4216
|
+
"""
|
4217
|
+
Whether to install the SR-IOV operator.
|
4218
|
+
"""
|
4219
|
+
elif False:
|
4220
|
+
BareMetalClusterNetworkConfigSrIovConfigArgsDict: TypeAlias = Mapping[str, Any]
|
4221
|
+
|
3044
4222
|
@pulumi.input_type
|
3045
4223
|
class BareMetalClusterNetworkConfigSrIovConfigArgs:
|
3046
4224
|
def __init__(__self__, *,
|
@@ -3064,6 +4242,16 @@ class BareMetalClusterNetworkConfigSrIovConfigArgs:
|
|
3064
4242
|
pulumi.set(self, "enabled", value)
|
3065
4243
|
|
3066
4244
|
|
4245
|
+
if not MYPY:
|
4246
|
+
class BareMetalClusterNodeAccessConfigArgsDict(TypedDict):
|
4247
|
+
login_user: NotRequired[pulumi.Input[str]]
|
4248
|
+
"""
|
4249
|
+
LoginUser is the user name used to access node machines.
|
4250
|
+
It defaults to "root" if not set.
|
4251
|
+
"""
|
4252
|
+
elif False:
|
4253
|
+
BareMetalClusterNodeAccessConfigArgsDict: TypeAlias = Mapping[str, Any]
|
4254
|
+
|
3067
4255
|
@pulumi.input_type
|
3068
4256
|
class BareMetalClusterNodeAccessConfigArgs:
|
3069
4257
|
def __init__(__self__, *,
|
@@ -3089,6 +4277,21 @@ class BareMetalClusterNodeAccessConfigArgs:
|
|
3089
4277
|
pulumi.set(self, "login_user", value)
|
3090
4278
|
|
3091
4279
|
|
4280
|
+
if not MYPY:
|
4281
|
+
class BareMetalClusterNodeConfigArgsDict(TypedDict):
|
4282
|
+
container_runtime: NotRequired[pulumi.Input[str]]
|
4283
|
+
"""
|
4284
|
+
The available runtimes that can be used to run containers in a Bare Metal User Cluster.
|
4285
|
+
Possible values are: `CONTAINER_RUNTIME_UNSPECIFIED`, `DOCKER`, `CONTAINERD`.
|
4286
|
+
"""
|
4287
|
+
max_pods_per_node: NotRequired[pulumi.Input[int]]
|
4288
|
+
"""
|
4289
|
+
The maximum number of pods a node can run. The size of the CIDR range
|
4290
|
+
assigned to the node will be derived from this parameter.
|
4291
|
+
"""
|
4292
|
+
elif False:
|
4293
|
+
BareMetalClusterNodeConfigArgsDict: TypeAlias = Mapping[str, Any]
|
4294
|
+
|
3092
4295
|
@pulumi.input_type
|
3093
4296
|
class BareMetalClusterNodeConfigArgs:
|
3094
4297
|
def __init__(__self__, *,
|
@@ -3132,6 +4335,16 @@ class BareMetalClusterNodeConfigArgs:
|
|
3132
4335
|
pulumi.set(self, "max_pods_per_node", value)
|
3133
4336
|
|
3134
4337
|
|
4338
|
+
if not MYPY:
|
4339
|
+
class BareMetalClusterOsEnvironmentConfigArgsDict(TypedDict):
|
4340
|
+
package_repo_excluded: pulumi.Input[bool]
|
4341
|
+
"""
|
4342
|
+
Whether the package repo should not be included when initializing
|
4343
|
+
bare metal machines.
|
4344
|
+
"""
|
4345
|
+
elif False:
|
4346
|
+
BareMetalClusterOsEnvironmentConfigArgsDict: TypeAlias = Mapping[str, Any]
|
4347
|
+
|
3135
4348
|
@pulumi.input_type
|
3136
4349
|
class BareMetalClusterOsEnvironmentConfigArgs:
|
3137
4350
|
def __init__(__self__, *,
|
@@ -3156,6 +4369,23 @@ class BareMetalClusterOsEnvironmentConfigArgs:
|
|
3156
4369
|
pulumi.set(self, "package_repo_excluded", value)
|
3157
4370
|
|
3158
4371
|
|
4372
|
+
if not MYPY:
|
4373
|
+
class BareMetalClusterProxyArgsDict(TypedDict):
|
4374
|
+
uri: pulumi.Input[str]
|
4375
|
+
"""
|
4376
|
+
Specifies the address of your proxy server.
|
4377
|
+
Examples: http://domain
|
4378
|
+
WARNING: Do not provide credentials in the format
|
4379
|
+
http://(username:password@)domain these will be rejected by the server.
|
4380
|
+
"""
|
4381
|
+
no_proxies: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
4382
|
+
"""
|
4383
|
+
A list of IPs, hostnames, and domains that should skip the proxy.
|
4384
|
+
Examples: ["127.0.0.1", "example.com", ".corp", "localhost"].
|
4385
|
+
"""
|
4386
|
+
elif False:
|
4387
|
+
BareMetalClusterProxyArgsDict: TypeAlias = Mapping[str, Any]
|
4388
|
+
|
3159
4389
|
@pulumi.input_type
|
3160
4390
|
class BareMetalClusterProxyArgs:
|
3161
4391
|
def __init__(__self__, *,
|
@@ -3202,6 +4432,16 @@ class BareMetalClusterProxyArgs:
|
|
3202
4432
|
pulumi.set(self, "no_proxies", value)
|
3203
4433
|
|
3204
4434
|
|
4435
|
+
if not MYPY:
|
4436
|
+
class BareMetalClusterSecurityConfigArgsDict(TypedDict):
|
4437
|
+
authorization: NotRequired[pulumi.Input['BareMetalClusterSecurityConfigAuthorizationArgsDict']]
|
4438
|
+
"""
|
4439
|
+
Configures user access to the Bare Metal User cluster.
|
4440
|
+
Structure is documented below.
|
4441
|
+
"""
|
4442
|
+
elif False:
|
4443
|
+
BareMetalClusterSecurityConfigArgsDict: TypeAlias = Mapping[str, Any]
|
4444
|
+
|
3205
4445
|
@pulumi.input_type
|
3206
4446
|
class BareMetalClusterSecurityConfigArgs:
|
3207
4447
|
def __init__(__self__, *,
|
@@ -3227,6 +4467,16 @@ class BareMetalClusterSecurityConfigArgs:
|
|
3227
4467
|
pulumi.set(self, "authorization", value)
|
3228
4468
|
|
3229
4469
|
|
4470
|
+
if not MYPY:
|
4471
|
+
class BareMetalClusterSecurityConfigAuthorizationArgsDict(TypedDict):
|
4472
|
+
admin_users: pulumi.Input[Sequence[pulumi.Input['BareMetalClusterSecurityConfigAuthorizationAdminUserArgsDict']]]
|
4473
|
+
"""
|
4474
|
+
Users that will be granted the cluster-admin role on the cluster, providing full access to the cluster.
|
4475
|
+
Structure is documented below.
|
4476
|
+
"""
|
4477
|
+
elif False:
|
4478
|
+
BareMetalClusterSecurityConfigAuthorizationArgsDict: TypeAlias = Mapping[str, Any]
|
4479
|
+
|
3230
4480
|
@pulumi.input_type
|
3231
4481
|
class BareMetalClusterSecurityConfigAuthorizationArgs:
|
3232
4482
|
def __init__(__self__, *,
|
@@ -3251,6 +4501,15 @@ class BareMetalClusterSecurityConfigAuthorizationArgs:
|
|
3251
4501
|
pulumi.set(self, "admin_users", value)
|
3252
4502
|
|
3253
4503
|
|
4504
|
+
if not MYPY:
|
4505
|
+
class BareMetalClusterSecurityConfigAuthorizationAdminUserArgsDict(TypedDict):
|
4506
|
+
username: pulumi.Input[str]
|
4507
|
+
"""
|
4508
|
+
The name of the user, e.g. `my-gcp-id@gmail.com`.
|
4509
|
+
"""
|
4510
|
+
elif False:
|
4511
|
+
BareMetalClusterSecurityConfigAuthorizationAdminUserArgsDict: TypeAlias = Mapping[str, Any]
|
4512
|
+
|
3254
4513
|
@pulumi.input_type
|
3255
4514
|
class BareMetalClusterSecurityConfigAuthorizationAdminUserArgs:
|
3256
4515
|
def __init__(__self__, *,
|
@@ -3273,6 +4532,26 @@ class BareMetalClusterSecurityConfigAuthorizationAdminUserArgs:
|
|
3273
4532
|
pulumi.set(self, "username", value)
|
3274
4533
|
|
3275
4534
|
|
4535
|
+
if not MYPY:
|
4536
|
+
class BareMetalClusterStatusArgsDict(TypedDict):
|
4537
|
+
conditions: NotRequired[pulumi.Input[Sequence[pulumi.Input['BareMetalClusterStatusConditionArgsDict']]]]
|
4538
|
+
"""
|
4539
|
+
(Output)
|
4540
|
+
ResourceConditions provide a standard mechanism for higher-level status reporting from user cluster controller.
|
4541
|
+
Structure is documented below.
|
4542
|
+
"""
|
4543
|
+
error_message: NotRequired[pulumi.Input[str]]
|
4544
|
+
"""
|
4545
|
+
(Output)
|
4546
|
+
Human-friendly representation of the error message from the user cluster
|
4547
|
+
controller. The error message can be temporary as the user cluster
|
4548
|
+
controller creates a cluster or node pool. If the error message persists
|
4549
|
+
for a longer period of time, it can be used to surface error message to
|
4550
|
+
indicate real problems requiring user intervention.
|
4551
|
+
"""
|
4552
|
+
elif False:
|
4553
|
+
BareMetalClusterStatusArgsDict: TypeAlias = Mapping[str, Any]
|
4554
|
+
|
3276
4555
|
@pulumi.input_type
|
3277
4556
|
class BareMetalClusterStatusArgs:
|
3278
4557
|
def __init__(__self__, *,
|
@@ -3326,6 +4605,35 @@ class BareMetalClusterStatusArgs:
|
|
3326
4605
|
pulumi.set(self, "error_message", value)
|
3327
4606
|
|
3328
4607
|
|
4608
|
+
if not MYPY:
|
4609
|
+
class BareMetalClusterStatusConditionArgsDict(TypedDict):
|
4610
|
+
last_transition_time: NotRequired[pulumi.Input[str]]
|
4611
|
+
"""
|
4612
|
+
(Output)
|
4613
|
+
Last time the condition transit from one status to another.
|
4614
|
+
"""
|
4615
|
+
message: NotRequired[pulumi.Input[str]]
|
4616
|
+
"""
|
4617
|
+
Human-readable message indicating details about last transition.
|
4618
|
+
"""
|
4619
|
+
reason: NotRequired[pulumi.Input[str]]
|
4620
|
+
"""
|
4621
|
+
(Output)
|
4622
|
+
A human-readable message of the check failure.
|
4623
|
+
"""
|
4624
|
+
state: NotRequired[pulumi.Input[str]]
|
4625
|
+
"""
|
4626
|
+
(Output)
|
4627
|
+
The lifecycle state of the condition.
|
4628
|
+
"""
|
4629
|
+
type: NotRequired[pulumi.Input[str]]
|
4630
|
+
"""
|
4631
|
+
Type of the condition.
|
4632
|
+
(e.g., ClusterRunning, NodePoolRunning or ServerSidePreflightReady)
|
4633
|
+
"""
|
4634
|
+
elif False:
|
4635
|
+
BareMetalClusterStatusConditionArgsDict: TypeAlias = Mapping[str, Any]
|
4636
|
+
|
3329
4637
|
@pulumi.input_type
|
3330
4638
|
class BareMetalClusterStatusConditionArgs:
|
3331
4639
|
def __init__(__self__, *,
|
@@ -3421,6 +4729,25 @@ class BareMetalClusterStatusConditionArgs:
|
|
3421
4729
|
pulumi.set(self, "type", value)
|
3422
4730
|
|
3423
4731
|
|
4732
|
+
if not MYPY:
|
4733
|
+
class BareMetalClusterStorageArgsDict(TypedDict):
|
4734
|
+
lvp_node_mounts_config: pulumi.Input['BareMetalClusterStorageLvpNodeMountsConfigArgsDict']
|
4735
|
+
"""
|
4736
|
+
Specifies the config for local PersistentVolumes backed
|
4737
|
+
by mounted node disks. These disks need to be formatted and mounted by the
|
4738
|
+
user, which can be done before or after cluster creation.
|
4739
|
+
Structure is documented below.
|
4740
|
+
"""
|
4741
|
+
lvp_share_config: pulumi.Input['BareMetalClusterStorageLvpShareConfigArgsDict']
|
4742
|
+
"""
|
4743
|
+
Specifies the config for local PersistentVolumes backed by
|
4744
|
+
subdirectories in a shared filesystem. These subdirectores are
|
4745
|
+
automatically created during cluster creation.
|
4746
|
+
Structure is documented below.
|
4747
|
+
"""
|
4748
|
+
elif False:
|
4749
|
+
BareMetalClusterStorageArgsDict: TypeAlias = Mapping[str, Any]
|
4750
|
+
|
3424
4751
|
@pulumi.input_type
|
3425
4752
|
class BareMetalClusterStorageArgs:
|
3426
4753
|
def __init__(__self__, *,
|
@@ -3470,6 +4797,21 @@ class BareMetalClusterStorageArgs:
|
|
3470
4797
|
pulumi.set(self, "lvp_share_config", value)
|
3471
4798
|
|
3472
4799
|
|
4800
|
+
if not MYPY:
|
4801
|
+
class BareMetalClusterStorageLvpNodeMountsConfigArgsDict(TypedDict):
|
4802
|
+
path: pulumi.Input[str]
|
4803
|
+
"""
|
4804
|
+
The host machine path.
|
4805
|
+
"""
|
4806
|
+
storage_class: pulumi.Input[str]
|
4807
|
+
"""
|
4808
|
+
The StorageClass name that PVs will be created with.
|
4809
|
+
|
4810
|
+
- - -
|
4811
|
+
"""
|
4812
|
+
elif False:
|
4813
|
+
BareMetalClusterStorageLvpNodeMountsConfigArgsDict: TypeAlias = Mapping[str, Any]
|
4814
|
+
|
3473
4815
|
@pulumi.input_type
|
3474
4816
|
class BareMetalClusterStorageLvpNodeMountsConfigArgs:
|
3475
4817
|
def __init__(__self__, *,
|
@@ -3511,6 +4853,20 @@ class BareMetalClusterStorageLvpNodeMountsConfigArgs:
|
|
3511
4853
|
pulumi.set(self, "storage_class", value)
|
3512
4854
|
|
3513
4855
|
|
4856
|
+
if not MYPY:
|
4857
|
+
class BareMetalClusterStorageLvpShareConfigArgsDict(TypedDict):
|
4858
|
+
lvp_config: pulumi.Input['BareMetalClusterStorageLvpShareConfigLvpConfigArgsDict']
|
4859
|
+
"""
|
4860
|
+
Defines the machine path and storage class for the LVP Share.
|
4861
|
+
Structure is documented below.
|
4862
|
+
"""
|
4863
|
+
shared_path_pv_count: NotRequired[pulumi.Input[int]]
|
4864
|
+
"""
|
4865
|
+
The number of subdirectories to create under path.
|
4866
|
+
"""
|
4867
|
+
elif False:
|
4868
|
+
BareMetalClusterStorageLvpShareConfigArgsDict: TypeAlias = Mapping[str, Any]
|
4869
|
+
|
3514
4870
|
@pulumi.input_type
|
3515
4871
|
class BareMetalClusterStorageLvpShareConfigArgs:
|
3516
4872
|
def __init__(__self__, *,
|
@@ -3551,6 +4907,19 @@ class BareMetalClusterStorageLvpShareConfigArgs:
|
|
3551
4907
|
pulumi.set(self, "shared_path_pv_count", value)
|
3552
4908
|
|
3553
4909
|
|
4910
|
+
if not MYPY:
|
4911
|
+
class BareMetalClusterStorageLvpShareConfigLvpConfigArgsDict(TypedDict):
|
4912
|
+
path: pulumi.Input[str]
|
4913
|
+
"""
|
4914
|
+
The host machine path.
|
4915
|
+
"""
|
4916
|
+
storage_class: pulumi.Input[str]
|
4917
|
+
"""
|
4918
|
+
The StorageClass name that PVs will be created with.
|
4919
|
+
"""
|
4920
|
+
elif False:
|
4921
|
+
BareMetalClusterStorageLvpShareConfigLvpConfigArgsDict: TypeAlias = Mapping[str, Any]
|
4922
|
+
|
3554
4923
|
@pulumi.input_type
|
3555
4924
|
class BareMetalClusterStorageLvpShareConfigLvpConfigArgs:
|
3556
4925
|
def __init__(__self__, *,
|
@@ -3588,6 +4957,16 @@ class BareMetalClusterStorageLvpShareConfigLvpConfigArgs:
|
|
3588
4957
|
pulumi.set(self, "storage_class", value)
|
3589
4958
|
|
3590
4959
|
|
4960
|
+
if not MYPY:
|
4961
|
+
class BareMetalClusterUpgradePolicyArgsDict(TypedDict):
|
4962
|
+
policy: NotRequired[pulumi.Input[str]]
|
4963
|
+
"""
|
4964
|
+
Specifies which upgrade policy to use.
|
4965
|
+
Possible values are: `SERIAL`, `CONCURRENT`.
|
4966
|
+
"""
|
4967
|
+
elif False:
|
4968
|
+
BareMetalClusterUpgradePolicyArgsDict: TypeAlias = Mapping[str, Any]
|
4969
|
+
|
3591
4970
|
@pulumi.input_type
|
3592
4971
|
class BareMetalClusterUpgradePolicyArgs:
|
3593
4972
|
def __init__(__self__, *,
|
@@ -3613,6 +4992,27 @@ class BareMetalClusterUpgradePolicyArgs:
|
|
3613
4992
|
pulumi.set(self, "policy", value)
|
3614
4993
|
|
3615
4994
|
|
4995
|
+
if not MYPY:
|
4996
|
+
class BareMetalClusterValidationCheckArgsDict(TypedDict):
|
4997
|
+
options: NotRequired[pulumi.Input[str]]
|
4998
|
+
"""
|
4999
|
+
(Output)
|
5000
|
+
Options used for the validation check.
|
5001
|
+
"""
|
5002
|
+
scenario: NotRequired[pulumi.Input[str]]
|
5003
|
+
"""
|
5004
|
+
(Output)
|
5005
|
+
The scenario when the preflight checks were run..
|
5006
|
+
"""
|
5007
|
+
statuses: NotRequired[pulumi.Input[Sequence[pulumi.Input['BareMetalClusterValidationCheckStatusArgsDict']]]]
|
5008
|
+
"""
|
5009
|
+
(Output)
|
5010
|
+
Specifies the detailed validation check status
|
5011
|
+
Structure is documented below.
|
5012
|
+
"""
|
5013
|
+
elif False:
|
5014
|
+
BareMetalClusterValidationCheckArgsDict: TypeAlias = Mapping[str, Any]
|
5015
|
+
|
3616
5016
|
@pulumi.input_type
|
3617
5017
|
class BareMetalClusterValidationCheckArgs:
|
3618
5018
|
def __init__(__self__, *,
|
@@ -3676,6 +5076,17 @@ class BareMetalClusterValidationCheckArgs:
|
|
3676
5076
|
pulumi.set(self, "statuses", value)
|
3677
5077
|
|
3678
5078
|
|
5079
|
+
if not MYPY:
|
5080
|
+
class BareMetalClusterValidationCheckStatusArgsDict(TypedDict):
|
5081
|
+
results: NotRequired[pulumi.Input[Sequence[pulumi.Input['BareMetalClusterValidationCheckStatusResultArgsDict']]]]
|
5082
|
+
"""
|
5083
|
+
(Output)
|
5084
|
+
Individual checks which failed as part of the Preflight check execution.
|
5085
|
+
Structure is documented below.
|
5086
|
+
"""
|
5087
|
+
elif False:
|
5088
|
+
BareMetalClusterValidationCheckStatusArgsDict: TypeAlias = Mapping[str, Any]
|
5089
|
+
|
3679
5090
|
@pulumi.input_type
|
3680
5091
|
class BareMetalClusterValidationCheckStatusArgs:
|
3681
5092
|
def __init__(__self__, *,
|
@@ -3703,6 +5114,36 @@ class BareMetalClusterValidationCheckStatusArgs:
|
|
3703
5114
|
pulumi.set(self, "results", value)
|
3704
5115
|
|
3705
5116
|
|
5117
|
+
if not MYPY:
|
5118
|
+
class BareMetalClusterValidationCheckStatusResultArgsDict(TypedDict):
|
5119
|
+
category: NotRequired[pulumi.Input[str]]
|
5120
|
+
"""
|
5121
|
+
(Output)
|
5122
|
+
The category of the validation.
|
5123
|
+
"""
|
5124
|
+
description: NotRequired[pulumi.Input[str]]
|
5125
|
+
"""
|
5126
|
+
(Output)
|
5127
|
+
The description of the validation check.
|
5128
|
+
"""
|
5129
|
+
details: NotRequired[pulumi.Input[str]]
|
5130
|
+
"""
|
5131
|
+
(Output)
|
5132
|
+
Detailed failure information, which might be unformatted.
|
5133
|
+
"""
|
5134
|
+
options: NotRequired[pulumi.Input[str]]
|
5135
|
+
"""
|
5136
|
+
(Output)
|
5137
|
+
Options used for the validation check.
|
5138
|
+
"""
|
5139
|
+
reason: NotRequired[pulumi.Input[str]]
|
5140
|
+
"""
|
5141
|
+
(Output)
|
5142
|
+
A human-readable message of the check failure.
|
5143
|
+
"""
|
5144
|
+
elif False:
|
5145
|
+
BareMetalClusterValidationCheckStatusResultArgsDict: TypeAlias = Mapping[str, Any]
|
5146
|
+
|
3706
5147
|
@pulumi.input_type
|
3707
5148
|
class BareMetalClusterValidationCheckStatusResultArgs:
|
3708
5149
|
def __init__(__self__, *,
|
@@ -3800,6 +5241,38 @@ class BareMetalClusterValidationCheckStatusResultArgs:
|
|
3800
5241
|
pulumi.set(self, "reason", value)
|
3801
5242
|
|
3802
5243
|
|
5244
|
+
if not MYPY:
|
5245
|
+
class BareMetalNodePoolNodePoolConfigArgsDict(TypedDict):
|
5246
|
+
node_configs: pulumi.Input[Sequence[pulumi.Input['BareMetalNodePoolNodePoolConfigNodeConfigArgsDict']]]
|
5247
|
+
"""
|
5248
|
+
The list of machine addresses in the Bare Metal Node Pool.
|
5249
|
+
Structure is documented below.
|
5250
|
+
"""
|
5251
|
+
labels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
5252
|
+
"""
|
5253
|
+
The map of Kubernetes labels (key/value pairs) to be applied to
|
5254
|
+
each node. These will added in addition to any default label(s)
|
5255
|
+
that Kubernetes may apply to the node. In case of conflict in
|
5256
|
+
label keys, the applied set may differ depending on the Kubernetes
|
5257
|
+
version -- it's best to assume the behavior is undefined and
|
5258
|
+
conflicts should be avoided. For more information, including usage
|
5259
|
+
and the valid values, see:
|
5260
|
+
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
5261
|
+
An object containing a list of "key": value pairs.
|
5262
|
+
Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
5263
|
+
"""
|
5264
|
+
operating_system: NotRequired[pulumi.Input[str]]
|
5265
|
+
"""
|
5266
|
+
Specifies the nodes operating system (default: LINUX).
|
5267
|
+
"""
|
5268
|
+
taints: NotRequired[pulumi.Input[Sequence[pulumi.Input['BareMetalNodePoolNodePoolConfigTaintArgsDict']]]]
|
5269
|
+
"""
|
5270
|
+
The initial taints assigned to nodes of this node pool.
|
5271
|
+
Structure is documented below.
|
5272
|
+
"""
|
5273
|
+
elif False:
|
5274
|
+
BareMetalNodePoolNodePoolConfigArgsDict: TypeAlias = Mapping[str, Any]
|
5275
|
+
|
3803
5276
|
@pulumi.input_type
|
3804
5277
|
class BareMetalNodePoolNodePoolConfigArgs:
|
3805
5278
|
def __init__(__self__, *,
|
@@ -3892,6 +5365,29 @@ class BareMetalNodePoolNodePoolConfigArgs:
|
|
3892
5365
|
pulumi.set(self, "taints", value)
|
3893
5366
|
|
3894
5367
|
|
5368
|
+
if not MYPY:
|
5369
|
+
class BareMetalNodePoolNodePoolConfigNodeConfigArgsDict(TypedDict):
|
5370
|
+
labels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
5371
|
+
"""
|
5372
|
+
The map of Kubernetes labels (key/value pairs) to be applied to
|
5373
|
+
each node. These will added in addition to any default label(s)
|
5374
|
+
that Kubernetes may apply to the node. In case of conflict in
|
5375
|
+
label keys, the applied set may differ depending on the Kubernetes
|
5376
|
+
version -- it's best to assume the behavior is undefined and
|
5377
|
+
conflicts should be avoided. For more information, including usage
|
5378
|
+
and the valid values, see:
|
5379
|
+
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
5380
|
+
An object containing a list of "key": value pairs.
|
5381
|
+
Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
5382
|
+
"""
|
5383
|
+
node_ip: NotRequired[pulumi.Input[str]]
|
5384
|
+
"""
|
5385
|
+
The default IPv4 address for SSH access and Kubernetes node.
|
5386
|
+
Example: 192.168.0.1
|
5387
|
+
"""
|
5388
|
+
elif False:
|
5389
|
+
BareMetalNodePoolNodePoolConfigNodeConfigArgsDict: TypeAlias = Mapping[str, Any]
|
5390
|
+
|
3895
5391
|
@pulumi.input_type
|
3896
5392
|
class BareMetalNodePoolNodePoolConfigNodeConfigArgs:
|
3897
5393
|
def __init__(__self__, *,
|
@@ -3951,6 +5447,26 @@ class BareMetalNodePoolNodePoolConfigNodeConfigArgs:
|
|
3951
5447
|
pulumi.set(self, "node_ip", value)
|
3952
5448
|
|
3953
5449
|
|
5450
|
+
if not MYPY:
|
5451
|
+
class BareMetalNodePoolNodePoolConfigTaintArgsDict(TypedDict):
|
5452
|
+
effect: NotRequired[pulumi.Input[str]]
|
5453
|
+
"""
|
5454
|
+
Specifies the nodes operating system (default: LINUX).
|
5455
|
+
Possible values are: `EFFECT_UNSPECIFIED`, `PREFER_NO_SCHEDULE`, `NO_EXECUTE`.
|
5456
|
+
|
5457
|
+
- - -
|
5458
|
+
"""
|
5459
|
+
key: NotRequired[pulumi.Input[str]]
|
5460
|
+
"""
|
5461
|
+
Key associated with the effect.
|
5462
|
+
"""
|
5463
|
+
value: NotRequired[pulumi.Input[str]]
|
5464
|
+
"""
|
5465
|
+
Value associated with the effect.
|
5466
|
+
"""
|
5467
|
+
elif False:
|
5468
|
+
BareMetalNodePoolNodePoolConfigTaintArgsDict: TypeAlias = Mapping[str, Any]
|
5469
|
+
|
3954
5470
|
@pulumi.input_type
|
3955
5471
|
class BareMetalNodePoolNodePoolConfigTaintArgs:
|
3956
5472
|
def __init__(__self__, *,
|
@@ -4005,12 +5521,32 @@ class BareMetalNodePoolNodePoolConfigTaintArgs:
|
|
4005
5521
|
"""
|
4006
5522
|
Value associated with the effect.
|
4007
5523
|
"""
|
4008
|
-
return pulumi.get(self, "value")
|
4009
|
-
|
4010
|
-
@value.setter
|
4011
|
-
def value(self, value: Optional[pulumi.Input[str]]):
|
4012
|
-
pulumi.set(self, "value", value)
|
4013
|
-
|
5524
|
+
return pulumi.get(self, "value")
|
5525
|
+
|
5526
|
+
@value.setter
|
5527
|
+
def value(self, value: Optional[pulumi.Input[str]]):
|
5528
|
+
pulumi.set(self, "value", value)
|
5529
|
+
|
5530
|
+
|
5531
|
+
if not MYPY:
|
5532
|
+
class BareMetalNodePoolStatusArgsDict(TypedDict):
|
5533
|
+
conditions: NotRequired[pulumi.Input[Sequence[pulumi.Input['BareMetalNodePoolStatusConditionArgsDict']]]]
|
5534
|
+
"""
|
5535
|
+
(Output)
|
5536
|
+
ResourceConditions provide a standard mechanism for higher-level status reporting from user cluster controller.
|
5537
|
+
Structure is documented below.
|
5538
|
+
"""
|
5539
|
+
error_message: NotRequired[pulumi.Input[str]]
|
5540
|
+
"""
|
5541
|
+
(Output)
|
5542
|
+
Human-friendly representation of the error message from the user cluster
|
5543
|
+
controller. The error message can be temporary as the user cluster
|
5544
|
+
controller creates a cluster or node pool. If the error message persists
|
5545
|
+
for a longer period of time, it can be used to surface error message to
|
5546
|
+
indicate real problems requiring user intervention.
|
5547
|
+
"""
|
5548
|
+
elif False:
|
5549
|
+
BareMetalNodePoolStatusArgsDict: TypeAlias = Mapping[str, Any]
|
4014
5550
|
|
4015
5551
|
@pulumi.input_type
|
4016
5552
|
class BareMetalNodePoolStatusArgs:
|
@@ -4065,6 +5601,34 @@ class BareMetalNodePoolStatusArgs:
|
|
4065
5601
|
pulumi.set(self, "error_message", value)
|
4066
5602
|
|
4067
5603
|
|
5604
|
+
if not MYPY:
|
5605
|
+
class BareMetalNodePoolStatusConditionArgsDict(TypedDict):
|
5606
|
+
last_transition_time: NotRequired[pulumi.Input[str]]
|
5607
|
+
"""
|
5608
|
+
(Output)
|
5609
|
+
Last time the condition transit from one status to another.
|
5610
|
+
"""
|
5611
|
+
message: NotRequired[pulumi.Input[str]]
|
5612
|
+
"""
|
5613
|
+
Human-readable message indicating details about last transition.
|
5614
|
+
"""
|
5615
|
+
reason: NotRequired[pulumi.Input[str]]
|
5616
|
+
"""
|
5617
|
+
Machine-readable message indicating details about last transition.
|
5618
|
+
"""
|
5619
|
+
state: NotRequired[pulumi.Input[str]]
|
5620
|
+
"""
|
5621
|
+
(Output)
|
5622
|
+
The lifecycle state of the condition.
|
5623
|
+
"""
|
5624
|
+
type: NotRequired[pulumi.Input[str]]
|
5625
|
+
"""
|
5626
|
+
Type of the condition.
|
5627
|
+
(e.g., ClusterRunning, NodePoolRunning or ServerSidePreflightReady)
|
5628
|
+
"""
|
5629
|
+
elif False:
|
5630
|
+
BareMetalNodePoolStatusConditionArgsDict: TypeAlias = Mapping[str, Any]
|
5631
|
+
|
4068
5632
|
@pulumi.input_type
|
4069
5633
|
class BareMetalNodePoolStatusConditionArgs:
|
4070
5634
|
def __init__(__self__, *,
|
@@ -4158,6 +5722,17 @@ class BareMetalNodePoolStatusConditionArgs:
|
|
4158
5722
|
pulumi.set(self, "type", value)
|
4159
5723
|
|
4160
5724
|
|
5725
|
+
if not MYPY:
|
5726
|
+
class VMwareClusterAntiAffinityGroupsArgsDict(TypedDict):
|
5727
|
+
aag_config_disabled: pulumi.Input[bool]
|
5728
|
+
"""
|
5729
|
+
Spread nodes across at least three physical hosts (requires at least three
|
5730
|
+
hosts).
|
5731
|
+
Enabled by default.
|
5732
|
+
"""
|
5733
|
+
elif False:
|
5734
|
+
VMwareClusterAntiAffinityGroupsArgsDict: TypeAlias = Mapping[str, Any]
|
5735
|
+
|
4161
5736
|
@pulumi.input_type
|
4162
5737
|
class VMwareClusterAntiAffinityGroupsArgs:
|
4163
5738
|
def __init__(__self__, *,
|
@@ -4184,6 +5759,17 @@ class VMwareClusterAntiAffinityGroupsArgs:
|
|
4184
5759
|
pulumi.set(self, "aag_config_disabled", value)
|
4185
5760
|
|
4186
5761
|
|
5762
|
+
if not MYPY:
|
5763
|
+
class VMwareClusterAuthorizationArgsDict(TypedDict):
|
5764
|
+
admin_users: NotRequired[pulumi.Input[Sequence[pulumi.Input['VMwareClusterAuthorizationAdminUserArgsDict']]]]
|
5765
|
+
"""
|
5766
|
+
Users that will be granted the cluster-admin role on the cluster, providing
|
5767
|
+
full access to the cluster.
|
5768
|
+
Structure is documented below.
|
5769
|
+
"""
|
5770
|
+
elif False:
|
5771
|
+
VMwareClusterAuthorizationArgsDict: TypeAlias = Mapping[str, Any]
|
5772
|
+
|
4187
5773
|
@pulumi.input_type
|
4188
5774
|
class VMwareClusterAuthorizationArgs:
|
4189
5775
|
def __init__(__self__, *,
|
@@ -4211,6 +5797,15 @@ class VMwareClusterAuthorizationArgs:
|
|
4211
5797
|
pulumi.set(self, "admin_users", value)
|
4212
5798
|
|
4213
5799
|
|
5800
|
+
if not MYPY:
|
5801
|
+
class VMwareClusterAuthorizationAdminUserArgsDict(TypedDict):
|
5802
|
+
username: pulumi.Input[str]
|
5803
|
+
"""
|
5804
|
+
The name of the user, e.g. `my-gcp-id@gmail.com`.
|
5805
|
+
"""
|
5806
|
+
elif False:
|
5807
|
+
VMwareClusterAuthorizationAdminUserArgsDict: TypeAlias = Mapping[str, Any]
|
5808
|
+
|
4214
5809
|
@pulumi.input_type
|
4215
5810
|
class VMwareClusterAuthorizationAdminUserArgs:
|
4216
5811
|
def __init__(__self__, *,
|
@@ -4233,6 +5828,15 @@ class VMwareClusterAuthorizationAdminUserArgs:
|
|
4233
5828
|
pulumi.set(self, "username", value)
|
4234
5829
|
|
4235
5830
|
|
5831
|
+
if not MYPY:
|
5832
|
+
class VMwareClusterAutoRepairConfigArgsDict(TypedDict):
|
5833
|
+
enabled: pulumi.Input[bool]
|
5834
|
+
"""
|
5835
|
+
Whether auto repair is enabled.
|
5836
|
+
"""
|
5837
|
+
elif False:
|
5838
|
+
VMwareClusterAutoRepairConfigArgsDict: TypeAlias = Mapping[str, Any]
|
5839
|
+
|
4236
5840
|
@pulumi.input_type
|
4237
5841
|
class VMwareClusterAutoRepairConfigArgs:
|
4238
5842
|
def __init__(__self__, *,
|
@@ -4255,6 +5859,37 @@ class VMwareClusterAutoRepairConfigArgs:
|
|
4255
5859
|
pulumi.set(self, "enabled", value)
|
4256
5860
|
|
4257
5861
|
|
5862
|
+
if not MYPY:
|
5863
|
+
class VMwareClusterControlPlaneNodeArgsDict(TypedDict):
|
5864
|
+
auto_resize_config: NotRequired[pulumi.Input['VMwareClusterControlPlaneNodeAutoResizeConfigArgsDict']]
|
5865
|
+
"""
|
5866
|
+
AutoResizeConfig provides auto resizing configurations.
|
5867
|
+
Structure is documented below.
|
5868
|
+
"""
|
5869
|
+
cpus: NotRequired[pulumi.Input[int]]
|
5870
|
+
"""
|
5871
|
+
The number of CPUs for each admin cluster node that serve as control planes
|
5872
|
+
for this VMware User Cluster. (default: 4 CPUs)
|
5873
|
+
"""
|
5874
|
+
memory: NotRequired[pulumi.Input[int]]
|
5875
|
+
"""
|
5876
|
+
The megabytes of memory for each admin cluster node that serves as a
|
5877
|
+
control plane for this VMware User Cluster (default: 8192 MB memory).
|
5878
|
+
"""
|
5879
|
+
replicas: NotRequired[pulumi.Input[int]]
|
5880
|
+
"""
|
5881
|
+
The number of control plane nodes for this VMware User Cluster.
|
5882
|
+
(default: 1 replica).
|
5883
|
+
"""
|
5884
|
+
vsphere_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input['VMwareClusterControlPlaneNodeVsphereConfigArgsDict']]]]
|
5885
|
+
"""
|
5886
|
+
(Output)
|
5887
|
+
Vsphere-specific config.
|
5888
|
+
Structure is documented below.
|
5889
|
+
"""
|
5890
|
+
elif False:
|
5891
|
+
VMwareClusterControlPlaneNodeArgsDict: TypeAlias = Mapping[str, Any]
|
5892
|
+
|
4258
5893
|
@pulumi.input_type
|
4259
5894
|
class VMwareClusterControlPlaneNodeArgs:
|
4260
5895
|
def __init__(__self__, *,
|
@@ -4354,6 +5989,17 @@ class VMwareClusterControlPlaneNodeArgs:
|
|
4354
5989
|
pulumi.set(self, "vsphere_configs", value)
|
4355
5990
|
|
4356
5991
|
|
5992
|
+
if not MYPY:
|
5993
|
+
class VMwareClusterControlPlaneNodeAutoResizeConfigArgsDict(TypedDict):
|
5994
|
+
enabled: pulumi.Input[bool]
|
5995
|
+
"""
|
5996
|
+
Whether to enable control plane node auto resizing.
|
5997
|
+
|
5998
|
+
<a name="nested_vsphere_config"></a>The `vsphere_config` block contains:
|
5999
|
+
"""
|
6000
|
+
elif False:
|
6001
|
+
VMwareClusterControlPlaneNodeAutoResizeConfigArgsDict: TypeAlias = Mapping[str, Any]
|
6002
|
+
|
4357
6003
|
@pulumi.input_type
|
4358
6004
|
class VMwareClusterControlPlaneNodeAutoResizeConfigArgs:
|
4359
6005
|
def __init__(__self__, *,
|
@@ -4380,6 +6026,19 @@ class VMwareClusterControlPlaneNodeAutoResizeConfigArgs:
|
|
4380
6026
|
pulumi.set(self, "enabled", value)
|
4381
6027
|
|
4382
6028
|
|
6029
|
+
if not MYPY:
|
6030
|
+
class VMwareClusterControlPlaneNodeVsphereConfigArgsDict(TypedDict):
|
6031
|
+
datastore: NotRequired[pulumi.Input[str]]
|
6032
|
+
"""
|
6033
|
+
The Vsphere datastore used by the Control Plane Node.
|
6034
|
+
"""
|
6035
|
+
storage_policy_name: NotRequired[pulumi.Input[str]]
|
6036
|
+
"""
|
6037
|
+
The Vsphere storage policy used by the control plane Node.
|
6038
|
+
"""
|
6039
|
+
elif False:
|
6040
|
+
VMwareClusterControlPlaneNodeVsphereConfigArgsDict: TypeAlias = Mapping[str, Any]
|
6041
|
+
|
4383
6042
|
@pulumi.input_type
|
4384
6043
|
class VMwareClusterControlPlaneNodeVsphereConfigArgs:
|
4385
6044
|
def __init__(__self__, *,
|
@@ -4419,6 +6078,23 @@ class VMwareClusterControlPlaneNodeVsphereConfigArgs:
|
|
4419
6078
|
pulumi.set(self, "storage_policy_name", value)
|
4420
6079
|
|
4421
6080
|
|
6081
|
+
if not MYPY:
|
6082
|
+
class VMwareClusterDataplaneV2ArgsDict(TypedDict):
|
6083
|
+
advanced_networking: NotRequired[pulumi.Input[bool]]
|
6084
|
+
"""
|
6085
|
+
Enable advanced networking which requires dataplane_v2_enabled to be set true.
|
6086
|
+
"""
|
6087
|
+
dataplane_v2_enabled: NotRequired[pulumi.Input[bool]]
|
6088
|
+
"""
|
6089
|
+
Enables Dataplane V2.
|
6090
|
+
"""
|
6091
|
+
windows_dataplane_v2_enabled: NotRequired[pulumi.Input[bool]]
|
6092
|
+
"""
|
6093
|
+
Enable Dataplane V2 for clusters with Windows nodes.
|
6094
|
+
"""
|
6095
|
+
elif False:
|
6096
|
+
VMwareClusterDataplaneV2ArgsDict: TypeAlias = Mapping[str, Any]
|
6097
|
+
|
4422
6098
|
@pulumi.input_type
|
4423
6099
|
class VMwareClusterDataplaneV2Args:
|
4424
6100
|
def __init__(__self__, *,
|
@@ -4474,6 +6150,18 @@ class VMwareClusterDataplaneV2Args:
|
|
4474
6150
|
pulumi.set(self, "windows_dataplane_v2_enabled", value)
|
4475
6151
|
|
4476
6152
|
|
6153
|
+
if not MYPY:
|
6154
|
+
class VMwareClusterFleetArgsDict(TypedDict):
|
6155
|
+
membership: NotRequired[pulumi.Input[str]]
|
6156
|
+
"""
|
6157
|
+
(Output)
|
6158
|
+
The name of the managed Hub Membership resource associated to this cluster.
|
6159
|
+
Membership names are formatted as
|
6160
|
+
`projects/<project-number>/locations/<location>/memberships/<cluster-id>`.
|
6161
|
+
"""
|
6162
|
+
elif False:
|
6163
|
+
VMwareClusterFleetArgsDict: TypeAlias = Mapping[str, Any]
|
6164
|
+
|
4477
6165
|
@pulumi.input_type
|
4478
6166
|
class VMwareClusterFleetArgs:
|
4479
6167
|
def __init__(__self__, *,
|
@@ -4503,6 +6191,31 @@ class VMwareClusterFleetArgs:
|
|
4503
6191
|
pulumi.set(self, "membership", value)
|
4504
6192
|
|
4505
6193
|
|
6194
|
+
if not MYPY:
|
6195
|
+
class VMwareClusterLoadBalancerArgsDict(TypedDict):
|
6196
|
+
f5_config: NotRequired[pulumi.Input['VMwareClusterLoadBalancerF5ConfigArgsDict']]
|
6197
|
+
"""
|
6198
|
+
Configuration for F5 Big IP typed load balancers.
|
6199
|
+
Structure is documented below.
|
6200
|
+
"""
|
6201
|
+
manual_lb_config: NotRequired[pulumi.Input['VMwareClusterLoadBalancerManualLbConfigArgsDict']]
|
6202
|
+
"""
|
6203
|
+
Manually configured load balancers.
|
6204
|
+
Structure is documented below.
|
6205
|
+
"""
|
6206
|
+
metal_lb_config: NotRequired[pulumi.Input['VMwareClusterLoadBalancerMetalLbConfigArgsDict']]
|
6207
|
+
"""
|
6208
|
+
Configuration for MetalLB typed load balancers.
|
6209
|
+
Structure is documented below.
|
6210
|
+
"""
|
6211
|
+
vip_config: NotRequired[pulumi.Input['VMwareClusterLoadBalancerVipConfigArgsDict']]
|
6212
|
+
"""
|
6213
|
+
The VIPs used by the load balancer.
|
6214
|
+
Structure is documented below.
|
6215
|
+
"""
|
6216
|
+
elif False:
|
6217
|
+
VMwareClusterLoadBalancerArgsDict: TypeAlias = Mapping[str, Any]
|
6218
|
+
|
4506
6219
|
@pulumi.input_type
|
4507
6220
|
class VMwareClusterLoadBalancerArgs:
|
4508
6221
|
def __init__(__self__, *,
|
@@ -4582,6 +6295,25 @@ class VMwareClusterLoadBalancerArgs:
|
|
4582
6295
|
pulumi.set(self, "vip_config", value)
|
4583
6296
|
|
4584
6297
|
|
6298
|
+
if not MYPY:
|
6299
|
+
class VMwareClusterLoadBalancerF5ConfigArgsDict(TypedDict):
|
6300
|
+
address: NotRequired[pulumi.Input[str]]
|
6301
|
+
"""
|
6302
|
+
The load balancer's IP address.
|
6303
|
+
"""
|
6304
|
+
partition: NotRequired[pulumi.Input[str]]
|
6305
|
+
"""
|
6306
|
+
he preexisting partition to be used by the load balancer. T
|
6307
|
+
his partition is usually created for the admin cluster for example:
|
6308
|
+
'my-f5-admin-partition'.
|
6309
|
+
"""
|
6310
|
+
snat_pool: NotRequired[pulumi.Input[str]]
|
6311
|
+
"""
|
6312
|
+
The pool name. Only necessary, if using SNAT.
|
6313
|
+
"""
|
6314
|
+
elif False:
|
6315
|
+
VMwareClusterLoadBalancerF5ConfigArgsDict: TypeAlias = Mapping[str, Any]
|
6316
|
+
|
4585
6317
|
@pulumi.input_type
|
4586
6318
|
class VMwareClusterLoadBalancerF5ConfigArgs:
|
4587
6319
|
def __init__(__self__, *,
|
@@ -4641,6 +6373,31 @@ class VMwareClusterLoadBalancerF5ConfigArgs:
|
|
4641
6373
|
pulumi.set(self, "snat_pool", value)
|
4642
6374
|
|
4643
6375
|
|
6376
|
+
if not MYPY:
|
6377
|
+
class VMwareClusterLoadBalancerManualLbConfigArgsDict(TypedDict):
|
6378
|
+
control_plane_node_port: NotRequired[pulumi.Input[int]]
|
6379
|
+
"""
|
6380
|
+
NodePort for control plane service. The Kubernetes API server in the admin
|
6381
|
+
cluster is implemented as a Service of type NodePort (ex. 30968).
|
6382
|
+
"""
|
6383
|
+
ingress_http_node_port: NotRequired[pulumi.Input[int]]
|
6384
|
+
"""
|
6385
|
+
NodePort for ingress service's http. The ingress service in the admin
|
6386
|
+
cluster is implemented as a Service of type NodePort (ex. 32527).
|
6387
|
+
"""
|
6388
|
+
ingress_https_node_port: NotRequired[pulumi.Input[int]]
|
6389
|
+
"""
|
6390
|
+
NodePort for ingress service's https. The ingress service in the admin
|
6391
|
+
cluster is implemented as a Service of type NodePort (ex. 30139).
|
6392
|
+
"""
|
6393
|
+
konnectivity_server_node_port: NotRequired[pulumi.Input[int]]
|
6394
|
+
"""
|
6395
|
+
NodePort for konnectivity server service running as a sidecar in each
|
6396
|
+
kube-apiserver pod (ex. 30564).
|
6397
|
+
"""
|
6398
|
+
elif False:
|
6399
|
+
VMwareClusterLoadBalancerManualLbConfigArgsDict: TypeAlias = Mapping[str, Any]
|
6400
|
+
|
4644
6401
|
@pulumi.input_type
|
4645
6402
|
class VMwareClusterLoadBalancerManualLbConfigArgs:
|
4646
6403
|
def __init__(__self__, *,
|
@@ -4720,6 +6477,18 @@ class VMwareClusterLoadBalancerManualLbConfigArgs:
|
|
4720
6477
|
pulumi.set(self, "konnectivity_server_node_port", value)
|
4721
6478
|
|
4722
6479
|
|
6480
|
+
if not MYPY:
|
6481
|
+
class VMwareClusterLoadBalancerMetalLbConfigArgsDict(TypedDict):
|
6482
|
+
address_pools: pulumi.Input[Sequence[pulumi.Input['VMwareClusterLoadBalancerMetalLbConfigAddressPoolArgsDict']]]
|
6483
|
+
"""
|
6484
|
+
AddressPools is a list of non-overlapping IP pools used by load balancer
|
6485
|
+
typed services. All addresses must be routable to load balancer nodes.
|
6486
|
+
IngressVIP must be included in the pools.
|
6487
|
+
Structure is documented below.
|
6488
|
+
"""
|
6489
|
+
elif False:
|
6490
|
+
VMwareClusterLoadBalancerMetalLbConfigArgsDict: TypeAlias = Mapping[str, Any]
|
6491
|
+
|
4723
6492
|
@pulumi.input_type
|
4724
6493
|
class VMwareClusterLoadBalancerMetalLbConfigArgs:
|
4725
6494
|
def __init__(__self__, *,
|
@@ -4748,6 +6517,33 @@ class VMwareClusterLoadBalancerMetalLbConfigArgs:
|
|
4748
6517
|
pulumi.set(self, "address_pools", value)
|
4749
6518
|
|
4750
6519
|
|
6520
|
+
if not MYPY:
|
6521
|
+
class VMwareClusterLoadBalancerMetalLbConfigAddressPoolArgsDict(TypedDict):
|
6522
|
+
addresses: pulumi.Input[Sequence[pulumi.Input[str]]]
|
6523
|
+
"""
|
6524
|
+
The addresses that are part of this pool. Each address
|
6525
|
+
must be either in the CIDR form (1.2.3.0/24) or range
|
6526
|
+
form (1.2.3.1-1.2.3.5).
|
6527
|
+
"""
|
6528
|
+
pool: pulumi.Input[str]
|
6529
|
+
"""
|
6530
|
+
The name of the address pool.
|
6531
|
+
"""
|
6532
|
+
avoid_buggy_ips: NotRequired[pulumi.Input[bool]]
|
6533
|
+
"""
|
6534
|
+
If true, avoid using IPs ending in .0 or .255.
|
6535
|
+
This avoids buggy consumer devices mistakenly dropping IPv4 traffic for
|
6536
|
+
those special IP addresses.
|
6537
|
+
"""
|
6538
|
+
manual_assign: NotRequired[pulumi.Input[bool]]
|
6539
|
+
"""
|
6540
|
+
If true, prevent IP addresses from being automatically assigned.
|
6541
|
+
|
6542
|
+
<a name="nested_dataplane_v2"></a>The `dataplane_v2` block supports:
|
6543
|
+
"""
|
6544
|
+
elif False:
|
6545
|
+
VMwareClusterLoadBalancerMetalLbConfigAddressPoolArgsDict: TypeAlias = Mapping[str, Any]
|
6546
|
+
|
4751
6547
|
@pulumi.input_type
|
4752
6548
|
class VMwareClusterLoadBalancerMetalLbConfigAddressPoolArgs:
|
4753
6549
|
def __init__(__self__, *,
|
@@ -4829,6 +6625,21 @@ class VMwareClusterLoadBalancerMetalLbConfigAddressPoolArgs:
|
|
4829
6625
|
pulumi.set(self, "manual_assign", value)
|
4830
6626
|
|
4831
6627
|
|
6628
|
+
if not MYPY:
|
6629
|
+
class VMwareClusterLoadBalancerVipConfigArgsDict(TypedDict):
|
6630
|
+
control_plane_vip: NotRequired[pulumi.Input[str]]
|
6631
|
+
"""
|
6632
|
+
The VIP which you previously set aside for the Kubernetes API of this cluster.
|
6633
|
+
"""
|
6634
|
+
ingress_vip: NotRequired[pulumi.Input[str]]
|
6635
|
+
"""
|
6636
|
+
The VIP which you previously set aside for ingress traffic into this cluster.
|
6637
|
+
|
6638
|
+
<a name="nested_f5_config"></a>The `f5_config` block supports:
|
6639
|
+
"""
|
6640
|
+
elif False:
|
6641
|
+
VMwareClusterLoadBalancerVipConfigArgsDict: TypeAlias = Mapping[str, Any]
|
6642
|
+
|
4832
6643
|
@pulumi.input_type
|
4833
6644
|
class VMwareClusterLoadBalancerVipConfigArgs:
|
4834
6645
|
def __init__(__self__, *,
|
@@ -4872,6 +6683,46 @@ class VMwareClusterLoadBalancerVipConfigArgs:
|
|
4872
6683
|
pulumi.set(self, "ingress_vip", value)
|
4873
6684
|
|
4874
6685
|
|
6686
|
+
if not MYPY:
|
6687
|
+
class VMwareClusterNetworkConfigArgsDict(TypedDict):
|
6688
|
+
pod_address_cidr_blocks: pulumi.Input[Sequence[pulumi.Input[str]]]
|
6689
|
+
"""
|
6690
|
+
All pods in the cluster are assigned an RFC1918 IPv4 address from these ranges.
|
6691
|
+
Only a single range is supported. This field cannot be changed after creation.
|
6692
|
+
"""
|
6693
|
+
service_address_cidr_blocks: pulumi.Input[Sequence[pulumi.Input[str]]]
|
6694
|
+
"""
|
6695
|
+
All services in the cluster are assigned an RFC1918 IPv4 address
|
6696
|
+
from these ranges. Only a single range is supported.. This field
|
6697
|
+
cannot be changed after creation.
|
6698
|
+
"""
|
6699
|
+
control_plane_v2_config: NotRequired[pulumi.Input['VMwareClusterNetworkConfigControlPlaneV2ConfigArgsDict']]
|
6700
|
+
"""
|
6701
|
+
Configuration for control plane V2 mode.
|
6702
|
+
Structure is documented below.
|
6703
|
+
"""
|
6704
|
+
dhcp_ip_config: NotRequired[pulumi.Input['VMwareClusterNetworkConfigDhcpIpConfigArgsDict']]
|
6705
|
+
"""
|
6706
|
+
Configuration settings for a DHCP IP configuration.
|
6707
|
+
Structure is documented below.
|
6708
|
+
"""
|
6709
|
+
host_config: NotRequired[pulumi.Input['VMwareClusterNetworkConfigHostConfigArgsDict']]
|
6710
|
+
"""
|
6711
|
+
Represents common network settings irrespective of the host's IP address.
|
6712
|
+
Structure is documented below.
|
6713
|
+
"""
|
6714
|
+
static_ip_config: NotRequired[pulumi.Input['VMwareClusterNetworkConfigStaticIpConfigArgsDict']]
|
6715
|
+
"""
|
6716
|
+
Configuration settings for a static IP configuration.
|
6717
|
+
Structure is documented below.
|
6718
|
+
"""
|
6719
|
+
vcenter_network: NotRequired[pulumi.Input[str]]
|
6720
|
+
"""
|
6721
|
+
vcenter_network specifies vCenter network name. Inherited from the admin cluster.
|
6722
|
+
"""
|
6723
|
+
elif False:
|
6724
|
+
VMwareClusterNetworkConfigArgsDict: TypeAlias = Mapping[str, Any]
|
6725
|
+
|
4875
6726
|
@pulumi.input_type
|
4876
6727
|
class VMwareClusterNetworkConfigArgs:
|
4877
6728
|
def __init__(__self__, *,
|
@@ -5003,6 +6854,15 @@ class VMwareClusterNetworkConfigArgs:
|
|
5003
6854
|
pulumi.set(self, "vcenter_network", value)
|
5004
6855
|
|
5005
6856
|
|
6857
|
+
if not MYPY:
|
6858
|
+
class VMwareClusterNetworkConfigControlPlaneV2ConfigArgsDict(TypedDict):
|
6859
|
+
control_plane_ip_block: NotRequired[pulumi.Input['VMwareClusterNetworkConfigControlPlaneV2ConfigControlPlaneIpBlockArgsDict']]
|
6860
|
+
"""
|
6861
|
+
Static IP addresses for the control plane nodes.
|
6862
|
+
"""
|
6863
|
+
elif False:
|
6864
|
+
VMwareClusterNetworkConfigControlPlaneV2ConfigArgsDict: TypeAlias = Mapping[str, Any]
|
6865
|
+
|
5006
6866
|
@pulumi.input_type
|
5007
6867
|
class VMwareClusterNetworkConfigControlPlaneV2ConfigArgs:
|
5008
6868
|
def __init__(__self__, *,
|
@@ -5026,6 +6886,24 @@ class VMwareClusterNetworkConfigControlPlaneV2ConfigArgs:
|
|
5026
6886
|
pulumi.set(self, "control_plane_ip_block", value)
|
5027
6887
|
|
5028
6888
|
|
6889
|
+
if not MYPY:
|
6890
|
+
class VMwareClusterNetworkConfigControlPlaneV2ConfigControlPlaneIpBlockArgsDict(TypedDict):
|
6891
|
+
gateway: NotRequired[pulumi.Input[str]]
|
6892
|
+
"""
|
6893
|
+
The network gateway used by the VMware User Cluster.
|
6894
|
+
"""
|
6895
|
+
ips: NotRequired[pulumi.Input[Sequence[pulumi.Input['VMwareClusterNetworkConfigControlPlaneV2ConfigControlPlaneIpBlockIpArgsDict']]]]
|
6896
|
+
"""
|
6897
|
+
The node's network configurations used by the VMware User Cluster.
|
6898
|
+
Structure is documented below.
|
6899
|
+
"""
|
6900
|
+
netmask: NotRequired[pulumi.Input[str]]
|
6901
|
+
"""
|
6902
|
+
The netmask used by the VMware User Cluster.
|
6903
|
+
"""
|
6904
|
+
elif False:
|
6905
|
+
VMwareClusterNetworkConfigControlPlaneV2ConfigControlPlaneIpBlockArgsDict: TypeAlias = Mapping[str, Any]
|
6906
|
+
|
5029
6907
|
@pulumi.input_type
|
5030
6908
|
class VMwareClusterNetworkConfigControlPlaneV2ConfigControlPlaneIpBlockArgs:
|
5031
6909
|
def __init__(__self__, *,
|
@@ -5083,6 +6961,19 @@ class VMwareClusterNetworkConfigControlPlaneV2ConfigControlPlaneIpBlockArgs:
|
|
5083
6961
|
pulumi.set(self, "netmask", value)
|
5084
6962
|
|
5085
6963
|
|
6964
|
+
if not MYPY:
|
6965
|
+
class VMwareClusterNetworkConfigControlPlaneV2ConfigControlPlaneIpBlockIpArgsDict(TypedDict):
|
6966
|
+
hostname: NotRequired[pulumi.Input[str]]
|
6967
|
+
"""
|
6968
|
+
Hostname of the machine. VM's name will be used if this field is empty.
|
6969
|
+
"""
|
6970
|
+
ip: NotRequired[pulumi.Input[str]]
|
6971
|
+
"""
|
6972
|
+
IP could be an IP address (like 1.2.3.4) or a CIDR (like 1.2.3.0/24).
|
6973
|
+
"""
|
6974
|
+
elif False:
|
6975
|
+
VMwareClusterNetworkConfigControlPlaneV2ConfigControlPlaneIpBlockIpArgsDict: TypeAlias = Mapping[str, Any]
|
6976
|
+
|
5086
6977
|
@pulumi.input_type
|
5087
6978
|
class VMwareClusterNetworkConfigControlPlaneV2ConfigControlPlaneIpBlockIpArgs:
|
5088
6979
|
def __init__(__self__, *,
|
@@ -5122,6 +7013,16 @@ class VMwareClusterNetworkConfigControlPlaneV2ConfigControlPlaneIpBlockIpArgs:
|
|
5122
7013
|
pulumi.set(self, "ip", value)
|
5123
7014
|
|
5124
7015
|
|
7016
|
+
if not MYPY:
|
7017
|
+
class VMwareClusterNetworkConfigDhcpIpConfigArgsDict(TypedDict):
|
7018
|
+
enabled: pulumi.Input[bool]
|
7019
|
+
"""
|
7020
|
+
enabled is a flag to mark if DHCP IP allocation is
|
7021
|
+
used for VMware user clusters.
|
7022
|
+
"""
|
7023
|
+
elif False:
|
7024
|
+
VMwareClusterNetworkConfigDhcpIpConfigArgsDict: TypeAlias = Mapping[str, Any]
|
7025
|
+
|
5125
7026
|
@pulumi.input_type
|
5126
7027
|
class VMwareClusterNetworkConfigDhcpIpConfigArgs:
|
5127
7028
|
def __init__(__self__, *,
|
@@ -5139,12 +7040,31 @@ class VMwareClusterNetworkConfigDhcpIpConfigArgs:
|
|
5139
7040
|
enabled is a flag to mark if DHCP IP allocation is
|
5140
7041
|
used for VMware user clusters.
|
5141
7042
|
"""
|
5142
|
-
return pulumi.get(self, "enabled")
|
5143
|
-
|
5144
|
-
@enabled.setter
|
5145
|
-
def enabled(self, value: pulumi.Input[bool]):
|
5146
|
-
pulumi.set(self, "enabled", value)
|
5147
|
-
|
7043
|
+
return pulumi.get(self, "enabled")
|
7044
|
+
|
7045
|
+
@enabled.setter
|
7046
|
+
def enabled(self, value: pulumi.Input[bool]):
|
7047
|
+
pulumi.set(self, "enabled", value)
|
7048
|
+
|
7049
|
+
|
7050
|
+
if not MYPY:
|
7051
|
+
class VMwareClusterNetworkConfigHostConfigArgsDict(TypedDict):
|
7052
|
+
dns_search_domains: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
7053
|
+
"""
|
7054
|
+
DNS search domains.
|
7055
|
+
|
7056
|
+
<a name="nested_control_plane_v2_config"></a>The `control_plane_v2_config` block supports:
|
7057
|
+
"""
|
7058
|
+
dns_servers: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
7059
|
+
"""
|
7060
|
+
DNS servers.
|
7061
|
+
"""
|
7062
|
+
ntp_servers: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
7063
|
+
"""
|
7064
|
+
NTP servers.
|
7065
|
+
"""
|
7066
|
+
elif False:
|
7067
|
+
VMwareClusterNetworkConfigHostConfigArgsDict: TypeAlias = Mapping[str, Any]
|
5148
7068
|
|
5149
7069
|
@pulumi.input_type
|
5150
7070
|
class VMwareClusterNetworkConfigHostConfigArgs:
|
@@ -5205,6 +7125,16 @@ class VMwareClusterNetworkConfigHostConfigArgs:
|
|
5205
7125
|
pulumi.set(self, "ntp_servers", value)
|
5206
7126
|
|
5207
7127
|
|
7128
|
+
if not MYPY:
|
7129
|
+
class VMwareClusterNetworkConfigStaticIpConfigArgsDict(TypedDict):
|
7130
|
+
ip_blocks: pulumi.Input[Sequence[pulumi.Input['VMwareClusterNetworkConfigStaticIpConfigIpBlockArgsDict']]]
|
7131
|
+
"""
|
7132
|
+
Represents the configuration values for static IP allocation to nodes.
|
7133
|
+
Structure is documented below.
|
7134
|
+
"""
|
7135
|
+
elif False:
|
7136
|
+
VMwareClusterNetworkConfigStaticIpConfigArgsDict: TypeAlias = Mapping[str, Any]
|
7137
|
+
|
5208
7138
|
@pulumi.input_type
|
5209
7139
|
class VMwareClusterNetworkConfigStaticIpConfigArgs:
|
5210
7140
|
def __init__(__self__, *,
|
@@ -5229,6 +7159,24 @@ class VMwareClusterNetworkConfigStaticIpConfigArgs:
|
|
5229
7159
|
pulumi.set(self, "ip_blocks", value)
|
5230
7160
|
|
5231
7161
|
|
7162
|
+
if not MYPY:
|
7163
|
+
class VMwareClusterNetworkConfigStaticIpConfigIpBlockArgsDict(TypedDict):
|
7164
|
+
gateway: pulumi.Input[str]
|
7165
|
+
"""
|
7166
|
+
The network gateway used by the VMware User Cluster.
|
7167
|
+
"""
|
7168
|
+
ips: pulumi.Input[Sequence[pulumi.Input['VMwareClusterNetworkConfigStaticIpConfigIpBlockIpArgsDict']]]
|
7169
|
+
"""
|
7170
|
+
The node's network configurations used by the VMware User Cluster.
|
7171
|
+
Structure is documented below.
|
7172
|
+
"""
|
7173
|
+
netmask: pulumi.Input[str]
|
7174
|
+
"""
|
7175
|
+
The netmask used by the VMware User Cluster.
|
7176
|
+
"""
|
7177
|
+
elif False:
|
7178
|
+
VMwareClusterNetworkConfigStaticIpConfigIpBlockArgsDict: TypeAlias = Mapping[str, Any]
|
7179
|
+
|
5232
7180
|
@pulumi.input_type
|
5233
7181
|
class VMwareClusterNetworkConfigStaticIpConfigIpBlockArgs:
|
5234
7182
|
def __init__(__self__, *,
|
@@ -5283,6 +7231,19 @@ class VMwareClusterNetworkConfigStaticIpConfigIpBlockArgs:
|
|
5283
7231
|
pulumi.set(self, "netmask", value)
|
5284
7232
|
|
5285
7233
|
|
7234
|
+
if not MYPY:
|
7235
|
+
class VMwareClusterNetworkConfigStaticIpConfigIpBlockIpArgsDict(TypedDict):
|
7236
|
+
ip: pulumi.Input[str]
|
7237
|
+
"""
|
7238
|
+
IP could be an IP address (like 1.2.3.4) or a CIDR (like 1.2.3.0/24).
|
7239
|
+
"""
|
7240
|
+
hostname: NotRequired[pulumi.Input[str]]
|
7241
|
+
"""
|
7242
|
+
Hostname of the machine. VM's name will be used if this field is empty.
|
7243
|
+
"""
|
7244
|
+
elif False:
|
7245
|
+
VMwareClusterNetworkConfigStaticIpConfigIpBlockIpArgsDict: TypeAlias = Mapping[str, Any]
|
7246
|
+
|
5286
7247
|
@pulumi.input_type
|
5287
7248
|
class VMwareClusterNetworkConfigStaticIpConfigIpBlockIpArgs:
|
5288
7249
|
def __init__(__self__, *,
|
@@ -5321,6 +7282,26 @@ class VMwareClusterNetworkConfigStaticIpConfigIpBlockIpArgs:
|
|
5321
7282
|
pulumi.set(self, "hostname", value)
|
5322
7283
|
|
5323
7284
|
|
7285
|
+
if not MYPY:
|
7286
|
+
class VMwareClusterStatusArgsDict(TypedDict):
|
7287
|
+
conditions: NotRequired[pulumi.Input[Sequence[pulumi.Input['VMwareClusterStatusConditionArgsDict']]]]
|
7288
|
+
"""
|
7289
|
+
(Output)
|
7290
|
+
ResourceConditions provide a standard mechanism for higher-level status reporting from user cluster controller.
|
7291
|
+
Structure is documented below.
|
7292
|
+
"""
|
7293
|
+
error_message: NotRequired[pulumi.Input[str]]
|
7294
|
+
"""
|
7295
|
+
(Output)
|
7296
|
+
Human-friendly representation of the error message from the user cluster
|
7297
|
+
controller. The error message can be temporary as the user cluster
|
7298
|
+
controller creates a cluster or node pool. If the error message persists
|
7299
|
+
for a longer period of time, it can be used to surface error message to
|
7300
|
+
indicate real problems requiring user intervention.
|
7301
|
+
"""
|
7302
|
+
elif False:
|
7303
|
+
VMwareClusterStatusArgsDict: TypeAlias = Mapping[str, Any]
|
7304
|
+
|
5324
7305
|
@pulumi.input_type
|
5325
7306
|
class VMwareClusterStatusArgs:
|
5326
7307
|
def __init__(__self__, *,
|
@@ -5374,6 +7355,37 @@ class VMwareClusterStatusArgs:
|
|
5374
7355
|
pulumi.set(self, "error_message", value)
|
5375
7356
|
|
5376
7357
|
|
7358
|
+
if not MYPY:
|
7359
|
+
class VMwareClusterStatusConditionArgsDict(TypedDict):
|
7360
|
+
last_transition_time: NotRequired[pulumi.Input[str]]
|
7361
|
+
"""
|
7362
|
+
(Output)
|
7363
|
+
Last time the condition transit from one status to another.
|
7364
|
+
"""
|
7365
|
+
message: NotRequired[pulumi.Input[str]]
|
7366
|
+
"""
|
7367
|
+
(Output)
|
7368
|
+
Human-readable message indicating details about last transition.
|
7369
|
+
"""
|
7370
|
+
reason: NotRequired[pulumi.Input[str]]
|
7371
|
+
"""
|
7372
|
+
(Output)
|
7373
|
+
Machine-readable message indicating details about last transition.
|
7374
|
+
"""
|
7375
|
+
state: NotRequired[pulumi.Input[str]]
|
7376
|
+
"""
|
7377
|
+
(Output)
|
7378
|
+
The lifecycle state of the condition.
|
7379
|
+
"""
|
7380
|
+
type: NotRequired[pulumi.Input[str]]
|
7381
|
+
"""
|
7382
|
+
(Output)
|
7383
|
+
Type of the condition.
|
7384
|
+
(e.g., ClusterRunning, NodePoolRunning or ServerSidePreflightReady)
|
7385
|
+
"""
|
7386
|
+
elif False:
|
7387
|
+
VMwareClusterStatusConditionArgsDict: TypeAlias = Mapping[str, Any]
|
7388
|
+
|
5377
7389
|
@pulumi.input_type
|
5378
7390
|
class VMwareClusterStatusConditionArgs:
|
5379
7391
|
def __init__(__self__, *,
|
@@ -5473,6 +7485,16 @@ class VMwareClusterStatusConditionArgs:
|
|
5473
7485
|
pulumi.set(self, "type", value)
|
5474
7486
|
|
5475
7487
|
|
7488
|
+
if not MYPY:
|
7489
|
+
class VMwareClusterStorageArgsDict(TypedDict):
|
7490
|
+
vsphere_csi_disabled: pulumi.Input[bool]
|
7491
|
+
"""
|
7492
|
+
Whether or not to deploy vSphere CSI components in the VMware User Cluster.
|
7493
|
+
Enabled by default.
|
7494
|
+
"""
|
7495
|
+
elif False:
|
7496
|
+
VMwareClusterStorageArgsDict: TypeAlias = Mapping[str, Any]
|
7497
|
+
|
5476
7498
|
@pulumi.input_type
|
5477
7499
|
class VMwareClusterStorageArgs:
|
5478
7500
|
def __init__(__self__, *,
|
@@ -5497,6 +7519,15 @@ class VMwareClusterStorageArgs:
|
|
5497
7519
|
pulumi.set(self, "vsphere_csi_disabled", value)
|
5498
7520
|
|
5499
7521
|
|
7522
|
+
if not MYPY:
|
7523
|
+
class VMwareClusterUpgradePolicyArgsDict(TypedDict):
|
7524
|
+
control_plane_only: NotRequired[pulumi.Input[bool]]
|
7525
|
+
"""
|
7526
|
+
Controls whether the upgrade applies to the control plane only.
|
7527
|
+
"""
|
7528
|
+
elif False:
|
7529
|
+
VMwareClusterUpgradePolicyArgsDict: TypeAlias = Mapping[str, Any]
|
7530
|
+
|
5500
7531
|
@pulumi.input_type
|
5501
7532
|
class VMwareClusterUpgradePolicyArgs:
|
5502
7533
|
def __init__(__self__, *,
|
@@ -5520,6 +7551,27 @@ class VMwareClusterUpgradePolicyArgs:
|
|
5520
7551
|
pulumi.set(self, "control_plane_only", value)
|
5521
7552
|
|
5522
7553
|
|
7554
|
+
if not MYPY:
|
7555
|
+
class VMwareClusterValidationCheckArgsDict(TypedDict):
|
7556
|
+
options: NotRequired[pulumi.Input[str]]
|
7557
|
+
"""
|
7558
|
+
(Output)
|
7559
|
+
Options used for the validation check.
|
7560
|
+
"""
|
7561
|
+
scenario: NotRequired[pulumi.Input[str]]
|
7562
|
+
"""
|
7563
|
+
(Output)
|
7564
|
+
The scenario when the preflight checks were run..
|
7565
|
+
"""
|
7566
|
+
statuses: NotRequired[pulumi.Input[Sequence[pulumi.Input['VMwareClusterValidationCheckStatusArgsDict']]]]
|
7567
|
+
"""
|
7568
|
+
(Output)
|
7569
|
+
Specifies the detailed validation check status
|
7570
|
+
Structure is documented below.
|
7571
|
+
"""
|
7572
|
+
elif False:
|
7573
|
+
VMwareClusterValidationCheckArgsDict: TypeAlias = Mapping[str, Any]
|
7574
|
+
|
5523
7575
|
@pulumi.input_type
|
5524
7576
|
class VMwareClusterValidationCheckArgs:
|
5525
7577
|
def __init__(__self__, *,
|
@@ -5583,6 +7635,17 @@ class VMwareClusterValidationCheckArgs:
|
|
5583
7635
|
pulumi.set(self, "statuses", value)
|
5584
7636
|
|
5585
7637
|
|
7638
|
+
if not MYPY:
|
7639
|
+
class VMwareClusterValidationCheckStatusArgsDict(TypedDict):
|
7640
|
+
results: NotRequired[pulumi.Input[Sequence[pulumi.Input['VMwareClusterValidationCheckStatusResultArgsDict']]]]
|
7641
|
+
"""
|
7642
|
+
(Output)
|
7643
|
+
Individual checks which failed as part of the Preflight check execution.
|
7644
|
+
Structure is documented below.
|
7645
|
+
"""
|
7646
|
+
elif False:
|
7647
|
+
VMwareClusterValidationCheckStatusArgsDict: TypeAlias = Mapping[str, Any]
|
7648
|
+
|
5586
7649
|
@pulumi.input_type
|
5587
7650
|
class VMwareClusterValidationCheckStatusArgs:
|
5588
7651
|
def __init__(__self__, *,
|
@@ -5610,6 +7673,36 @@ class VMwareClusterValidationCheckStatusArgs:
|
|
5610
7673
|
pulumi.set(self, "results", value)
|
5611
7674
|
|
5612
7675
|
|
7676
|
+
if not MYPY:
|
7677
|
+
class VMwareClusterValidationCheckStatusResultArgsDict(TypedDict):
|
7678
|
+
category: NotRequired[pulumi.Input[str]]
|
7679
|
+
"""
|
7680
|
+
(Output)
|
7681
|
+
The category of the validation.
|
7682
|
+
"""
|
7683
|
+
description: NotRequired[pulumi.Input[str]]
|
7684
|
+
"""
|
7685
|
+
(Output)
|
7686
|
+
The description of the validation check.
|
7687
|
+
"""
|
7688
|
+
details: NotRequired[pulumi.Input[str]]
|
7689
|
+
"""
|
7690
|
+
(Output)
|
7691
|
+
Detailed failure information, which might be unformatted.
|
7692
|
+
"""
|
7693
|
+
options: NotRequired[pulumi.Input[str]]
|
7694
|
+
"""
|
7695
|
+
(Output)
|
7696
|
+
Options used for the validation check.
|
7697
|
+
"""
|
7698
|
+
reason: NotRequired[pulumi.Input[str]]
|
7699
|
+
"""
|
7700
|
+
(Output)
|
7701
|
+
Machine-readable message indicating details about last transition.
|
7702
|
+
"""
|
7703
|
+
elif False:
|
7704
|
+
VMwareClusterValidationCheckStatusResultArgsDict: TypeAlias = Mapping[str, Any]
|
7705
|
+
|
5613
7706
|
@pulumi.input_type
|
5614
7707
|
class VMwareClusterValidationCheckStatusResultArgs:
|
5615
7708
|
def __init__(__self__, *,
|
@@ -5707,6 +7800,44 @@ class VMwareClusterValidationCheckStatusResultArgs:
|
|
5707
7800
|
pulumi.set(self, "reason", value)
|
5708
7801
|
|
5709
7802
|
|
7803
|
+
if not MYPY:
|
7804
|
+
class VMwareClusterVcenterArgsDict(TypedDict):
|
7805
|
+
address: NotRequired[pulumi.Input[str]]
|
7806
|
+
"""
|
7807
|
+
(Output)
|
7808
|
+
The vCenter IP address.
|
7809
|
+
"""
|
7810
|
+
ca_cert_data: NotRequired[pulumi.Input[str]]
|
7811
|
+
"""
|
7812
|
+
Contains the vCenter CA certificate public key for SSL verification.
|
7813
|
+
"""
|
7814
|
+
cluster: NotRequired[pulumi.Input[str]]
|
7815
|
+
"""
|
7816
|
+
The name of the vCenter cluster for the user cluster.
|
7817
|
+
"""
|
7818
|
+
datacenter: NotRequired[pulumi.Input[str]]
|
7819
|
+
"""
|
7820
|
+
The name of the vCenter datacenter for the user cluster.
|
7821
|
+
"""
|
7822
|
+
datastore: NotRequired[pulumi.Input[str]]
|
7823
|
+
"""
|
7824
|
+
The name of the vCenter datastore for the user cluster.
|
7825
|
+
"""
|
7826
|
+
folder: NotRequired[pulumi.Input[str]]
|
7827
|
+
"""
|
7828
|
+
The name of the vCenter folder for the user cluster.
|
7829
|
+
"""
|
7830
|
+
resource_pool: NotRequired[pulumi.Input[str]]
|
7831
|
+
"""
|
7832
|
+
The name of the vCenter resource pool for the user cluster.
|
7833
|
+
"""
|
7834
|
+
storage_policy_name: NotRequired[pulumi.Input[str]]
|
7835
|
+
"""
|
7836
|
+
The name of the vCenter storage policy for the user cluster.
|
7837
|
+
"""
|
7838
|
+
elif False:
|
7839
|
+
VMwareClusterVcenterArgsDict: TypeAlias = Mapping[str, Any]
|
7840
|
+
|
5710
7841
|
@pulumi.input_type
|
5711
7842
|
class VMwareClusterVcenterArgs:
|
5712
7843
|
def __init__(__self__, *,
|
@@ -5844,6 +7975,60 @@ class VMwareClusterVcenterArgs:
|
|
5844
7975
|
pulumi.set(self, "storage_policy_name", value)
|
5845
7976
|
|
5846
7977
|
|
7978
|
+
if not MYPY:
|
7979
|
+
class VMwareNodePoolConfigArgsDict(TypedDict):
|
7980
|
+
image_type: pulumi.Input[str]
|
7981
|
+
"""
|
7982
|
+
The OS image to be used for each node in a node pool.
|
7983
|
+
Currently `cos`, `ubuntu`, `ubuntu_containerd` and `windows` are supported.
|
7984
|
+
"""
|
7985
|
+
boot_disk_size_gb: NotRequired[pulumi.Input[int]]
|
7986
|
+
"""
|
7987
|
+
VMware disk size to be used during creation.
|
7988
|
+
"""
|
7989
|
+
cpus: NotRequired[pulumi.Input[int]]
|
7990
|
+
"""
|
7991
|
+
The number of CPUs for each node in the node pool.
|
7992
|
+
"""
|
7993
|
+
enable_load_balancer: NotRequired[pulumi.Input[bool]]
|
7994
|
+
"""
|
7995
|
+
Allow node pool traffic to be load balanced. Only works for clusters with
|
7996
|
+
MetalLB load balancers.
|
7997
|
+
"""
|
7998
|
+
image: NotRequired[pulumi.Input[str]]
|
7999
|
+
"""
|
8000
|
+
The OS image name in vCenter, only valid when using Windows.
|
8001
|
+
"""
|
8002
|
+
labels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
8003
|
+
"""
|
8004
|
+
The map of Kubernetes labels (key/value pairs) to be applied to each node.
|
8005
|
+
These will added in addition to any default label(s) that
|
8006
|
+
Kubernetes may apply to the node.
|
8007
|
+
In case of conflict in label keys, the applied set may differ depending on
|
8008
|
+
the Kubernetes version -- it's best to assume the behavior is undefined
|
8009
|
+
and conflicts should be avoided.
|
8010
|
+
"""
|
8011
|
+
memory_mb: NotRequired[pulumi.Input[int]]
|
8012
|
+
"""
|
8013
|
+
The megabytes of memory for each node in the node pool.
|
8014
|
+
"""
|
8015
|
+
replicas: NotRequired[pulumi.Input[int]]
|
8016
|
+
"""
|
8017
|
+
The number of nodes in the node pool.
|
8018
|
+
"""
|
8019
|
+
taints: NotRequired[pulumi.Input[Sequence[pulumi.Input['VMwareNodePoolConfigTaintArgsDict']]]]
|
8020
|
+
"""
|
8021
|
+
The initial taints assigned to nodes of this node pool.
|
8022
|
+
Structure is documented below.
|
8023
|
+
"""
|
8024
|
+
vsphere_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input['VMwareNodePoolConfigVsphereConfigArgsDict']]]]
|
8025
|
+
"""
|
8026
|
+
Specifies the vSphere config for node pool.
|
8027
|
+
Structure is documented below.
|
8028
|
+
"""
|
8029
|
+
elif False:
|
8030
|
+
VMwareNodePoolConfigArgsDict: TypeAlias = Mapping[str, Any]
|
8031
|
+
|
5847
8032
|
@pulumi.input_type
|
5848
8033
|
class VMwareNodePoolConfigArgs:
|
5849
8034
|
def __init__(__self__, *,
|
@@ -6028,6 +8213,24 @@ class VMwareNodePoolConfigArgs:
|
|
6028
8213
|
pulumi.set(self, "vsphere_configs", value)
|
6029
8214
|
|
6030
8215
|
|
8216
|
+
if not MYPY:
|
8217
|
+
class VMwareNodePoolConfigTaintArgsDict(TypedDict):
|
8218
|
+
key: pulumi.Input[str]
|
8219
|
+
"""
|
8220
|
+
Key associated with the effect.
|
8221
|
+
"""
|
8222
|
+
value: pulumi.Input[str]
|
8223
|
+
"""
|
8224
|
+
Value associated with the effect.
|
8225
|
+
"""
|
8226
|
+
effect: NotRequired[pulumi.Input[str]]
|
8227
|
+
"""
|
8228
|
+
Available taint effects.
|
8229
|
+
Possible values are: `EFFECT_UNSPECIFIED`, `NO_SCHEDULE`, `PREFER_NO_SCHEDULE`, `NO_EXECUTE`.
|
8230
|
+
"""
|
8231
|
+
elif False:
|
8232
|
+
VMwareNodePoolConfigTaintArgsDict: TypeAlias = Mapping[str, Any]
|
8233
|
+
|
6031
8234
|
@pulumi.input_type
|
6032
8235
|
class VMwareNodePoolConfigTaintArgs:
|
6033
8236
|
def __init__(__self__, *,
|
@@ -6083,6 +8286,24 @@ class VMwareNodePoolConfigTaintArgs:
|
|
6083
8286
|
pulumi.set(self, "effect", value)
|
6084
8287
|
|
6085
8288
|
|
8289
|
+
if not MYPY:
|
8290
|
+
class VMwareNodePoolConfigVsphereConfigArgsDict(TypedDict):
|
8291
|
+
datastore: NotRequired[pulumi.Input[str]]
|
8292
|
+
"""
|
8293
|
+
The name of the vCenter datastore. Inherited from the user cluster.
|
8294
|
+
"""
|
8295
|
+
host_groups: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
8296
|
+
"""
|
8297
|
+
Vsphere host groups to apply to all VMs in the node pool
|
8298
|
+
"""
|
8299
|
+
tags: NotRequired[pulumi.Input[Sequence[pulumi.Input['VMwareNodePoolConfigVsphereConfigTagArgsDict']]]]
|
8300
|
+
"""
|
8301
|
+
Tags to apply to VMs.
|
8302
|
+
Structure is documented below.
|
8303
|
+
"""
|
8304
|
+
elif False:
|
8305
|
+
VMwareNodePoolConfigVsphereConfigArgsDict: TypeAlias = Mapping[str, Any]
|
8306
|
+
|
6086
8307
|
@pulumi.input_type
|
6087
8308
|
class VMwareNodePoolConfigVsphereConfigArgs:
|
6088
8309
|
def __init__(__self__, *,
|
@@ -6140,6 +8361,21 @@ class VMwareNodePoolConfigVsphereConfigArgs:
|
|
6140
8361
|
pulumi.set(self, "tags", value)
|
6141
8362
|
|
6142
8363
|
|
8364
|
+
if not MYPY:
|
8365
|
+
class VMwareNodePoolConfigVsphereConfigTagArgsDict(TypedDict):
|
8366
|
+
category: NotRequired[pulumi.Input[str]]
|
8367
|
+
"""
|
8368
|
+
The Vsphere tag category.
|
8369
|
+
"""
|
8370
|
+
tag: NotRequired[pulumi.Input[str]]
|
8371
|
+
"""
|
8372
|
+
The Vsphere tag name.
|
8373
|
+
|
8374
|
+
- - -
|
8375
|
+
"""
|
8376
|
+
elif False:
|
8377
|
+
VMwareNodePoolConfigVsphereConfigTagArgsDict: TypeAlias = Mapping[str, Any]
|
8378
|
+
|
6143
8379
|
@pulumi.input_type
|
6144
8380
|
class VMwareNodePoolConfigVsphereConfigTagArgs:
|
6145
8381
|
def __init__(__self__, *,
|
@@ -6183,6 +8419,19 @@ class VMwareNodePoolConfigVsphereConfigTagArgs:
|
|
6183
8419
|
pulumi.set(self, "tag", value)
|
6184
8420
|
|
6185
8421
|
|
8422
|
+
if not MYPY:
|
8423
|
+
class VMwareNodePoolNodePoolAutoscalingArgsDict(TypedDict):
|
8424
|
+
max_replicas: pulumi.Input[int]
|
8425
|
+
"""
|
8426
|
+
Maximum number of replicas in the NodePool.
|
8427
|
+
"""
|
8428
|
+
min_replicas: pulumi.Input[int]
|
8429
|
+
"""
|
8430
|
+
Minimum number of replicas in the NodePool.
|
8431
|
+
"""
|
8432
|
+
elif False:
|
8433
|
+
VMwareNodePoolNodePoolAutoscalingArgsDict: TypeAlias = Mapping[str, Any]
|
8434
|
+
|
6186
8435
|
@pulumi.input_type
|
6187
8436
|
class VMwareNodePoolNodePoolAutoscalingArgs:
|
6188
8437
|
def __init__(__self__, *,
|
@@ -6220,6 +8469,26 @@ class VMwareNodePoolNodePoolAutoscalingArgs:
|
|
6220
8469
|
pulumi.set(self, "min_replicas", value)
|
6221
8470
|
|
6222
8471
|
|
8472
|
+
if not MYPY:
|
8473
|
+
class VMwareNodePoolStatusArgsDict(TypedDict):
|
8474
|
+
conditions: NotRequired[pulumi.Input[Sequence[pulumi.Input['VMwareNodePoolStatusConditionArgsDict']]]]
|
8475
|
+
"""
|
8476
|
+
(Output)
|
8477
|
+
ResourceConditions provide a standard mechanism for higher-level status reporting from user cluster controller.
|
8478
|
+
Structure is documented below.
|
8479
|
+
"""
|
8480
|
+
error_message: NotRequired[pulumi.Input[str]]
|
8481
|
+
"""
|
8482
|
+
(Output)
|
8483
|
+
Human-friendly representation of the error message from the user cluster
|
8484
|
+
controller. The error message can be temporary as the user cluster
|
8485
|
+
controller creates a cluster or node pool. If the error message persists
|
8486
|
+
for a longer period of time, it can be used to surface error message to
|
8487
|
+
indicate real problems requiring user intervention.
|
8488
|
+
"""
|
8489
|
+
elif False:
|
8490
|
+
VMwareNodePoolStatusArgsDict: TypeAlias = Mapping[str, Any]
|
8491
|
+
|
6223
8492
|
@pulumi.input_type
|
6224
8493
|
class VMwareNodePoolStatusArgs:
|
6225
8494
|
def __init__(__self__, *,
|
@@ -6273,6 +8542,37 @@ class VMwareNodePoolStatusArgs:
|
|
6273
8542
|
pulumi.set(self, "error_message", value)
|
6274
8543
|
|
6275
8544
|
|
8545
|
+
if not MYPY:
|
8546
|
+
class VMwareNodePoolStatusConditionArgsDict(TypedDict):
|
8547
|
+
last_transition_time: NotRequired[pulumi.Input[str]]
|
8548
|
+
"""
|
8549
|
+
(Output)
|
8550
|
+
Last time the condition transit from one status to another.
|
8551
|
+
"""
|
8552
|
+
message: NotRequired[pulumi.Input[str]]
|
8553
|
+
"""
|
8554
|
+
(Output)
|
8555
|
+
Human-readable message indicating details about last transition.
|
8556
|
+
"""
|
8557
|
+
reason: NotRequired[pulumi.Input[str]]
|
8558
|
+
"""
|
8559
|
+
(Output)
|
8560
|
+
Machine-readable message indicating details about last transition.
|
8561
|
+
"""
|
8562
|
+
state: NotRequired[pulumi.Input[str]]
|
8563
|
+
"""
|
8564
|
+
(Output)
|
8565
|
+
The lifecycle state of the condition.
|
8566
|
+
"""
|
8567
|
+
type: NotRequired[pulumi.Input[str]]
|
8568
|
+
"""
|
8569
|
+
(Output)
|
8570
|
+
Type of the condition.
|
8571
|
+
(e.g., ClusterRunning, NodePoolRunning or ServerSidePreflightReady)
|
8572
|
+
"""
|
8573
|
+
elif False:
|
8574
|
+
VMwareNodePoolStatusConditionArgsDict: TypeAlias = Mapping[str, Any]
|
8575
|
+
|
6276
8576
|
@pulumi.input_type
|
6277
8577
|
class VMwareNodePoolStatusConditionArgs:
|
6278
8578
|
def __init__(__self__, *,
|