pulumiverse-scaleway 1.30.0a1750140900__py3-none-any.whl → 1.30.0a1752168858__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.
- pulumiverse_scaleway/__init__.py +11 -1
- pulumiverse_scaleway/_inputs.py +2252 -2143
- pulumiverse_scaleway/_utilities.py +1 -1
- pulumiverse_scaleway/account/__init__.py +2 -1
- pulumiverse_scaleway/account/get_availability_zones.py +9 -8
- pulumiverse_scaleway/account/get_project.py +21 -20
- pulumiverse_scaleway/account/get_projects.py +28 -21
- pulumiverse_scaleway/account/get_ssh_key.py +24 -23
- pulumiverse_scaleway/account/outputs.py +20 -19
- pulumiverse_scaleway/account/project.py +59 -57
- pulumiverse_scaleway/account/ssh_key.py +87 -85
- pulumiverse_scaleway/account_project.py +59 -57
- pulumiverse_scaleway/account_ssh_key.py +87 -85
- pulumiverse_scaleway/apple_silicon_server.py +204 -155
- pulumiverse_scaleway/applesilicon/__init__.py +2 -1
- pulumiverse_scaleway/applesilicon/_inputs.py +89 -34
- pulumiverse_scaleway/applesilicon/outputs.py +54 -21
- pulumiverse_scaleway/applesilicon/server.py +204 -155
- pulumiverse_scaleway/baremetal_server.py +262 -260
- pulumiverse_scaleway/billing/__init__.py +2 -1
- pulumiverse_scaleway/billing/get_consumptions.py +10 -9
- pulumiverse_scaleway/billing/get_invoices.py +19 -18
- pulumiverse_scaleway/billing/outputs.py +73 -72
- pulumiverse_scaleway/block/__init__.py +2 -1
- pulumiverse_scaleway/block/_inputs.py +12 -11
- pulumiverse_scaleway/block/get_snapshot.py +29 -28
- pulumiverse_scaleway/block/get_volume.py +28 -27
- pulumiverse_scaleway/block/outputs.py +14 -13
- pulumiverse_scaleway/block/snapshot.py +73 -71
- pulumiverse_scaleway/block/volume.py +115 -113
- pulumiverse_scaleway/block_snapshot.py +73 -71
- pulumiverse_scaleway/block_volume.py +115 -113
- pulumiverse_scaleway/cockpit.py +38 -36
- pulumiverse_scaleway/cockpit_alert_manager.py +52 -50
- pulumiverse_scaleway/cockpit_grafana_user.py +59 -57
- pulumiverse_scaleway/cockpit_source.py +115 -113
- pulumiverse_scaleway/cockpit_token.py +66 -64
- pulumiverse_scaleway/config/__init__.py +2 -1
- pulumiverse_scaleway/config/__init__.pyi +2 -1
- pulumiverse_scaleway/config/vars.py +2 -1
- pulumiverse_scaleway/container.py +573 -343
- pulumiverse_scaleway/container_cron.py +80 -78
- pulumiverse_scaleway/container_domain.py +52 -50
- pulumiverse_scaleway/container_namespace.py +211 -140
- pulumiverse_scaleway/container_token.py +80 -78
- pulumiverse_scaleway/container_trigger.py +59 -57
- pulumiverse_scaleway/containers/__init__.py +2 -1
- pulumiverse_scaleway/containers/_inputs.py +72 -71
- pulumiverse_scaleway/containers/container.py +573 -343
- pulumiverse_scaleway/containers/cron.py +80 -78
- pulumiverse_scaleway/containers/domain.py +52 -50
- pulumiverse_scaleway/containers/get_container.py +87 -42
- pulumiverse_scaleway/containers/get_namespace.py +43 -31
- pulumiverse_scaleway/containers/namespace.py +211 -140
- pulumiverse_scaleway/containers/outputs.py +62 -61
- pulumiverse_scaleway/containers/token.py +80 -78
- pulumiverse_scaleway/containers/trigger.py +59 -57
- pulumiverse_scaleway/database.py +66 -64
- pulumiverse_scaleway/database_acl.py +31 -29
- pulumiverse_scaleway/database_backup.py +101 -99
- pulumiverse_scaleway/database_instance.py +297 -295
- pulumiverse_scaleway/database_privilege.py +73 -71
- pulumiverse_scaleway/database_read_replica.py +45 -43
- pulumiverse_scaleway/database_user.py +73 -71
- pulumiverse_scaleway/databases/__init__.py +2 -1
- pulumiverse_scaleway/databases/_inputs.py +191 -190
- pulumiverse_scaleway/databases/acl.py +31 -29
- pulumiverse_scaleway/databases/database.py +66 -64
- pulumiverse_scaleway/databases/database_backup.py +101 -99
- pulumiverse_scaleway/databases/get_acl.py +13 -12
- pulumiverse_scaleway/databases/get_database.py +19 -18
- pulumiverse_scaleway/databases/get_database_backup.py +34 -33
- pulumiverse_scaleway/databases/get_instance.py +43 -42
- pulumiverse_scaleway/databases/get_privilege.py +24 -23
- pulumiverse_scaleway/databases/instance.py +297 -295
- pulumiverse_scaleway/databases/outputs.py +188 -187
- pulumiverse_scaleway/databases/privilege.py +73 -71
- pulumiverse_scaleway/databases/read_replica.py +45 -43
- pulumiverse_scaleway/databases/serverless_database.py +80 -78
- pulumiverse_scaleway/databases/snapshot.py +101 -99
- pulumiverse_scaleway/databases/user.py +73 -71
- pulumiverse_scaleway/domain/__init__.py +2 -1
- pulumiverse_scaleway/domain/_inputs.py +531 -530
- pulumiverse_scaleway/domain/get_record.py +38 -37
- pulumiverse_scaleway/domain/get_zone.py +24 -23
- pulumiverse_scaleway/domain/outputs.py +358 -357
- pulumiverse_scaleway/domain/record.py +129 -127
- pulumiverse_scaleway/domain/registration.py +94 -92
- pulumiverse_scaleway/domain/zone.py +87 -85
- pulumiverse_scaleway/domain_record.py +129 -127
- pulumiverse_scaleway/domain_zone.py +87 -85
- pulumiverse_scaleway/edge_services_backend_stage.py +45 -43
- pulumiverse_scaleway/edge_services_cache_stage.py +115 -113
- pulumiverse_scaleway/edge_services_dns_stage.py +108 -106
- pulumiverse_scaleway/edge_services_head_stage.py +31 -29
- pulumiverse_scaleway/edge_services_pipeline.py +66 -64
- pulumiverse_scaleway/edge_services_plan.py +31 -29
- pulumiverse_scaleway/edge_services_route_stage.py +59 -57
- pulumiverse_scaleway/edge_services_tls_stage.py +122 -120
- pulumiverse_scaleway/edge_services_waf_stage.py +87 -85
- pulumiverse_scaleway/elasticmetal/__init__.py +2 -1
- pulumiverse_scaleway/elasticmetal/_inputs.py +123 -122
- pulumiverse_scaleway/elasticmetal/get_ip.py +56 -39
- pulumiverse_scaleway/elasticmetal/get_ips.py +24 -23
- pulumiverse_scaleway/elasticmetal/get_offer.py +29 -28
- pulumiverse_scaleway/elasticmetal/get_option.py +19 -18
- pulumiverse_scaleway/elasticmetal/get_os.py +23 -22
- pulumiverse_scaleway/elasticmetal/get_partition_schema.py +29 -28
- pulumiverse_scaleway/elasticmetal/get_server.py +39 -38
- pulumiverse_scaleway/elasticmetal/ip.py +139 -137
- pulumiverse_scaleway/elasticmetal/ip_mac_address.py +87 -85
- pulumiverse_scaleway/elasticmetal/outputs.py +233 -232
- pulumiverse_scaleway/elasticmetal/server.py +262 -260
- pulumiverse_scaleway/file_filesystem.py +552 -0
- pulumiverse_scaleway/flexible_ip.py +139 -137
- pulumiverse_scaleway/flexible_ip_mac_address.py +87 -85
- pulumiverse_scaleway/function.py +394 -284
- pulumiverse_scaleway/function_cron.py +80 -78
- pulumiverse_scaleway/function_domain.py +52 -50
- pulumiverse_scaleway/function_namespace.py +197 -126
- pulumiverse_scaleway/function_token.py +80 -78
- pulumiverse_scaleway/function_trigger.py +59 -57
- pulumiverse_scaleway/functions/__init__.py +2 -1
- pulumiverse_scaleway/functions/_inputs.py +42 -41
- pulumiverse_scaleway/functions/cron.py +80 -78
- pulumiverse_scaleway/functions/domain.py +52 -50
- pulumiverse_scaleway/functions/function.py +394 -284
- pulumiverse_scaleway/functions/get_function.py +69 -46
- pulumiverse_scaleway/functions/get_namespace.py +42 -30
- pulumiverse_scaleway/functions/namespace.py +197 -126
- pulumiverse_scaleway/functions/outputs.py +26 -25
- pulumiverse_scaleway/functions/token.py +80 -78
- pulumiverse_scaleway/functions/trigger.py +59 -57
- pulumiverse_scaleway/get_account_project.py +21 -20
- pulumiverse_scaleway/get_account_ssh_key.py +24 -23
- pulumiverse_scaleway/get_availability_zones.py +9 -8
- pulumiverse_scaleway/get_baremetal_offer.py +29 -28
- pulumiverse_scaleway/get_baremetal_option.py +19 -18
- pulumiverse_scaleway/get_baremetal_os.py +23 -22
- pulumiverse_scaleway/get_baremetal_server.py +39 -38
- pulumiverse_scaleway/get_billing_consumptions.py +10 -9
- pulumiverse_scaleway/get_billing_invoices.py +19 -18
- pulumiverse_scaleway/get_block_snapshot.py +29 -28
- pulumiverse_scaleway/get_block_volume.py +28 -27
- pulumiverse_scaleway/get_cockpit.py +10 -9
- pulumiverse_scaleway/get_cockpit_source.py +33 -32
- pulumiverse_scaleway/get_config.py +13 -12
- pulumiverse_scaleway/get_container.py +87 -42
- pulumiverse_scaleway/get_container_namespace.py +43 -31
- pulumiverse_scaleway/get_database.py +19 -18
- pulumiverse_scaleway/get_database_acl.py +13 -12
- pulumiverse_scaleway/get_database_backup.py +34 -33
- pulumiverse_scaleway/get_database_instance.py +43 -42
- pulumiverse_scaleway/get_database_privilege.py +24 -23
- pulumiverse_scaleway/get_domain_record.py +38 -37
- pulumiverse_scaleway/get_domain_zone.py +24 -23
- pulumiverse_scaleway/get_flexible_ip.py +56 -39
- pulumiverse_scaleway/get_flexible_ips.py +24 -23
- pulumiverse_scaleway/get_function.py +69 -46
- pulumiverse_scaleway/get_function_namespace.py +42 -30
- pulumiverse_scaleway/get_iam_api_key.py +17 -16
- pulumiverse_scaleway/get_iam_application.py +23 -22
- pulumiverse_scaleway/get_iam_group.py +25 -24
- pulumiverse_scaleway/get_iam_ssh_key.py +24 -23
- pulumiverse_scaleway/get_iam_user.py +23 -22
- pulumiverse_scaleway/get_instance_image.py +42 -41
- pulumiverse_scaleway/get_instance_ip.py +20 -19
- pulumiverse_scaleway/get_instance_placement_group.py +28 -27
- pulumiverse_scaleway/get_instance_private_nic.py +31 -30
- pulumiverse_scaleway/get_instance_security_group.py +31 -30
- pulumiverse_scaleway/get_instance_server.py +59 -47
- pulumiverse_scaleway/get_instance_servers.py +24 -23
- pulumiverse_scaleway/get_instance_snapshot.py +29 -28
- pulumiverse_scaleway/get_instance_volume.py +30 -29
- pulumiverse_scaleway/get_iot_device.py +31 -30
- pulumiverse_scaleway/get_iot_hub.py +39 -38
- pulumiverse_scaleway/get_ipam_ip.py +51 -50
- pulumiverse_scaleway/get_ipam_ips.py +44 -43
- pulumiverse_scaleway/get_k8s_version.py +16 -15
- pulumiverse_scaleway/get_kubernetes_cluster.py +39 -38
- pulumiverse_scaleway/get_kubernetes_node_pool.py +47 -46
- pulumiverse_scaleway/get_lb_acls.py +22 -21
- pulumiverse_scaleway/get_lb_backend.py +43 -42
- pulumiverse_scaleway/get_lb_backends.py +22 -21
- pulumiverse_scaleway/get_lb_frontend.py +26 -25
- pulumiverse_scaleway/get_lb_frontends.py +22 -21
- pulumiverse_scaleway/get_lb_ips.py +29 -28
- pulumiverse_scaleway/get_lb_route.py +16 -15
- pulumiverse_scaleway/get_lb_routes.py +17 -16
- pulumiverse_scaleway/get_lbs.py +24 -23
- pulumiverse_scaleway/get_loadbalancer.py +36 -35
- pulumiverse_scaleway/get_loadbalancer_certificate.py +24 -23
- pulumiverse_scaleway/get_loadbalancer_ip.py +29 -28
- pulumiverse_scaleway/get_marketplace_image.py +23 -22
- pulumiverse_scaleway/get_mnq_sns.py +14 -13
- pulumiverse_scaleway/get_mnq_sqs.py +14 -13
- pulumiverse_scaleway/get_mongo_db_instance.py +35 -34
- pulumiverse_scaleway/get_object_bucket.py +22 -21
- pulumiverse_scaleway/get_object_bucket_policy.py +17 -16
- pulumiverse_scaleway/get_redis_cluster.py +34 -33
- pulumiverse_scaleway/get_registry_image.py +37 -36
- pulumiverse_scaleway/get_registry_image_tag.py +33 -32
- pulumiverse_scaleway/get_registry_namespace.py +27 -26
- pulumiverse_scaleway/get_secret.py +41 -40
- pulumiverse_scaleway/get_secret_version.py +34 -33
- pulumiverse_scaleway/get_tem_domain.py +43 -42
- pulumiverse_scaleway/get_vpc.py +35 -34
- pulumiverse_scaleway/get_vpc_gateway_network.py +28 -27
- pulumiverse_scaleway/get_vpc_private_network.py +32 -31
- pulumiverse_scaleway/get_vpc_public_gateway.py +36 -35
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +24 -23
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +33 -32
- pulumiverse_scaleway/get_vpc_public_gateway_ip.py +14 -13
- pulumiverse_scaleway/get_vpc_public_pat_rule.py +21 -20
- pulumiverse_scaleway/get_vpc_routes.py +38 -37
- pulumiverse_scaleway/get_vpcs.py +24 -23
- pulumiverse_scaleway/get_web_host_offer.py +25 -24
- pulumiverse_scaleway/get_webhosting.py +36 -35
- pulumiverse_scaleway/hosting/__init__.py +2 -1
- pulumiverse_scaleway/hosting/_inputs.py +61 -60
- pulumiverse_scaleway/hosting/get_hosting.py +36 -35
- pulumiverse_scaleway/hosting/get_offer.py +25 -24
- pulumiverse_scaleway/hosting/hosting.py +164 -162
- pulumiverse_scaleway/hosting/outputs.py +139 -138
- pulumiverse_scaleway/iam/__init__.py +2 -1
- pulumiverse_scaleway/iam/_inputs.py +22 -21
- pulumiverse_scaleway/iam/api_key.py +115 -113
- pulumiverse_scaleway/iam/application.py +80 -78
- pulumiverse_scaleway/iam/get_api_key.py +17 -16
- pulumiverse_scaleway/iam/get_application.py +23 -22
- pulumiverse_scaleway/iam/get_group.py +25 -24
- pulumiverse_scaleway/iam/get_ssh_key.py +24 -23
- pulumiverse_scaleway/iam/get_user.py +23 -22
- pulumiverse_scaleway/iam/group.py +115 -113
- pulumiverse_scaleway/iam/group_membership.py +45 -43
- pulumiverse_scaleway/iam/outputs.py +14 -13
- pulumiverse_scaleway/iam/policy.py +136 -134
- pulumiverse_scaleway/iam/ssh_key.py +87 -85
- pulumiverse_scaleway/iam/user.py +284 -273
- pulumiverse_scaleway/iam_api_key.py +115 -113
- pulumiverse_scaleway/iam_application.py +80 -78
- pulumiverse_scaleway/iam_group.py +115 -113
- pulumiverse_scaleway/iam_group_membership.py +45 -43
- pulumiverse_scaleway/iam_policy.py +136 -134
- pulumiverse_scaleway/iam_ssh_key.py +87 -85
- pulumiverse_scaleway/iam_user.py +284 -273
- pulumiverse_scaleway/inference/__init__.py +2 -1
- pulumiverse_scaleway/inference/_inputs.py +116 -61
- pulumiverse_scaleway/inference/deployment.py +225 -176
- pulumiverse_scaleway/inference/get_model.py +27 -26
- pulumiverse_scaleway/inference/model.py +129 -127
- pulumiverse_scaleway/inference/outputs.py +82 -49
- pulumiverse_scaleway/inference_deployment.py +225 -176
- pulumiverse_scaleway/instance/__init__.py +2 -1
- pulumiverse_scaleway/instance/_inputs.py +296 -295
- pulumiverse_scaleway/instance/get_image.py +42 -41
- pulumiverse_scaleway/instance/get_ip.py +20 -19
- pulumiverse_scaleway/instance/get_placement_group.py +28 -27
- pulumiverse_scaleway/instance/get_private_nic.py +31 -30
- pulumiverse_scaleway/instance/get_security_group.py +31 -30
- pulumiverse_scaleway/instance/get_server.py +59 -47
- pulumiverse_scaleway/instance/get_servers.py +24 -23
- pulumiverse_scaleway/instance/get_snapshot.py +29 -28
- pulumiverse_scaleway/instance/get_volume.py +30 -29
- pulumiverse_scaleway/instance/image.py +150 -148
- pulumiverse_scaleway/instance/ip.py +94 -92
- pulumiverse_scaleway/instance/ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/instance/outputs.py +349 -348
- pulumiverse_scaleway/instance/placement_group.py +101 -99
- pulumiverse_scaleway/instance/private_nic.py +94 -92
- pulumiverse_scaleway/instance/security_group.py +150 -148
- pulumiverse_scaleway/instance/security_group_rules.py +17 -15
- pulumiverse_scaleway/instance/server.py +393 -330
- pulumiverse_scaleway/instance/snapshot.py +108 -106
- pulumiverse_scaleway/instance/user_data.py +59 -57
- pulumiverse_scaleway/instance/volume.py +129 -127
- pulumiverse_scaleway/instance_image.py +150 -148
- pulumiverse_scaleway/instance_ip.py +94 -92
- pulumiverse_scaleway/instance_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/instance_placement_group.py +101 -99
- pulumiverse_scaleway/instance_private_nic.py +94 -92
- pulumiverse_scaleway/instance_security_group.py +150 -148
- pulumiverse_scaleway/instance_security_group_rules.py +17 -15
- pulumiverse_scaleway/instance_server.py +393 -330
- pulumiverse_scaleway/instance_snapshot.py +108 -106
- pulumiverse_scaleway/instance_user_data.py +59 -57
- pulumiverse_scaleway/instance_volume.py +129 -127
- pulumiverse_scaleway/iot/__init__.py +2 -1
- pulumiverse_scaleway/iot/_inputs.py +98 -97
- pulumiverse_scaleway/iot/device.py +122 -120
- pulumiverse_scaleway/iot/get_device.py +31 -30
- pulumiverse_scaleway/iot/get_hub.py +39 -38
- pulumiverse_scaleway/iot/hub.py +206 -204
- pulumiverse_scaleway/iot/network.py +94 -92
- pulumiverse_scaleway/iot/outputs.py +78 -77
- pulumiverse_scaleway/iot/route.py +66 -64
- pulumiverse_scaleway/iot_device.py +122 -120
- pulumiverse_scaleway/iot_hub.py +206 -204
- pulumiverse_scaleway/iot_network.py +94 -92
- pulumiverse_scaleway/iot_route.py +66 -64
- pulumiverse_scaleway/ipam/__init__.py +2 -1
- pulumiverse_scaleway/ipam/_inputs.py +87 -86
- pulumiverse_scaleway/ipam/get_ip.py +51 -50
- pulumiverse_scaleway/ipam/get_ips.py +44 -43
- pulumiverse_scaleway/ipam/ip.py +94 -92
- pulumiverse_scaleway/ipam/ip_reverse_dns.py +59 -57
- pulumiverse_scaleway/ipam/outputs.py +90 -89
- pulumiverse_scaleway/ipam_ip.py +94 -92
- pulumiverse_scaleway/ipam_ip_reverse_dns.py +59 -57
- pulumiverse_scaleway/job/__init__.py +2 -1
- pulumiverse_scaleway/job/_inputs.py +38 -37
- pulumiverse_scaleway/job/definition.py +143 -141
- pulumiverse_scaleway/job/outputs.py +24 -23
- pulumiverse_scaleway/job_definition.py +143 -141
- pulumiverse_scaleway/kubernetes/__init__.py +2 -1
- pulumiverse_scaleway/kubernetes/_inputs.py +190 -189
- pulumiverse_scaleway/kubernetes/acl.py +45 -43
- pulumiverse_scaleway/kubernetes/cluster.py +234 -232
- pulumiverse_scaleway/kubernetes/get_cluster.py +39 -38
- pulumiverse_scaleway/kubernetes/get_pool.py +47 -46
- pulumiverse_scaleway/kubernetes/get_version.py +16 -15
- pulumiverse_scaleway/kubernetes/outputs.py +217 -216
- pulumiverse_scaleway/kubernetes/pool.py +290 -288
- pulumiverse_scaleway/kubernetes_cluster.py +234 -232
- pulumiverse_scaleway/kubernetes_node_pool.py +290 -288
- pulumiverse_scaleway/loadbalancer.py +199 -197
- pulumiverse_scaleway/loadbalancer_acl.py +73 -71
- pulumiverse_scaleway/loadbalancer_backend.py +381 -379
- pulumiverse_scaleway/loadbalancer_certificate.py +73 -71
- pulumiverse_scaleway/loadbalancer_frontend.py +136 -134
- pulumiverse_scaleway/loadbalancer_ip.py +101 -99
- pulumiverse_scaleway/loadbalancer_route.py +101 -99
- pulumiverse_scaleway/loadbalancers/__init__.py +2 -1
- pulumiverse_scaleway/loadbalancers/_inputs.py +214 -213
- pulumiverse_scaleway/loadbalancers/acl.py +73 -71
- pulumiverse_scaleway/loadbalancers/backend.py +381 -379
- pulumiverse_scaleway/loadbalancers/certificate.py +73 -71
- pulumiverse_scaleway/loadbalancers/frontend.py +136 -134
- pulumiverse_scaleway/loadbalancers/get_acls.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_backend.py +43 -42
- pulumiverse_scaleway/loadbalancers/get_backends.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_certificate.py +24 -23
- pulumiverse_scaleway/loadbalancers/get_frontend.py +26 -25
- pulumiverse_scaleway/loadbalancers/get_frontends.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_ip.py +29 -28
- pulumiverse_scaleway/loadbalancers/get_ips.py +29 -28
- pulumiverse_scaleway/loadbalancers/get_load_balancer.py +36 -35
- pulumiverse_scaleway/loadbalancers/get_load_balancers.py +24 -23
- pulumiverse_scaleway/loadbalancers/get_route.py +16 -15
- pulumiverse_scaleway/loadbalancers/get_routes.py +17 -16
- pulumiverse_scaleway/loadbalancers/ip.py +101 -99
- pulumiverse_scaleway/loadbalancers/load_balancer.py +199 -197
- pulumiverse_scaleway/loadbalancers/outputs.py +525 -524
- pulumiverse_scaleway/loadbalancers/route.py +101 -99
- pulumiverse_scaleway/mnq/__init__.py +2 -1
- pulumiverse_scaleway/mnq/_inputs.py +32 -31
- pulumiverse_scaleway/mnq/get_sns.py +14 -13
- pulumiverse_scaleway/mnq/get_sqs.py +14 -13
- pulumiverse_scaleway/mnq/nats_account.py +52 -50
- pulumiverse_scaleway/mnq/nats_credentials.py +52 -50
- pulumiverse_scaleway/mnq/outputs.py +20 -19
- pulumiverse_scaleway/mnq/sns.py +38 -36
- pulumiverse_scaleway/mnq/sns_credentials.py +59 -57
- pulumiverse_scaleway/mnq/sns_topic.py +143 -141
- pulumiverse_scaleway/mnq/sns_topic_subscription.py +150 -148
- pulumiverse_scaleway/mnq/sqs.py +38 -36
- pulumiverse_scaleway/mnq/sqs_credentials.py +59 -57
- pulumiverse_scaleway/mnq/sqs_queue.py +192 -190
- pulumiverse_scaleway/mnq_nats_account.py +52 -50
- pulumiverse_scaleway/mnq_nats_credentials.py +52 -50
- pulumiverse_scaleway/mnq_sns.py +38 -36
- pulumiverse_scaleway/mnq_sns_credentials.py +59 -57
- pulumiverse_scaleway/mnq_sns_topic.py +143 -141
- pulumiverse_scaleway/mnq_sns_topic_subscription.py +150 -148
- pulumiverse_scaleway/mnq_sqs.py +38 -36
- pulumiverse_scaleway/mnq_sqs_credentials.py +59 -57
- pulumiverse_scaleway/mnq_sqs_queue.py +192 -190
- pulumiverse_scaleway/mongo_db_instance.py +199 -197
- pulumiverse_scaleway/mongo_db_snapshot.py +101 -99
- pulumiverse_scaleway/mongodb/__init__.py +2 -1
- pulumiverse_scaleway/mongodb/_inputs.py +53 -52
- pulumiverse_scaleway/mongodb/get_instance.py +35 -34
- pulumiverse_scaleway/mongodb/instance.py +199 -197
- pulumiverse_scaleway/mongodb/outputs.py +64 -63
- pulumiverse_scaleway/mongodb/snapshot.py +101 -99
- pulumiverse_scaleway/network/__init__.py +2 -1
- pulumiverse_scaleway/network/_inputs.py +140 -139
- pulumiverse_scaleway/network/acl.py +59 -57
- pulumiverse_scaleway/network/gateway_network.py +143 -141
- pulumiverse_scaleway/network/get_gateway_network.py +28 -27
- pulumiverse_scaleway/network/get_private_network.py +32 -31
- pulumiverse_scaleway/network/get_public_gateway.py +36 -35
- pulumiverse_scaleway/network/get_public_gateway_dhcp.py +24 -23
- pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +33 -32
- pulumiverse_scaleway/network/get_public_gateway_ip.py +14 -13
- pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +21 -20
- pulumiverse_scaleway/network/get_routes.py +38 -37
- pulumiverse_scaleway/network/get_vpc.py +35 -34
- pulumiverse_scaleway/network/get_vpcs.py +24 -23
- pulumiverse_scaleway/network/outputs.py +206 -205
- pulumiverse_scaleway/network/private_network.py +122 -120
- pulumiverse_scaleway/network/public_gateway.py +213 -211
- pulumiverse_scaleway/network/public_gateway_dhcp.py +234 -232
- pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +87 -85
- pulumiverse_scaleway/network/public_gateway_ip.py +87 -85
- pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/network/public_gateway_pat_rule.py +108 -106
- pulumiverse_scaleway/network/route.py +115 -113
- pulumiverse_scaleway/network/vpc.py +101 -99
- pulumiverse_scaleway/object/__init__.py +2 -1
- pulumiverse_scaleway/object/_inputs.py +127 -126
- pulumiverse_scaleway/object/bucket.py +115 -113
- pulumiverse_scaleway/object/bucket_acl.py +73 -71
- pulumiverse_scaleway/object/bucket_lock_configuration.py +45 -43
- pulumiverse_scaleway/object/bucket_policy.py +59 -57
- pulumiverse_scaleway/object/bucket_website_configuration.py +85 -65
- pulumiverse_scaleway/object/get_bucket.py +22 -21
- pulumiverse_scaleway/object/get_bucket_policy.py +17 -16
- pulumiverse_scaleway/object/item.py +232 -183
- pulumiverse_scaleway/object/outputs.py +114 -113
- pulumiverse_scaleway/object_bucket.py +115 -113
- pulumiverse_scaleway/object_bucket_acl.py +73 -71
- pulumiverse_scaleway/object_bucket_lock_configuration.py +45 -43
- pulumiverse_scaleway/object_bucket_policy.py +59 -57
- pulumiverse_scaleway/object_bucket_website_configuration.py +85 -65
- pulumiverse_scaleway/object_item.py +232 -183
- pulumiverse_scaleway/observability/__init__.py +2 -1
- pulumiverse_scaleway/observability/_inputs.py +89 -88
- pulumiverse_scaleway/observability/alert_manager.py +52 -50
- pulumiverse_scaleway/observability/cockpit.py +38 -36
- pulumiverse_scaleway/observability/get_instance.py +10 -9
- pulumiverse_scaleway/observability/get_source.py +33 -32
- pulumiverse_scaleway/observability/grafana_user.py +59 -57
- pulumiverse_scaleway/observability/outputs.py +77 -76
- pulumiverse_scaleway/observability/source.py +115 -113
- pulumiverse_scaleway/observability/token.py +66 -64
- pulumiverse_scaleway/outputs.py +2797 -2732
- pulumiverse_scaleway/provider.py +87 -65
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/rdb_snapshot.py +101 -99
- pulumiverse_scaleway/redis/__init__.py +2 -1
- pulumiverse_scaleway/redis/_inputs.py +63 -62
- pulumiverse_scaleway/redis/cluster.py +178 -176
- pulumiverse_scaleway/redis/get_cluster.py +34 -33
- pulumiverse_scaleway/redis/outputs.py +74 -73
- pulumiverse_scaleway/redis_cluster.py +178 -176
- pulumiverse_scaleway/registry/__init__.py +2 -1
- pulumiverse_scaleway/registry/get_image.py +37 -36
- pulumiverse_scaleway/registry/get_image_tag.py +33 -32
- pulumiverse_scaleway/registry/get_namespace.py +27 -26
- pulumiverse_scaleway/registry/namespace.py +87 -85
- pulumiverse_scaleway/registry_namespace.py +87 -85
- pulumiverse_scaleway/sdb_database.py +80 -78
- pulumiverse_scaleway/secret.py +143 -141
- pulumiverse_scaleway/secret_version.py +87 -85
- pulumiverse_scaleway/secrets/__init__.py +2 -1
- pulumiverse_scaleway/secrets/_inputs.py +53 -52
- pulumiverse_scaleway/secrets/get_secret.py +41 -40
- pulumiverse_scaleway/secrets/get_version.py +34 -33
- pulumiverse_scaleway/secrets/outputs.py +64 -63
- pulumiverse_scaleway/secrets/secret.py +143 -141
- pulumiverse_scaleway/secrets/version.py +87 -85
- pulumiverse_scaleway/tem/__init__.py +2 -1
- pulumiverse_scaleway/tem/_inputs.py +28 -27
- pulumiverse_scaleway/tem/blocked_list.py +87 -85
- pulumiverse_scaleway/tem/domain.py +199 -197
- pulumiverse_scaleway/tem/domain_validation.py +52 -50
- pulumiverse_scaleway/tem/get_domain.py +43 -42
- pulumiverse_scaleway/tem/get_offer_subscription.py +22 -21
- pulumiverse_scaleway/tem/outputs.py +34 -33
- pulumiverse_scaleway/tem/webhook.py +108 -106
- pulumiverse_scaleway/tem_domain.py +199 -197
- pulumiverse_scaleway/tem_domain_validation.py +52 -50
- pulumiverse_scaleway/tem_webhook.py +108 -106
- pulumiverse_scaleway/vpc.py +101 -99
- pulumiverse_scaleway/vpc_gateway_network.py +143 -141
- pulumiverse_scaleway/vpc_private_network.py +122 -120
- pulumiverse_scaleway/vpc_public_gateway.py +213 -211
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +234 -232
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +87 -85
- pulumiverse_scaleway/vpc_public_gateway_ip.py +87 -85
- pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +108 -106
- pulumiverse_scaleway/vpc_route.py +115 -113
- pulumiverse_scaleway/webhosting.py +164 -162
- {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/METADATA +2 -2
- pulumiverse_scaleway-1.30.0a1752168858.dist-info/RECORD +493 -0
- pulumiverse_scaleway-1.30.0a1750140900.dist-info/RECORD +0 -492
- {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,8 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -21,62 +22,62 @@ __all__ = ['PoolArgs', 'Pool']
|
|
21
22
|
@pulumi.input_type
|
22
23
|
class PoolArgs:
|
23
24
|
def __init__(__self__, *,
|
24
|
-
cluster_id: pulumi.Input[str],
|
25
|
-
node_type: pulumi.Input[str],
|
26
|
-
size: pulumi.Input[int],
|
27
|
-
autohealing: Optional[pulumi.Input[bool]] = None,
|
28
|
-
autoscaling: Optional[pulumi.Input[bool]] = None,
|
29
|
-
container_runtime: Optional[pulumi.Input[str]] = None,
|
30
|
-
kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
31
|
-
max_size: Optional[pulumi.Input[int]] = None,
|
32
|
-
min_size: Optional[pulumi.Input[int]] = None,
|
33
|
-
name: Optional[pulumi.Input[str]] = None,
|
34
|
-
placement_group_id: Optional[pulumi.Input[str]] = None,
|
35
|
-
public_ip_disabled: Optional[pulumi.Input[bool]] = None,
|
36
|
-
region: Optional[pulumi.Input[str]] = None,
|
37
|
-
root_volume_size_in_gb: Optional[pulumi.Input[int]] = None,
|
38
|
-
root_volume_type: Optional[pulumi.Input[str]] = None,
|
39
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
25
|
+
cluster_id: pulumi.Input[builtins.str],
|
26
|
+
node_type: pulumi.Input[builtins.str],
|
27
|
+
size: pulumi.Input[builtins.int],
|
28
|
+
autohealing: Optional[pulumi.Input[builtins.bool]] = None,
|
29
|
+
autoscaling: Optional[pulumi.Input[builtins.bool]] = None,
|
30
|
+
container_runtime: Optional[pulumi.Input[builtins.str]] = None,
|
31
|
+
kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
32
|
+
max_size: Optional[pulumi.Input[builtins.int]] = None,
|
33
|
+
min_size: Optional[pulumi.Input[builtins.int]] = None,
|
34
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
35
|
+
placement_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
36
|
+
public_ip_disabled: Optional[pulumi.Input[builtins.bool]] = None,
|
37
|
+
region: Optional[pulumi.Input[builtins.str]] = None,
|
38
|
+
root_volume_size_in_gb: Optional[pulumi.Input[builtins.int]] = None,
|
39
|
+
root_volume_type: Optional[pulumi.Input[builtins.str]] = None,
|
40
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
40
41
|
upgrade_policy: Optional[pulumi.Input['PoolUpgradePolicyArgs']] = None,
|
41
|
-
wait_for_pool_ready: Optional[pulumi.Input[bool]] = None,
|
42
|
-
zone: Optional[pulumi.Input[str]] = None):
|
42
|
+
wait_for_pool_ready: Optional[pulumi.Input[builtins.bool]] = None,
|
43
|
+
zone: Optional[pulumi.Input[builtins.str]] = None):
|
43
44
|
"""
|
44
45
|
The set of arguments for constructing a Pool resource.
|
45
|
-
:param pulumi.Input[str] cluster_id: The ID of the Kubernetes cluster on which this pool will be created.
|
46
|
-
:param pulumi.Input[str] node_type: The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
|
46
|
+
:param pulumi.Input[builtins.str] cluster_id: The ID of the Kubernetes cluster on which this pool will be created.
|
47
|
+
:param pulumi.Input[builtins.str] node_type: The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
|
47
48
|
|
48
49
|
> **Important:** Updates to this field will recreate a new resource.
|
49
|
-
:param pulumi.Input[int] size: The size of the pool.
|
50
|
+
:param pulumi.Input[builtins.int] size: The size of the pool.
|
50
51
|
|
51
52
|
> **Important:** This field will only be used at creation if autoscaling is enabled.
|
52
|
-
:param pulumi.Input[bool] autohealing: Enables the autohealing feature for this pool.
|
53
|
-
:param pulumi.Input[bool] autoscaling: Enables the autoscaling feature for this pool.
|
53
|
+
:param pulumi.Input[builtins.bool] autohealing: Enables the autohealing feature for this pool.
|
54
|
+
:param pulumi.Input[builtins.bool] autoscaling: Enables the autoscaling feature for this pool.
|
54
55
|
|
55
56
|
> **Important:** When enabled, an update of the `size` will not be taken into account.
|
56
|
-
:param pulumi.Input[str] container_runtime: The container runtime of the pool.
|
57
|
+
:param pulumi.Input[builtins.str] container_runtime: The container runtime of the pool.
|
57
58
|
|
58
59
|
> **Important:** Updates to this field will recreate a new resource.
|
59
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] kubelet_args: The Kubelet arguments to be used by this pool
|
60
|
-
:param pulumi.Input[int] max_size: The maximum size of the pool, used by the autoscaling feature.
|
61
|
-
:param pulumi.Input[int] min_size: The minimum size of the pool, used by the autoscaling feature.
|
62
|
-
:param pulumi.Input[str] name: The name for the pool.
|
60
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] kubelet_args: The Kubelet arguments to be used by this pool
|
61
|
+
:param pulumi.Input[builtins.int] max_size: The maximum size of the pool, used by the autoscaling feature.
|
62
|
+
:param pulumi.Input[builtins.int] min_size: The minimum size of the pool, used by the autoscaling feature.
|
63
|
+
:param pulumi.Input[builtins.str] name: The name for the pool.
|
63
64
|
|
64
65
|
> **Important:** Updates to this field will recreate a new resource.
|
65
|
-
:param pulumi.Input[str] placement_group_id: The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
|
66
|
+
:param pulumi.Input[builtins.str] placement_group_id: The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
|
66
67
|
|
67
68
|
> **Important:** Updates to this field will recreate a new resource.
|
68
|
-
:param pulumi.Input[bool] public_ip_disabled: Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
|
69
|
+
:param pulumi.Input[builtins.bool] public_ip_disabled: Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
|
69
70
|
|
70
71
|
> **Important:** Updates to this field will recreate a new resource.
|
71
|
-
:param pulumi.Input[str] region: `region`) The region in which the pool should be created.
|
72
|
-
:param pulumi.Input[int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
|
73
|
-
:param pulumi.Input[str] root_volume_type: System volume type of the nodes composing the pool
|
74
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The tags associated with the pool.
|
72
|
+
:param pulumi.Input[builtins.str] region: `region`) The region in which the pool should be created.
|
73
|
+
:param pulumi.Input[builtins.int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
|
74
|
+
:param pulumi.Input[builtins.str] root_volume_type: System volume type of the nodes composing the pool
|
75
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: The tags associated with the pool.
|
75
76
|
|
76
77
|
> Note: As mentionned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (e.g.: `"taint=taintName=taintValue:Effect"`)
|
77
78
|
:param pulumi.Input['PoolUpgradePolicyArgs'] upgrade_policy: The Pool upgrade policy
|
78
|
-
:param pulumi.Input[bool] wait_for_pool_ready: Whether to wait for the pool to be ready.
|
79
|
-
:param pulumi.Input[str] zone: `zone`) The zone in which the pool should be created.
|
79
|
+
:param pulumi.Input[builtins.bool] wait_for_pool_ready: Whether to wait for the pool to be ready.
|
80
|
+
:param pulumi.Input[builtins.str] zone: `zone`) The zone in which the pool should be created.
|
80
81
|
|
81
82
|
> **Important:** Updates to this field will recreate a new resource.
|
82
83
|
"""
|
@@ -118,19 +119,19 @@ class PoolArgs:
|
|
118
119
|
|
119
120
|
@property
|
120
121
|
@pulumi.getter(name="clusterId")
|
121
|
-
def cluster_id(self) -> pulumi.Input[str]:
|
122
|
+
def cluster_id(self) -> pulumi.Input[builtins.str]:
|
122
123
|
"""
|
123
124
|
The ID of the Kubernetes cluster on which this pool will be created.
|
124
125
|
"""
|
125
126
|
return pulumi.get(self, "cluster_id")
|
126
127
|
|
127
128
|
@cluster_id.setter
|
128
|
-
def cluster_id(self, value: pulumi.Input[str]):
|
129
|
+
def cluster_id(self, value: pulumi.Input[builtins.str]):
|
129
130
|
pulumi.set(self, "cluster_id", value)
|
130
131
|
|
131
132
|
@property
|
132
133
|
@pulumi.getter(name="nodeType")
|
133
|
-
def node_type(self) -> pulumi.Input[str]:
|
134
|
+
def node_type(self) -> pulumi.Input[builtins.str]:
|
134
135
|
"""
|
135
136
|
The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
|
136
137
|
|
@@ -139,12 +140,12 @@ class PoolArgs:
|
|
139
140
|
return pulumi.get(self, "node_type")
|
140
141
|
|
141
142
|
@node_type.setter
|
142
|
-
def node_type(self, value: pulumi.Input[str]):
|
143
|
+
def node_type(self, value: pulumi.Input[builtins.str]):
|
143
144
|
pulumi.set(self, "node_type", value)
|
144
145
|
|
145
146
|
@property
|
146
147
|
@pulumi.getter
|
147
|
-
def size(self) -> pulumi.Input[int]:
|
148
|
+
def size(self) -> pulumi.Input[builtins.int]:
|
148
149
|
"""
|
149
150
|
The size of the pool.
|
150
151
|
|
@@ -153,24 +154,24 @@ class PoolArgs:
|
|
153
154
|
return pulumi.get(self, "size")
|
154
155
|
|
155
156
|
@size.setter
|
156
|
-
def size(self, value: pulumi.Input[int]):
|
157
|
+
def size(self, value: pulumi.Input[builtins.int]):
|
157
158
|
pulumi.set(self, "size", value)
|
158
159
|
|
159
160
|
@property
|
160
161
|
@pulumi.getter
|
161
|
-
def autohealing(self) -> Optional[pulumi.Input[bool]]:
|
162
|
+
def autohealing(self) -> Optional[pulumi.Input[builtins.bool]]:
|
162
163
|
"""
|
163
164
|
Enables the autohealing feature for this pool.
|
164
165
|
"""
|
165
166
|
return pulumi.get(self, "autohealing")
|
166
167
|
|
167
168
|
@autohealing.setter
|
168
|
-
def autohealing(self, value: Optional[pulumi.Input[bool]]):
|
169
|
+
def autohealing(self, value: Optional[pulumi.Input[builtins.bool]]):
|
169
170
|
pulumi.set(self, "autohealing", value)
|
170
171
|
|
171
172
|
@property
|
172
173
|
@pulumi.getter
|
173
|
-
def autoscaling(self) -> Optional[pulumi.Input[bool]]:
|
174
|
+
def autoscaling(self) -> Optional[pulumi.Input[builtins.bool]]:
|
174
175
|
"""
|
175
176
|
Enables the autoscaling feature for this pool.
|
176
177
|
|
@@ -179,12 +180,12 @@ class PoolArgs:
|
|
179
180
|
return pulumi.get(self, "autoscaling")
|
180
181
|
|
181
182
|
@autoscaling.setter
|
182
|
-
def autoscaling(self, value: Optional[pulumi.Input[bool]]):
|
183
|
+
def autoscaling(self, value: Optional[pulumi.Input[builtins.bool]]):
|
183
184
|
pulumi.set(self, "autoscaling", value)
|
184
185
|
|
185
186
|
@property
|
186
187
|
@pulumi.getter(name="containerRuntime")
|
187
|
-
def container_runtime(self) -> Optional[pulumi.Input[str]]:
|
188
|
+
def container_runtime(self) -> Optional[pulumi.Input[builtins.str]]:
|
188
189
|
"""
|
189
190
|
The container runtime of the pool.
|
190
191
|
|
@@ -193,48 +194,48 @@ class PoolArgs:
|
|
193
194
|
return pulumi.get(self, "container_runtime")
|
194
195
|
|
195
196
|
@container_runtime.setter
|
196
|
-
def container_runtime(self, value: Optional[pulumi.Input[str]]):
|
197
|
+
def container_runtime(self, value: Optional[pulumi.Input[builtins.str]]):
|
197
198
|
pulumi.set(self, "container_runtime", value)
|
198
199
|
|
199
200
|
@property
|
200
201
|
@pulumi.getter(name="kubeletArgs")
|
201
|
-
def kubelet_args(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
202
|
+
def kubelet_args(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
202
203
|
"""
|
203
204
|
The Kubelet arguments to be used by this pool
|
204
205
|
"""
|
205
206
|
return pulumi.get(self, "kubelet_args")
|
206
207
|
|
207
208
|
@kubelet_args.setter
|
208
|
-
def kubelet_args(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
209
|
+
def kubelet_args(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
209
210
|
pulumi.set(self, "kubelet_args", value)
|
210
211
|
|
211
212
|
@property
|
212
213
|
@pulumi.getter(name="maxSize")
|
213
|
-
def max_size(self) -> Optional[pulumi.Input[int]]:
|
214
|
+
def max_size(self) -> Optional[pulumi.Input[builtins.int]]:
|
214
215
|
"""
|
215
216
|
The maximum size of the pool, used by the autoscaling feature.
|
216
217
|
"""
|
217
218
|
return pulumi.get(self, "max_size")
|
218
219
|
|
219
220
|
@max_size.setter
|
220
|
-
def max_size(self, value: Optional[pulumi.Input[int]]):
|
221
|
+
def max_size(self, value: Optional[pulumi.Input[builtins.int]]):
|
221
222
|
pulumi.set(self, "max_size", value)
|
222
223
|
|
223
224
|
@property
|
224
225
|
@pulumi.getter(name="minSize")
|
225
|
-
def min_size(self) -> Optional[pulumi.Input[int]]:
|
226
|
+
def min_size(self) -> Optional[pulumi.Input[builtins.int]]:
|
226
227
|
"""
|
227
228
|
The minimum size of the pool, used by the autoscaling feature.
|
228
229
|
"""
|
229
230
|
return pulumi.get(self, "min_size")
|
230
231
|
|
231
232
|
@min_size.setter
|
232
|
-
def min_size(self, value: Optional[pulumi.Input[int]]):
|
233
|
+
def min_size(self, value: Optional[pulumi.Input[builtins.int]]):
|
233
234
|
pulumi.set(self, "min_size", value)
|
234
235
|
|
235
236
|
@property
|
236
237
|
@pulumi.getter
|
237
|
-
def name(self) -> Optional[pulumi.Input[str]]:
|
238
|
+
def name(self) -> Optional[pulumi.Input[builtins.str]]:
|
238
239
|
"""
|
239
240
|
The name for the pool.
|
240
241
|
|
@@ -243,12 +244,12 @@ class PoolArgs:
|
|
243
244
|
return pulumi.get(self, "name")
|
244
245
|
|
245
246
|
@name.setter
|
246
|
-
def name(self, value: Optional[pulumi.Input[str]]):
|
247
|
+
def name(self, value: Optional[pulumi.Input[builtins.str]]):
|
247
248
|
pulumi.set(self, "name", value)
|
248
249
|
|
249
250
|
@property
|
250
251
|
@pulumi.getter(name="placementGroupId")
|
251
|
-
def placement_group_id(self) -> Optional[pulumi.Input[str]]:
|
252
|
+
def placement_group_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
252
253
|
"""
|
253
254
|
The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
|
254
255
|
|
@@ -257,12 +258,12 @@ class PoolArgs:
|
|
257
258
|
return pulumi.get(self, "placement_group_id")
|
258
259
|
|
259
260
|
@placement_group_id.setter
|
260
|
-
def placement_group_id(self, value: Optional[pulumi.Input[str]]):
|
261
|
+
def placement_group_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
261
262
|
pulumi.set(self, "placement_group_id", value)
|
262
263
|
|
263
264
|
@property
|
264
265
|
@pulumi.getter(name="publicIpDisabled")
|
265
|
-
def public_ip_disabled(self) -> Optional[pulumi.Input[bool]]:
|
266
|
+
def public_ip_disabled(self) -> Optional[pulumi.Input[builtins.bool]]:
|
266
267
|
"""
|
267
268
|
Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
|
268
269
|
|
@@ -271,48 +272,48 @@ class PoolArgs:
|
|
271
272
|
return pulumi.get(self, "public_ip_disabled")
|
272
273
|
|
273
274
|
@public_ip_disabled.setter
|
274
|
-
def public_ip_disabled(self, value: Optional[pulumi.Input[bool]]):
|
275
|
+
def public_ip_disabled(self, value: Optional[pulumi.Input[builtins.bool]]):
|
275
276
|
pulumi.set(self, "public_ip_disabled", value)
|
276
277
|
|
277
278
|
@property
|
278
279
|
@pulumi.getter
|
279
|
-
def region(self) -> Optional[pulumi.Input[str]]:
|
280
|
+
def region(self) -> Optional[pulumi.Input[builtins.str]]:
|
280
281
|
"""
|
281
282
|
`region`) The region in which the pool should be created.
|
282
283
|
"""
|
283
284
|
return pulumi.get(self, "region")
|
284
285
|
|
285
286
|
@region.setter
|
286
|
-
def region(self, value: Optional[pulumi.Input[str]]):
|
287
|
+
def region(self, value: Optional[pulumi.Input[builtins.str]]):
|
287
288
|
pulumi.set(self, "region", value)
|
288
289
|
|
289
290
|
@property
|
290
291
|
@pulumi.getter(name="rootVolumeSizeInGb")
|
291
|
-
def root_volume_size_in_gb(self) -> Optional[pulumi.Input[int]]:
|
292
|
+
def root_volume_size_in_gb(self) -> Optional[pulumi.Input[builtins.int]]:
|
292
293
|
"""
|
293
294
|
The size of the system volume of the nodes in gigabyte
|
294
295
|
"""
|
295
296
|
return pulumi.get(self, "root_volume_size_in_gb")
|
296
297
|
|
297
298
|
@root_volume_size_in_gb.setter
|
298
|
-
def root_volume_size_in_gb(self, value: Optional[pulumi.Input[int]]):
|
299
|
+
def root_volume_size_in_gb(self, value: Optional[pulumi.Input[builtins.int]]):
|
299
300
|
pulumi.set(self, "root_volume_size_in_gb", value)
|
300
301
|
|
301
302
|
@property
|
302
303
|
@pulumi.getter(name="rootVolumeType")
|
303
|
-
def root_volume_type(self) -> Optional[pulumi.Input[str]]:
|
304
|
+
def root_volume_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
304
305
|
"""
|
305
306
|
System volume type of the nodes composing the pool
|
306
307
|
"""
|
307
308
|
return pulumi.get(self, "root_volume_type")
|
308
309
|
|
309
310
|
@root_volume_type.setter
|
310
|
-
def root_volume_type(self, value: Optional[pulumi.Input[str]]):
|
311
|
+
def root_volume_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
311
312
|
pulumi.set(self, "root_volume_type", value)
|
312
313
|
|
313
314
|
@property
|
314
315
|
@pulumi.getter
|
315
|
-
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
316
|
+
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
316
317
|
"""
|
317
318
|
The tags associated with the pool.
|
318
319
|
|
@@ -321,7 +322,7 @@ class PoolArgs:
|
|
321
322
|
return pulumi.get(self, "tags")
|
322
323
|
|
323
324
|
@tags.setter
|
324
|
-
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
325
|
+
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
325
326
|
pulumi.set(self, "tags", value)
|
326
327
|
|
327
328
|
@property
|
@@ -338,19 +339,19 @@ class PoolArgs:
|
|
338
339
|
|
339
340
|
@property
|
340
341
|
@pulumi.getter(name="waitForPoolReady")
|
341
|
-
def wait_for_pool_ready(self) -> Optional[pulumi.Input[bool]]:
|
342
|
+
def wait_for_pool_ready(self) -> Optional[pulumi.Input[builtins.bool]]:
|
342
343
|
"""
|
343
344
|
Whether to wait for the pool to be ready.
|
344
345
|
"""
|
345
346
|
return pulumi.get(self, "wait_for_pool_ready")
|
346
347
|
|
347
348
|
@wait_for_pool_ready.setter
|
348
|
-
def wait_for_pool_ready(self, value: Optional[pulumi.Input[bool]]):
|
349
|
+
def wait_for_pool_ready(self, value: Optional[pulumi.Input[builtins.bool]]):
|
349
350
|
pulumi.set(self, "wait_for_pool_ready", value)
|
350
351
|
|
351
352
|
@property
|
352
353
|
@pulumi.getter
|
353
|
-
def zone(self) -> Optional[pulumi.Input[str]]:
|
354
|
+
def zone(self) -> Optional[pulumi.Input[builtins.str]]:
|
354
355
|
"""
|
355
356
|
`zone`) The zone in which the pool should be created.
|
356
357
|
|
@@ -359,81 +360,81 @@ class PoolArgs:
|
|
359
360
|
return pulumi.get(self, "zone")
|
360
361
|
|
361
362
|
@zone.setter
|
362
|
-
def zone(self, value: Optional[pulumi.Input[str]]):
|
363
|
+
def zone(self, value: Optional[pulumi.Input[builtins.str]]):
|
363
364
|
pulumi.set(self, "zone", value)
|
364
365
|
|
365
366
|
|
366
367
|
@pulumi.input_type
|
367
368
|
class _PoolState:
|
368
369
|
def __init__(__self__, *,
|
369
|
-
autohealing: Optional[pulumi.Input[bool]] = None,
|
370
|
-
autoscaling: Optional[pulumi.Input[bool]] = None,
|
371
|
-
cluster_id: Optional[pulumi.Input[str]] = None,
|
372
|
-
container_runtime: Optional[pulumi.Input[str]] = None,
|
373
|
-
created_at: Optional[pulumi.Input[str]] = None,
|
374
|
-
current_size: Optional[pulumi.Input[int]] = None,
|
375
|
-
kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
376
|
-
max_size: Optional[pulumi.Input[int]] = None,
|
377
|
-
min_size: Optional[pulumi.Input[int]] = None,
|
378
|
-
name: Optional[pulumi.Input[str]] = None,
|
379
|
-
node_type: Optional[pulumi.Input[str]] = None,
|
370
|
+
autohealing: Optional[pulumi.Input[builtins.bool]] = None,
|
371
|
+
autoscaling: Optional[pulumi.Input[builtins.bool]] = None,
|
372
|
+
cluster_id: Optional[pulumi.Input[builtins.str]] = None,
|
373
|
+
container_runtime: Optional[pulumi.Input[builtins.str]] = None,
|
374
|
+
created_at: Optional[pulumi.Input[builtins.str]] = None,
|
375
|
+
current_size: Optional[pulumi.Input[builtins.int]] = None,
|
376
|
+
kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
377
|
+
max_size: Optional[pulumi.Input[builtins.int]] = None,
|
378
|
+
min_size: Optional[pulumi.Input[builtins.int]] = None,
|
379
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
380
|
+
node_type: Optional[pulumi.Input[builtins.str]] = None,
|
380
381
|
nodes: Optional[pulumi.Input[Sequence[pulumi.Input['PoolNodeArgs']]]] = None,
|
381
|
-
placement_group_id: Optional[pulumi.Input[str]] = None,
|
382
|
-
public_ip_disabled: Optional[pulumi.Input[bool]] = None,
|
383
|
-
region: Optional[pulumi.Input[str]] = None,
|
384
|
-
root_volume_size_in_gb: Optional[pulumi.Input[int]] = None,
|
385
|
-
root_volume_type: Optional[pulumi.Input[str]] = None,
|
386
|
-
size: Optional[pulumi.Input[int]] = None,
|
387
|
-
status: Optional[pulumi.Input[str]] = None,
|
388
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
389
|
-
updated_at: Optional[pulumi.Input[str]] = None,
|
382
|
+
placement_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
383
|
+
public_ip_disabled: Optional[pulumi.Input[builtins.bool]] = None,
|
384
|
+
region: Optional[pulumi.Input[builtins.str]] = None,
|
385
|
+
root_volume_size_in_gb: Optional[pulumi.Input[builtins.int]] = None,
|
386
|
+
root_volume_type: Optional[pulumi.Input[builtins.str]] = None,
|
387
|
+
size: Optional[pulumi.Input[builtins.int]] = None,
|
388
|
+
status: Optional[pulumi.Input[builtins.str]] = None,
|
389
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
390
|
+
updated_at: Optional[pulumi.Input[builtins.str]] = None,
|
390
391
|
upgrade_policy: Optional[pulumi.Input['PoolUpgradePolicyArgs']] = None,
|
391
|
-
version: Optional[pulumi.Input[str]] = None,
|
392
|
-
wait_for_pool_ready: Optional[pulumi.Input[bool]] = None,
|
393
|
-
zone: Optional[pulumi.Input[str]] = None):
|
392
|
+
version: Optional[pulumi.Input[builtins.str]] = None,
|
393
|
+
wait_for_pool_ready: Optional[pulumi.Input[builtins.bool]] = None,
|
394
|
+
zone: Optional[pulumi.Input[builtins.str]] = None):
|
394
395
|
"""
|
395
396
|
Input properties used for looking up and filtering Pool resources.
|
396
|
-
:param pulumi.Input[bool] autohealing: Enables the autohealing feature for this pool.
|
397
|
-
:param pulumi.Input[bool] autoscaling: Enables the autoscaling feature for this pool.
|
397
|
+
:param pulumi.Input[builtins.bool] autohealing: Enables the autohealing feature for this pool.
|
398
|
+
:param pulumi.Input[builtins.bool] autoscaling: Enables the autoscaling feature for this pool.
|
398
399
|
|
399
400
|
> **Important:** When enabled, an update of the `size` will not be taken into account.
|
400
|
-
:param pulumi.Input[str] cluster_id: The ID of the Kubernetes cluster on which this pool will be created.
|
401
|
-
:param pulumi.Input[str] container_runtime: The container runtime of the pool.
|
401
|
+
:param pulumi.Input[builtins.str] cluster_id: The ID of the Kubernetes cluster on which this pool will be created.
|
402
|
+
:param pulumi.Input[builtins.str] container_runtime: The container runtime of the pool.
|
402
403
|
|
403
404
|
> **Important:** Updates to this field will recreate a new resource.
|
404
|
-
:param pulumi.Input[str] created_at: The creation date of the pool.
|
405
|
-
:param pulumi.Input[int] current_size: The actual size of the pool
|
406
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] kubelet_args: The Kubelet arguments to be used by this pool
|
407
|
-
:param pulumi.Input[int] max_size: The maximum size of the pool, used by the autoscaling feature.
|
408
|
-
:param pulumi.Input[int] min_size: The minimum size of the pool, used by the autoscaling feature.
|
409
|
-
:param pulumi.Input[str] name: The name for the pool.
|
405
|
+
:param pulumi.Input[builtins.str] created_at: The creation date of the pool.
|
406
|
+
:param pulumi.Input[builtins.int] current_size: The actual size of the pool
|
407
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] kubelet_args: The Kubelet arguments to be used by this pool
|
408
|
+
:param pulumi.Input[builtins.int] max_size: The maximum size of the pool, used by the autoscaling feature.
|
409
|
+
:param pulumi.Input[builtins.int] min_size: The minimum size of the pool, used by the autoscaling feature.
|
410
|
+
:param pulumi.Input[builtins.str] name: The name for the pool.
|
410
411
|
|
411
412
|
> **Important:** Updates to this field will recreate a new resource.
|
412
|
-
:param pulumi.Input[str] node_type: The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
|
413
|
+
:param pulumi.Input[builtins.str] node_type: The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
|
413
414
|
|
414
415
|
> **Important:** Updates to this field will recreate a new resource.
|
415
416
|
:param pulumi.Input[Sequence[pulumi.Input['PoolNodeArgs']]] nodes: (List of) The nodes in the default pool.
|
416
|
-
:param pulumi.Input[str] placement_group_id: The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
|
417
|
+
:param pulumi.Input[builtins.str] placement_group_id: The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
|
417
418
|
|
418
419
|
> **Important:** Updates to this field will recreate a new resource.
|
419
|
-
:param pulumi.Input[bool] public_ip_disabled: Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
|
420
|
+
:param pulumi.Input[builtins.bool] public_ip_disabled: Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
|
420
421
|
|
421
422
|
> **Important:** Updates to this field will recreate a new resource.
|
422
|
-
:param pulumi.Input[str] region: `region`) The region in which the pool should be created.
|
423
|
-
:param pulumi.Input[int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
|
424
|
-
:param pulumi.Input[str] root_volume_type: System volume type of the nodes composing the pool
|
425
|
-
:param pulumi.Input[int] size: The size of the pool.
|
423
|
+
:param pulumi.Input[builtins.str] region: `region`) The region in which the pool should be created.
|
424
|
+
:param pulumi.Input[builtins.int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
|
425
|
+
:param pulumi.Input[builtins.str] root_volume_type: System volume type of the nodes composing the pool
|
426
|
+
:param pulumi.Input[builtins.int] size: The size of the pool.
|
426
427
|
|
427
428
|
> **Important:** This field will only be used at creation if autoscaling is enabled.
|
428
|
-
:param pulumi.Input[str] status: The status of the node.
|
429
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The tags associated with the pool.
|
429
|
+
:param pulumi.Input[builtins.str] status: The status of the node.
|
430
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: The tags associated with the pool.
|
430
431
|
|
431
432
|
> Note: As mentionned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (e.g.: `"taint=taintName=taintValue:Effect"`)
|
432
|
-
:param pulumi.Input[str] updated_at: The last update date of the pool.
|
433
|
+
:param pulumi.Input[builtins.str] updated_at: The last update date of the pool.
|
433
434
|
:param pulumi.Input['PoolUpgradePolicyArgs'] upgrade_policy: The Pool upgrade policy
|
434
|
-
:param pulumi.Input[str] version: The version of the pool.
|
435
|
-
:param pulumi.Input[bool] wait_for_pool_ready: Whether to wait for the pool to be ready.
|
436
|
-
:param pulumi.Input[str] zone: `zone`) The zone in which the pool should be created.
|
435
|
+
:param pulumi.Input[builtins.str] version: The version of the pool.
|
436
|
+
:param pulumi.Input[builtins.bool] wait_for_pool_ready: Whether to wait for the pool to be ready.
|
437
|
+
:param pulumi.Input[builtins.str] zone: `zone`) The zone in which the pool should be created.
|
437
438
|
|
438
439
|
> **Important:** Updates to this field will recreate a new resource.
|
439
440
|
"""
|
@@ -490,19 +491,19 @@ class _PoolState:
|
|
490
491
|
|
491
492
|
@property
|
492
493
|
@pulumi.getter
|
493
|
-
def autohealing(self) -> Optional[pulumi.Input[bool]]:
|
494
|
+
def autohealing(self) -> Optional[pulumi.Input[builtins.bool]]:
|
494
495
|
"""
|
495
496
|
Enables the autohealing feature for this pool.
|
496
497
|
"""
|
497
498
|
return pulumi.get(self, "autohealing")
|
498
499
|
|
499
500
|
@autohealing.setter
|
500
|
-
def autohealing(self, value: Optional[pulumi.Input[bool]]):
|
501
|
+
def autohealing(self, value: Optional[pulumi.Input[builtins.bool]]):
|
501
502
|
pulumi.set(self, "autohealing", value)
|
502
503
|
|
503
504
|
@property
|
504
505
|
@pulumi.getter
|
505
|
-
def autoscaling(self) -> Optional[pulumi.Input[bool]]:
|
506
|
+
def autoscaling(self) -> Optional[pulumi.Input[builtins.bool]]:
|
506
507
|
"""
|
507
508
|
Enables the autoscaling feature for this pool.
|
508
509
|
|
@@ -511,24 +512,24 @@ class _PoolState:
|
|
511
512
|
return pulumi.get(self, "autoscaling")
|
512
513
|
|
513
514
|
@autoscaling.setter
|
514
|
-
def autoscaling(self, value: Optional[pulumi.Input[bool]]):
|
515
|
+
def autoscaling(self, value: Optional[pulumi.Input[builtins.bool]]):
|
515
516
|
pulumi.set(self, "autoscaling", value)
|
516
517
|
|
517
518
|
@property
|
518
519
|
@pulumi.getter(name="clusterId")
|
519
|
-
def cluster_id(self) -> Optional[pulumi.Input[str]]:
|
520
|
+
def cluster_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
520
521
|
"""
|
521
522
|
The ID of the Kubernetes cluster on which this pool will be created.
|
522
523
|
"""
|
523
524
|
return pulumi.get(self, "cluster_id")
|
524
525
|
|
525
526
|
@cluster_id.setter
|
526
|
-
def cluster_id(self, value: Optional[pulumi.Input[str]]):
|
527
|
+
def cluster_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
527
528
|
pulumi.set(self, "cluster_id", value)
|
528
529
|
|
529
530
|
@property
|
530
531
|
@pulumi.getter(name="containerRuntime")
|
531
|
-
def container_runtime(self) -> Optional[pulumi.Input[str]]:
|
532
|
+
def container_runtime(self) -> Optional[pulumi.Input[builtins.str]]:
|
532
533
|
"""
|
533
534
|
The container runtime of the pool.
|
534
535
|
|
@@ -537,72 +538,72 @@ class _PoolState:
|
|
537
538
|
return pulumi.get(self, "container_runtime")
|
538
539
|
|
539
540
|
@container_runtime.setter
|
540
|
-
def container_runtime(self, value: Optional[pulumi.Input[str]]):
|
541
|
+
def container_runtime(self, value: Optional[pulumi.Input[builtins.str]]):
|
541
542
|
pulumi.set(self, "container_runtime", value)
|
542
543
|
|
543
544
|
@property
|
544
545
|
@pulumi.getter(name="createdAt")
|
545
|
-
def created_at(self) -> Optional[pulumi.Input[str]]:
|
546
|
+
def created_at(self) -> Optional[pulumi.Input[builtins.str]]:
|
546
547
|
"""
|
547
548
|
The creation date of the pool.
|
548
549
|
"""
|
549
550
|
return pulumi.get(self, "created_at")
|
550
551
|
|
551
552
|
@created_at.setter
|
552
|
-
def created_at(self, value: Optional[pulumi.Input[str]]):
|
553
|
+
def created_at(self, value: Optional[pulumi.Input[builtins.str]]):
|
553
554
|
pulumi.set(self, "created_at", value)
|
554
555
|
|
555
556
|
@property
|
556
557
|
@pulumi.getter(name="currentSize")
|
557
|
-
def current_size(self) -> Optional[pulumi.Input[int]]:
|
558
|
+
def current_size(self) -> Optional[pulumi.Input[builtins.int]]:
|
558
559
|
"""
|
559
560
|
The actual size of the pool
|
560
561
|
"""
|
561
562
|
return pulumi.get(self, "current_size")
|
562
563
|
|
563
564
|
@current_size.setter
|
564
|
-
def current_size(self, value: Optional[pulumi.Input[int]]):
|
565
|
+
def current_size(self, value: Optional[pulumi.Input[builtins.int]]):
|
565
566
|
pulumi.set(self, "current_size", value)
|
566
567
|
|
567
568
|
@property
|
568
569
|
@pulumi.getter(name="kubeletArgs")
|
569
|
-
def kubelet_args(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
570
|
+
def kubelet_args(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
570
571
|
"""
|
571
572
|
The Kubelet arguments to be used by this pool
|
572
573
|
"""
|
573
574
|
return pulumi.get(self, "kubelet_args")
|
574
575
|
|
575
576
|
@kubelet_args.setter
|
576
|
-
def kubelet_args(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
577
|
+
def kubelet_args(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
577
578
|
pulumi.set(self, "kubelet_args", value)
|
578
579
|
|
579
580
|
@property
|
580
581
|
@pulumi.getter(name="maxSize")
|
581
|
-
def max_size(self) -> Optional[pulumi.Input[int]]:
|
582
|
+
def max_size(self) -> Optional[pulumi.Input[builtins.int]]:
|
582
583
|
"""
|
583
584
|
The maximum size of the pool, used by the autoscaling feature.
|
584
585
|
"""
|
585
586
|
return pulumi.get(self, "max_size")
|
586
587
|
|
587
588
|
@max_size.setter
|
588
|
-
def max_size(self, value: Optional[pulumi.Input[int]]):
|
589
|
+
def max_size(self, value: Optional[pulumi.Input[builtins.int]]):
|
589
590
|
pulumi.set(self, "max_size", value)
|
590
591
|
|
591
592
|
@property
|
592
593
|
@pulumi.getter(name="minSize")
|
593
|
-
def min_size(self) -> Optional[pulumi.Input[int]]:
|
594
|
+
def min_size(self) -> Optional[pulumi.Input[builtins.int]]:
|
594
595
|
"""
|
595
596
|
The minimum size of the pool, used by the autoscaling feature.
|
596
597
|
"""
|
597
598
|
return pulumi.get(self, "min_size")
|
598
599
|
|
599
600
|
@min_size.setter
|
600
|
-
def min_size(self, value: Optional[pulumi.Input[int]]):
|
601
|
+
def min_size(self, value: Optional[pulumi.Input[builtins.int]]):
|
601
602
|
pulumi.set(self, "min_size", value)
|
602
603
|
|
603
604
|
@property
|
604
605
|
@pulumi.getter
|
605
|
-
def name(self) -> Optional[pulumi.Input[str]]:
|
606
|
+
def name(self) -> Optional[pulumi.Input[builtins.str]]:
|
606
607
|
"""
|
607
608
|
The name for the pool.
|
608
609
|
|
@@ -611,12 +612,12 @@ class _PoolState:
|
|
611
612
|
return pulumi.get(self, "name")
|
612
613
|
|
613
614
|
@name.setter
|
614
|
-
def name(self, value: Optional[pulumi.Input[str]]):
|
615
|
+
def name(self, value: Optional[pulumi.Input[builtins.str]]):
|
615
616
|
pulumi.set(self, "name", value)
|
616
617
|
|
617
618
|
@property
|
618
619
|
@pulumi.getter(name="nodeType")
|
619
|
-
def node_type(self) -> Optional[pulumi.Input[str]]:
|
620
|
+
def node_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
620
621
|
"""
|
621
622
|
The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
|
622
623
|
|
@@ -625,7 +626,7 @@ class _PoolState:
|
|
625
626
|
return pulumi.get(self, "node_type")
|
626
627
|
|
627
628
|
@node_type.setter
|
628
|
-
def node_type(self, value: Optional[pulumi.Input[str]]):
|
629
|
+
def node_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
629
630
|
pulumi.set(self, "node_type", value)
|
630
631
|
|
631
632
|
@property
|
@@ -642,7 +643,7 @@ class _PoolState:
|
|
642
643
|
|
643
644
|
@property
|
644
645
|
@pulumi.getter(name="placementGroupId")
|
645
|
-
def placement_group_id(self) -> Optional[pulumi.Input[str]]:
|
646
|
+
def placement_group_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
646
647
|
"""
|
647
648
|
The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
|
648
649
|
|
@@ -651,12 +652,12 @@ class _PoolState:
|
|
651
652
|
return pulumi.get(self, "placement_group_id")
|
652
653
|
|
653
654
|
@placement_group_id.setter
|
654
|
-
def placement_group_id(self, value: Optional[pulumi.Input[str]]):
|
655
|
+
def placement_group_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
655
656
|
pulumi.set(self, "placement_group_id", value)
|
656
657
|
|
657
658
|
@property
|
658
659
|
@pulumi.getter(name="publicIpDisabled")
|
659
|
-
def public_ip_disabled(self) -> Optional[pulumi.Input[bool]]:
|
660
|
+
def public_ip_disabled(self) -> Optional[pulumi.Input[builtins.bool]]:
|
660
661
|
"""
|
661
662
|
Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
|
662
663
|
|
@@ -665,48 +666,48 @@ class _PoolState:
|
|
665
666
|
return pulumi.get(self, "public_ip_disabled")
|
666
667
|
|
667
668
|
@public_ip_disabled.setter
|
668
|
-
def public_ip_disabled(self, value: Optional[pulumi.Input[bool]]):
|
669
|
+
def public_ip_disabled(self, value: Optional[pulumi.Input[builtins.bool]]):
|
669
670
|
pulumi.set(self, "public_ip_disabled", value)
|
670
671
|
|
671
672
|
@property
|
672
673
|
@pulumi.getter
|
673
|
-
def region(self) -> Optional[pulumi.Input[str]]:
|
674
|
+
def region(self) -> Optional[pulumi.Input[builtins.str]]:
|
674
675
|
"""
|
675
676
|
`region`) The region in which the pool should be created.
|
676
677
|
"""
|
677
678
|
return pulumi.get(self, "region")
|
678
679
|
|
679
680
|
@region.setter
|
680
|
-
def region(self, value: Optional[pulumi.Input[str]]):
|
681
|
+
def region(self, value: Optional[pulumi.Input[builtins.str]]):
|
681
682
|
pulumi.set(self, "region", value)
|
682
683
|
|
683
684
|
@property
|
684
685
|
@pulumi.getter(name="rootVolumeSizeInGb")
|
685
|
-
def root_volume_size_in_gb(self) -> Optional[pulumi.Input[int]]:
|
686
|
+
def root_volume_size_in_gb(self) -> Optional[pulumi.Input[builtins.int]]:
|
686
687
|
"""
|
687
688
|
The size of the system volume of the nodes in gigabyte
|
688
689
|
"""
|
689
690
|
return pulumi.get(self, "root_volume_size_in_gb")
|
690
691
|
|
691
692
|
@root_volume_size_in_gb.setter
|
692
|
-
def root_volume_size_in_gb(self, value: Optional[pulumi.Input[int]]):
|
693
|
+
def root_volume_size_in_gb(self, value: Optional[pulumi.Input[builtins.int]]):
|
693
694
|
pulumi.set(self, "root_volume_size_in_gb", value)
|
694
695
|
|
695
696
|
@property
|
696
697
|
@pulumi.getter(name="rootVolumeType")
|
697
|
-
def root_volume_type(self) -> Optional[pulumi.Input[str]]:
|
698
|
+
def root_volume_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
698
699
|
"""
|
699
700
|
System volume type of the nodes composing the pool
|
700
701
|
"""
|
701
702
|
return pulumi.get(self, "root_volume_type")
|
702
703
|
|
703
704
|
@root_volume_type.setter
|
704
|
-
def root_volume_type(self, value: Optional[pulumi.Input[str]]):
|
705
|
+
def root_volume_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
705
706
|
pulumi.set(self, "root_volume_type", value)
|
706
707
|
|
707
708
|
@property
|
708
709
|
@pulumi.getter
|
709
|
-
def size(self) -> Optional[pulumi.Input[int]]:
|
710
|
+
def size(self) -> Optional[pulumi.Input[builtins.int]]:
|
710
711
|
"""
|
711
712
|
The size of the pool.
|
712
713
|
|
@@ -715,24 +716,24 @@ class _PoolState:
|
|
715
716
|
return pulumi.get(self, "size")
|
716
717
|
|
717
718
|
@size.setter
|
718
|
-
def size(self, value: Optional[pulumi.Input[int]]):
|
719
|
+
def size(self, value: Optional[pulumi.Input[builtins.int]]):
|
719
720
|
pulumi.set(self, "size", value)
|
720
721
|
|
721
722
|
@property
|
722
723
|
@pulumi.getter
|
723
|
-
def status(self) -> Optional[pulumi.Input[str]]:
|
724
|
+
def status(self) -> Optional[pulumi.Input[builtins.str]]:
|
724
725
|
"""
|
725
726
|
The status of the node.
|
726
727
|
"""
|
727
728
|
return pulumi.get(self, "status")
|
728
729
|
|
729
730
|
@status.setter
|
730
|
-
def status(self, value: Optional[pulumi.Input[str]]):
|
731
|
+
def status(self, value: Optional[pulumi.Input[builtins.str]]):
|
731
732
|
pulumi.set(self, "status", value)
|
732
733
|
|
733
734
|
@property
|
734
735
|
@pulumi.getter
|
735
|
-
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
736
|
+
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
736
737
|
"""
|
737
738
|
The tags associated with the pool.
|
738
739
|
|
@@ -741,19 +742,19 @@ class _PoolState:
|
|
741
742
|
return pulumi.get(self, "tags")
|
742
743
|
|
743
744
|
@tags.setter
|
744
|
-
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
745
|
+
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
745
746
|
pulumi.set(self, "tags", value)
|
746
747
|
|
747
748
|
@property
|
748
749
|
@pulumi.getter(name="updatedAt")
|
749
|
-
def updated_at(self) -> Optional[pulumi.Input[str]]:
|
750
|
+
def updated_at(self) -> Optional[pulumi.Input[builtins.str]]:
|
750
751
|
"""
|
751
752
|
The last update date of the pool.
|
752
753
|
"""
|
753
754
|
return pulumi.get(self, "updated_at")
|
754
755
|
|
755
756
|
@updated_at.setter
|
756
|
-
def updated_at(self, value: Optional[pulumi.Input[str]]):
|
757
|
+
def updated_at(self, value: Optional[pulumi.Input[builtins.str]]):
|
757
758
|
pulumi.set(self, "updated_at", value)
|
758
759
|
|
759
760
|
@property
|
@@ -770,31 +771,31 @@ class _PoolState:
|
|
770
771
|
|
771
772
|
@property
|
772
773
|
@pulumi.getter
|
773
|
-
def version(self) -> Optional[pulumi.Input[str]]:
|
774
|
+
def version(self) -> Optional[pulumi.Input[builtins.str]]:
|
774
775
|
"""
|
775
776
|
The version of the pool.
|
776
777
|
"""
|
777
778
|
return pulumi.get(self, "version")
|
778
779
|
|
779
780
|
@version.setter
|
780
|
-
def version(self, value: Optional[pulumi.Input[str]]):
|
781
|
+
def version(self, value: Optional[pulumi.Input[builtins.str]]):
|
781
782
|
pulumi.set(self, "version", value)
|
782
783
|
|
783
784
|
@property
|
784
785
|
@pulumi.getter(name="waitForPoolReady")
|
785
|
-
def wait_for_pool_ready(self) -> Optional[pulumi.Input[bool]]:
|
786
|
+
def wait_for_pool_ready(self) -> Optional[pulumi.Input[builtins.bool]]:
|
786
787
|
"""
|
787
788
|
Whether to wait for the pool to be ready.
|
788
789
|
"""
|
789
790
|
return pulumi.get(self, "wait_for_pool_ready")
|
790
791
|
|
791
792
|
@wait_for_pool_ready.setter
|
792
|
-
def wait_for_pool_ready(self, value: Optional[pulumi.Input[bool]]):
|
793
|
+
def wait_for_pool_ready(self, value: Optional[pulumi.Input[builtins.bool]]):
|
793
794
|
pulumi.set(self, "wait_for_pool_ready", value)
|
794
795
|
|
795
796
|
@property
|
796
797
|
@pulumi.getter
|
797
|
-
def zone(self) -> Optional[pulumi.Input[str]]:
|
798
|
+
def zone(self) -> Optional[pulumi.Input[builtins.str]]:
|
798
799
|
"""
|
799
800
|
`zone`) The zone in which the pool should be created.
|
800
801
|
|
@@ -803,34 +804,35 @@ class _PoolState:
|
|
803
804
|
return pulumi.get(self, "zone")
|
804
805
|
|
805
806
|
@zone.setter
|
806
|
-
def zone(self, value: Optional[pulumi.Input[str]]):
|
807
|
+
def zone(self, value: Optional[pulumi.Input[builtins.str]]):
|
807
808
|
pulumi.set(self, "zone", value)
|
808
809
|
|
809
810
|
|
811
|
+
@pulumi.type_token("scaleway:kubernetes/pool:Pool")
|
810
812
|
class Pool(pulumi.CustomResource):
|
811
813
|
@overload
|
812
814
|
def __init__(__self__,
|
813
815
|
resource_name: str,
|
814
816
|
opts: Optional[pulumi.ResourceOptions] = None,
|
815
|
-
autohealing: Optional[pulumi.Input[bool]] = None,
|
816
|
-
autoscaling: Optional[pulumi.Input[bool]] = None,
|
817
|
-
cluster_id: Optional[pulumi.Input[str]] = None,
|
818
|
-
container_runtime: Optional[pulumi.Input[str]] = None,
|
819
|
-
kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
820
|
-
max_size: Optional[pulumi.Input[int]] = None,
|
821
|
-
min_size: Optional[pulumi.Input[int]] = None,
|
822
|
-
name: Optional[pulumi.Input[str]] = None,
|
823
|
-
node_type: Optional[pulumi.Input[str]] = None,
|
824
|
-
placement_group_id: Optional[pulumi.Input[str]] = None,
|
825
|
-
public_ip_disabled: Optional[pulumi.Input[bool]] = None,
|
826
|
-
region: Optional[pulumi.Input[str]] = None,
|
827
|
-
root_volume_size_in_gb: Optional[pulumi.Input[int]] = None,
|
828
|
-
root_volume_type: Optional[pulumi.Input[str]] = None,
|
829
|
-
size: Optional[pulumi.Input[int]] = None,
|
830
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
817
|
+
autohealing: Optional[pulumi.Input[builtins.bool]] = None,
|
818
|
+
autoscaling: Optional[pulumi.Input[builtins.bool]] = None,
|
819
|
+
cluster_id: Optional[pulumi.Input[builtins.str]] = None,
|
820
|
+
container_runtime: Optional[pulumi.Input[builtins.str]] = None,
|
821
|
+
kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
822
|
+
max_size: Optional[pulumi.Input[builtins.int]] = None,
|
823
|
+
min_size: Optional[pulumi.Input[builtins.int]] = None,
|
824
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
825
|
+
node_type: Optional[pulumi.Input[builtins.str]] = None,
|
826
|
+
placement_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
827
|
+
public_ip_disabled: Optional[pulumi.Input[builtins.bool]] = None,
|
828
|
+
region: Optional[pulumi.Input[builtins.str]] = None,
|
829
|
+
root_volume_size_in_gb: Optional[pulumi.Input[builtins.int]] = None,
|
830
|
+
root_volume_type: Optional[pulumi.Input[builtins.str]] = None,
|
831
|
+
size: Optional[pulumi.Input[builtins.int]] = None,
|
832
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
831
833
|
upgrade_policy: Optional[pulumi.Input[Union['PoolUpgradePolicyArgs', 'PoolUpgradePolicyArgsDict']]] = None,
|
832
|
-
wait_for_pool_ready: Optional[pulumi.Input[bool]] = None,
|
833
|
-
zone: Optional[pulumi.Input[str]] = None,
|
834
|
+
wait_for_pool_ready: Optional[pulumi.Input[builtins.bool]] = None,
|
835
|
+
zone: Optional[pulumi.Input[builtins.str]] = None,
|
834
836
|
__props__=None):
|
835
837
|
"""
|
836
838
|
## Import
|
@@ -845,41 +847,41 @@ class Pool(pulumi.CustomResource):
|
|
845
847
|
|
846
848
|
:param str resource_name: The name of the resource.
|
847
849
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
848
|
-
:param pulumi.Input[bool] autohealing: Enables the autohealing feature for this pool.
|
849
|
-
:param pulumi.Input[bool] autoscaling: Enables the autoscaling feature for this pool.
|
850
|
+
:param pulumi.Input[builtins.bool] autohealing: Enables the autohealing feature for this pool.
|
851
|
+
:param pulumi.Input[builtins.bool] autoscaling: Enables the autoscaling feature for this pool.
|
850
852
|
|
851
853
|
> **Important:** When enabled, an update of the `size` will not be taken into account.
|
852
|
-
:param pulumi.Input[str] cluster_id: The ID of the Kubernetes cluster on which this pool will be created.
|
853
|
-
:param pulumi.Input[str] container_runtime: The container runtime of the pool.
|
854
|
+
:param pulumi.Input[builtins.str] cluster_id: The ID of the Kubernetes cluster on which this pool will be created.
|
855
|
+
:param pulumi.Input[builtins.str] container_runtime: The container runtime of the pool.
|
854
856
|
|
855
857
|
> **Important:** Updates to this field will recreate a new resource.
|
856
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] kubelet_args: The Kubelet arguments to be used by this pool
|
857
|
-
:param pulumi.Input[int] max_size: The maximum size of the pool, used by the autoscaling feature.
|
858
|
-
:param pulumi.Input[int] min_size: The minimum size of the pool, used by the autoscaling feature.
|
859
|
-
:param pulumi.Input[str] name: The name for the pool.
|
858
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] kubelet_args: The Kubelet arguments to be used by this pool
|
859
|
+
:param pulumi.Input[builtins.int] max_size: The maximum size of the pool, used by the autoscaling feature.
|
860
|
+
:param pulumi.Input[builtins.int] min_size: The minimum size of the pool, used by the autoscaling feature.
|
861
|
+
:param pulumi.Input[builtins.str] name: The name for the pool.
|
860
862
|
|
861
863
|
> **Important:** Updates to this field will recreate a new resource.
|
862
|
-
:param pulumi.Input[str] node_type: The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
|
864
|
+
:param pulumi.Input[builtins.str] node_type: The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
|
863
865
|
|
864
866
|
> **Important:** Updates to this field will recreate a new resource.
|
865
|
-
:param pulumi.Input[str] placement_group_id: The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
|
867
|
+
:param pulumi.Input[builtins.str] placement_group_id: The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
|
866
868
|
|
867
869
|
> **Important:** Updates to this field will recreate a new resource.
|
868
|
-
:param pulumi.Input[bool] public_ip_disabled: Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
|
870
|
+
:param pulumi.Input[builtins.bool] public_ip_disabled: Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
|
869
871
|
|
870
872
|
> **Important:** Updates to this field will recreate a new resource.
|
871
|
-
:param pulumi.Input[str] region: `region`) The region in which the pool should be created.
|
872
|
-
:param pulumi.Input[int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
|
873
|
-
:param pulumi.Input[str] root_volume_type: System volume type of the nodes composing the pool
|
874
|
-
:param pulumi.Input[int] size: The size of the pool.
|
873
|
+
:param pulumi.Input[builtins.str] region: `region`) The region in which the pool should be created.
|
874
|
+
:param pulumi.Input[builtins.int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
|
875
|
+
:param pulumi.Input[builtins.str] root_volume_type: System volume type of the nodes composing the pool
|
876
|
+
:param pulumi.Input[builtins.int] size: The size of the pool.
|
875
877
|
|
876
878
|
> **Important:** This field will only be used at creation if autoscaling is enabled.
|
877
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The tags associated with the pool.
|
879
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: The tags associated with the pool.
|
878
880
|
|
879
881
|
> Note: As mentionned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (e.g.: `"taint=taintName=taintValue:Effect"`)
|
880
882
|
:param pulumi.Input[Union['PoolUpgradePolicyArgs', 'PoolUpgradePolicyArgsDict']] upgrade_policy: The Pool upgrade policy
|
881
|
-
:param pulumi.Input[bool] wait_for_pool_ready: Whether to wait for the pool to be ready.
|
882
|
-
:param pulumi.Input[str] zone: `zone`) The zone in which the pool should be created.
|
883
|
+
:param pulumi.Input[builtins.bool] wait_for_pool_ready: Whether to wait for the pool to be ready.
|
884
|
+
:param pulumi.Input[builtins.str] zone: `zone`) The zone in which the pool should be created.
|
883
885
|
|
884
886
|
> **Important:** Updates to this field will recreate a new resource.
|
885
887
|
"""
|
@@ -915,25 +917,25 @@ class Pool(pulumi.CustomResource):
|
|
915
917
|
def _internal_init(__self__,
|
916
918
|
resource_name: str,
|
917
919
|
opts: Optional[pulumi.ResourceOptions] = None,
|
918
|
-
autohealing: Optional[pulumi.Input[bool]] = None,
|
919
|
-
autoscaling: Optional[pulumi.Input[bool]] = None,
|
920
|
-
cluster_id: Optional[pulumi.Input[str]] = None,
|
921
|
-
container_runtime: Optional[pulumi.Input[str]] = None,
|
922
|
-
kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
923
|
-
max_size: Optional[pulumi.Input[int]] = None,
|
924
|
-
min_size: Optional[pulumi.Input[int]] = None,
|
925
|
-
name: Optional[pulumi.Input[str]] = None,
|
926
|
-
node_type: Optional[pulumi.Input[str]] = None,
|
927
|
-
placement_group_id: Optional[pulumi.Input[str]] = None,
|
928
|
-
public_ip_disabled: Optional[pulumi.Input[bool]] = None,
|
929
|
-
region: Optional[pulumi.Input[str]] = None,
|
930
|
-
root_volume_size_in_gb: Optional[pulumi.Input[int]] = None,
|
931
|
-
root_volume_type: Optional[pulumi.Input[str]] = None,
|
932
|
-
size: Optional[pulumi.Input[int]] = None,
|
933
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
920
|
+
autohealing: Optional[pulumi.Input[builtins.bool]] = None,
|
921
|
+
autoscaling: Optional[pulumi.Input[builtins.bool]] = None,
|
922
|
+
cluster_id: Optional[pulumi.Input[builtins.str]] = None,
|
923
|
+
container_runtime: Optional[pulumi.Input[builtins.str]] = None,
|
924
|
+
kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
925
|
+
max_size: Optional[pulumi.Input[builtins.int]] = None,
|
926
|
+
min_size: Optional[pulumi.Input[builtins.int]] = None,
|
927
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
928
|
+
node_type: Optional[pulumi.Input[builtins.str]] = None,
|
929
|
+
placement_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
930
|
+
public_ip_disabled: Optional[pulumi.Input[builtins.bool]] = None,
|
931
|
+
region: Optional[pulumi.Input[builtins.str]] = None,
|
932
|
+
root_volume_size_in_gb: Optional[pulumi.Input[builtins.int]] = None,
|
933
|
+
root_volume_type: Optional[pulumi.Input[builtins.str]] = None,
|
934
|
+
size: Optional[pulumi.Input[builtins.int]] = None,
|
935
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
934
936
|
upgrade_policy: Optional[pulumi.Input[Union['PoolUpgradePolicyArgs', 'PoolUpgradePolicyArgsDict']]] = None,
|
935
|
-
wait_for_pool_ready: Optional[pulumi.Input[bool]] = None,
|
936
|
-
zone: Optional[pulumi.Input[str]] = None,
|
937
|
+
wait_for_pool_ready: Optional[pulumi.Input[builtins.bool]] = None,
|
938
|
+
zone: Optional[pulumi.Input[builtins.str]] = None,
|
937
939
|
__props__=None):
|
938
940
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
939
941
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -986,31 +988,31 @@ class Pool(pulumi.CustomResource):
|
|
986
988
|
def get(resource_name: str,
|
987
989
|
id: pulumi.Input[str],
|
988
990
|
opts: Optional[pulumi.ResourceOptions] = None,
|
989
|
-
autohealing: Optional[pulumi.Input[bool]] = None,
|
990
|
-
autoscaling: Optional[pulumi.Input[bool]] = None,
|
991
|
-
cluster_id: Optional[pulumi.Input[str]] = None,
|
992
|
-
container_runtime: Optional[pulumi.Input[str]] = None,
|
993
|
-
created_at: Optional[pulumi.Input[str]] = None,
|
994
|
-
current_size: Optional[pulumi.Input[int]] = None,
|
995
|
-
kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
996
|
-
max_size: Optional[pulumi.Input[int]] = None,
|
997
|
-
min_size: Optional[pulumi.Input[int]] = None,
|
998
|
-
name: Optional[pulumi.Input[str]] = None,
|
999
|
-
node_type: Optional[pulumi.Input[str]] = None,
|
991
|
+
autohealing: Optional[pulumi.Input[builtins.bool]] = None,
|
992
|
+
autoscaling: Optional[pulumi.Input[builtins.bool]] = None,
|
993
|
+
cluster_id: Optional[pulumi.Input[builtins.str]] = None,
|
994
|
+
container_runtime: Optional[pulumi.Input[builtins.str]] = None,
|
995
|
+
created_at: Optional[pulumi.Input[builtins.str]] = None,
|
996
|
+
current_size: Optional[pulumi.Input[builtins.int]] = None,
|
997
|
+
kubelet_args: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
998
|
+
max_size: Optional[pulumi.Input[builtins.int]] = None,
|
999
|
+
min_size: Optional[pulumi.Input[builtins.int]] = None,
|
1000
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
1001
|
+
node_type: Optional[pulumi.Input[builtins.str]] = None,
|
1000
1002
|
nodes: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PoolNodeArgs', 'PoolNodeArgsDict']]]]] = None,
|
1001
|
-
placement_group_id: Optional[pulumi.Input[str]] = None,
|
1002
|
-
public_ip_disabled: Optional[pulumi.Input[bool]] = None,
|
1003
|
-
region: Optional[pulumi.Input[str]] = None,
|
1004
|
-
root_volume_size_in_gb: Optional[pulumi.Input[int]] = None,
|
1005
|
-
root_volume_type: Optional[pulumi.Input[str]] = None,
|
1006
|
-
size: Optional[pulumi.Input[int]] = None,
|
1007
|
-
status: Optional[pulumi.Input[str]] = None,
|
1008
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1009
|
-
updated_at: Optional[pulumi.Input[str]] = None,
|
1003
|
+
placement_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
1004
|
+
public_ip_disabled: Optional[pulumi.Input[builtins.bool]] = None,
|
1005
|
+
region: Optional[pulumi.Input[builtins.str]] = None,
|
1006
|
+
root_volume_size_in_gb: Optional[pulumi.Input[builtins.int]] = None,
|
1007
|
+
root_volume_type: Optional[pulumi.Input[builtins.str]] = None,
|
1008
|
+
size: Optional[pulumi.Input[builtins.int]] = None,
|
1009
|
+
status: Optional[pulumi.Input[builtins.str]] = None,
|
1010
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
1011
|
+
updated_at: Optional[pulumi.Input[builtins.str]] = None,
|
1010
1012
|
upgrade_policy: Optional[pulumi.Input[Union['PoolUpgradePolicyArgs', 'PoolUpgradePolicyArgsDict']]] = None,
|
1011
|
-
version: Optional[pulumi.Input[str]] = None,
|
1012
|
-
wait_for_pool_ready: Optional[pulumi.Input[bool]] = None,
|
1013
|
-
zone: Optional[pulumi.Input[str]] = None) -> 'Pool':
|
1013
|
+
version: Optional[pulumi.Input[builtins.str]] = None,
|
1014
|
+
wait_for_pool_ready: Optional[pulumi.Input[builtins.bool]] = None,
|
1015
|
+
zone: Optional[pulumi.Input[builtins.str]] = None) -> 'Pool':
|
1014
1016
|
"""
|
1015
1017
|
Get an existing Pool resource's state with the given name, id, and optional extra
|
1016
1018
|
properties used to qualify the lookup.
|
@@ -1018,47 +1020,47 @@ class Pool(pulumi.CustomResource):
|
|
1018
1020
|
:param str resource_name: The unique name of the resulting resource.
|
1019
1021
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
1020
1022
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1021
|
-
:param pulumi.Input[bool] autohealing: Enables the autohealing feature for this pool.
|
1022
|
-
:param pulumi.Input[bool] autoscaling: Enables the autoscaling feature for this pool.
|
1023
|
+
:param pulumi.Input[builtins.bool] autohealing: Enables the autohealing feature for this pool.
|
1024
|
+
:param pulumi.Input[builtins.bool] autoscaling: Enables the autoscaling feature for this pool.
|
1023
1025
|
|
1024
1026
|
> **Important:** When enabled, an update of the `size` will not be taken into account.
|
1025
|
-
:param pulumi.Input[str] cluster_id: The ID of the Kubernetes cluster on which this pool will be created.
|
1026
|
-
:param pulumi.Input[str] container_runtime: The container runtime of the pool.
|
1027
|
+
:param pulumi.Input[builtins.str] cluster_id: The ID of the Kubernetes cluster on which this pool will be created.
|
1028
|
+
:param pulumi.Input[builtins.str] container_runtime: The container runtime of the pool.
|
1027
1029
|
|
1028
1030
|
> **Important:** Updates to this field will recreate a new resource.
|
1029
|
-
:param pulumi.Input[str] created_at: The creation date of the pool.
|
1030
|
-
:param pulumi.Input[int] current_size: The actual size of the pool
|
1031
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] kubelet_args: The Kubelet arguments to be used by this pool
|
1032
|
-
:param pulumi.Input[int] max_size: The maximum size of the pool, used by the autoscaling feature.
|
1033
|
-
:param pulumi.Input[int] min_size: The minimum size of the pool, used by the autoscaling feature.
|
1034
|
-
:param pulumi.Input[str] name: The name for the pool.
|
1031
|
+
:param pulumi.Input[builtins.str] created_at: The creation date of the pool.
|
1032
|
+
:param pulumi.Input[builtins.int] current_size: The actual size of the pool
|
1033
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] kubelet_args: The Kubelet arguments to be used by this pool
|
1034
|
+
:param pulumi.Input[builtins.int] max_size: The maximum size of the pool, used by the autoscaling feature.
|
1035
|
+
:param pulumi.Input[builtins.int] min_size: The minimum size of the pool, used by the autoscaling feature.
|
1036
|
+
:param pulumi.Input[builtins.str] name: The name for the pool.
|
1035
1037
|
|
1036
1038
|
> **Important:** Updates to this field will recreate a new resource.
|
1037
|
-
:param pulumi.Input[str] node_type: The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
|
1039
|
+
:param pulumi.Input[builtins.str] node_type: The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
|
1038
1040
|
|
1039
1041
|
> **Important:** Updates to this field will recreate a new resource.
|
1040
1042
|
:param pulumi.Input[Sequence[pulumi.Input[Union['PoolNodeArgs', 'PoolNodeArgsDict']]]] nodes: (List of) The nodes in the default pool.
|
1041
|
-
:param pulumi.Input[str] placement_group_id: The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
|
1043
|
+
:param pulumi.Input[builtins.str] placement_group_id: The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
|
1042
1044
|
|
1043
1045
|
> **Important:** Updates to this field will recreate a new resource.
|
1044
|
-
:param pulumi.Input[bool] public_ip_disabled: Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
|
1046
|
+
:param pulumi.Input[builtins.bool] public_ip_disabled: Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
|
1045
1047
|
|
1046
1048
|
> **Important:** Updates to this field will recreate a new resource.
|
1047
|
-
:param pulumi.Input[str] region: `region`) The region in which the pool should be created.
|
1048
|
-
:param pulumi.Input[int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
|
1049
|
-
:param pulumi.Input[str] root_volume_type: System volume type of the nodes composing the pool
|
1050
|
-
:param pulumi.Input[int] size: The size of the pool.
|
1049
|
+
:param pulumi.Input[builtins.str] region: `region`) The region in which the pool should be created.
|
1050
|
+
:param pulumi.Input[builtins.int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
|
1051
|
+
:param pulumi.Input[builtins.str] root_volume_type: System volume type of the nodes composing the pool
|
1052
|
+
:param pulumi.Input[builtins.int] size: The size of the pool.
|
1051
1053
|
|
1052
1054
|
> **Important:** This field will only be used at creation if autoscaling is enabled.
|
1053
|
-
:param pulumi.Input[str] status: The status of the node.
|
1054
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The tags associated with the pool.
|
1055
|
+
:param pulumi.Input[builtins.str] status: The status of the node.
|
1056
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: The tags associated with the pool.
|
1055
1057
|
|
1056
1058
|
> Note: As mentionned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (e.g.: `"taint=taintName=taintValue:Effect"`)
|
1057
|
-
:param pulumi.Input[str] updated_at: The last update date of the pool.
|
1059
|
+
:param pulumi.Input[builtins.str] updated_at: The last update date of the pool.
|
1058
1060
|
:param pulumi.Input[Union['PoolUpgradePolicyArgs', 'PoolUpgradePolicyArgsDict']] upgrade_policy: The Pool upgrade policy
|
1059
|
-
:param pulumi.Input[str] version: The version of the pool.
|
1060
|
-
:param pulumi.Input[bool] wait_for_pool_ready: Whether to wait for the pool to be ready.
|
1061
|
-
:param pulumi.Input[str] zone: `zone`) The zone in which the pool should be created.
|
1061
|
+
:param pulumi.Input[builtins.str] version: The version of the pool.
|
1062
|
+
:param pulumi.Input[builtins.bool] wait_for_pool_ready: Whether to wait for the pool to be ready.
|
1063
|
+
:param pulumi.Input[builtins.str] zone: `zone`) The zone in which the pool should be created.
|
1062
1064
|
|
1063
1065
|
> **Important:** Updates to this field will recreate a new resource.
|
1064
1066
|
"""
|
@@ -1095,7 +1097,7 @@ class Pool(pulumi.CustomResource):
|
|
1095
1097
|
|
1096
1098
|
@property
|
1097
1099
|
@pulumi.getter
|
1098
|
-
def autohealing(self) -> pulumi.Output[Optional[bool]]:
|
1100
|
+
def autohealing(self) -> pulumi.Output[Optional[builtins.bool]]:
|
1099
1101
|
"""
|
1100
1102
|
Enables the autohealing feature for this pool.
|
1101
1103
|
"""
|
@@ -1103,7 +1105,7 @@ class Pool(pulumi.CustomResource):
|
|
1103
1105
|
|
1104
1106
|
@property
|
1105
1107
|
@pulumi.getter
|
1106
|
-
def autoscaling(self) -> pulumi.Output[Optional[bool]]:
|
1108
|
+
def autoscaling(self) -> pulumi.Output[Optional[builtins.bool]]:
|
1107
1109
|
"""
|
1108
1110
|
Enables the autoscaling feature for this pool.
|
1109
1111
|
|
@@ -1113,7 +1115,7 @@ class Pool(pulumi.CustomResource):
|
|
1113
1115
|
|
1114
1116
|
@property
|
1115
1117
|
@pulumi.getter(name="clusterId")
|
1116
|
-
def cluster_id(self) -> pulumi.Output[str]:
|
1118
|
+
def cluster_id(self) -> pulumi.Output[builtins.str]:
|
1117
1119
|
"""
|
1118
1120
|
The ID of the Kubernetes cluster on which this pool will be created.
|
1119
1121
|
"""
|
@@ -1121,7 +1123,7 @@ class Pool(pulumi.CustomResource):
|
|
1121
1123
|
|
1122
1124
|
@property
|
1123
1125
|
@pulumi.getter(name="containerRuntime")
|
1124
|
-
def container_runtime(self) -> pulumi.Output[Optional[str]]:
|
1126
|
+
def container_runtime(self) -> pulumi.Output[Optional[builtins.str]]:
|
1125
1127
|
"""
|
1126
1128
|
The container runtime of the pool.
|
1127
1129
|
|
@@ -1131,7 +1133,7 @@ class Pool(pulumi.CustomResource):
|
|
1131
1133
|
|
1132
1134
|
@property
|
1133
1135
|
@pulumi.getter(name="createdAt")
|
1134
|
-
def created_at(self) -> pulumi.Output[str]:
|
1136
|
+
def created_at(self) -> pulumi.Output[builtins.str]:
|
1135
1137
|
"""
|
1136
1138
|
The creation date of the pool.
|
1137
1139
|
"""
|
@@ -1139,7 +1141,7 @@ class Pool(pulumi.CustomResource):
|
|
1139
1141
|
|
1140
1142
|
@property
|
1141
1143
|
@pulumi.getter(name="currentSize")
|
1142
|
-
def current_size(self) -> pulumi.Output[int]:
|
1144
|
+
def current_size(self) -> pulumi.Output[builtins.int]:
|
1143
1145
|
"""
|
1144
1146
|
The actual size of the pool
|
1145
1147
|
"""
|
@@ -1147,7 +1149,7 @@ class Pool(pulumi.CustomResource):
|
|
1147
1149
|
|
1148
1150
|
@property
|
1149
1151
|
@pulumi.getter(name="kubeletArgs")
|
1150
|
-
def kubelet_args(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
1152
|
+
def kubelet_args(self) -> pulumi.Output[Optional[Mapping[str, builtins.str]]]:
|
1151
1153
|
"""
|
1152
1154
|
The Kubelet arguments to be used by this pool
|
1153
1155
|
"""
|
@@ -1155,7 +1157,7 @@ class Pool(pulumi.CustomResource):
|
|
1155
1157
|
|
1156
1158
|
@property
|
1157
1159
|
@pulumi.getter(name="maxSize")
|
1158
|
-
def max_size(self) -> pulumi.Output[int]:
|
1160
|
+
def max_size(self) -> pulumi.Output[builtins.int]:
|
1159
1161
|
"""
|
1160
1162
|
The maximum size of the pool, used by the autoscaling feature.
|
1161
1163
|
"""
|
@@ -1163,7 +1165,7 @@ class Pool(pulumi.CustomResource):
|
|
1163
1165
|
|
1164
1166
|
@property
|
1165
1167
|
@pulumi.getter(name="minSize")
|
1166
|
-
def min_size(self) -> pulumi.Output[Optional[int]]:
|
1168
|
+
def min_size(self) -> pulumi.Output[Optional[builtins.int]]:
|
1167
1169
|
"""
|
1168
1170
|
The minimum size of the pool, used by the autoscaling feature.
|
1169
1171
|
"""
|
@@ -1171,7 +1173,7 @@ class Pool(pulumi.CustomResource):
|
|
1171
1173
|
|
1172
1174
|
@property
|
1173
1175
|
@pulumi.getter
|
1174
|
-
def name(self) -> pulumi.Output[str]:
|
1176
|
+
def name(self) -> pulumi.Output[builtins.str]:
|
1175
1177
|
"""
|
1176
1178
|
The name for the pool.
|
1177
1179
|
|
@@ -1181,7 +1183,7 @@ class Pool(pulumi.CustomResource):
|
|
1181
1183
|
|
1182
1184
|
@property
|
1183
1185
|
@pulumi.getter(name="nodeType")
|
1184
|
-
def node_type(self) -> pulumi.Output[str]:
|
1186
|
+
def node_type(self) -> pulumi.Output[builtins.str]:
|
1185
1187
|
"""
|
1186
1188
|
The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). `external` is a special node type used to provision from other Cloud providers.
|
1187
1189
|
|
@@ -1199,7 +1201,7 @@ class Pool(pulumi.CustomResource):
|
|
1199
1201
|
|
1200
1202
|
@property
|
1201
1203
|
@pulumi.getter(name="placementGroupId")
|
1202
|
-
def placement_group_id(self) -> pulumi.Output[Optional[str]]:
|
1204
|
+
def placement_group_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
1203
1205
|
"""
|
1204
1206
|
The [placement group](https://www.scaleway.com/en/developers/api/instance/#path-placement-groups-create-a-placement-group) the nodes of the pool will be attached to.
|
1205
1207
|
|
@@ -1209,7 +1211,7 @@ class Pool(pulumi.CustomResource):
|
|
1209
1211
|
|
1210
1212
|
@property
|
1211
1213
|
@pulumi.getter(name="publicIpDisabled")
|
1212
|
-
def public_ip_disabled(self) -> pulumi.Output[Optional[bool]]:
|
1214
|
+
def public_ip_disabled(self) -> pulumi.Output[Optional[builtins.bool]]:
|
1213
1215
|
"""
|
1214
1216
|
Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
|
1215
1217
|
|
@@ -1219,7 +1221,7 @@ class Pool(pulumi.CustomResource):
|
|
1219
1221
|
|
1220
1222
|
@property
|
1221
1223
|
@pulumi.getter
|
1222
|
-
def region(self) -> pulumi.Output[str]:
|
1224
|
+
def region(self) -> pulumi.Output[builtins.str]:
|
1223
1225
|
"""
|
1224
1226
|
`region`) The region in which the pool should be created.
|
1225
1227
|
"""
|
@@ -1227,7 +1229,7 @@ class Pool(pulumi.CustomResource):
|
|
1227
1229
|
|
1228
1230
|
@property
|
1229
1231
|
@pulumi.getter(name="rootVolumeSizeInGb")
|
1230
|
-
def root_volume_size_in_gb(self) -> pulumi.Output[int]:
|
1232
|
+
def root_volume_size_in_gb(self) -> pulumi.Output[builtins.int]:
|
1231
1233
|
"""
|
1232
1234
|
The size of the system volume of the nodes in gigabyte
|
1233
1235
|
"""
|
@@ -1235,7 +1237,7 @@ class Pool(pulumi.CustomResource):
|
|
1235
1237
|
|
1236
1238
|
@property
|
1237
1239
|
@pulumi.getter(name="rootVolumeType")
|
1238
|
-
def root_volume_type(self) -> pulumi.Output[str]:
|
1240
|
+
def root_volume_type(self) -> pulumi.Output[builtins.str]:
|
1239
1241
|
"""
|
1240
1242
|
System volume type of the nodes composing the pool
|
1241
1243
|
"""
|
@@ -1243,7 +1245,7 @@ class Pool(pulumi.CustomResource):
|
|
1243
1245
|
|
1244
1246
|
@property
|
1245
1247
|
@pulumi.getter
|
1246
|
-
def size(self) -> pulumi.Output[int]:
|
1248
|
+
def size(self) -> pulumi.Output[builtins.int]:
|
1247
1249
|
"""
|
1248
1250
|
The size of the pool.
|
1249
1251
|
|
@@ -1253,7 +1255,7 @@ class Pool(pulumi.CustomResource):
|
|
1253
1255
|
|
1254
1256
|
@property
|
1255
1257
|
@pulumi.getter
|
1256
|
-
def status(self) -> pulumi.Output[str]:
|
1258
|
+
def status(self) -> pulumi.Output[builtins.str]:
|
1257
1259
|
"""
|
1258
1260
|
The status of the node.
|
1259
1261
|
"""
|
@@ -1261,7 +1263,7 @@ class Pool(pulumi.CustomResource):
|
|
1261
1263
|
|
1262
1264
|
@property
|
1263
1265
|
@pulumi.getter
|
1264
|
-
def tags(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
1266
|
+
def tags(self) -> pulumi.Output[Optional[Sequence[builtins.str]]]:
|
1265
1267
|
"""
|
1266
1268
|
The tags associated with the pool.
|
1267
1269
|
|
@@ -1271,7 +1273,7 @@ class Pool(pulumi.CustomResource):
|
|
1271
1273
|
|
1272
1274
|
@property
|
1273
1275
|
@pulumi.getter(name="updatedAt")
|
1274
|
-
def updated_at(self) -> pulumi.Output[str]:
|
1276
|
+
def updated_at(self) -> pulumi.Output[builtins.str]:
|
1275
1277
|
"""
|
1276
1278
|
The last update date of the pool.
|
1277
1279
|
"""
|
@@ -1287,7 +1289,7 @@ class Pool(pulumi.CustomResource):
|
|
1287
1289
|
|
1288
1290
|
@property
|
1289
1291
|
@pulumi.getter
|
1290
|
-
def version(self) -> pulumi.Output[str]:
|
1292
|
+
def version(self) -> pulumi.Output[builtins.str]:
|
1291
1293
|
"""
|
1292
1294
|
The version of the pool.
|
1293
1295
|
"""
|
@@ -1295,7 +1297,7 @@ class Pool(pulumi.CustomResource):
|
|
1295
1297
|
|
1296
1298
|
@property
|
1297
1299
|
@pulumi.getter(name="waitForPoolReady")
|
1298
|
-
def wait_for_pool_ready(self) -> pulumi.Output[Optional[bool]]:
|
1300
|
+
def wait_for_pool_ready(self) -> pulumi.Output[Optional[builtins.bool]]:
|
1299
1301
|
"""
|
1300
1302
|
Whether to wait for the pool to be ready.
|
1301
1303
|
"""
|
@@ -1303,7 +1305,7 @@ class Pool(pulumi.CustomResource):
|
|
1303
1305
|
|
1304
1306
|
@property
|
1305
1307
|
@pulumi.getter
|
1306
|
-
def zone(self) -> pulumi.Output[str]:
|
1308
|
+
def zone(self) -> pulumi.Output[builtins.str]:
|
1307
1309
|
"""
|
1308
1310
|
`zone`) The zone in which the pool should be created.
|
1309
1311
|
|