pulumiverse-scaleway 1.34.2a1759388651__py3-none-any.whl → 1.35.0__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.
Potentially problematic release.
This version of pulumiverse-scaleway might be problematic. Click here for more details.
- pulumiverse_scaleway/__init__.py +1 -1
- pulumiverse_scaleway/_inputs.py +2769 -2816
- pulumiverse_scaleway/account/__init__.py +1 -1
- pulumiverse_scaleway/account/get_availability_zones.py +11 -12
- pulumiverse_scaleway/account/get_project.py +27 -28
- pulumiverse_scaleway/account/get_projects.py +18 -19
- pulumiverse_scaleway/account/get_ssh_key.py +33 -34
- pulumiverse_scaleway/account/outputs.py +25 -26
- pulumiverse_scaleway/account/project.py +70 -71
- pulumiverse_scaleway/account/ssh_key.py +105 -106
- pulumiverse_scaleway/account_project.py +70 -71
- pulumiverse_scaleway/account_ssh_key.py +105 -106
- pulumiverse_scaleway/apple_silicon_server.py +216 -217
- pulumiverse_scaleway/applesilicon/__init__.py +1 -1
- pulumiverse_scaleway/applesilicon/_inputs.py +50 -51
- pulumiverse_scaleway/applesilicon/outputs.py +34 -35
- pulumiverse_scaleway/applesilicon/server.py +216 -217
- pulumiverse_scaleway/autoscaling/__init__.py +1 -1
- pulumiverse_scaleway/autoscaling/_inputs.py +130 -131
- pulumiverse_scaleway/autoscaling/instance_group.py +127 -128
- pulumiverse_scaleway/autoscaling/instance_policy.py +140 -141
- pulumiverse_scaleway/autoscaling/instance_template.py +235 -236
- pulumiverse_scaleway/autoscaling/outputs.py +88 -89
- pulumiverse_scaleway/baremetal_server.py +366 -351
- pulumiverse_scaleway/billing/__init__.py +1 -1
- pulumiverse_scaleway/billing/get_consumptions.py +18 -15
- pulumiverse_scaleway/billing/get_invoices.py +24 -25
- pulumiverse_scaleway/billing/outputs.py +95 -96
- pulumiverse_scaleway/block/__init__.py +1 -1
- pulumiverse_scaleway/block/_inputs.py +25 -26
- pulumiverse_scaleway/block/get_snapshot.py +37 -38
- pulumiverse_scaleway/block/get_volume.py +37 -38
- pulumiverse_scaleway/block/outputs.py +33 -34
- pulumiverse_scaleway/block/snapshot.py +100 -93
- pulumiverse_scaleway/block/volume.py +137 -138
- pulumiverse_scaleway/block_snapshot.py +100 -93
- pulumiverse_scaleway/block_volume.py +137 -138
- pulumiverse_scaleway/cockpit.py +48 -49
- pulumiverse_scaleway/cockpit_alert_manager.py +64 -65
- pulumiverse_scaleway/cockpit_grafana_user.py +70 -71
- pulumiverse_scaleway/cockpit_source.py +140 -141
- pulumiverse_scaleway/cockpit_token.py +82 -83
- pulumiverse_scaleway/config/__init__.py +1 -1
- pulumiverse_scaleway/config/__init__.pyi +1 -2
- pulumiverse_scaleway/config/vars.py +9 -10
- pulumiverse_scaleway/container.py +476 -477
- pulumiverse_scaleway/container_cron.py +95 -96
- pulumiverse_scaleway/container_domain.py +61 -62
- pulumiverse_scaleway/container_namespace.py +181 -182
- pulumiverse_scaleway/container_token.py +95 -96
- pulumiverse_scaleway/container_trigger.py +75 -76
- pulumiverse_scaleway/containers/__init__.py +1 -1
- pulumiverse_scaleway/containers/_inputs.py +86 -87
- pulumiverse_scaleway/containers/container.py +476 -477
- pulumiverse_scaleway/containers/cron.py +95 -96
- pulumiverse_scaleway/containers/domain.py +61 -62
- pulumiverse_scaleway/containers/get_container.py +79 -80
- pulumiverse_scaleway/containers/get_namespace.py +45 -46
- pulumiverse_scaleway/containers/namespace.py +181 -182
- pulumiverse_scaleway/containers/outputs.py +83 -84
- pulumiverse_scaleway/containers/token.py +95 -96
- pulumiverse_scaleway/containers/trigger.py +75 -76
- pulumiverse_scaleway/database.py +79 -80
- pulumiverse_scaleway/database_acl.py +38 -39
- pulumiverse_scaleway/database_backup.py +122 -123
- pulumiverse_scaleway/database_instance.py +408 -409
- pulumiverse_scaleway/database_privilege.py +86 -87
- pulumiverse_scaleway/database_read_replica.py +58 -59
- pulumiverse_scaleway/database_user.py +86 -87
- pulumiverse_scaleway/databases/__init__.py +1 -1
- pulumiverse_scaleway/databases/_inputs.py +227 -228
- pulumiverse_scaleway/databases/acl.py +38 -39
- pulumiverse_scaleway/databases/database.py +79 -80
- pulumiverse_scaleway/databases/database_backup.py +122 -123
- pulumiverse_scaleway/databases/get_acl.py +16 -17
- pulumiverse_scaleway/databases/get_database.py +25 -26
- pulumiverse_scaleway/databases/get_database_backup.py +45 -46
- pulumiverse_scaleway/databases/get_instance.py +72 -73
- pulumiverse_scaleway/databases/get_privilege.py +29 -30
- pulumiverse_scaleway/databases/instance.py +408 -409
- pulumiverse_scaleway/databases/outputs.py +247 -248
- pulumiverse_scaleway/databases/privilege.py +86 -87
- pulumiverse_scaleway/databases/read_replica.py +58 -59
- pulumiverse_scaleway/databases/serverless_database.py +95 -96
- pulumiverse_scaleway/databases/snapshot.py +123 -124
- pulumiverse_scaleway/databases/user.py +86 -87
- pulumiverse_scaleway/domain/__init__.py +1 -1
- pulumiverse_scaleway/domain/_inputs.py +660 -661
- pulumiverse_scaleway/domain/get_record.py +51 -52
- pulumiverse_scaleway/domain/get_zone.py +33 -34
- pulumiverse_scaleway/domain/outputs.py +500 -501
- pulumiverse_scaleway/domain/record.py +150 -151
- pulumiverse_scaleway/domain/registration.py +121 -122
- pulumiverse_scaleway/domain/zone.py +106 -107
- pulumiverse_scaleway/domain_record.py +150 -151
- pulumiverse_scaleway/domain_zone.py +106 -107
- pulumiverse_scaleway/edge_services_backend_stage.py +59 -60
- pulumiverse_scaleway/edge_services_cache_stage.py +162 -159
- pulumiverse_scaleway/edge_services_dns_stage.py +130 -131
- pulumiverse_scaleway/edge_services_head_stage.py +35 -36
- pulumiverse_scaleway/edge_services_pipeline.py +79 -80
- pulumiverse_scaleway/edge_services_plan.py +35 -36
- pulumiverse_scaleway/edge_services_route_stage.py +73 -74
- pulumiverse_scaleway/edge_services_tls_stage.py +150 -151
- pulumiverse_scaleway/edge_services_waf_stage.py +104 -105
- pulumiverse_scaleway/elasticmetal/__init__.py +1 -1
- pulumiverse_scaleway/elasticmetal/_inputs.py +146 -147
- pulumiverse_scaleway/elasticmetal/get_ip.py +41 -42
- pulumiverse_scaleway/elasticmetal/get_ips.py +30 -31
- pulumiverse_scaleway/elasticmetal/get_offer.py +40 -41
- pulumiverse_scaleway/elasticmetal/get_option.py +23 -24
- pulumiverse_scaleway/elasticmetal/get_os.py +27 -28
- pulumiverse_scaleway/elasticmetal/get_partition_schema.py +35 -36
- pulumiverse_scaleway/elasticmetal/get_server.py +69 -70
- pulumiverse_scaleway/elasticmetal/ip.py +165 -166
- pulumiverse_scaleway/elasticmetal/ip_mac_address.py +105 -106
- pulumiverse_scaleway/elasticmetal/outputs.py +312 -312
- pulumiverse_scaleway/elasticmetal/server.py +366 -351
- pulumiverse_scaleway/file_filesystem.py +137 -134
- pulumiverse_scaleway/flexible_ip.py +165 -166
- pulumiverse_scaleway/flexible_ip_mac_address.py +105 -106
- pulumiverse_scaleway/function.py +381 -382
- pulumiverse_scaleway/function_cron.py +95 -96
- pulumiverse_scaleway/function_domain.py +61 -62
- pulumiverse_scaleway/function_namespace.py +164 -165
- pulumiverse_scaleway/function_token.py +95 -96
- pulumiverse_scaleway/function_trigger.py +75 -76
- pulumiverse_scaleway/functions/__init__.py +1 -1
- pulumiverse_scaleway/functions/_inputs.py +49 -50
- pulumiverse_scaleway/functions/cron.py +95 -96
- pulumiverse_scaleway/functions/domain.py +61 -62
- pulumiverse_scaleway/functions/function.py +381 -382
- pulumiverse_scaleway/functions/get_function.py +73 -74
- pulumiverse_scaleway/functions/get_namespace.py +43 -44
- pulumiverse_scaleway/functions/namespace.py +164 -165
- pulumiverse_scaleway/functions/outputs.py +33 -34
- pulumiverse_scaleway/functions/token.py +95 -96
- pulumiverse_scaleway/functions/trigger.py +75 -76
- pulumiverse_scaleway/get_account_project.py +27 -28
- pulumiverse_scaleway/get_account_ssh_key.py +33 -34
- pulumiverse_scaleway/get_availability_zones.py +11 -12
- pulumiverse_scaleway/get_baremetal_offer.py +40 -41
- pulumiverse_scaleway/get_baremetal_option.py +23 -24
- pulumiverse_scaleway/get_baremetal_os.py +27 -28
- pulumiverse_scaleway/get_baremetal_server.py +69 -70
- pulumiverse_scaleway/get_billing_consumptions.py +18 -15
- pulumiverse_scaleway/get_billing_invoices.py +24 -25
- pulumiverse_scaleway/get_block_snapshot.py +37 -38
- pulumiverse_scaleway/get_block_volume.py +37 -38
- pulumiverse_scaleway/get_cockpit.py +15 -16
- pulumiverse_scaleway/get_cockpit_source.py +49 -50
- pulumiverse_scaleway/get_config.py +23 -24
- pulumiverse_scaleway/get_container.py +79 -80
- pulumiverse_scaleway/get_container_namespace.py +45 -46
- pulumiverse_scaleway/get_database.py +25 -26
- pulumiverse_scaleway/get_database_acl.py +16 -17
- pulumiverse_scaleway/get_database_backup.py +45 -46
- pulumiverse_scaleway/get_database_instance.py +72 -73
- pulumiverse_scaleway/get_database_privilege.py +29 -30
- pulumiverse_scaleway/get_domain_record.py +51 -52
- pulumiverse_scaleway/get_domain_zone.py +33 -34
- pulumiverse_scaleway/get_flexible_ip.py +41 -42
- pulumiverse_scaleway/get_flexible_ips.py +30 -31
- pulumiverse_scaleway/get_function.py +73 -74
- pulumiverse_scaleway/get_function_namespace.py +43 -44
- pulumiverse_scaleway/get_iam_api_key.py +27 -28
- pulumiverse_scaleway/get_iam_application.py +31 -32
- pulumiverse_scaleway/get_iam_group.py +35 -36
- pulumiverse_scaleway/get_iam_ssh_key.py +33 -34
- pulumiverse_scaleway/get_iam_user.py +27 -28
- pulumiverse_scaleway/get_instance_image.py +57 -58
- pulumiverse_scaleway/get_instance_ip.py +29 -30
- pulumiverse_scaleway/get_instance_placement_group.py +37 -38
- pulumiverse_scaleway/get_instance_private_nic.py +40 -41
- pulumiverse_scaleway/get_instance_security_group.py +45 -46
- pulumiverse_scaleway/get_instance_server.py +81 -82
- pulumiverse_scaleway/get_instance_servers.py +30 -31
- pulumiverse_scaleway/get_instance_snapshot.py +40 -41
- pulumiverse_scaleway/get_instance_volume.py +41 -42
- pulumiverse_scaleway/get_iot_device.py +45 -46
- pulumiverse_scaleway/get_iot_hub.py +59 -60
- pulumiverse_scaleway/get_ipam_ip.py +64 -65
- pulumiverse_scaleway/get_ipam_ips.py +55 -56
- pulumiverse_scaleway/get_k8s_version.py +21 -22
- pulumiverse_scaleway/get_kubernetes_cluster.py +63 -64
- pulumiverse_scaleway/get_kubernetes_node_pool.py +75 -76
- pulumiverse_scaleway/get_lb_acls.py +28 -29
- pulumiverse_scaleway/get_lb_backend.py +74 -75
- pulumiverse_scaleway/get_lb_backends.py +28 -29
- pulumiverse_scaleway/get_lb_frontend.py +44 -45
- pulumiverse_scaleway/get_lb_frontends.py +28 -29
- pulumiverse_scaleway/get_lb_ips.py +36 -37
- pulumiverse_scaleway/get_lb_route.py +25 -26
- pulumiverse_scaleway/get_lb_routes.py +22 -23
- pulumiverse_scaleway/get_lbs.py +30 -31
- pulumiverse_scaleway/get_loadbalancer.py +55 -56
- pulumiverse_scaleway/get_loadbalancer_certificate.py +35 -36
- pulumiverse_scaleway/get_loadbalancer_ip.py +39 -40
- pulumiverse_scaleway/get_marketplace_image.py +27 -28
- pulumiverse_scaleway/get_mnq_sns.py +17 -18
- pulumiverse_scaleway/get_mnq_sqs.py +17 -18
- pulumiverse_scaleway/get_mongo_db_instance.py +62 -63
- pulumiverse_scaleway/get_object_bucket.py +34 -35
- pulumiverse_scaleway/get_object_bucket_policy.py +21 -22
- pulumiverse_scaleway/get_redis_cluster.py +53 -54
- pulumiverse_scaleway/get_registry_image.py +47 -48
- pulumiverse_scaleway/get_registry_image_tag.py +43 -44
- pulumiverse_scaleway/get_registry_namespace.py +35 -36
- pulumiverse_scaleway/get_secret.py +57 -58
- pulumiverse_scaleway/get_secret_version.py +45 -46
- pulumiverse_scaleway/get_tem_domain.py +102 -70
- pulumiverse_scaleway/get_vpc.py +47 -48
- pulumiverse_scaleway/get_vpc_gateway_network.py +43 -44
- pulumiverse_scaleway/get_vpc_private_network.py +47 -48
- pulumiverse_scaleway/get_vpc_public_gateway.py +55 -56
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +43 -44
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +43 -44
- pulumiverse_scaleway/get_vpc_public_gateway_ip.py +23 -24
- pulumiverse_scaleway/get_vpc_public_pat_rule.py +31 -32
- pulumiverse_scaleway/get_vpc_routes.py +46 -47
- pulumiverse_scaleway/get_vpcs.py +30 -31
- pulumiverse_scaleway/get_web_host_offer.py +33 -34
- pulumiverse_scaleway/get_webhosting.py +57 -58
- pulumiverse_scaleway/hosting/__init__.py +1 -1
- pulumiverse_scaleway/hosting/_inputs.py +80 -81
- pulumiverse_scaleway/hosting/get_hosting.py +57 -58
- pulumiverse_scaleway/hosting/get_offer.py +33 -34
- pulumiverse_scaleway/hosting/hosting.py +209 -210
- pulumiverse_scaleway/hosting/outputs.py +211 -212
- pulumiverse_scaleway/iam/__init__.py +1 -1
- pulumiverse_scaleway/iam/_inputs.py +25 -26
- pulumiverse_scaleway/iam/api_key.py +140 -141
- pulumiverse_scaleway/iam/application.py +96 -97
- pulumiverse_scaleway/iam/get_api_key.py +27 -28
- pulumiverse_scaleway/iam/get_application.py +31 -32
- pulumiverse_scaleway/iam/get_group.py +35 -36
- pulumiverse_scaleway/iam/get_ssh_key.py +33 -34
- pulumiverse_scaleway/iam/get_user.py +27 -28
- pulumiverse_scaleway/iam/group.py +138 -139
- pulumiverse_scaleway/iam/group_membership.py +52 -53
- pulumiverse_scaleway/iam/outputs.py +17 -18
- pulumiverse_scaleway/iam/policy.py +167 -168
- pulumiverse_scaleway/iam/ssh_key.py +105 -106
- pulumiverse_scaleway/iam/user.py +269 -270
- pulumiverse_scaleway/iam_api_key.py +140 -141
- pulumiverse_scaleway/iam_application.py +96 -97
- pulumiverse_scaleway/iam_group.py +138 -139
- pulumiverse_scaleway/iam_group_membership.py +52 -53
- pulumiverse_scaleway/iam_policy.py +167 -168
- pulumiverse_scaleway/iam_ssh_key.py +105 -106
- pulumiverse_scaleway/iam_user.py +269 -270
- pulumiverse_scaleway/inference/__init__.py +1 -1
- pulumiverse_scaleway/inference/_inputs.py +86 -87
- pulumiverse_scaleway/inference/deployment.py +229 -226
- pulumiverse_scaleway/inference/get_model.py +42 -43
- pulumiverse_scaleway/inference/model.py +160 -161
- pulumiverse_scaleway/inference/outputs.py +75 -76
- pulumiverse_scaleway/inference_deployment.py +229 -226
- pulumiverse_scaleway/instance/__init__.py +2 -1
- pulumiverse_scaleway/instance/_inputs.py +431 -478
- pulumiverse_scaleway/instance/get_image.py +57 -58
- pulumiverse_scaleway/instance/get_ip.py +29 -30
- pulumiverse_scaleway/instance/get_placement_group.py +37 -38
- pulumiverse_scaleway/instance/get_private_nic.py +40 -41
- pulumiverse_scaleway/instance/get_security_group.py +45 -46
- pulumiverse_scaleway/instance/get_server.py +81 -82
- pulumiverse_scaleway/instance/get_server_type.py +271 -0
- pulumiverse_scaleway/instance/get_servers.py +30 -31
- pulumiverse_scaleway/instance/get_snapshot.py +40 -41
- pulumiverse_scaleway/instance/get_volume.py +41 -42
- pulumiverse_scaleway/instance/image.py +258 -205
- pulumiverse_scaleway/instance/ip.py +114 -115
- pulumiverse_scaleway/instance/ip_reverse_dns.py +52 -53
- pulumiverse_scaleway/instance/outputs.py +702 -574
- pulumiverse_scaleway/instance/placement_group.py +121 -122
- pulumiverse_scaleway/instance/private_nic.py +115 -116
- pulumiverse_scaleway/instance/security_group.py +186 -187
- pulumiverse_scaleway/instance/security_group_rules.py +24 -25
- pulumiverse_scaleway/instance/server.py +433 -434
- pulumiverse_scaleway/instance/snapshot.py +133 -162
- pulumiverse_scaleway/instance/user_data.py +69 -70
- pulumiverse_scaleway/instance/volume.py +155 -177
- pulumiverse_scaleway/instance_image.py +258 -205
- pulumiverse_scaleway/instance_ip.py +114 -115
- pulumiverse_scaleway/instance_ip_reverse_dns.py +52 -53
- pulumiverse_scaleway/instance_placement_group.py +121 -122
- pulumiverse_scaleway/instance_private_nic.py +115 -116
- pulumiverse_scaleway/instance_security_group.py +186 -187
- pulumiverse_scaleway/instance_security_group_rules.py +24 -25
- pulumiverse_scaleway/instance_server.py +433 -434
- pulumiverse_scaleway/instance_snapshot.py +133 -162
- pulumiverse_scaleway/instance_user_data.py +69 -70
- pulumiverse_scaleway/instance_volume.py +155 -177
- pulumiverse_scaleway/iot/__init__.py +1 -1
- pulumiverse_scaleway/iot/_inputs.py +118 -119
- pulumiverse_scaleway/iot/device.py +154 -155
- pulumiverse_scaleway/iot/get_device.py +45 -46
- pulumiverse_scaleway/iot/get_hub.py +59 -60
- pulumiverse_scaleway/iot/hub.py +252 -253
- pulumiverse_scaleway/iot/network.py +113 -114
- pulumiverse_scaleway/iot/outputs.py +106 -107
- pulumiverse_scaleway/iot/route.py +87 -88
- pulumiverse_scaleway/iot_device.py +154 -155
- pulumiverse_scaleway/iot_hub.py +252 -253
- pulumiverse_scaleway/iot_network.py +113 -114
- pulumiverse_scaleway/iot_route.py +87 -88
- pulumiverse_scaleway/ipam/__init__.py +1 -1
- pulumiverse_scaleway/ipam/_inputs.py +103 -104
- pulumiverse_scaleway/ipam/get_ip.py +64 -65
- pulumiverse_scaleway/ipam/get_ips.py +55 -56
- pulumiverse_scaleway/ipam/ip.py +123 -124
- pulumiverse_scaleway/ipam/ip_reverse_dns.py +69 -70
- pulumiverse_scaleway/ipam/outputs.py +119 -120
- pulumiverse_scaleway/ipam_ip.py +123 -124
- pulumiverse_scaleway/ipam_ip_reverse_dns.py +69 -70
- pulumiverse_scaleway/job/__init__.py +1 -1
- pulumiverse_scaleway/job/_inputs.py +44 -45
- pulumiverse_scaleway/job/definition.py +177 -178
- pulumiverse_scaleway/job/outputs.py +30 -31
- pulumiverse_scaleway/job_definition.py +177 -178
- pulumiverse_scaleway/key_manager_key.py +334 -226
- pulumiverse_scaleway/kubernetes/__init__.py +1 -1
- pulumiverse_scaleway/kubernetes/_inputs.py +227 -228
- pulumiverse_scaleway/kubernetes/acl.py +55 -56
- pulumiverse_scaleway/kubernetes/cluster.py +350 -297
- pulumiverse_scaleway/kubernetes/get_cluster.py +63 -64
- pulumiverse_scaleway/kubernetes/get_pool.py +75 -76
- pulumiverse_scaleway/kubernetes/get_version.py +21 -22
- pulumiverse_scaleway/kubernetes/outputs.py +288 -289
- pulumiverse_scaleway/kubernetes/pool.py +374 -375
- pulumiverse_scaleway/kubernetes_cluster.py +350 -297
- pulumiverse_scaleway/kubernetes_node_pool.py +374 -375
- pulumiverse_scaleway/loadbalancer.py +246 -247
- pulumiverse_scaleway/loadbalancer_acl.py +93 -94
- pulumiverse_scaleway/loadbalancer_backend.py +493 -487
- pulumiverse_scaleway/loadbalancer_certificate.py +95 -96
- pulumiverse_scaleway/loadbalancer_frontend.py +201 -202
- pulumiverse_scaleway/loadbalancer_ip.py +122 -123
- pulumiverse_scaleway/loadbalancer_route.py +121 -122
- pulumiverse_scaleway/loadbalancers/__init__.py +1 -1
- pulumiverse_scaleway/loadbalancers/_inputs.py +281 -282
- pulumiverse_scaleway/loadbalancers/acl.py +93 -94
- pulumiverse_scaleway/loadbalancers/backend.py +493 -487
- pulumiverse_scaleway/loadbalancers/certificate.py +95 -96
- pulumiverse_scaleway/loadbalancers/frontend.py +201 -202
- pulumiverse_scaleway/loadbalancers/get_acls.py +28 -29
- pulumiverse_scaleway/loadbalancers/get_backend.py +74 -75
- pulumiverse_scaleway/loadbalancers/get_backends.py +28 -29
- pulumiverse_scaleway/loadbalancers/get_certificate.py +35 -36
- pulumiverse_scaleway/loadbalancers/get_frontend.py +44 -45
- pulumiverse_scaleway/loadbalancers/get_frontends.py +28 -29
- pulumiverse_scaleway/loadbalancers/get_ip.py +39 -40
- pulumiverse_scaleway/loadbalancers/get_ips.py +36 -37
- pulumiverse_scaleway/loadbalancers/get_load_balancer.py +55 -56
- pulumiverse_scaleway/loadbalancers/get_load_balancers.py +30 -31
- pulumiverse_scaleway/loadbalancers/get_route.py +25 -26
- pulumiverse_scaleway/loadbalancers/get_routes.py +22 -23
- pulumiverse_scaleway/loadbalancers/ip.py +122 -123
- pulumiverse_scaleway/loadbalancers/load_balancer.py +246 -247
- pulumiverse_scaleway/loadbalancers/outputs.py +754 -751
- pulumiverse_scaleway/loadbalancers/route.py +121 -122
- pulumiverse_scaleway/mnq/__init__.py +1 -1
- pulumiverse_scaleway/mnq/_inputs.py +49 -50
- pulumiverse_scaleway/mnq/get_sns.py +17 -18
- pulumiverse_scaleway/mnq/get_sqs.py +17 -18
- pulumiverse_scaleway/mnq/nats_account.py +61 -62
- pulumiverse_scaleway/mnq/nats_credentials.py +61 -62
- pulumiverse_scaleway/mnq/outputs.py +33 -34
- pulumiverse_scaleway/mnq/sns.py +44 -45
- pulumiverse_scaleway/mnq/sns_credentials.py +73 -74
- pulumiverse_scaleway/mnq/sns_topic.py +172 -173
- pulumiverse_scaleway/mnq/sns_topic_subscription.py +180 -181
- pulumiverse_scaleway/mnq/sqs.py +44 -45
- pulumiverse_scaleway/mnq/sqs_credentials.py +73 -74
- pulumiverse_scaleway/mnq/sqs_queue.py +243 -244
- pulumiverse_scaleway/mnq_nats_account.py +61 -62
- pulumiverse_scaleway/mnq_nats_credentials.py +61 -62
- pulumiverse_scaleway/mnq_sns.py +44 -45
- pulumiverse_scaleway/mnq_sns_credentials.py +73 -74
- pulumiverse_scaleway/mnq_sns_topic.py +172 -173
- pulumiverse_scaleway/mnq_sns_topic_subscription.py +180 -181
- pulumiverse_scaleway/mnq_sqs.py +44 -45
- pulumiverse_scaleway/mnq_sqs_credentials.py +73 -74
- pulumiverse_scaleway/mnq_sqs_queue.py +243 -244
- pulumiverse_scaleway/mongo_db_instance.py +309 -310
- pulumiverse_scaleway/mongo_db_snapshot.py +123 -124
- pulumiverse_scaleway/mongodb/__init__.py +1 -1
- pulumiverse_scaleway/mongodb/_inputs.py +80 -81
- pulumiverse_scaleway/mongodb/get_instance.py +62 -63
- pulumiverse_scaleway/mongodb/instance.py +309 -310
- pulumiverse_scaleway/mongodb/outputs.py +95 -96
- pulumiverse_scaleway/mongodb/snapshot.py +123 -124
- pulumiverse_scaleway/mongodb/user.py +72 -73
- pulumiverse_scaleway/network/__init__.py +1 -1
- pulumiverse_scaleway/network/_inputs.py +166 -167
- pulumiverse_scaleway/network/acl.py +72 -73
- pulumiverse_scaleway/network/gateway_network.py +179 -180
- pulumiverse_scaleway/network/get_gateway_network.py +43 -44
- pulumiverse_scaleway/network/get_private_network.py +47 -48
- pulumiverse_scaleway/network/get_public_gateway.py +55 -56
- pulumiverse_scaleway/network/get_public_gateway_dhcp.py +43 -44
- pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +43 -44
- pulumiverse_scaleway/network/get_public_gateway_ip.py +23 -24
- pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +31 -32
- pulumiverse_scaleway/network/get_routes.py +46 -47
- pulumiverse_scaleway/network/get_vpc.py +47 -48
- pulumiverse_scaleway/network/get_vpcs.py +30 -31
- pulumiverse_scaleway/network/outputs.py +288 -287
- pulumiverse_scaleway/network/private_network.py +170 -171
- pulumiverse_scaleway/network/public_gateway.py +259 -260
- pulumiverse_scaleway/network/public_gateway_dhcp.py +283 -284
- pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +105 -106
- pulumiverse_scaleway/network/public_gateway_ip.py +105 -106
- pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +52 -53
- pulumiverse_scaleway/network/public_gateway_pat_rule.py +130 -131
- pulumiverse_scaleway/network/route.py +138 -139
- pulumiverse_scaleway/network/vpc.py +139 -140
- pulumiverse_scaleway/object/__init__.py +1 -1
- pulumiverse_scaleway/object/_inputs.py +164 -165
- pulumiverse_scaleway/object/bucket.py +147 -148
- pulumiverse_scaleway/object/bucket_acl.py +89 -90
- pulumiverse_scaleway/object/bucket_lock_configuration.py +55 -56
- pulumiverse_scaleway/object/bucket_policy.py +69 -70
- pulumiverse_scaleway/object/bucket_website_configuration.py +76 -77
- pulumiverse_scaleway/object/get_bucket.py +34 -35
- pulumiverse_scaleway/object/get_bucket_policy.py +21 -22
- pulumiverse_scaleway/object/item.py +239 -240
- pulumiverse_scaleway/object/outputs.py +171 -172
- pulumiverse_scaleway/object_bucket.py +147 -148
- pulumiverse_scaleway/object_bucket_acl.py +89 -90
- pulumiverse_scaleway/object_bucket_lock_configuration.py +55 -56
- pulumiverse_scaleway/object_bucket_policy.py +69 -70
- pulumiverse_scaleway/object_bucket_website_configuration.py +76 -77
- pulumiverse_scaleway/object_item.py +239 -240
- pulumiverse_scaleway/observability/__init__.py +1 -1
- pulumiverse_scaleway/observability/_inputs.py +105 -106
- pulumiverse_scaleway/observability/alert_manager.py +64 -65
- pulumiverse_scaleway/observability/cockpit.py +48 -49
- pulumiverse_scaleway/observability/get_instance.py +15 -16
- pulumiverse_scaleway/observability/get_source.py +49 -50
- pulumiverse_scaleway/observability/get_sources.py +46 -47
- pulumiverse_scaleway/observability/grafana_user.py +70 -71
- pulumiverse_scaleway/observability/outputs.py +149 -150
- pulumiverse_scaleway/observability/source.py +140 -141
- pulumiverse_scaleway/observability/token.py +82 -83
- pulumiverse_scaleway/outputs.py +3934 -3944
- pulumiverse_scaleway/provider.py +82 -83
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/rdb_snapshot.py +123 -124
- pulumiverse_scaleway/redis/__init__.py +1 -1
- pulumiverse_scaleway/redis/_inputs.py +86 -87
- pulumiverse_scaleway/redis/cluster.py +227 -228
- pulumiverse_scaleway/redis/get_cluster.py +53 -54
- pulumiverse_scaleway/redis/outputs.py +115 -116
- pulumiverse_scaleway/redis_cluster.py +227 -228
- pulumiverse_scaleway/registry/__init__.py +1 -1
- pulumiverse_scaleway/registry/get_image.py +47 -48
- pulumiverse_scaleway/registry/get_image_tag.py +43 -44
- pulumiverse_scaleway/registry/get_namespace.py +35 -36
- pulumiverse_scaleway/registry/namespace.py +104 -105
- pulumiverse_scaleway/registry_namespace.py +104 -105
- pulumiverse_scaleway/sdb_database.py +95 -96
- pulumiverse_scaleway/secret.py +178 -179
- pulumiverse_scaleway/secret_version.py +105 -106
- pulumiverse_scaleway/secrets/__init__.py +1 -1
- pulumiverse_scaleway/secrets/_inputs.py +62 -63
- pulumiverse_scaleway/secrets/get_secret.py +57 -58
- pulumiverse_scaleway/secrets/get_version.py +45 -46
- pulumiverse_scaleway/secrets/outputs.py +83 -84
- pulumiverse_scaleway/secrets/secret.py +178 -179
- pulumiverse_scaleway/secrets/version.py +105 -106
- pulumiverse_scaleway/tem/__init__.py +1 -1
- pulumiverse_scaleway/tem/_inputs.py +32 -33
- pulumiverse_scaleway/tem/blocked_list.py +103 -104
- pulumiverse_scaleway/tem/domain.py +340 -257
- pulumiverse_scaleway/tem/domain_validation.py +61 -62
- pulumiverse_scaleway/tem/get_domain.py +102 -70
- pulumiverse_scaleway/tem/get_offer_subscription.py +33 -34
- pulumiverse_scaleway/tem/outputs.py +43 -44
- pulumiverse_scaleway/tem/webhook.py +130 -131
- pulumiverse_scaleway/tem_domain.py +340 -257
- pulumiverse_scaleway/tem_domain_validation.py +61 -62
- pulumiverse_scaleway/tem_webhook.py +130 -131
- pulumiverse_scaleway/vpc.py +139 -140
- pulumiverse_scaleway/vpc_gateway_network.py +179 -180
- pulumiverse_scaleway/vpc_private_network.py +170 -171
- pulumiverse_scaleway/vpc_public_gateway.py +259 -260
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +283 -284
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +105 -106
- pulumiverse_scaleway/vpc_public_gateway_ip.py +105 -106
- pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +52 -53
- pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +130 -131
- pulumiverse_scaleway/vpc_route.py +138 -139
- pulumiverse_scaleway/webhosting.py +209 -210
- {pulumiverse_scaleway-1.34.2a1759388651.dist-info → pulumiverse_scaleway-1.35.0.dist-info}/METADATA +1 -1
- pulumiverse_scaleway-1.35.0.dist-info/RECORD +500 -0
- pulumiverse_scaleway-1.34.2a1759388651.dist-info/RECORD +0 -499
- {pulumiverse_scaleway-1.34.2a1759388651.dist-info → pulumiverse_scaleway-1.35.0.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.34.2a1759388651.dist-info → pulumiverse_scaleway-1.35.0.dist-info}/top_level.txt +0 -0
|
@@ -2,8 +2,7 @@
|
|
|
2
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
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -18,6 +17,7 @@ from . import outputs
|
|
|
18
17
|
|
|
19
18
|
__all__ = [
|
|
20
19
|
'ImageAdditionalVolume',
|
|
20
|
+
'ImageRootVolume',
|
|
21
21
|
'PrivateNicPrivateIp',
|
|
22
22
|
'SecurityGroupInboundRule',
|
|
23
23
|
'SecurityGroupOutboundRule',
|
|
@@ -35,6 +35,9 @@ __all__ = [
|
|
|
35
35
|
'GetServerPrivateNetworkResult',
|
|
36
36
|
'GetServerPublicIpResult',
|
|
37
37
|
'GetServerRootVolumeResult',
|
|
38
|
+
'GetServerTypeCapabilityResult',
|
|
39
|
+
'GetServerTypeNetworkResult',
|
|
40
|
+
'GetServerTypeVolumeResult',
|
|
38
41
|
'GetServersServerResult',
|
|
39
42
|
'GetServersServerPrivateIpResult',
|
|
40
43
|
'GetServersServerPublicIpResult',
|
|
@@ -46,13 +49,7 @@ class ImageAdditionalVolume(dict):
|
|
|
46
49
|
@staticmethod
|
|
47
50
|
def __key_warning(key: str):
|
|
48
51
|
suggest = None
|
|
49
|
-
if key == "
|
|
50
|
-
suggest = "creation_date"
|
|
51
|
-
elif key == "exportUri":
|
|
52
|
-
suggest = "export_uri"
|
|
53
|
-
elif key == "modificationDate":
|
|
54
|
-
suggest = "modification_date"
|
|
55
|
-
elif key == "volumeType":
|
|
52
|
+
if key == "volumeType":
|
|
56
53
|
suggest = "volume_type"
|
|
57
54
|
|
|
58
55
|
if suggest:
|
|
@@ -67,191 +64,179 @@ class ImageAdditionalVolume(dict):
|
|
|
67
64
|
return super().get(key, default)
|
|
68
65
|
|
|
69
66
|
def __init__(__self__, *,
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
"""
|
|
84
|
-
:param builtins.str creation_date: Date of the volume creation.
|
|
85
|
-
:param builtins.str export_uri: The export URI of the volume.
|
|
86
|
-
:param builtins.str id: ID of the server containing the volume.
|
|
87
|
-
:param builtins.str modification_date: Date of volume latest update.
|
|
88
|
-
:param builtins.str name: The name of the image. If not provided it will be randomly generated.
|
|
89
|
-
:param builtins.str organization: The organization ID the volume is associated with.
|
|
90
|
-
:param builtins.str project: ID of the project the volume is associated with
|
|
91
|
-
:param Mapping[str, builtins.str] server: Description of the server containing the volume (in case the image is a backup from a server).
|
|
92
|
-
:param builtins.int size: The size of the volume.
|
|
93
|
-
:param builtins.str state: State of the volume.
|
|
94
|
-
:param Sequence[builtins.str] tags: A list of tags to apply to the image.
|
|
95
|
-
:param builtins.str volume_type: The type of volume, possible values are `l_ssd` and `b_ssd`.
|
|
96
|
-
:param builtins.str zone: The zone in which the image should be created.
|
|
97
|
-
"""
|
|
98
|
-
if creation_date is not None:
|
|
99
|
-
pulumi.set(__self__, "creation_date", creation_date)
|
|
100
|
-
if export_uri is not None:
|
|
101
|
-
pulumi.set(__self__, "export_uri", export_uri)
|
|
67
|
+
id: Optional[_builtins.str] = None,
|
|
68
|
+
name: Optional[_builtins.str] = None,
|
|
69
|
+
server: Optional[Mapping[str, _builtins.str]] = None,
|
|
70
|
+
size: Optional[_builtins.int] = None,
|
|
71
|
+
tags: Optional[Sequence[_builtins.str]] = None,
|
|
72
|
+
volume_type: Optional[_builtins.str] = None):
|
|
73
|
+
"""
|
|
74
|
+
:param _builtins.str id: ID of the server containing the volume.
|
|
75
|
+
:param _builtins.str name: The name of the image. If not provided it will be randomly generated.
|
|
76
|
+
:param Mapping[str, _builtins.str] server: Description of the server containing the volume (in case the image is a backup from a server).
|
|
77
|
+
:param _builtins.int size: The size of the volume.
|
|
78
|
+
:param Sequence[_builtins.str] tags: A list of tags to apply to the image.
|
|
79
|
+
:param _builtins.str volume_type: The type of volume, possible values are `l_ssd` and `sbs_snapshot`.
|
|
80
|
+
"""
|
|
102
81
|
if id is not None:
|
|
103
82
|
pulumi.set(__self__, "id", id)
|
|
104
|
-
if modification_date is not None:
|
|
105
|
-
pulumi.set(__self__, "modification_date", modification_date)
|
|
106
83
|
if name is not None:
|
|
107
84
|
pulumi.set(__self__, "name", name)
|
|
108
|
-
if organization is not None:
|
|
109
|
-
pulumi.set(__self__, "organization", organization)
|
|
110
|
-
if project is not None:
|
|
111
|
-
pulumi.set(__self__, "project", project)
|
|
112
85
|
if server is not None:
|
|
113
86
|
pulumi.set(__self__, "server", server)
|
|
114
87
|
if size is not None:
|
|
115
88
|
pulumi.set(__self__, "size", size)
|
|
116
|
-
if state is not None:
|
|
117
|
-
pulumi.set(__self__, "state", state)
|
|
118
89
|
if tags is not None:
|
|
119
90
|
pulumi.set(__self__, "tags", tags)
|
|
120
91
|
if volume_type is not None:
|
|
121
92
|
pulumi.set(__self__, "volume_type", volume_type)
|
|
122
|
-
if zone is not None:
|
|
123
|
-
pulumi.set(__self__, "zone", zone)
|
|
124
|
-
|
|
125
|
-
@property
|
|
126
|
-
@pulumi.getter(name="creationDate")
|
|
127
|
-
def creation_date(self) -> Optional[builtins.str]:
|
|
128
|
-
"""
|
|
129
|
-
Date of the volume creation.
|
|
130
|
-
"""
|
|
131
|
-
return pulumi.get(self, "creation_date")
|
|
132
|
-
|
|
133
|
-
@property
|
|
134
|
-
@pulumi.getter(name="exportUri")
|
|
135
|
-
def export_uri(self) -> Optional[builtins.str]:
|
|
136
|
-
"""
|
|
137
|
-
The export URI of the volume.
|
|
138
|
-
"""
|
|
139
|
-
return pulumi.get(self, "export_uri")
|
|
140
93
|
|
|
141
|
-
@property
|
|
94
|
+
@_builtins.property
|
|
142
95
|
@pulumi.getter
|
|
143
|
-
def id(self) -> Optional[
|
|
96
|
+
def id(self) -> Optional[_builtins.str]:
|
|
144
97
|
"""
|
|
145
98
|
ID of the server containing the volume.
|
|
146
99
|
"""
|
|
147
100
|
return pulumi.get(self, "id")
|
|
148
101
|
|
|
149
|
-
@property
|
|
150
|
-
@pulumi.getter(name="modificationDate")
|
|
151
|
-
def modification_date(self) -> Optional[builtins.str]:
|
|
152
|
-
"""
|
|
153
|
-
Date of volume latest update.
|
|
154
|
-
"""
|
|
155
|
-
return pulumi.get(self, "modification_date")
|
|
156
|
-
|
|
157
|
-
@property
|
|
102
|
+
@_builtins.property
|
|
158
103
|
@pulumi.getter
|
|
159
|
-
def name(self) -> Optional[
|
|
104
|
+
def name(self) -> Optional[_builtins.str]:
|
|
160
105
|
"""
|
|
161
106
|
The name of the image. If not provided it will be randomly generated.
|
|
162
107
|
"""
|
|
163
108
|
return pulumi.get(self, "name")
|
|
164
109
|
|
|
165
|
-
@property
|
|
110
|
+
@_builtins.property
|
|
166
111
|
@pulumi.getter
|
|
167
|
-
def
|
|
112
|
+
def server(self) -> Optional[Mapping[str, _builtins.str]]:
|
|
168
113
|
"""
|
|
169
|
-
|
|
114
|
+
Description of the server containing the volume (in case the image is a backup from a server).
|
|
170
115
|
"""
|
|
171
|
-
return pulumi.get(self, "
|
|
116
|
+
return pulumi.get(self, "server")
|
|
172
117
|
|
|
173
|
-
@property
|
|
118
|
+
@_builtins.property
|
|
174
119
|
@pulumi.getter
|
|
175
|
-
def
|
|
120
|
+
def size(self) -> Optional[_builtins.int]:
|
|
176
121
|
"""
|
|
177
|
-
|
|
122
|
+
The size of the volume.
|
|
178
123
|
"""
|
|
179
|
-
return pulumi.get(self, "
|
|
124
|
+
return pulumi.get(self, "size")
|
|
180
125
|
|
|
181
|
-
@property
|
|
126
|
+
@_builtins.property
|
|
182
127
|
@pulumi.getter
|
|
183
|
-
def
|
|
128
|
+
def tags(self) -> Optional[Sequence[_builtins.str]]:
|
|
184
129
|
"""
|
|
185
|
-
|
|
130
|
+
A list of tags to apply to the image.
|
|
186
131
|
"""
|
|
187
|
-
return pulumi.get(self, "
|
|
132
|
+
return pulumi.get(self, "tags")
|
|
188
133
|
|
|
189
|
-
@property
|
|
190
|
-
@pulumi.getter
|
|
191
|
-
def
|
|
134
|
+
@_builtins.property
|
|
135
|
+
@pulumi.getter(name="volumeType")
|
|
136
|
+
def volume_type(self) -> Optional[_builtins.str]:
|
|
192
137
|
"""
|
|
193
|
-
The
|
|
138
|
+
The type of volume, possible values are `l_ssd` and `sbs_snapshot`.
|
|
194
139
|
"""
|
|
195
|
-
return pulumi.get(self, "
|
|
140
|
+
return pulumi.get(self, "volume_type")
|
|
196
141
|
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
142
|
+
|
|
143
|
+
@pulumi.output_type
|
|
144
|
+
class ImageRootVolume(dict):
|
|
145
|
+
@staticmethod
|
|
146
|
+
def __key_warning(key: str):
|
|
147
|
+
suggest = None
|
|
148
|
+
if key == "volumeType":
|
|
149
|
+
suggest = "volume_type"
|
|
150
|
+
|
|
151
|
+
if suggest:
|
|
152
|
+
pulumi.log.warn(f"Key '{key}' not found in ImageRootVolume. Access the value via the '{suggest}' property getter instead.")
|
|
153
|
+
|
|
154
|
+
def __getitem__(self, key: str) -> Any:
|
|
155
|
+
ImageRootVolume.__key_warning(key)
|
|
156
|
+
return super().__getitem__(key)
|
|
157
|
+
|
|
158
|
+
def get(self, key: str, default = None) -> Any:
|
|
159
|
+
ImageRootVolume.__key_warning(key)
|
|
160
|
+
return super().get(key, default)
|
|
161
|
+
|
|
162
|
+
def __init__(__self__, *,
|
|
163
|
+
id: Optional[_builtins.str] = None,
|
|
164
|
+
name: Optional[_builtins.str] = None,
|
|
165
|
+
size: Optional[_builtins.int] = None,
|
|
166
|
+
volume_type: Optional[_builtins.str] = None):
|
|
200
167
|
"""
|
|
201
|
-
|
|
168
|
+
:param _builtins.str id: ID of the server containing the volume.
|
|
169
|
+
:param _builtins.str name: The name of the image. If not provided it will be randomly generated.
|
|
170
|
+
:param _builtins.int size: The size of the volume.
|
|
171
|
+
:param _builtins.str volume_type: The type of volume, possible values are `l_ssd` and `sbs_snapshot`.
|
|
202
172
|
"""
|
|
203
|
-
|
|
173
|
+
if id is not None:
|
|
174
|
+
pulumi.set(__self__, "id", id)
|
|
175
|
+
if name is not None:
|
|
176
|
+
pulumi.set(__self__, "name", name)
|
|
177
|
+
if size is not None:
|
|
178
|
+
pulumi.set(__self__, "size", size)
|
|
179
|
+
if volume_type is not None:
|
|
180
|
+
pulumi.set(__self__, "volume_type", volume_type)
|
|
204
181
|
|
|
205
|
-
@property
|
|
182
|
+
@_builtins.property
|
|
206
183
|
@pulumi.getter
|
|
207
|
-
def
|
|
184
|
+
def id(self) -> Optional[_builtins.str]:
|
|
208
185
|
"""
|
|
209
|
-
|
|
186
|
+
ID of the server containing the volume.
|
|
210
187
|
"""
|
|
211
|
-
return pulumi.get(self, "
|
|
188
|
+
return pulumi.get(self, "id")
|
|
212
189
|
|
|
213
|
-
@property
|
|
214
|
-
@pulumi.getter
|
|
215
|
-
def
|
|
190
|
+
@_builtins.property
|
|
191
|
+
@pulumi.getter
|
|
192
|
+
def name(self) -> Optional[_builtins.str]:
|
|
216
193
|
"""
|
|
217
|
-
The
|
|
194
|
+
The name of the image. If not provided it will be randomly generated.
|
|
218
195
|
"""
|
|
219
|
-
return pulumi.get(self, "
|
|
196
|
+
return pulumi.get(self, "name")
|
|
220
197
|
|
|
221
|
-
@property
|
|
198
|
+
@_builtins.property
|
|
222
199
|
@pulumi.getter
|
|
223
|
-
def
|
|
200
|
+
def size(self) -> Optional[_builtins.int]:
|
|
224
201
|
"""
|
|
225
|
-
The
|
|
202
|
+
The size of the volume.
|
|
226
203
|
"""
|
|
227
|
-
return pulumi.get(self, "
|
|
204
|
+
return pulumi.get(self, "size")
|
|
205
|
+
|
|
206
|
+
@_builtins.property
|
|
207
|
+
@pulumi.getter(name="volumeType")
|
|
208
|
+
def volume_type(self) -> Optional[_builtins.str]:
|
|
209
|
+
"""
|
|
210
|
+
The type of volume, possible values are `l_ssd` and `sbs_snapshot`.
|
|
211
|
+
"""
|
|
212
|
+
return pulumi.get(self, "volume_type")
|
|
228
213
|
|
|
229
214
|
|
|
230
215
|
@pulumi.output_type
|
|
231
216
|
class PrivateNicPrivateIp(dict):
|
|
232
217
|
def __init__(__self__, *,
|
|
233
|
-
address: Optional[
|
|
234
|
-
id: Optional[
|
|
218
|
+
address: Optional[_builtins.str] = None,
|
|
219
|
+
id: Optional[_builtins.str] = None):
|
|
235
220
|
"""
|
|
236
|
-
:param
|
|
237
|
-
:param
|
|
221
|
+
:param _builtins.str address: The private IP address.
|
|
222
|
+
:param _builtins.str id: The ID of the IP address resource.
|
|
238
223
|
"""
|
|
239
224
|
if address is not None:
|
|
240
225
|
pulumi.set(__self__, "address", address)
|
|
241
226
|
if id is not None:
|
|
242
227
|
pulumi.set(__self__, "id", id)
|
|
243
228
|
|
|
244
|
-
@property
|
|
229
|
+
@_builtins.property
|
|
245
230
|
@pulumi.getter
|
|
246
|
-
def address(self) -> Optional[
|
|
231
|
+
def address(self) -> Optional[_builtins.str]:
|
|
247
232
|
"""
|
|
248
233
|
The private IP address.
|
|
249
234
|
"""
|
|
250
235
|
return pulumi.get(self, "address")
|
|
251
236
|
|
|
252
|
-
@property
|
|
237
|
+
@_builtins.property
|
|
253
238
|
@pulumi.getter
|
|
254
|
-
def id(self) -> Optional[
|
|
239
|
+
def id(self) -> Optional[_builtins.str]:
|
|
255
240
|
"""
|
|
256
241
|
The ID of the IP address resource.
|
|
257
242
|
"""
|
|
@@ -280,19 +265,19 @@ class SecurityGroupInboundRule(dict):
|
|
|
280
265
|
return super().get(key, default)
|
|
281
266
|
|
|
282
267
|
def __init__(__self__, *,
|
|
283
|
-
action:
|
|
284
|
-
ip: Optional[
|
|
285
|
-
ip_range: Optional[
|
|
286
|
-
port: Optional[
|
|
287
|
-
port_range: Optional[
|
|
288
|
-
protocol: Optional[
|
|
289
|
-
"""
|
|
290
|
-
:param
|
|
291
|
-
:param
|
|
292
|
-
:param
|
|
293
|
-
:param
|
|
294
|
-
:param
|
|
295
|
-
:param
|
|
268
|
+
action: _builtins.str,
|
|
269
|
+
ip: Optional[_builtins.str] = None,
|
|
270
|
+
ip_range: Optional[_builtins.str] = None,
|
|
271
|
+
port: Optional[_builtins.int] = None,
|
|
272
|
+
port_range: Optional[_builtins.str] = None,
|
|
273
|
+
protocol: Optional[_builtins.str] = None):
|
|
274
|
+
"""
|
|
275
|
+
:param _builtins.str action: The action to take when rule match. Possible values are: `accept` or `drop`.
|
|
276
|
+
:param _builtins.str ip: The ip this rule apply to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
|
|
277
|
+
:param _builtins.str ip_range: The ip range (e.g `192.168.1.0/24`) this rule applies to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
|
|
278
|
+
:param _builtins.int port: The port this rule applies to. If no `port` nor `port_range` are specified, the rule will apply to all port. Only one of `port` and `port_range` should be specified.
|
|
279
|
+
:param _builtins.str port_range: Computed port range for this rule (e.g: 1-1024, 22-22)
|
|
280
|
+
:param _builtins.str protocol: The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
|
|
296
281
|
"""
|
|
297
282
|
pulumi.set(__self__, "action", action)
|
|
298
283
|
if ip is not None:
|
|
@@ -306,50 +291,50 @@ class SecurityGroupInboundRule(dict):
|
|
|
306
291
|
if protocol is not None:
|
|
307
292
|
pulumi.set(__self__, "protocol", protocol)
|
|
308
293
|
|
|
309
|
-
@property
|
|
294
|
+
@_builtins.property
|
|
310
295
|
@pulumi.getter
|
|
311
|
-
def action(self) ->
|
|
296
|
+
def action(self) -> _builtins.str:
|
|
312
297
|
"""
|
|
313
298
|
The action to take when rule match. Possible values are: `accept` or `drop`.
|
|
314
299
|
"""
|
|
315
300
|
return pulumi.get(self, "action")
|
|
316
301
|
|
|
317
|
-
@property
|
|
302
|
+
@_builtins.property
|
|
318
303
|
@pulumi.getter
|
|
319
304
|
@_utilities.deprecated("""Ip address is deprecated. Please use ip_range instead""")
|
|
320
|
-
def ip(self) -> Optional[
|
|
305
|
+
def ip(self) -> Optional[_builtins.str]:
|
|
321
306
|
"""
|
|
322
307
|
The ip this rule apply to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
|
|
323
308
|
"""
|
|
324
309
|
return pulumi.get(self, "ip")
|
|
325
310
|
|
|
326
|
-
@property
|
|
311
|
+
@_builtins.property
|
|
327
312
|
@pulumi.getter(name="ipRange")
|
|
328
|
-
def ip_range(self) -> Optional[
|
|
313
|
+
def ip_range(self) -> Optional[_builtins.str]:
|
|
329
314
|
"""
|
|
330
315
|
The ip range (e.g `192.168.1.0/24`) this rule applies to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
|
|
331
316
|
"""
|
|
332
317
|
return pulumi.get(self, "ip_range")
|
|
333
318
|
|
|
334
|
-
@property
|
|
319
|
+
@_builtins.property
|
|
335
320
|
@pulumi.getter
|
|
336
|
-
def port(self) -> Optional[
|
|
321
|
+
def port(self) -> Optional[_builtins.int]:
|
|
337
322
|
"""
|
|
338
323
|
The port this rule applies to. If no `port` nor `port_range` are specified, the rule will apply to all port. Only one of `port` and `port_range` should be specified.
|
|
339
324
|
"""
|
|
340
325
|
return pulumi.get(self, "port")
|
|
341
326
|
|
|
342
|
-
@property
|
|
327
|
+
@_builtins.property
|
|
343
328
|
@pulumi.getter(name="portRange")
|
|
344
|
-
def port_range(self) -> Optional[
|
|
329
|
+
def port_range(self) -> Optional[_builtins.str]:
|
|
345
330
|
"""
|
|
346
331
|
Computed port range for this rule (e.g: 1-1024, 22-22)
|
|
347
332
|
"""
|
|
348
333
|
return pulumi.get(self, "port_range")
|
|
349
334
|
|
|
350
|
-
@property
|
|
335
|
+
@_builtins.property
|
|
351
336
|
@pulumi.getter
|
|
352
|
-
def protocol(self) -> Optional[
|
|
337
|
+
def protocol(self) -> Optional[_builtins.str]:
|
|
353
338
|
"""
|
|
354
339
|
The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
|
|
355
340
|
"""
|
|
@@ -378,19 +363,19 @@ class SecurityGroupOutboundRule(dict):
|
|
|
378
363
|
return super().get(key, default)
|
|
379
364
|
|
|
380
365
|
def __init__(__self__, *,
|
|
381
|
-
action:
|
|
382
|
-
ip: Optional[
|
|
383
|
-
ip_range: Optional[
|
|
384
|
-
port: Optional[
|
|
385
|
-
port_range: Optional[
|
|
386
|
-
protocol: Optional[
|
|
387
|
-
"""
|
|
388
|
-
:param
|
|
389
|
-
:param
|
|
390
|
-
:param
|
|
391
|
-
:param
|
|
392
|
-
:param
|
|
393
|
-
:param
|
|
366
|
+
action: _builtins.str,
|
|
367
|
+
ip: Optional[_builtins.str] = None,
|
|
368
|
+
ip_range: Optional[_builtins.str] = None,
|
|
369
|
+
port: Optional[_builtins.int] = None,
|
|
370
|
+
port_range: Optional[_builtins.str] = None,
|
|
371
|
+
protocol: Optional[_builtins.str] = None):
|
|
372
|
+
"""
|
|
373
|
+
:param _builtins.str action: Action when rule match request (drop or accept)
|
|
374
|
+
:param _builtins.str ip: Ip address for this rule (e.g: 1.1.1.1). Only one of ip or ip_range should be provided
|
|
375
|
+
:param _builtins.str ip_range: Ip range for this rule (e.g: 192.168.1.0/24). Only one of ip or ip_range should be provided
|
|
376
|
+
:param _builtins.int port: Network port for this rule
|
|
377
|
+
:param _builtins.str port_range: Computed port range for this rule (e.g: 1-1024, 22-22)
|
|
378
|
+
:param _builtins.str protocol: Protocol for this rule (TCP, UDP, ICMP or ANY)
|
|
394
379
|
"""
|
|
395
380
|
pulumi.set(__self__, "action", action)
|
|
396
381
|
if ip is not None:
|
|
@@ -404,50 +389,50 @@ class SecurityGroupOutboundRule(dict):
|
|
|
404
389
|
if protocol is not None:
|
|
405
390
|
pulumi.set(__self__, "protocol", protocol)
|
|
406
391
|
|
|
407
|
-
@property
|
|
392
|
+
@_builtins.property
|
|
408
393
|
@pulumi.getter
|
|
409
|
-
def action(self) ->
|
|
394
|
+
def action(self) -> _builtins.str:
|
|
410
395
|
"""
|
|
411
396
|
Action when rule match request (drop or accept)
|
|
412
397
|
"""
|
|
413
398
|
return pulumi.get(self, "action")
|
|
414
399
|
|
|
415
|
-
@property
|
|
400
|
+
@_builtins.property
|
|
416
401
|
@pulumi.getter
|
|
417
402
|
@_utilities.deprecated("""Ip address is deprecated. Please use ip_range instead""")
|
|
418
|
-
def ip(self) -> Optional[
|
|
403
|
+
def ip(self) -> Optional[_builtins.str]:
|
|
419
404
|
"""
|
|
420
405
|
Ip address for this rule (e.g: 1.1.1.1). Only one of ip or ip_range should be provided
|
|
421
406
|
"""
|
|
422
407
|
return pulumi.get(self, "ip")
|
|
423
408
|
|
|
424
|
-
@property
|
|
409
|
+
@_builtins.property
|
|
425
410
|
@pulumi.getter(name="ipRange")
|
|
426
|
-
def ip_range(self) -> Optional[
|
|
411
|
+
def ip_range(self) -> Optional[_builtins.str]:
|
|
427
412
|
"""
|
|
428
413
|
Ip range for this rule (e.g: 192.168.1.0/24). Only one of ip or ip_range should be provided
|
|
429
414
|
"""
|
|
430
415
|
return pulumi.get(self, "ip_range")
|
|
431
416
|
|
|
432
|
-
@property
|
|
417
|
+
@_builtins.property
|
|
433
418
|
@pulumi.getter
|
|
434
|
-
def port(self) -> Optional[
|
|
419
|
+
def port(self) -> Optional[_builtins.int]:
|
|
435
420
|
"""
|
|
436
421
|
Network port for this rule
|
|
437
422
|
"""
|
|
438
423
|
return pulumi.get(self, "port")
|
|
439
424
|
|
|
440
|
-
@property
|
|
425
|
+
@_builtins.property
|
|
441
426
|
@pulumi.getter(name="portRange")
|
|
442
|
-
def port_range(self) -> Optional[
|
|
427
|
+
def port_range(self) -> Optional[_builtins.str]:
|
|
443
428
|
"""
|
|
444
429
|
Computed port range for this rule (e.g: 1-1024, 22-22)
|
|
445
430
|
"""
|
|
446
431
|
return pulumi.get(self, "port_range")
|
|
447
432
|
|
|
448
|
-
@property
|
|
433
|
+
@_builtins.property
|
|
449
434
|
@pulumi.getter
|
|
450
|
-
def protocol(self) -> Optional[
|
|
435
|
+
def protocol(self) -> Optional[_builtins.str]:
|
|
451
436
|
"""
|
|
452
437
|
Protocol for this rule (TCP, UDP, ICMP or ANY)
|
|
453
438
|
"""
|
|
@@ -476,19 +461,19 @@ class SecurityGroupRulesInboundRule(dict):
|
|
|
476
461
|
return super().get(key, default)
|
|
477
462
|
|
|
478
463
|
def __init__(__self__, *,
|
|
479
|
-
action:
|
|
480
|
-
ip: Optional[
|
|
481
|
-
ip_range: Optional[
|
|
482
|
-
port: Optional[
|
|
483
|
-
port_range: Optional[
|
|
484
|
-
protocol: Optional[
|
|
485
|
-
"""
|
|
486
|
-
:param
|
|
487
|
-
:param
|
|
488
|
-
:param
|
|
489
|
-
:param
|
|
490
|
-
:param
|
|
491
|
-
:param
|
|
464
|
+
action: _builtins.str,
|
|
465
|
+
ip: Optional[_builtins.str] = None,
|
|
466
|
+
ip_range: Optional[_builtins.str] = None,
|
|
467
|
+
port: Optional[_builtins.int] = None,
|
|
468
|
+
port_range: Optional[_builtins.str] = None,
|
|
469
|
+
protocol: Optional[_builtins.str] = None):
|
|
470
|
+
"""
|
|
471
|
+
:param _builtins.str action: The action to take when rule match. Possible values are: `accept` or `drop`.
|
|
472
|
+
:param _builtins.str ip: The ip this rule apply to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
|
|
473
|
+
:param _builtins.str ip_range: The ip range (e.g `192.168.1.0/24`) this rule applies to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
|
|
474
|
+
:param _builtins.int port: The port this rule apply to. If no port is specified, rule will apply to all port.
|
|
475
|
+
:param _builtins.str port_range: Computed port range for this rule (e.g: 1-1024, 22-22)
|
|
476
|
+
:param _builtins.str protocol: The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
|
|
492
477
|
"""
|
|
493
478
|
pulumi.set(__self__, "action", action)
|
|
494
479
|
if ip is not None:
|
|
@@ -502,50 +487,50 @@ class SecurityGroupRulesInboundRule(dict):
|
|
|
502
487
|
if protocol is not None:
|
|
503
488
|
pulumi.set(__self__, "protocol", protocol)
|
|
504
489
|
|
|
505
|
-
@property
|
|
490
|
+
@_builtins.property
|
|
506
491
|
@pulumi.getter
|
|
507
|
-
def action(self) ->
|
|
492
|
+
def action(self) -> _builtins.str:
|
|
508
493
|
"""
|
|
509
494
|
The action to take when rule match. Possible values are: `accept` or `drop`.
|
|
510
495
|
"""
|
|
511
496
|
return pulumi.get(self, "action")
|
|
512
497
|
|
|
513
|
-
@property
|
|
498
|
+
@_builtins.property
|
|
514
499
|
@pulumi.getter
|
|
515
500
|
@_utilities.deprecated("""Ip address is deprecated. Please use ip_range instead""")
|
|
516
|
-
def ip(self) -> Optional[
|
|
501
|
+
def ip(self) -> Optional[_builtins.str]:
|
|
517
502
|
"""
|
|
518
503
|
The ip this rule apply to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
|
|
519
504
|
"""
|
|
520
505
|
return pulumi.get(self, "ip")
|
|
521
506
|
|
|
522
|
-
@property
|
|
507
|
+
@_builtins.property
|
|
523
508
|
@pulumi.getter(name="ipRange")
|
|
524
|
-
def ip_range(self) -> Optional[
|
|
509
|
+
def ip_range(self) -> Optional[_builtins.str]:
|
|
525
510
|
"""
|
|
526
511
|
The ip range (e.g `192.168.1.0/24`) this rule applies to. If no `ip` nor `ip_range` are specified, rule will apply to all ip. Only one of `ip` and `ip_range` should be specified.
|
|
527
512
|
"""
|
|
528
513
|
return pulumi.get(self, "ip_range")
|
|
529
514
|
|
|
530
|
-
@property
|
|
515
|
+
@_builtins.property
|
|
531
516
|
@pulumi.getter
|
|
532
|
-
def port(self) -> Optional[
|
|
517
|
+
def port(self) -> Optional[_builtins.int]:
|
|
533
518
|
"""
|
|
534
519
|
The port this rule apply to. If no port is specified, rule will apply to all port.
|
|
535
520
|
"""
|
|
536
521
|
return pulumi.get(self, "port")
|
|
537
522
|
|
|
538
|
-
@property
|
|
523
|
+
@_builtins.property
|
|
539
524
|
@pulumi.getter(name="portRange")
|
|
540
|
-
def port_range(self) -> Optional[
|
|
525
|
+
def port_range(self) -> Optional[_builtins.str]:
|
|
541
526
|
"""
|
|
542
527
|
Computed port range for this rule (e.g: 1-1024, 22-22)
|
|
543
528
|
"""
|
|
544
529
|
return pulumi.get(self, "port_range")
|
|
545
530
|
|
|
546
|
-
@property
|
|
531
|
+
@_builtins.property
|
|
547
532
|
@pulumi.getter
|
|
548
|
-
def protocol(self) -> Optional[
|
|
533
|
+
def protocol(self) -> Optional[_builtins.str]:
|
|
549
534
|
"""
|
|
550
535
|
The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
|
|
551
536
|
"""
|
|
@@ -574,19 +559,19 @@ class SecurityGroupRulesOutboundRule(dict):
|
|
|
574
559
|
return super().get(key, default)
|
|
575
560
|
|
|
576
561
|
def __init__(__self__, *,
|
|
577
|
-
action:
|
|
578
|
-
ip: Optional[
|
|
579
|
-
ip_range: Optional[
|
|
580
|
-
port: Optional[
|
|
581
|
-
port_range: Optional[
|
|
582
|
-
protocol: Optional[
|
|
583
|
-
"""
|
|
584
|
-
:param
|
|
585
|
-
:param
|
|
586
|
-
:param
|
|
587
|
-
:param
|
|
588
|
-
:param
|
|
589
|
-
:param
|
|
562
|
+
action: _builtins.str,
|
|
563
|
+
ip: Optional[_builtins.str] = None,
|
|
564
|
+
ip_range: Optional[_builtins.str] = None,
|
|
565
|
+
port: Optional[_builtins.int] = None,
|
|
566
|
+
port_range: Optional[_builtins.str] = None,
|
|
567
|
+
protocol: Optional[_builtins.str] = None):
|
|
568
|
+
"""
|
|
569
|
+
:param _builtins.str action: Action when rule match request (drop or accept)
|
|
570
|
+
:param _builtins.str ip: Ip address for this rule (e.g: 1.1.1.1). Only one of ip or ip_range should be provided
|
|
571
|
+
:param _builtins.str ip_range: Ip range for this rule (e.g: 192.168.1.0/24). Only one of ip or ip_range should be provided
|
|
572
|
+
:param _builtins.int port: Network port for this rule
|
|
573
|
+
:param _builtins.str port_range: Computed port range for this rule (e.g: 1-1024, 22-22)
|
|
574
|
+
:param _builtins.str protocol: Protocol for this rule (TCP, UDP, ICMP or ANY)
|
|
590
575
|
"""
|
|
591
576
|
pulumi.set(__self__, "action", action)
|
|
592
577
|
if ip is not None:
|
|
@@ -600,50 +585,50 @@ class SecurityGroupRulesOutboundRule(dict):
|
|
|
600
585
|
if protocol is not None:
|
|
601
586
|
pulumi.set(__self__, "protocol", protocol)
|
|
602
587
|
|
|
603
|
-
@property
|
|
588
|
+
@_builtins.property
|
|
604
589
|
@pulumi.getter
|
|
605
|
-
def action(self) ->
|
|
590
|
+
def action(self) -> _builtins.str:
|
|
606
591
|
"""
|
|
607
592
|
Action when rule match request (drop or accept)
|
|
608
593
|
"""
|
|
609
594
|
return pulumi.get(self, "action")
|
|
610
595
|
|
|
611
|
-
@property
|
|
596
|
+
@_builtins.property
|
|
612
597
|
@pulumi.getter
|
|
613
598
|
@_utilities.deprecated("""Ip address is deprecated. Please use ip_range instead""")
|
|
614
|
-
def ip(self) -> Optional[
|
|
599
|
+
def ip(self) -> Optional[_builtins.str]:
|
|
615
600
|
"""
|
|
616
601
|
Ip address for this rule (e.g: 1.1.1.1). Only one of ip or ip_range should be provided
|
|
617
602
|
"""
|
|
618
603
|
return pulumi.get(self, "ip")
|
|
619
604
|
|
|
620
|
-
@property
|
|
605
|
+
@_builtins.property
|
|
621
606
|
@pulumi.getter(name="ipRange")
|
|
622
|
-
def ip_range(self) -> Optional[
|
|
607
|
+
def ip_range(self) -> Optional[_builtins.str]:
|
|
623
608
|
"""
|
|
624
609
|
Ip range for this rule (e.g: 192.168.1.0/24). Only one of ip or ip_range should be provided
|
|
625
610
|
"""
|
|
626
611
|
return pulumi.get(self, "ip_range")
|
|
627
612
|
|
|
628
|
-
@property
|
|
613
|
+
@_builtins.property
|
|
629
614
|
@pulumi.getter
|
|
630
|
-
def port(self) -> Optional[
|
|
615
|
+
def port(self) -> Optional[_builtins.int]:
|
|
631
616
|
"""
|
|
632
617
|
Network port for this rule
|
|
633
618
|
"""
|
|
634
619
|
return pulumi.get(self, "port")
|
|
635
620
|
|
|
636
|
-
@property
|
|
621
|
+
@_builtins.property
|
|
637
622
|
@pulumi.getter(name="portRange")
|
|
638
|
-
def port_range(self) -> Optional[
|
|
623
|
+
def port_range(self) -> Optional[_builtins.str]:
|
|
639
624
|
"""
|
|
640
625
|
Computed port range for this rule (e.g: 1-1024, 22-22)
|
|
641
626
|
"""
|
|
642
627
|
return pulumi.get(self, "port_range")
|
|
643
628
|
|
|
644
|
-
@property
|
|
629
|
+
@_builtins.property
|
|
645
630
|
@pulumi.getter
|
|
646
|
-
def protocol(self) -> Optional[
|
|
631
|
+
def protocol(self) -> Optional[_builtins.str]:
|
|
647
632
|
"""
|
|
648
633
|
Protocol for this rule (TCP, UDP, ICMP or ANY)
|
|
649
634
|
"""
|
|
@@ -653,28 +638,28 @@ class SecurityGroupRulesOutboundRule(dict):
|
|
|
653
638
|
@pulumi.output_type
|
|
654
639
|
class ServerPrivateIp(dict):
|
|
655
640
|
def __init__(__self__, *,
|
|
656
|
-
address: Optional[
|
|
657
|
-
id: Optional[
|
|
641
|
+
address: Optional[_builtins.str] = None,
|
|
642
|
+
id: Optional[_builtins.str] = None):
|
|
658
643
|
"""
|
|
659
|
-
:param
|
|
660
|
-
:param
|
|
644
|
+
:param _builtins.str address: The private IP address.
|
|
645
|
+
:param _builtins.str id: The ID of the IP address resource.
|
|
661
646
|
"""
|
|
662
647
|
if address is not None:
|
|
663
648
|
pulumi.set(__self__, "address", address)
|
|
664
649
|
if id is not None:
|
|
665
650
|
pulumi.set(__self__, "id", id)
|
|
666
651
|
|
|
667
|
-
@property
|
|
652
|
+
@_builtins.property
|
|
668
653
|
@pulumi.getter
|
|
669
|
-
def address(self) -> Optional[
|
|
654
|
+
def address(self) -> Optional[_builtins.str]:
|
|
670
655
|
"""
|
|
671
656
|
The private IP address.
|
|
672
657
|
"""
|
|
673
658
|
return pulumi.get(self, "address")
|
|
674
659
|
|
|
675
|
-
@property
|
|
660
|
+
@_builtins.property
|
|
676
661
|
@pulumi.getter
|
|
677
|
-
def id(self) -> Optional[
|
|
662
|
+
def id(self) -> Optional[_builtins.str]:
|
|
678
663
|
"""
|
|
679
664
|
The ID of the IP address resource.
|
|
680
665
|
"""
|
|
@@ -705,17 +690,17 @@ class ServerPrivateNetwork(dict):
|
|
|
705
690
|
return super().get(key, default)
|
|
706
691
|
|
|
707
692
|
def __init__(__self__, *,
|
|
708
|
-
pn_id:
|
|
709
|
-
mac_address: Optional[
|
|
710
|
-
pnic_id: Optional[
|
|
711
|
-
status: Optional[
|
|
712
|
-
zone: Optional[
|
|
713
|
-
"""
|
|
714
|
-
:param
|
|
715
|
-
:param
|
|
716
|
-
:param
|
|
717
|
-
:param
|
|
718
|
-
:param
|
|
693
|
+
pn_id: _builtins.str,
|
|
694
|
+
mac_address: Optional[_builtins.str] = None,
|
|
695
|
+
pnic_id: Optional[_builtins.str] = None,
|
|
696
|
+
status: Optional[_builtins.str] = None,
|
|
697
|
+
zone: Optional[_builtins.str] = None):
|
|
698
|
+
"""
|
|
699
|
+
:param _builtins.str pn_id: The Private Network ID
|
|
700
|
+
:param _builtins.str mac_address: MAC address of the NIC
|
|
701
|
+
:param _builtins.str pnic_id: The ID of the NIC
|
|
702
|
+
:param _builtins.str status: The private NIC state
|
|
703
|
+
:param _builtins.str zone: `zone`) The zone in which the server should be created.
|
|
719
704
|
"""
|
|
720
705
|
pulumi.set(__self__, "pn_id", pn_id)
|
|
721
706
|
if mac_address is not None:
|
|
@@ -727,41 +712,41 @@ class ServerPrivateNetwork(dict):
|
|
|
727
712
|
if zone is not None:
|
|
728
713
|
pulumi.set(__self__, "zone", zone)
|
|
729
714
|
|
|
730
|
-
@property
|
|
715
|
+
@_builtins.property
|
|
731
716
|
@pulumi.getter(name="pnId")
|
|
732
|
-
def pn_id(self) ->
|
|
717
|
+
def pn_id(self) -> _builtins.str:
|
|
733
718
|
"""
|
|
734
719
|
The Private Network ID
|
|
735
720
|
"""
|
|
736
721
|
return pulumi.get(self, "pn_id")
|
|
737
722
|
|
|
738
|
-
@property
|
|
723
|
+
@_builtins.property
|
|
739
724
|
@pulumi.getter(name="macAddress")
|
|
740
|
-
def mac_address(self) -> Optional[
|
|
725
|
+
def mac_address(self) -> Optional[_builtins.str]:
|
|
741
726
|
"""
|
|
742
727
|
MAC address of the NIC
|
|
743
728
|
"""
|
|
744
729
|
return pulumi.get(self, "mac_address")
|
|
745
730
|
|
|
746
|
-
@property
|
|
731
|
+
@_builtins.property
|
|
747
732
|
@pulumi.getter(name="pnicId")
|
|
748
|
-
def pnic_id(self) -> Optional[
|
|
733
|
+
def pnic_id(self) -> Optional[_builtins.str]:
|
|
749
734
|
"""
|
|
750
735
|
The ID of the NIC
|
|
751
736
|
"""
|
|
752
737
|
return pulumi.get(self, "pnic_id")
|
|
753
738
|
|
|
754
|
-
@property
|
|
739
|
+
@_builtins.property
|
|
755
740
|
@pulumi.getter
|
|
756
|
-
def status(self) -> Optional[
|
|
741
|
+
def status(self) -> Optional[_builtins.str]:
|
|
757
742
|
"""
|
|
758
743
|
The private NIC state
|
|
759
744
|
"""
|
|
760
745
|
return pulumi.get(self, "status")
|
|
761
746
|
|
|
762
|
-
@property
|
|
747
|
+
@_builtins.property
|
|
763
748
|
@pulumi.getter
|
|
764
|
-
def zone(self) -> Optional[
|
|
749
|
+
def zone(self) -> Optional[_builtins.str]:
|
|
765
750
|
"""
|
|
766
751
|
`zone`) The zone in which the server should be created.
|
|
767
752
|
"""
|
|
@@ -788,21 +773,21 @@ class ServerPublicIp(dict):
|
|
|
788
773
|
return super().get(key, default)
|
|
789
774
|
|
|
790
775
|
def __init__(__self__, *,
|
|
791
|
-
address: Optional[
|
|
792
|
-
dynamic: Optional[
|
|
793
|
-
family: Optional[
|
|
794
|
-
gateway: Optional[
|
|
795
|
-
id: Optional[
|
|
796
|
-
netmask: Optional[
|
|
797
|
-
provisioning_mode: Optional[
|
|
798
|
-
"""
|
|
799
|
-
:param
|
|
800
|
-
:param
|
|
801
|
-
:param
|
|
802
|
-
:param
|
|
803
|
-
:param
|
|
804
|
-
:param
|
|
805
|
-
:param
|
|
776
|
+
address: Optional[_builtins.str] = None,
|
|
777
|
+
dynamic: Optional[_builtins.bool] = None,
|
|
778
|
+
family: Optional[_builtins.str] = None,
|
|
779
|
+
gateway: Optional[_builtins.str] = None,
|
|
780
|
+
id: Optional[_builtins.str] = None,
|
|
781
|
+
netmask: Optional[_builtins.str] = None,
|
|
782
|
+
provisioning_mode: Optional[_builtins.str] = None):
|
|
783
|
+
"""
|
|
784
|
+
:param _builtins.str address: The address of the IP.
|
|
785
|
+
:param _builtins.bool dynamic: Whether the IP is dynamic.
|
|
786
|
+
:param _builtins.str family: The IP address' family.
|
|
787
|
+
:param _builtins.str gateway: The IP of the Gateway associated with the IP.
|
|
788
|
+
:param _builtins.str id: The ID of the IP.
|
|
789
|
+
:param _builtins.str netmask: The CIDR netmask of the IP.
|
|
790
|
+
:param _builtins.str provisioning_mode: The provisioning mode of the IP
|
|
806
791
|
"""
|
|
807
792
|
if address is not None:
|
|
808
793
|
pulumi.set(__self__, "address", address)
|
|
@@ -819,57 +804,57 @@ class ServerPublicIp(dict):
|
|
|
819
804
|
if provisioning_mode is not None:
|
|
820
805
|
pulumi.set(__self__, "provisioning_mode", provisioning_mode)
|
|
821
806
|
|
|
822
|
-
@property
|
|
807
|
+
@_builtins.property
|
|
823
808
|
@pulumi.getter
|
|
824
|
-
def address(self) -> Optional[
|
|
809
|
+
def address(self) -> Optional[_builtins.str]:
|
|
825
810
|
"""
|
|
826
811
|
The address of the IP.
|
|
827
812
|
"""
|
|
828
813
|
return pulumi.get(self, "address")
|
|
829
814
|
|
|
830
|
-
@property
|
|
815
|
+
@_builtins.property
|
|
831
816
|
@pulumi.getter
|
|
832
|
-
def dynamic(self) -> Optional[
|
|
817
|
+
def dynamic(self) -> Optional[_builtins.bool]:
|
|
833
818
|
"""
|
|
834
819
|
Whether the IP is dynamic.
|
|
835
820
|
"""
|
|
836
821
|
return pulumi.get(self, "dynamic")
|
|
837
822
|
|
|
838
|
-
@property
|
|
823
|
+
@_builtins.property
|
|
839
824
|
@pulumi.getter
|
|
840
|
-
def family(self) -> Optional[
|
|
825
|
+
def family(self) -> Optional[_builtins.str]:
|
|
841
826
|
"""
|
|
842
827
|
The IP address' family.
|
|
843
828
|
"""
|
|
844
829
|
return pulumi.get(self, "family")
|
|
845
830
|
|
|
846
|
-
@property
|
|
831
|
+
@_builtins.property
|
|
847
832
|
@pulumi.getter
|
|
848
|
-
def gateway(self) -> Optional[
|
|
833
|
+
def gateway(self) -> Optional[_builtins.str]:
|
|
849
834
|
"""
|
|
850
835
|
The IP of the Gateway associated with the IP.
|
|
851
836
|
"""
|
|
852
837
|
return pulumi.get(self, "gateway")
|
|
853
838
|
|
|
854
|
-
@property
|
|
839
|
+
@_builtins.property
|
|
855
840
|
@pulumi.getter
|
|
856
|
-
def id(self) -> Optional[
|
|
841
|
+
def id(self) -> Optional[_builtins.str]:
|
|
857
842
|
"""
|
|
858
843
|
The ID of the IP.
|
|
859
844
|
"""
|
|
860
845
|
return pulumi.get(self, "id")
|
|
861
846
|
|
|
862
|
-
@property
|
|
847
|
+
@_builtins.property
|
|
863
848
|
@pulumi.getter
|
|
864
|
-
def netmask(self) -> Optional[
|
|
849
|
+
def netmask(self) -> Optional[_builtins.str]:
|
|
865
850
|
"""
|
|
866
851
|
The CIDR netmask of the IP.
|
|
867
852
|
"""
|
|
868
853
|
return pulumi.get(self, "netmask")
|
|
869
854
|
|
|
870
|
-
@property
|
|
855
|
+
@_builtins.property
|
|
871
856
|
@pulumi.getter(name="provisioningMode")
|
|
872
|
-
def provisioning_mode(self) -> Optional[
|
|
857
|
+
def provisioning_mode(self) -> Optional[_builtins.str]:
|
|
873
858
|
"""
|
|
874
859
|
The provisioning mode of the IP
|
|
875
860
|
"""
|
|
@@ -904,26 +889,26 @@ class ServerRootVolume(dict):
|
|
|
904
889
|
return super().get(key, default)
|
|
905
890
|
|
|
906
891
|
def __init__(__self__, *,
|
|
907
|
-
boot: Optional[
|
|
908
|
-
delete_on_termination: Optional[
|
|
909
|
-
name: Optional[
|
|
910
|
-
sbs_iops: Optional[
|
|
911
|
-
size_in_gb: Optional[
|
|
912
|
-
volume_id: Optional[
|
|
913
|
-
volume_type: Optional[
|
|
914
|
-
"""
|
|
915
|
-
:param
|
|
916
|
-
:param
|
|
917
|
-
:param
|
|
918
|
-
:param
|
|
892
|
+
boot: Optional[_builtins.bool] = None,
|
|
893
|
+
delete_on_termination: Optional[_builtins.bool] = None,
|
|
894
|
+
name: Optional[_builtins.str] = None,
|
|
895
|
+
sbs_iops: Optional[_builtins.int] = None,
|
|
896
|
+
size_in_gb: Optional[_builtins.int] = None,
|
|
897
|
+
volume_id: Optional[_builtins.str] = None,
|
|
898
|
+
volume_type: Optional[_builtins.str] = None):
|
|
899
|
+
"""
|
|
900
|
+
:param _builtins.bool boot: Set the volume where the boot the server
|
|
901
|
+
:param _builtins.bool delete_on_termination: Forces deletion of the root volume on instance termination.
|
|
902
|
+
:param _builtins.str name: The name of the server.
|
|
903
|
+
:param _builtins.int sbs_iops: Choose IOPS of your sbs volume, has to be used with `sbs_volume` for root volume type.
|
|
919
904
|
|
|
920
905
|
> **Important:** Updates to `root_volume.size_in_gb` will be ignored after the creation of the server.
|
|
921
|
-
:param
|
|
906
|
+
:param _builtins.int size_in_gb: Size of the root volume in gigabytes.
|
|
922
907
|
To find the right size use [this endpoint](https://www.scaleway.com/en/developers/api/instance/#path-instances-list-all-instances) and
|
|
923
908
|
check the `volumes_constraint.{min|max}_size` (in bytes) for your `commercial_type`.
|
|
924
909
|
Depending on `volume_type`, updates to this field may recreate a new resource.
|
|
925
|
-
:param
|
|
926
|
-
:param
|
|
910
|
+
:param _builtins.str volume_id: The volume ID of the root volume of the server, allows you to create server with an existing volume. If empty, will be computed to a created volume ID.
|
|
911
|
+
:param _builtins.str volume_type: Volume type of root volume, can be `l_ssd` or `sbs_volume`, default value depends on server type
|
|
927
912
|
"""
|
|
928
913
|
if boot is not None:
|
|
929
914
|
pulumi.set(__self__, "boot", boot)
|
|
@@ -940,33 +925,33 @@ class ServerRootVolume(dict):
|
|
|
940
925
|
if volume_type is not None:
|
|
941
926
|
pulumi.set(__self__, "volume_type", volume_type)
|
|
942
927
|
|
|
943
|
-
@property
|
|
928
|
+
@_builtins.property
|
|
944
929
|
@pulumi.getter
|
|
945
|
-
def boot(self) -> Optional[
|
|
930
|
+
def boot(self) -> Optional[_builtins.bool]:
|
|
946
931
|
"""
|
|
947
932
|
Set the volume where the boot the server
|
|
948
933
|
"""
|
|
949
934
|
return pulumi.get(self, "boot")
|
|
950
935
|
|
|
951
|
-
@property
|
|
936
|
+
@_builtins.property
|
|
952
937
|
@pulumi.getter(name="deleteOnTermination")
|
|
953
|
-
def delete_on_termination(self) -> Optional[
|
|
938
|
+
def delete_on_termination(self) -> Optional[_builtins.bool]:
|
|
954
939
|
"""
|
|
955
940
|
Forces deletion of the root volume on instance termination.
|
|
956
941
|
"""
|
|
957
942
|
return pulumi.get(self, "delete_on_termination")
|
|
958
943
|
|
|
959
|
-
@property
|
|
944
|
+
@_builtins.property
|
|
960
945
|
@pulumi.getter
|
|
961
|
-
def name(self) -> Optional[
|
|
946
|
+
def name(self) -> Optional[_builtins.str]:
|
|
962
947
|
"""
|
|
963
948
|
The name of the server.
|
|
964
949
|
"""
|
|
965
950
|
return pulumi.get(self, "name")
|
|
966
951
|
|
|
967
|
-
@property
|
|
952
|
+
@_builtins.property
|
|
968
953
|
@pulumi.getter(name="sbsIops")
|
|
969
|
-
def sbs_iops(self) -> Optional[
|
|
954
|
+
def sbs_iops(self) -> Optional[_builtins.int]:
|
|
970
955
|
"""
|
|
971
956
|
Choose IOPS of your sbs volume, has to be used with `sbs_volume` for root volume type.
|
|
972
957
|
|
|
@@ -974,9 +959,9 @@ class ServerRootVolume(dict):
|
|
|
974
959
|
"""
|
|
975
960
|
return pulumi.get(self, "sbs_iops")
|
|
976
961
|
|
|
977
|
-
@property
|
|
962
|
+
@_builtins.property
|
|
978
963
|
@pulumi.getter(name="sizeInGb")
|
|
979
|
-
def size_in_gb(self) -> Optional[
|
|
964
|
+
def size_in_gb(self) -> Optional[_builtins.int]:
|
|
980
965
|
"""
|
|
981
966
|
Size of the root volume in gigabytes.
|
|
982
967
|
To find the right size use [this endpoint](https://www.scaleway.com/en/developers/api/instance/#path-instances-list-all-instances) and
|
|
@@ -985,17 +970,17 @@ class ServerRootVolume(dict):
|
|
|
985
970
|
"""
|
|
986
971
|
return pulumi.get(self, "size_in_gb")
|
|
987
972
|
|
|
988
|
-
@property
|
|
973
|
+
@_builtins.property
|
|
989
974
|
@pulumi.getter(name="volumeId")
|
|
990
|
-
def volume_id(self) -> Optional[
|
|
975
|
+
def volume_id(self) -> Optional[_builtins.str]:
|
|
991
976
|
"""
|
|
992
977
|
The volume ID of the root volume of the server, allows you to create server with an existing volume. If empty, will be computed to a created volume ID.
|
|
993
978
|
"""
|
|
994
979
|
return pulumi.get(self, "volume_id")
|
|
995
980
|
|
|
996
|
-
@property
|
|
981
|
+
@_builtins.property
|
|
997
982
|
@pulumi.getter(name="volumeType")
|
|
998
|
-
def volume_type(self) -> Optional[
|
|
983
|
+
def volume_type(self) -> Optional[_builtins.str]:
|
|
999
984
|
"""
|
|
1000
985
|
Volume type of root volume, can be `l_ssd` or `sbs_volume`, default value depends on server type
|
|
1001
986
|
"""
|
|
@@ -1005,26 +990,26 @@ class ServerRootVolume(dict):
|
|
|
1005
990
|
@pulumi.output_type
|
|
1006
991
|
class SnapshotImport(dict):
|
|
1007
992
|
def __init__(__self__, *,
|
|
1008
|
-
bucket:
|
|
1009
|
-
key:
|
|
993
|
+
bucket: _builtins.str,
|
|
994
|
+
key: _builtins.str):
|
|
1010
995
|
"""
|
|
1011
|
-
:param
|
|
1012
|
-
:param
|
|
996
|
+
:param _builtins.str bucket: Bucket name containing [qcow2](https://en.wikipedia.org/wiki/Qcow) to import
|
|
997
|
+
:param _builtins.str key: Key of the object to import
|
|
1013
998
|
"""
|
|
1014
999
|
pulumi.set(__self__, "bucket", bucket)
|
|
1015
1000
|
pulumi.set(__self__, "key", key)
|
|
1016
1001
|
|
|
1017
|
-
@property
|
|
1002
|
+
@_builtins.property
|
|
1018
1003
|
@pulumi.getter
|
|
1019
|
-
def bucket(self) ->
|
|
1004
|
+
def bucket(self) -> _builtins.str:
|
|
1020
1005
|
"""
|
|
1021
1006
|
Bucket name containing [qcow2](https://en.wikipedia.org/wiki/Qcow) to import
|
|
1022
1007
|
"""
|
|
1023
1008
|
return pulumi.get(self, "bucket")
|
|
1024
1009
|
|
|
1025
|
-
@property
|
|
1010
|
+
@_builtins.property
|
|
1026
1011
|
@pulumi.getter
|
|
1027
|
-
def key(self) ->
|
|
1012
|
+
def key(self) -> _builtins.str:
|
|
1028
1013
|
"""
|
|
1029
1014
|
Key of the object to import
|
|
1030
1015
|
"""
|
|
@@ -1034,26 +1019,26 @@ class SnapshotImport(dict):
|
|
|
1034
1019
|
@pulumi.output_type
|
|
1035
1020
|
class GetPrivateNicPrivateIpResult(dict):
|
|
1036
1021
|
def __init__(__self__, *,
|
|
1037
|
-
address:
|
|
1038
|
-
id:
|
|
1022
|
+
address: _builtins.str,
|
|
1023
|
+
id: _builtins.str):
|
|
1039
1024
|
"""
|
|
1040
|
-
:param
|
|
1041
|
-
:param
|
|
1025
|
+
:param _builtins.str address: The private IP address
|
|
1026
|
+
:param _builtins.str id: The ID of the IP address resource
|
|
1042
1027
|
"""
|
|
1043
1028
|
pulumi.set(__self__, "address", address)
|
|
1044
1029
|
pulumi.set(__self__, "id", id)
|
|
1045
1030
|
|
|
1046
|
-
@property
|
|
1031
|
+
@_builtins.property
|
|
1047
1032
|
@pulumi.getter
|
|
1048
|
-
def address(self) ->
|
|
1033
|
+
def address(self) -> _builtins.str:
|
|
1049
1034
|
"""
|
|
1050
1035
|
The private IP address
|
|
1051
1036
|
"""
|
|
1052
1037
|
return pulumi.get(self, "address")
|
|
1053
1038
|
|
|
1054
|
-
@property
|
|
1039
|
+
@_builtins.property
|
|
1055
1040
|
@pulumi.getter
|
|
1056
|
-
def id(self) ->
|
|
1041
|
+
def id(self) -> _builtins.str:
|
|
1057
1042
|
"""
|
|
1058
1043
|
The ID of the IP address resource
|
|
1059
1044
|
"""
|
|
@@ -1063,21 +1048,21 @@ class GetPrivateNicPrivateIpResult(dict):
|
|
|
1063
1048
|
@pulumi.output_type
|
|
1064
1049
|
class GetSecurityGroupInboundRuleResult(dict):
|
|
1065
1050
|
def __init__(__self__, *,
|
|
1066
|
-
action:
|
|
1067
|
-
ip:
|
|
1068
|
-
ip_range:
|
|
1069
|
-
port:
|
|
1070
|
-
port_range:
|
|
1071
|
-
protocol:
|
|
1072
|
-
"""
|
|
1073
|
-
:param
|
|
1074
|
-
:param
|
|
1075
|
-
:param
|
|
1076
|
-
:param
|
|
1077
|
-
:param
|
|
1051
|
+
action: _builtins.str,
|
|
1052
|
+
ip: _builtins.str,
|
|
1053
|
+
ip_range: _builtins.str,
|
|
1054
|
+
port: _builtins.int,
|
|
1055
|
+
port_range: _builtins.str,
|
|
1056
|
+
protocol: _builtins.str):
|
|
1057
|
+
"""
|
|
1058
|
+
:param _builtins.str action: The action to take when rule match. Possible values are: `accept` or `drop`.
|
|
1059
|
+
:param _builtins.str ip: The ip this rule apply to.
|
|
1060
|
+
:param _builtins.str ip_range: The ip range (e.g `192.168.1.0/24`) this rule apply to.
|
|
1061
|
+
:param _builtins.int port: The port this rule apply to. If no port is specified, rule will apply to all port.
|
|
1062
|
+
:param _builtins.str port_range: The port range (e.g `22-23`) this rule applies to.
|
|
1078
1063
|
If no `port` nor `port_range` are specified, rule will apply to all port.
|
|
1079
1064
|
Only one of `port` and `port_range` should be specified.
|
|
1080
|
-
:param
|
|
1065
|
+
:param _builtins.str protocol: The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
|
|
1081
1066
|
"""
|
|
1082
1067
|
pulumi.set(__self__, "action", action)
|
|
1083
1068
|
pulumi.set(__self__, "ip", ip)
|
|
@@ -1086,41 +1071,41 @@ class GetSecurityGroupInboundRuleResult(dict):
|
|
|
1086
1071
|
pulumi.set(__self__, "port_range", port_range)
|
|
1087
1072
|
pulumi.set(__self__, "protocol", protocol)
|
|
1088
1073
|
|
|
1089
|
-
@property
|
|
1074
|
+
@_builtins.property
|
|
1090
1075
|
@pulumi.getter
|
|
1091
|
-
def action(self) ->
|
|
1076
|
+
def action(self) -> _builtins.str:
|
|
1092
1077
|
"""
|
|
1093
1078
|
The action to take when rule match. Possible values are: `accept` or `drop`.
|
|
1094
1079
|
"""
|
|
1095
1080
|
return pulumi.get(self, "action")
|
|
1096
1081
|
|
|
1097
|
-
@property
|
|
1082
|
+
@_builtins.property
|
|
1098
1083
|
@pulumi.getter
|
|
1099
|
-
def ip(self) ->
|
|
1084
|
+
def ip(self) -> _builtins.str:
|
|
1100
1085
|
"""
|
|
1101
1086
|
The ip this rule apply to.
|
|
1102
1087
|
"""
|
|
1103
1088
|
return pulumi.get(self, "ip")
|
|
1104
1089
|
|
|
1105
|
-
@property
|
|
1090
|
+
@_builtins.property
|
|
1106
1091
|
@pulumi.getter(name="ipRange")
|
|
1107
|
-
def ip_range(self) ->
|
|
1092
|
+
def ip_range(self) -> _builtins.str:
|
|
1108
1093
|
"""
|
|
1109
1094
|
The ip range (e.g `192.168.1.0/24`) this rule apply to.
|
|
1110
1095
|
"""
|
|
1111
1096
|
return pulumi.get(self, "ip_range")
|
|
1112
1097
|
|
|
1113
|
-
@property
|
|
1098
|
+
@_builtins.property
|
|
1114
1099
|
@pulumi.getter
|
|
1115
|
-
def port(self) ->
|
|
1100
|
+
def port(self) -> _builtins.int:
|
|
1116
1101
|
"""
|
|
1117
1102
|
The port this rule apply to. If no port is specified, rule will apply to all port.
|
|
1118
1103
|
"""
|
|
1119
1104
|
return pulumi.get(self, "port")
|
|
1120
1105
|
|
|
1121
|
-
@property
|
|
1106
|
+
@_builtins.property
|
|
1122
1107
|
@pulumi.getter(name="portRange")
|
|
1123
|
-
def port_range(self) ->
|
|
1108
|
+
def port_range(self) -> _builtins.str:
|
|
1124
1109
|
"""
|
|
1125
1110
|
The port range (e.g `22-23`) this rule applies to.
|
|
1126
1111
|
If no `port` nor `port_range` are specified, rule will apply to all port.
|
|
@@ -1128,9 +1113,9 @@ class GetSecurityGroupInboundRuleResult(dict):
|
|
|
1128
1113
|
"""
|
|
1129
1114
|
return pulumi.get(self, "port_range")
|
|
1130
1115
|
|
|
1131
|
-
@property
|
|
1116
|
+
@_builtins.property
|
|
1132
1117
|
@pulumi.getter
|
|
1133
|
-
def protocol(self) ->
|
|
1118
|
+
def protocol(self) -> _builtins.str:
|
|
1134
1119
|
"""
|
|
1135
1120
|
The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
|
|
1136
1121
|
"""
|
|
@@ -1140,21 +1125,21 @@ class GetSecurityGroupInboundRuleResult(dict):
|
|
|
1140
1125
|
@pulumi.output_type
|
|
1141
1126
|
class GetSecurityGroupOutboundRuleResult(dict):
|
|
1142
1127
|
def __init__(__self__, *,
|
|
1143
|
-
action:
|
|
1144
|
-
ip:
|
|
1145
|
-
ip_range:
|
|
1146
|
-
port:
|
|
1147
|
-
port_range:
|
|
1148
|
-
protocol:
|
|
1149
|
-
"""
|
|
1150
|
-
:param
|
|
1151
|
-
:param
|
|
1152
|
-
:param
|
|
1153
|
-
:param
|
|
1154
|
-
:param
|
|
1128
|
+
action: _builtins.str,
|
|
1129
|
+
ip: _builtins.str,
|
|
1130
|
+
ip_range: _builtins.str,
|
|
1131
|
+
port: _builtins.int,
|
|
1132
|
+
port_range: _builtins.str,
|
|
1133
|
+
protocol: _builtins.str):
|
|
1134
|
+
"""
|
|
1135
|
+
:param _builtins.str action: The action to take when rule match. Possible values are: `accept` or `drop`.
|
|
1136
|
+
:param _builtins.str ip: The ip this rule apply to.
|
|
1137
|
+
:param _builtins.str ip_range: The ip range (e.g `192.168.1.0/24`) this rule apply to.
|
|
1138
|
+
:param _builtins.int port: The port this rule apply to. If no port is specified, rule will apply to all port.
|
|
1139
|
+
:param _builtins.str port_range: The port range (e.g `22-23`) this rule applies to.
|
|
1155
1140
|
If no `port` nor `port_range` are specified, rule will apply to all port.
|
|
1156
1141
|
Only one of `port` and `port_range` should be specified.
|
|
1157
|
-
:param
|
|
1142
|
+
:param _builtins.str protocol: The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
|
|
1158
1143
|
"""
|
|
1159
1144
|
pulumi.set(__self__, "action", action)
|
|
1160
1145
|
pulumi.set(__self__, "ip", ip)
|
|
@@ -1163,41 +1148,41 @@ class GetSecurityGroupOutboundRuleResult(dict):
|
|
|
1163
1148
|
pulumi.set(__self__, "port_range", port_range)
|
|
1164
1149
|
pulumi.set(__self__, "protocol", protocol)
|
|
1165
1150
|
|
|
1166
|
-
@property
|
|
1151
|
+
@_builtins.property
|
|
1167
1152
|
@pulumi.getter
|
|
1168
|
-
def action(self) ->
|
|
1153
|
+
def action(self) -> _builtins.str:
|
|
1169
1154
|
"""
|
|
1170
1155
|
The action to take when rule match. Possible values are: `accept` or `drop`.
|
|
1171
1156
|
"""
|
|
1172
1157
|
return pulumi.get(self, "action")
|
|
1173
1158
|
|
|
1174
|
-
@property
|
|
1159
|
+
@_builtins.property
|
|
1175
1160
|
@pulumi.getter
|
|
1176
|
-
def ip(self) ->
|
|
1161
|
+
def ip(self) -> _builtins.str:
|
|
1177
1162
|
"""
|
|
1178
1163
|
The ip this rule apply to.
|
|
1179
1164
|
"""
|
|
1180
1165
|
return pulumi.get(self, "ip")
|
|
1181
1166
|
|
|
1182
|
-
@property
|
|
1167
|
+
@_builtins.property
|
|
1183
1168
|
@pulumi.getter(name="ipRange")
|
|
1184
|
-
def ip_range(self) ->
|
|
1169
|
+
def ip_range(self) -> _builtins.str:
|
|
1185
1170
|
"""
|
|
1186
1171
|
The ip range (e.g `192.168.1.0/24`) this rule apply to.
|
|
1187
1172
|
"""
|
|
1188
1173
|
return pulumi.get(self, "ip_range")
|
|
1189
1174
|
|
|
1190
|
-
@property
|
|
1175
|
+
@_builtins.property
|
|
1191
1176
|
@pulumi.getter
|
|
1192
|
-
def port(self) ->
|
|
1177
|
+
def port(self) -> _builtins.int:
|
|
1193
1178
|
"""
|
|
1194
1179
|
The port this rule apply to. If no port is specified, rule will apply to all port.
|
|
1195
1180
|
"""
|
|
1196
1181
|
return pulumi.get(self, "port")
|
|
1197
1182
|
|
|
1198
|
-
@property
|
|
1183
|
+
@_builtins.property
|
|
1199
1184
|
@pulumi.getter(name="portRange")
|
|
1200
|
-
def port_range(self) ->
|
|
1185
|
+
def port_range(self) -> _builtins.str:
|
|
1201
1186
|
"""
|
|
1202
1187
|
The port range (e.g `22-23`) this rule applies to.
|
|
1203
1188
|
If no `port` nor `port_range` are specified, rule will apply to all port.
|
|
@@ -1205,9 +1190,9 @@ class GetSecurityGroupOutboundRuleResult(dict):
|
|
|
1205
1190
|
"""
|
|
1206
1191
|
return pulumi.get(self, "port_range")
|
|
1207
1192
|
|
|
1208
|
-
@property
|
|
1193
|
+
@_builtins.property
|
|
1209
1194
|
@pulumi.getter
|
|
1210
|
-
def protocol(self) ->
|
|
1195
|
+
def protocol(self) -> _builtins.str:
|
|
1211
1196
|
"""
|
|
1212
1197
|
The protocol this rule apply to. Possible values are: `TCP`, `UDP`, `ICMP` or `ANY`.
|
|
1213
1198
|
"""
|
|
@@ -1217,26 +1202,26 @@ class GetSecurityGroupOutboundRuleResult(dict):
|
|
|
1217
1202
|
@pulumi.output_type
|
|
1218
1203
|
class GetServerPrivateIpResult(dict):
|
|
1219
1204
|
def __init__(__self__, *,
|
|
1220
|
-
address:
|
|
1221
|
-
id:
|
|
1205
|
+
address: _builtins.str,
|
|
1206
|
+
id: _builtins.str):
|
|
1222
1207
|
"""
|
|
1223
|
-
:param
|
|
1224
|
-
:param
|
|
1208
|
+
:param _builtins.str address: The address of the IP
|
|
1209
|
+
:param _builtins.str id: The ID of the IP
|
|
1225
1210
|
"""
|
|
1226
1211
|
pulumi.set(__self__, "address", address)
|
|
1227
1212
|
pulumi.set(__self__, "id", id)
|
|
1228
1213
|
|
|
1229
|
-
@property
|
|
1214
|
+
@_builtins.property
|
|
1230
1215
|
@pulumi.getter
|
|
1231
|
-
def address(self) ->
|
|
1216
|
+
def address(self) -> _builtins.str:
|
|
1232
1217
|
"""
|
|
1233
1218
|
The address of the IP
|
|
1234
1219
|
"""
|
|
1235
1220
|
return pulumi.get(self, "address")
|
|
1236
1221
|
|
|
1237
|
-
@property
|
|
1222
|
+
@_builtins.property
|
|
1238
1223
|
@pulumi.getter
|
|
1239
|
-
def id(self) ->
|
|
1224
|
+
def id(self) -> _builtins.str:
|
|
1240
1225
|
"""
|
|
1241
1226
|
The ID of the IP
|
|
1242
1227
|
"""
|
|
@@ -1246,17 +1231,17 @@ class GetServerPrivateIpResult(dict):
|
|
|
1246
1231
|
@pulumi.output_type
|
|
1247
1232
|
class GetServerPrivateNetworkResult(dict):
|
|
1248
1233
|
def __init__(__self__, *,
|
|
1249
|
-
mac_address:
|
|
1250
|
-
pn_id:
|
|
1251
|
-
pnic_id:
|
|
1252
|
-
status:
|
|
1253
|
-
zone:
|
|
1254
|
-
"""
|
|
1255
|
-
:param
|
|
1256
|
-
:param
|
|
1257
|
-
:param
|
|
1258
|
-
:param
|
|
1259
|
-
:param
|
|
1234
|
+
mac_address: _builtins.str,
|
|
1235
|
+
pn_id: _builtins.str,
|
|
1236
|
+
pnic_id: _builtins.str,
|
|
1237
|
+
status: _builtins.str,
|
|
1238
|
+
zone: _builtins.str):
|
|
1239
|
+
"""
|
|
1240
|
+
:param _builtins.str mac_address: MAC address of the NIC
|
|
1241
|
+
:param _builtins.str pn_id: The Private Network ID
|
|
1242
|
+
:param _builtins.str pnic_id: The ID of the NIC
|
|
1243
|
+
:param _builtins.str status: The private NIC state
|
|
1244
|
+
:param _builtins.str zone: `zone`) The zone in which the server exists.
|
|
1260
1245
|
"""
|
|
1261
1246
|
pulumi.set(__self__, "mac_address", mac_address)
|
|
1262
1247
|
pulumi.set(__self__, "pn_id", pn_id)
|
|
@@ -1264,41 +1249,41 @@ class GetServerPrivateNetworkResult(dict):
|
|
|
1264
1249
|
pulumi.set(__self__, "status", status)
|
|
1265
1250
|
pulumi.set(__self__, "zone", zone)
|
|
1266
1251
|
|
|
1267
|
-
@property
|
|
1252
|
+
@_builtins.property
|
|
1268
1253
|
@pulumi.getter(name="macAddress")
|
|
1269
|
-
def mac_address(self) ->
|
|
1254
|
+
def mac_address(self) -> _builtins.str:
|
|
1270
1255
|
"""
|
|
1271
1256
|
MAC address of the NIC
|
|
1272
1257
|
"""
|
|
1273
1258
|
return pulumi.get(self, "mac_address")
|
|
1274
1259
|
|
|
1275
|
-
@property
|
|
1260
|
+
@_builtins.property
|
|
1276
1261
|
@pulumi.getter(name="pnId")
|
|
1277
|
-
def pn_id(self) ->
|
|
1262
|
+
def pn_id(self) -> _builtins.str:
|
|
1278
1263
|
"""
|
|
1279
1264
|
The Private Network ID
|
|
1280
1265
|
"""
|
|
1281
1266
|
return pulumi.get(self, "pn_id")
|
|
1282
1267
|
|
|
1283
|
-
@property
|
|
1268
|
+
@_builtins.property
|
|
1284
1269
|
@pulumi.getter(name="pnicId")
|
|
1285
|
-
def pnic_id(self) ->
|
|
1270
|
+
def pnic_id(self) -> _builtins.str:
|
|
1286
1271
|
"""
|
|
1287
1272
|
The ID of the NIC
|
|
1288
1273
|
"""
|
|
1289
1274
|
return pulumi.get(self, "pnic_id")
|
|
1290
1275
|
|
|
1291
|
-
@property
|
|
1276
|
+
@_builtins.property
|
|
1292
1277
|
@pulumi.getter
|
|
1293
|
-
def status(self) ->
|
|
1278
|
+
def status(self) -> _builtins.str:
|
|
1294
1279
|
"""
|
|
1295
1280
|
The private NIC state
|
|
1296
1281
|
"""
|
|
1297
1282
|
return pulumi.get(self, "status")
|
|
1298
1283
|
|
|
1299
|
-
@property
|
|
1284
|
+
@_builtins.property
|
|
1300
1285
|
@pulumi.getter
|
|
1301
|
-
def zone(self) ->
|
|
1286
|
+
def zone(self) -> _builtins.str:
|
|
1302
1287
|
"""
|
|
1303
1288
|
`zone`) The zone in which the server exists.
|
|
1304
1289
|
"""
|
|
@@ -1308,21 +1293,21 @@ class GetServerPrivateNetworkResult(dict):
|
|
|
1308
1293
|
@pulumi.output_type
|
|
1309
1294
|
class GetServerPublicIpResult(dict):
|
|
1310
1295
|
def __init__(__self__, *,
|
|
1311
|
-
address:
|
|
1312
|
-
dynamic:
|
|
1313
|
-
family:
|
|
1314
|
-
gateway:
|
|
1315
|
-
id:
|
|
1316
|
-
netmask:
|
|
1317
|
-
provisioning_mode:
|
|
1318
|
-
"""
|
|
1319
|
-
:param
|
|
1320
|
-
:param
|
|
1321
|
-
:param
|
|
1322
|
-
:param
|
|
1323
|
-
:param
|
|
1324
|
-
:param
|
|
1325
|
-
:param
|
|
1296
|
+
address: _builtins.str,
|
|
1297
|
+
dynamic: _builtins.bool,
|
|
1298
|
+
family: _builtins.str,
|
|
1299
|
+
gateway: _builtins.str,
|
|
1300
|
+
id: _builtins.str,
|
|
1301
|
+
netmask: _builtins.str,
|
|
1302
|
+
provisioning_mode: _builtins.str):
|
|
1303
|
+
"""
|
|
1304
|
+
:param _builtins.str address: The address of the IP
|
|
1305
|
+
:param _builtins.bool dynamic: Whether the IP is dynamic
|
|
1306
|
+
:param _builtins.str family: IP address family (inet or inet6)
|
|
1307
|
+
:param _builtins.str gateway: Gateway's IP address
|
|
1308
|
+
:param _builtins.str id: The ID of the IP
|
|
1309
|
+
:param _builtins.str netmask: CIDR netmask
|
|
1310
|
+
:param _builtins.str provisioning_mode: Provisioning mode of the IP address
|
|
1326
1311
|
"""
|
|
1327
1312
|
pulumi.set(__self__, "address", address)
|
|
1328
1313
|
pulumi.set(__self__, "dynamic", dynamic)
|
|
@@ -1332,57 +1317,57 @@ class GetServerPublicIpResult(dict):
|
|
|
1332
1317
|
pulumi.set(__self__, "netmask", netmask)
|
|
1333
1318
|
pulumi.set(__self__, "provisioning_mode", provisioning_mode)
|
|
1334
1319
|
|
|
1335
|
-
@property
|
|
1320
|
+
@_builtins.property
|
|
1336
1321
|
@pulumi.getter
|
|
1337
|
-
def address(self) ->
|
|
1322
|
+
def address(self) -> _builtins.str:
|
|
1338
1323
|
"""
|
|
1339
1324
|
The address of the IP
|
|
1340
1325
|
"""
|
|
1341
1326
|
return pulumi.get(self, "address")
|
|
1342
1327
|
|
|
1343
|
-
@property
|
|
1328
|
+
@_builtins.property
|
|
1344
1329
|
@pulumi.getter
|
|
1345
|
-
def dynamic(self) ->
|
|
1330
|
+
def dynamic(self) -> _builtins.bool:
|
|
1346
1331
|
"""
|
|
1347
1332
|
Whether the IP is dynamic
|
|
1348
1333
|
"""
|
|
1349
1334
|
return pulumi.get(self, "dynamic")
|
|
1350
1335
|
|
|
1351
|
-
@property
|
|
1336
|
+
@_builtins.property
|
|
1352
1337
|
@pulumi.getter
|
|
1353
|
-
def family(self) ->
|
|
1338
|
+
def family(self) -> _builtins.str:
|
|
1354
1339
|
"""
|
|
1355
1340
|
IP address family (inet or inet6)
|
|
1356
1341
|
"""
|
|
1357
1342
|
return pulumi.get(self, "family")
|
|
1358
1343
|
|
|
1359
|
-
@property
|
|
1344
|
+
@_builtins.property
|
|
1360
1345
|
@pulumi.getter
|
|
1361
|
-
def gateway(self) ->
|
|
1346
|
+
def gateway(self) -> _builtins.str:
|
|
1362
1347
|
"""
|
|
1363
1348
|
Gateway's IP address
|
|
1364
1349
|
"""
|
|
1365
1350
|
return pulumi.get(self, "gateway")
|
|
1366
1351
|
|
|
1367
|
-
@property
|
|
1352
|
+
@_builtins.property
|
|
1368
1353
|
@pulumi.getter
|
|
1369
|
-
def id(self) ->
|
|
1354
|
+
def id(self) -> _builtins.str:
|
|
1370
1355
|
"""
|
|
1371
1356
|
The ID of the IP
|
|
1372
1357
|
"""
|
|
1373
1358
|
return pulumi.get(self, "id")
|
|
1374
1359
|
|
|
1375
|
-
@property
|
|
1360
|
+
@_builtins.property
|
|
1376
1361
|
@pulumi.getter
|
|
1377
|
-
def netmask(self) ->
|
|
1362
|
+
def netmask(self) -> _builtins.str:
|
|
1378
1363
|
"""
|
|
1379
1364
|
CIDR netmask
|
|
1380
1365
|
"""
|
|
1381
1366
|
return pulumi.get(self, "netmask")
|
|
1382
1367
|
|
|
1383
|
-
@property
|
|
1368
|
+
@_builtins.property
|
|
1384
1369
|
@pulumi.getter(name="provisioningMode")
|
|
1385
|
-
def provisioning_mode(self) ->
|
|
1370
|
+
def provisioning_mode(self) -> _builtins.str:
|
|
1386
1371
|
"""
|
|
1387
1372
|
Provisioning mode of the IP address
|
|
1388
1373
|
"""
|
|
@@ -1392,21 +1377,21 @@ class GetServerPublicIpResult(dict):
|
|
|
1392
1377
|
@pulumi.output_type
|
|
1393
1378
|
class GetServerRootVolumeResult(dict):
|
|
1394
1379
|
def __init__(__self__, *,
|
|
1395
|
-
boot:
|
|
1396
|
-
delete_on_termination:
|
|
1397
|
-
name:
|
|
1398
|
-
sbs_iops:
|
|
1399
|
-
size_in_gb:
|
|
1400
|
-
volume_id:
|
|
1401
|
-
volume_type:
|
|
1402
|
-
"""
|
|
1403
|
-
:param
|
|
1404
|
-
:param
|
|
1405
|
-
:param
|
|
1406
|
-
:param
|
|
1407
|
-
:param
|
|
1408
|
-
:param
|
|
1409
|
-
:param
|
|
1380
|
+
boot: _builtins.bool,
|
|
1381
|
+
delete_on_termination: _builtins.bool,
|
|
1382
|
+
name: _builtins.str,
|
|
1383
|
+
sbs_iops: _builtins.int,
|
|
1384
|
+
size_in_gb: _builtins.int,
|
|
1385
|
+
volume_id: _builtins.str,
|
|
1386
|
+
volume_type: _builtins.str):
|
|
1387
|
+
"""
|
|
1388
|
+
:param _builtins.bool boot: Set the volume where the boot the server
|
|
1389
|
+
:param _builtins.bool delete_on_termination: Forces deletion of the root volume on instance termination.
|
|
1390
|
+
:param _builtins.str name: The server name. Only one of `name` and `server_id` should be specified.
|
|
1391
|
+
:param _builtins.int sbs_iops: SBS Volume IOPS, only with volume_type as sbs_volume
|
|
1392
|
+
:param _builtins.int size_in_gb: Size of the root volume in gigabytes.
|
|
1393
|
+
:param _builtins.str volume_id: The volume ID of the root volume of the server.
|
|
1394
|
+
:param _builtins.str volume_type: Volume type of the root volume
|
|
1410
1395
|
"""
|
|
1411
1396
|
pulumi.set(__self__, "boot", boot)
|
|
1412
1397
|
pulumi.set(__self__, "delete_on_termination", delete_on_termination)
|
|
@@ -1416,113 +1401,255 @@ class GetServerRootVolumeResult(dict):
|
|
|
1416
1401
|
pulumi.set(__self__, "volume_id", volume_id)
|
|
1417
1402
|
pulumi.set(__self__, "volume_type", volume_type)
|
|
1418
1403
|
|
|
1419
|
-
@property
|
|
1404
|
+
@_builtins.property
|
|
1420
1405
|
@pulumi.getter
|
|
1421
|
-
def boot(self) ->
|
|
1406
|
+
def boot(self) -> _builtins.bool:
|
|
1422
1407
|
"""
|
|
1423
1408
|
Set the volume where the boot the server
|
|
1424
1409
|
"""
|
|
1425
1410
|
return pulumi.get(self, "boot")
|
|
1426
1411
|
|
|
1427
|
-
@property
|
|
1412
|
+
@_builtins.property
|
|
1428
1413
|
@pulumi.getter(name="deleteOnTermination")
|
|
1429
|
-
def delete_on_termination(self) ->
|
|
1414
|
+
def delete_on_termination(self) -> _builtins.bool:
|
|
1430
1415
|
"""
|
|
1431
1416
|
Forces deletion of the root volume on instance termination.
|
|
1432
1417
|
"""
|
|
1433
1418
|
return pulumi.get(self, "delete_on_termination")
|
|
1434
1419
|
|
|
1435
|
-
@property
|
|
1420
|
+
@_builtins.property
|
|
1436
1421
|
@pulumi.getter
|
|
1437
|
-
def name(self) ->
|
|
1422
|
+
def name(self) -> _builtins.str:
|
|
1438
1423
|
"""
|
|
1439
1424
|
The server name. Only one of `name` and `server_id` should be specified.
|
|
1440
1425
|
"""
|
|
1441
1426
|
return pulumi.get(self, "name")
|
|
1442
1427
|
|
|
1443
|
-
@property
|
|
1428
|
+
@_builtins.property
|
|
1444
1429
|
@pulumi.getter(name="sbsIops")
|
|
1445
|
-
def sbs_iops(self) ->
|
|
1430
|
+
def sbs_iops(self) -> _builtins.int:
|
|
1446
1431
|
"""
|
|
1447
1432
|
SBS Volume IOPS, only with volume_type as sbs_volume
|
|
1448
1433
|
"""
|
|
1449
1434
|
return pulumi.get(self, "sbs_iops")
|
|
1450
1435
|
|
|
1451
|
-
@property
|
|
1436
|
+
@_builtins.property
|
|
1452
1437
|
@pulumi.getter(name="sizeInGb")
|
|
1453
|
-
def size_in_gb(self) ->
|
|
1438
|
+
def size_in_gb(self) -> _builtins.int:
|
|
1454
1439
|
"""
|
|
1455
1440
|
Size of the root volume in gigabytes.
|
|
1456
1441
|
"""
|
|
1457
1442
|
return pulumi.get(self, "size_in_gb")
|
|
1458
1443
|
|
|
1459
|
-
@property
|
|
1444
|
+
@_builtins.property
|
|
1460
1445
|
@pulumi.getter(name="volumeId")
|
|
1461
|
-
def volume_id(self) ->
|
|
1446
|
+
def volume_id(self) -> _builtins.str:
|
|
1462
1447
|
"""
|
|
1463
1448
|
The volume ID of the root volume of the server.
|
|
1464
1449
|
"""
|
|
1465
1450
|
return pulumi.get(self, "volume_id")
|
|
1466
1451
|
|
|
1467
|
-
@property
|
|
1452
|
+
@_builtins.property
|
|
1468
1453
|
@pulumi.getter(name="volumeType")
|
|
1469
|
-
def volume_type(self) ->
|
|
1454
|
+
def volume_type(self) -> _builtins.str:
|
|
1470
1455
|
"""
|
|
1471
1456
|
Volume type of the root volume
|
|
1472
1457
|
"""
|
|
1473
1458
|
return pulumi.get(self, "volume_type")
|
|
1474
1459
|
|
|
1475
1460
|
|
|
1461
|
+
@pulumi.output_type
|
|
1462
|
+
class GetServerTypeCapabilityResult(dict):
|
|
1463
|
+
def __init__(__self__, *,
|
|
1464
|
+
boot_types: Sequence[_builtins.str],
|
|
1465
|
+
max_file_systems: _builtins.int):
|
|
1466
|
+
"""
|
|
1467
|
+
:param Sequence[_builtins.str] boot_types: The boot types allowed for the server type.
|
|
1468
|
+
:param _builtins.int max_file_systems: The maximum number of file systems that can be attached on the server type.
|
|
1469
|
+
"""
|
|
1470
|
+
pulumi.set(__self__, "boot_types", boot_types)
|
|
1471
|
+
pulumi.set(__self__, "max_file_systems", max_file_systems)
|
|
1472
|
+
|
|
1473
|
+
@_builtins.property
|
|
1474
|
+
@pulumi.getter(name="bootTypes")
|
|
1475
|
+
def boot_types(self) -> Sequence[_builtins.str]:
|
|
1476
|
+
"""
|
|
1477
|
+
The boot types allowed for the server type.
|
|
1478
|
+
"""
|
|
1479
|
+
return pulumi.get(self, "boot_types")
|
|
1480
|
+
|
|
1481
|
+
@_builtins.property
|
|
1482
|
+
@pulumi.getter(name="maxFileSystems")
|
|
1483
|
+
def max_file_systems(self) -> _builtins.int:
|
|
1484
|
+
"""
|
|
1485
|
+
The maximum number of file systems that can be attached on the server type.
|
|
1486
|
+
"""
|
|
1487
|
+
return pulumi.get(self, "max_file_systems")
|
|
1488
|
+
|
|
1489
|
+
|
|
1490
|
+
@pulumi.output_type
|
|
1491
|
+
class GetServerTypeNetworkResult(dict):
|
|
1492
|
+
def __init__(__self__, *,
|
|
1493
|
+
block_bandwidth: _builtins.int,
|
|
1494
|
+
internal_bandwidth: _builtins.int,
|
|
1495
|
+
public_bandwidth: _builtins.int):
|
|
1496
|
+
"""
|
|
1497
|
+
:param _builtins.int block_bandwidth: The block bandwidth of the server type (in bytes/second).
|
|
1498
|
+
:param _builtins.int internal_bandwidth: The internal bandwidth of the server type (in bytes/second).
|
|
1499
|
+
:param _builtins.int public_bandwidth: The public bandwidth of the server type (in bytes/second).
|
|
1500
|
+
"""
|
|
1501
|
+
pulumi.set(__self__, "block_bandwidth", block_bandwidth)
|
|
1502
|
+
pulumi.set(__self__, "internal_bandwidth", internal_bandwidth)
|
|
1503
|
+
pulumi.set(__self__, "public_bandwidth", public_bandwidth)
|
|
1504
|
+
|
|
1505
|
+
@_builtins.property
|
|
1506
|
+
@pulumi.getter(name="blockBandwidth")
|
|
1507
|
+
def block_bandwidth(self) -> _builtins.int:
|
|
1508
|
+
"""
|
|
1509
|
+
The block bandwidth of the server type (in bytes/second).
|
|
1510
|
+
"""
|
|
1511
|
+
return pulumi.get(self, "block_bandwidth")
|
|
1512
|
+
|
|
1513
|
+
@_builtins.property
|
|
1514
|
+
@pulumi.getter(name="internalBandwidth")
|
|
1515
|
+
def internal_bandwidth(self) -> _builtins.int:
|
|
1516
|
+
"""
|
|
1517
|
+
The internal bandwidth of the server type (in bytes/second).
|
|
1518
|
+
"""
|
|
1519
|
+
return pulumi.get(self, "internal_bandwidth")
|
|
1520
|
+
|
|
1521
|
+
@_builtins.property
|
|
1522
|
+
@pulumi.getter(name="publicBandwidth")
|
|
1523
|
+
def public_bandwidth(self) -> _builtins.int:
|
|
1524
|
+
"""
|
|
1525
|
+
The public bandwidth of the server type (in bytes/second).
|
|
1526
|
+
"""
|
|
1527
|
+
return pulumi.get(self, "public_bandwidth")
|
|
1528
|
+
|
|
1529
|
+
|
|
1530
|
+
@pulumi.output_type
|
|
1531
|
+
class GetServerTypeVolumeResult(dict):
|
|
1532
|
+
def __init__(__self__, *,
|
|
1533
|
+
block_storage: _builtins.bool,
|
|
1534
|
+
max_size_per_local_volume: _builtins.int,
|
|
1535
|
+
max_size_total: _builtins.int,
|
|
1536
|
+
min_size_per_local_volume: _builtins.int,
|
|
1537
|
+
min_size_total: _builtins.int,
|
|
1538
|
+
scratch_storage_max_size: _builtins.int):
|
|
1539
|
+
"""
|
|
1540
|
+
:param _builtins.bool block_storage: Whether block storage is allowed on the server type.
|
|
1541
|
+
:param _builtins.int max_size_per_local_volume: The maximum size in bytes per local volume allowed on the server type.
|
|
1542
|
+
:param _builtins.int max_size_total: The maximum total size in bytes of volumes allowed on the server type.
|
|
1543
|
+
:param _builtins.int min_size_per_local_volume: The minimum size in bytes per local volume allowed on the server type.
|
|
1544
|
+
:param _builtins.int min_size_total: The minimum total size in bytes of volumes allowed on the server type.
|
|
1545
|
+
:param _builtins.int scratch_storage_max_size: The maximum size in bytes of the scratch volume allowed on the server type.
|
|
1546
|
+
"""
|
|
1547
|
+
pulumi.set(__self__, "block_storage", block_storage)
|
|
1548
|
+
pulumi.set(__self__, "max_size_per_local_volume", max_size_per_local_volume)
|
|
1549
|
+
pulumi.set(__self__, "max_size_total", max_size_total)
|
|
1550
|
+
pulumi.set(__self__, "min_size_per_local_volume", min_size_per_local_volume)
|
|
1551
|
+
pulumi.set(__self__, "min_size_total", min_size_total)
|
|
1552
|
+
pulumi.set(__self__, "scratch_storage_max_size", scratch_storage_max_size)
|
|
1553
|
+
|
|
1554
|
+
@_builtins.property
|
|
1555
|
+
@pulumi.getter(name="blockStorage")
|
|
1556
|
+
def block_storage(self) -> _builtins.bool:
|
|
1557
|
+
"""
|
|
1558
|
+
Whether block storage is allowed on the server type.
|
|
1559
|
+
"""
|
|
1560
|
+
return pulumi.get(self, "block_storage")
|
|
1561
|
+
|
|
1562
|
+
@_builtins.property
|
|
1563
|
+
@pulumi.getter(name="maxSizePerLocalVolume")
|
|
1564
|
+
def max_size_per_local_volume(self) -> _builtins.int:
|
|
1565
|
+
"""
|
|
1566
|
+
The maximum size in bytes per local volume allowed on the server type.
|
|
1567
|
+
"""
|
|
1568
|
+
return pulumi.get(self, "max_size_per_local_volume")
|
|
1569
|
+
|
|
1570
|
+
@_builtins.property
|
|
1571
|
+
@pulumi.getter(name="maxSizeTotal")
|
|
1572
|
+
def max_size_total(self) -> _builtins.int:
|
|
1573
|
+
"""
|
|
1574
|
+
The maximum total size in bytes of volumes allowed on the server type.
|
|
1575
|
+
"""
|
|
1576
|
+
return pulumi.get(self, "max_size_total")
|
|
1577
|
+
|
|
1578
|
+
@_builtins.property
|
|
1579
|
+
@pulumi.getter(name="minSizePerLocalVolume")
|
|
1580
|
+
def min_size_per_local_volume(self) -> _builtins.int:
|
|
1581
|
+
"""
|
|
1582
|
+
The minimum size in bytes per local volume allowed on the server type.
|
|
1583
|
+
"""
|
|
1584
|
+
return pulumi.get(self, "min_size_per_local_volume")
|
|
1585
|
+
|
|
1586
|
+
@_builtins.property
|
|
1587
|
+
@pulumi.getter(name="minSizeTotal")
|
|
1588
|
+
def min_size_total(self) -> _builtins.int:
|
|
1589
|
+
"""
|
|
1590
|
+
The minimum total size in bytes of volumes allowed on the server type.
|
|
1591
|
+
"""
|
|
1592
|
+
return pulumi.get(self, "min_size_total")
|
|
1593
|
+
|
|
1594
|
+
@_builtins.property
|
|
1595
|
+
@pulumi.getter(name="scratchStorageMaxSize")
|
|
1596
|
+
def scratch_storage_max_size(self) -> _builtins.int:
|
|
1597
|
+
"""
|
|
1598
|
+
The maximum size in bytes of the scratch volume allowed on the server type.
|
|
1599
|
+
"""
|
|
1600
|
+
return pulumi.get(self, "scratch_storage_max_size")
|
|
1601
|
+
|
|
1602
|
+
|
|
1476
1603
|
@pulumi.output_type
|
|
1477
1604
|
class GetServersServerResult(dict):
|
|
1478
1605
|
def __init__(__self__, *,
|
|
1479
|
-
boot_type:
|
|
1480
|
-
bootscript_id:
|
|
1481
|
-
enable_dynamic_ip:
|
|
1482
|
-
enable_ipv6:
|
|
1483
|
-
id:
|
|
1484
|
-
image:
|
|
1485
|
-
ipv6_address:
|
|
1486
|
-
ipv6_gateway:
|
|
1487
|
-
ipv6_prefix_length:
|
|
1488
|
-
name:
|
|
1489
|
-
organization_id:
|
|
1490
|
-
placement_group_id:
|
|
1491
|
-
placement_group_policy_respected:
|
|
1492
|
-
private_ip:
|
|
1606
|
+
boot_type: _builtins.str,
|
|
1607
|
+
bootscript_id: _builtins.str,
|
|
1608
|
+
enable_dynamic_ip: _builtins.bool,
|
|
1609
|
+
enable_ipv6: _builtins.bool,
|
|
1610
|
+
id: _builtins.str,
|
|
1611
|
+
image: _builtins.str,
|
|
1612
|
+
ipv6_address: _builtins.str,
|
|
1613
|
+
ipv6_gateway: _builtins.str,
|
|
1614
|
+
ipv6_prefix_length: _builtins.int,
|
|
1615
|
+
name: _builtins.str,
|
|
1616
|
+
organization_id: _builtins.str,
|
|
1617
|
+
placement_group_id: _builtins.str,
|
|
1618
|
+
placement_group_policy_respected: _builtins.bool,
|
|
1619
|
+
private_ip: _builtins.str,
|
|
1493
1620
|
private_ips: Sequence['outputs.GetServersServerPrivateIpResult'],
|
|
1494
|
-
project_id:
|
|
1495
|
-
public_ip:
|
|
1621
|
+
project_id: _builtins.str,
|
|
1622
|
+
public_ip: _builtins.str,
|
|
1496
1623
|
public_ips: Sequence['outputs.GetServersServerPublicIpResult'],
|
|
1497
|
-
security_group_id:
|
|
1498
|
-
state:
|
|
1499
|
-
tags: Sequence[
|
|
1500
|
-
type:
|
|
1501
|
-
zone:
|
|
1502
|
-
"""
|
|
1503
|
-
:param
|
|
1504
|
-
:param
|
|
1505
|
-
:param
|
|
1506
|
-
:param
|
|
1507
|
-
:param
|
|
1508
|
-
:param
|
|
1509
|
-
:param
|
|
1510
|
-
:param
|
|
1511
|
-
:param
|
|
1512
|
-
:param
|
|
1513
|
-
:param
|
|
1514
|
-
:param
|
|
1515
|
-
:param
|
|
1516
|
-
:param
|
|
1624
|
+
security_group_id: _builtins.str,
|
|
1625
|
+
state: _builtins.str,
|
|
1626
|
+
tags: Sequence[_builtins.str],
|
|
1627
|
+
type: _builtins.str,
|
|
1628
|
+
zone: Optional[_builtins.str] = None):
|
|
1629
|
+
"""
|
|
1630
|
+
:param _builtins.str boot_type: The boot Type of the server. Possible values are: `local`, `bootscript` or `rescue`.
|
|
1631
|
+
:param _builtins.str bootscript_id: UUID of the bootscript
|
|
1632
|
+
:param _builtins.bool enable_dynamic_ip: If true a dynamic IP will be attached to the server.
|
|
1633
|
+
:param _builtins.bool enable_ipv6: Determines if IPv6 is enabled for the server.
|
|
1634
|
+
:param _builtins.str id: The ID of the IP
|
|
1635
|
+
:param _builtins.str image: The UUID or the label of the base image used by the server.
|
|
1636
|
+
:param _builtins.str ipv6_address: The default ipv6 address routed to the server. ( Only set when enable_ipv6 is set to true )
|
|
1637
|
+
:param _builtins.str ipv6_gateway: The ipv6 gateway address. ( Only set when enable_ipv6 is set to true )
|
|
1638
|
+
:param _builtins.int ipv6_prefix_length: The prefix length of the ipv6 subnet routed to the server. ( Only set when enable_ipv6 is set to true )
|
|
1639
|
+
:param _builtins.str name: The server name used as filter. Servers with a name like it are listed.
|
|
1640
|
+
:param _builtins.str organization_id: The organization ID the server is associated with.
|
|
1641
|
+
:param _builtins.str placement_group_id: The [placement group](https://developers.scaleway.com/en/products/instance/api/#placement-groups-d8f653) the server is attached to.
|
|
1642
|
+
:param _builtins.bool placement_group_policy_respected: Whether the placement group policy respected or not
|
|
1643
|
+
:param _builtins.str private_ip: The Scaleway internal IP address of the server.
|
|
1517
1644
|
:param Sequence['GetServersServerPrivateIpArgs'] private_ips: The list of private IPv4 and IPv6 addresses associated with the server.
|
|
1518
|
-
:param
|
|
1519
|
-
:param
|
|
1645
|
+
:param _builtins.str project_id: The ID of the project the server is associated with.
|
|
1646
|
+
:param _builtins.str public_ip: The public IP address of the server.
|
|
1520
1647
|
:param Sequence['GetServersServerPublicIpArgs'] public_ips: The list of public IPs of the server
|
|
1521
|
-
:param
|
|
1522
|
-
:param
|
|
1523
|
-
:param Sequence[
|
|
1524
|
-
:param
|
|
1525
|
-
:param
|
|
1648
|
+
:param _builtins.str security_group_id: The [security group](https://developers.scaleway.com/en/products/instance/api/#security-groups-8d7f89) the server is attached to.
|
|
1649
|
+
:param _builtins.str state: The state of the server. Possible values are: `started`, `stopped` or `standby`.
|
|
1650
|
+
:param Sequence[_builtins.str] tags: List of tags used as filter. Servers with these exact tags are listed.
|
|
1651
|
+
:param _builtins.str type: The commercial type of the server.
|
|
1652
|
+
:param _builtins.str zone: `zone`) The zone in which servers exist.
|
|
1526
1653
|
"""
|
|
1527
1654
|
pulumi.set(__self__, "boot_type", boot_type)
|
|
1528
1655
|
pulumi.set(__self__, "bootscript_id", bootscript_id)
|
|
@@ -1546,122 +1673,123 @@ class GetServersServerResult(dict):
|
|
|
1546
1673
|
pulumi.set(__self__, "state", state)
|
|
1547
1674
|
pulumi.set(__self__, "tags", tags)
|
|
1548
1675
|
pulumi.set(__self__, "type", type)
|
|
1549
|
-
|
|
1676
|
+
if zone is not None:
|
|
1677
|
+
pulumi.set(__self__, "zone", zone)
|
|
1550
1678
|
|
|
1551
|
-
@property
|
|
1679
|
+
@_builtins.property
|
|
1552
1680
|
@pulumi.getter(name="bootType")
|
|
1553
|
-
def boot_type(self) ->
|
|
1681
|
+
def boot_type(self) -> _builtins.str:
|
|
1554
1682
|
"""
|
|
1555
1683
|
The boot Type of the server. Possible values are: `local`, `bootscript` or `rescue`.
|
|
1556
1684
|
"""
|
|
1557
1685
|
return pulumi.get(self, "boot_type")
|
|
1558
1686
|
|
|
1559
|
-
@property
|
|
1687
|
+
@_builtins.property
|
|
1560
1688
|
@pulumi.getter(name="bootscriptId")
|
|
1561
1689
|
@_utilities.deprecated("""bootscript are not supported""")
|
|
1562
|
-
def bootscript_id(self) ->
|
|
1690
|
+
def bootscript_id(self) -> _builtins.str:
|
|
1563
1691
|
"""
|
|
1564
1692
|
UUID of the bootscript
|
|
1565
1693
|
"""
|
|
1566
1694
|
return pulumi.get(self, "bootscript_id")
|
|
1567
1695
|
|
|
1568
|
-
@property
|
|
1696
|
+
@_builtins.property
|
|
1569
1697
|
@pulumi.getter(name="enableDynamicIp")
|
|
1570
|
-
def enable_dynamic_ip(self) ->
|
|
1698
|
+
def enable_dynamic_ip(self) -> _builtins.bool:
|
|
1571
1699
|
"""
|
|
1572
1700
|
If true a dynamic IP will be attached to the server.
|
|
1573
1701
|
"""
|
|
1574
1702
|
return pulumi.get(self, "enable_dynamic_ip")
|
|
1575
1703
|
|
|
1576
|
-
@property
|
|
1704
|
+
@_builtins.property
|
|
1577
1705
|
@pulumi.getter(name="enableIpv6")
|
|
1578
|
-
def enable_ipv6(self) ->
|
|
1706
|
+
def enable_ipv6(self) -> _builtins.bool:
|
|
1579
1707
|
"""
|
|
1580
1708
|
Determines if IPv6 is enabled for the server.
|
|
1581
1709
|
"""
|
|
1582
1710
|
return pulumi.get(self, "enable_ipv6")
|
|
1583
1711
|
|
|
1584
|
-
@property
|
|
1712
|
+
@_builtins.property
|
|
1585
1713
|
@pulumi.getter
|
|
1586
|
-
def id(self) ->
|
|
1714
|
+
def id(self) -> _builtins.str:
|
|
1587
1715
|
"""
|
|
1588
1716
|
The ID of the IP
|
|
1589
1717
|
"""
|
|
1590
1718
|
return pulumi.get(self, "id")
|
|
1591
1719
|
|
|
1592
|
-
@property
|
|
1720
|
+
@_builtins.property
|
|
1593
1721
|
@pulumi.getter
|
|
1594
|
-
def image(self) ->
|
|
1722
|
+
def image(self) -> _builtins.str:
|
|
1595
1723
|
"""
|
|
1596
1724
|
The UUID or the label of the base image used by the server.
|
|
1597
1725
|
"""
|
|
1598
1726
|
return pulumi.get(self, "image")
|
|
1599
1727
|
|
|
1600
|
-
@property
|
|
1728
|
+
@_builtins.property
|
|
1601
1729
|
@pulumi.getter(name="ipv6Address")
|
|
1602
|
-
def ipv6_address(self) ->
|
|
1730
|
+
def ipv6_address(self) -> _builtins.str:
|
|
1603
1731
|
"""
|
|
1604
1732
|
The default ipv6 address routed to the server. ( Only set when enable_ipv6 is set to true )
|
|
1605
1733
|
"""
|
|
1606
1734
|
return pulumi.get(self, "ipv6_address")
|
|
1607
1735
|
|
|
1608
|
-
@property
|
|
1736
|
+
@_builtins.property
|
|
1609
1737
|
@pulumi.getter(name="ipv6Gateway")
|
|
1610
|
-
def ipv6_gateway(self) ->
|
|
1738
|
+
def ipv6_gateway(self) -> _builtins.str:
|
|
1611
1739
|
"""
|
|
1612
1740
|
The ipv6 gateway address. ( Only set when enable_ipv6 is set to true )
|
|
1613
1741
|
"""
|
|
1614
1742
|
return pulumi.get(self, "ipv6_gateway")
|
|
1615
1743
|
|
|
1616
|
-
@property
|
|
1744
|
+
@_builtins.property
|
|
1617
1745
|
@pulumi.getter(name="ipv6PrefixLength")
|
|
1618
|
-
def ipv6_prefix_length(self) ->
|
|
1746
|
+
def ipv6_prefix_length(self) -> _builtins.int:
|
|
1619
1747
|
"""
|
|
1620
1748
|
The prefix length of the ipv6 subnet routed to the server. ( Only set when enable_ipv6 is set to true )
|
|
1621
1749
|
"""
|
|
1622
1750
|
return pulumi.get(self, "ipv6_prefix_length")
|
|
1623
1751
|
|
|
1624
|
-
@property
|
|
1752
|
+
@_builtins.property
|
|
1625
1753
|
@pulumi.getter
|
|
1626
|
-
def name(self) ->
|
|
1754
|
+
def name(self) -> _builtins.str:
|
|
1627
1755
|
"""
|
|
1628
1756
|
The server name used as filter. Servers with a name like it are listed.
|
|
1629
1757
|
"""
|
|
1630
1758
|
return pulumi.get(self, "name")
|
|
1631
1759
|
|
|
1632
|
-
@property
|
|
1760
|
+
@_builtins.property
|
|
1633
1761
|
@pulumi.getter(name="organizationId")
|
|
1634
|
-
def organization_id(self) ->
|
|
1762
|
+
def organization_id(self) -> _builtins.str:
|
|
1635
1763
|
"""
|
|
1636
1764
|
The organization ID the server is associated with.
|
|
1637
1765
|
"""
|
|
1638
1766
|
return pulumi.get(self, "organization_id")
|
|
1639
1767
|
|
|
1640
|
-
@property
|
|
1768
|
+
@_builtins.property
|
|
1641
1769
|
@pulumi.getter(name="placementGroupId")
|
|
1642
|
-
def placement_group_id(self) ->
|
|
1770
|
+
def placement_group_id(self) -> _builtins.str:
|
|
1643
1771
|
"""
|
|
1644
1772
|
The [placement group](https://developers.scaleway.com/en/products/instance/api/#placement-groups-d8f653) the server is attached to.
|
|
1645
1773
|
"""
|
|
1646
1774
|
return pulumi.get(self, "placement_group_id")
|
|
1647
1775
|
|
|
1648
|
-
@property
|
|
1776
|
+
@_builtins.property
|
|
1649
1777
|
@pulumi.getter(name="placementGroupPolicyRespected")
|
|
1650
|
-
def placement_group_policy_respected(self) ->
|
|
1778
|
+
def placement_group_policy_respected(self) -> _builtins.bool:
|
|
1651
1779
|
"""
|
|
1652
1780
|
Whether the placement group policy respected or not
|
|
1653
1781
|
"""
|
|
1654
1782
|
return pulumi.get(self, "placement_group_policy_respected")
|
|
1655
1783
|
|
|
1656
|
-
@property
|
|
1784
|
+
@_builtins.property
|
|
1657
1785
|
@pulumi.getter(name="privateIp")
|
|
1658
|
-
def private_ip(self) ->
|
|
1786
|
+
def private_ip(self) -> _builtins.str:
|
|
1659
1787
|
"""
|
|
1660
1788
|
The Scaleway internal IP address of the server.
|
|
1661
1789
|
"""
|
|
1662
1790
|
return pulumi.get(self, "private_ip")
|
|
1663
1791
|
|
|
1664
|
-
@property
|
|
1792
|
+
@_builtins.property
|
|
1665
1793
|
@pulumi.getter(name="privateIps")
|
|
1666
1794
|
def private_ips(self) -> Sequence['outputs.GetServersServerPrivateIpResult']:
|
|
1667
1795
|
"""
|
|
@@ -1669,24 +1797,24 @@ class GetServersServerResult(dict):
|
|
|
1669
1797
|
"""
|
|
1670
1798
|
return pulumi.get(self, "private_ips")
|
|
1671
1799
|
|
|
1672
|
-
@property
|
|
1800
|
+
@_builtins.property
|
|
1673
1801
|
@pulumi.getter(name="projectId")
|
|
1674
|
-
def project_id(self) ->
|
|
1802
|
+
def project_id(self) -> _builtins.str:
|
|
1675
1803
|
"""
|
|
1676
1804
|
The ID of the project the server is associated with.
|
|
1677
1805
|
"""
|
|
1678
1806
|
return pulumi.get(self, "project_id")
|
|
1679
1807
|
|
|
1680
|
-
@property
|
|
1808
|
+
@_builtins.property
|
|
1681
1809
|
@pulumi.getter(name="publicIp")
|
|
1682
1810
|
@_utilities.deprecated("""Use public_ips instead""")
|
|
1683
|
-
def public_ip(self) ->
|
|
1811
|
+
def public_ip(self) -> _builtins.str:
|
|
1684
1812
|
"""
|
|
1685
1813
|
The public IP address of the server.
|
|
1686
1814
|
"""
|
|
1687
1815
|
return pulumi.get(self, "public_ip")
|
|
1688
1816
|
|
|
1689
|
-
@property
|
|
1817
|
+
@_builtins.property
|
|
1690
1818
|
@pulumi.getter(name="publicIps")
|
|
1691
1819
|
def public_ips(self) -> Sequence['outputs.GetServersServerPublicIpResult']:
|
|
1692
1820
|
"""
|
|
@@ -1694,41 +1822,41 @@ class GetServersServerResult(dict):
|
|
|
1694
1822
|
"""
|
|
1695
1823
|
return pulumi.get(self, "public_ips")
|
|
1696
1824
|
|
|
1697
|
-
@property
|
|
1825
|
+
@_builtins.property
|
|
1698
1826
|
@pulumi.getter(name="securityGroupId")
|
|
1699
|
-
def security_group_id(self) ->
|
|
1827
|
+
def security_group_id(self) -> _builtins.str:
|
|
1700
1828
|
"""
|
|
1701
1829
|
The [security group](https://developers.scaleway.com/en/products/instance/api/#security-groups-8d7f89) the server is attached to.
|
|
1702
1830
|
"""
|
|
1703
1831
|
return pulumi.get(self, "security_group_id")
|
|
1704
1832
|
|
|
1705
|
-
@property
|
|
1833
|
+
@_builtins.property
|
|
1706
1834
|
@pulumi.getter
|
|
1707
|
-
def state(self) ->
|
|
1835
|
+
def state(self) -> _builtins.str:
|
|
1708
1836
|
"""
|
|
1709
1837
|
The state of the server. Possible values are: `started`, `stopped` or `standby`.
|
|
1710
1838
|
"""
|
|
1711
1839
|
return pulumi.get(self, "state")
|
|
1712
1840
|
|
|
1713
|
-
@property
|
|
1841
|
+
@_builtins.property
|
|
1714
1842
|
@pulumi.getter
|
|
1715
|
-
def tags(self) -> Sequence[
|
|
1843
|
+
def tags(self) -> Sequence[_builtins.str]:
|
|
1716
1844
|
"""
|
|
1717
1845
|
List of tags used as filter. Servers with these exact tags are listed.
|
|
1718
1846
|
"""
|
|
1719
1847
|
return pulumi.get(self, "tags")
|
|
1720
1848
|
|
|
1721
|
-
@property
|
|
1849
|
+
@_builtins.property
|
|
1722
1850
|
@pulumi.getter
|
|
1723
|
-
def type(self) ->
|
|
1851
|
+
def type(self) -> _builtins.str:
|
|
1724
1852
|
"""
|
|
1725
1853
|
The commercial type of the server.
|
|
1726
1854
|
"""
|
|
1727
1855
|
return pulumi.get(self, "type")
|
|
1728
1856
|
|
|
1729
|
-
@property
|
|
1857
|
+
@_builtins.property
|
|
1730
1858
|
@pulumi.getter
|
|
1731
|
-
def zone(self) ->
|
|
1859
|
+
def zone(self) -> Optional[_builtins.str]:
|
|
1732
1860
|
"""
|
|
1733
1861
|
`zone`) The zone in which servers exist.
|
|
1734
1862
|
"""
|
|
@@ -1738,26 +1866,26 @@ class GetServersServerResult(dict):
|
|
|
1738
1866
|
@pulumi.output_type
|
|
1739
1867
|
class GetServersServerPrivateIpResult(dict):
|
|
1740
1868
|
def __init__(__self__, *,
|
|
1741
|
-
address:
|
|
1742
|
-
id:
|
|
1869
|
+
address: _builtins.str,
|
|
1870
|
+
id: _builtins.str):
|
|
1743
1871
|
"""
|
|
1744
|
-
:param
|
|
1745
|
-
:param
|
|
1872
|
+
:param _builtins.str address: The address of the IP
|
|
1873
|
+
:param _builtins.str id: The ID of the IP
|
|
1746
1874
|
"""
|
|
1747
1875
|
pulumi.set(__self__, "address", address)
|
|
1748
1876
|
pulumi.set(__self__, "id", id)
|
|
1749
1877
|
|
|
1750
|
-
@property
|
|
1878
|
+
@_builtins.property
|
|
1751
1879
|
@pulumi.getter
|
|
1752
|
-
def address(self) ->
|
|
1880
|
+
def address(self) -> _builtins.str:
|
|
1753
1881
|
"""
|
|
1754
1882
|
The address of the IP
|
|
1755
1883
|
"""
|
|
1756
1884
|
return pulumi.get(self, "address")
|
|
1757
1885
|
|
|
1758
|
-
@property
|
|
1886
|
+
@_builtins.property
|
|
1759
1887
|
@pulumi.getter
|
|
1760
|
-
def id(self) ->
|
|
1888
|
+
def id(self) -> _builtins.str:
|
|
1761
1889
|
"""
|
|
1762
1890
|
The ID of the IP
|
|
1763
1891
|
"""
|
|
@@ -1767,26 +1895,26 @@ class GetServersServerPrivateIpResult(dict):
|
|
|
1767
1895
|
@pulumi.output_type
|
|
1768
1896
|
class GetServersServerPublicIpResult(dict):
|
|
1769
1897
|
def __init__(__self__, *,
|
|
1770
|
-
address:
|
|
1771
|
-
id:
|
|
1898
|
+
address: _builtins.str,
|
|
1899
|
+
id: _builtins.str):
|
|
1772
1900
|
"""
|
|
1773
|
-
:param
|
|
1774
|
-
:param
|
|
1901
|
+
:param _builtins.str address: The address of the IP
|
|
1902
|
+
:param _builtins.str id: The ID of the IP
|
|
1775
1903
|
"""
|
|
1776
1904
|
pulumi.set(__self__, "address", address)
|
|
1777
1905
|
pulumi.set(__self__, "id", id)
|
|
1778
1906
|
|
|
1779
|
-
@property
|
|
1907
|
+
@_builtins.property
|
|
1780
1908
|
@pulumi.getter
|
|
1781
|
-
def address(self) ->
|
|
1909
|
+
def address(self) -> _builtins.str:
|
|
1782
1910
|
"""
|
|
1783
1911
|
The address of the IP
|
|
1784
1912
|
"""
|
|
1785
1913
|
return pulumi.get(self, "address")
|
|
1786
1914
|
|
|
1787
|
-
@property
|
|
1915
|
+
@_builtins.property
|
|
1788
1916
|
@pulumi.getter
|
|
1789
|
-
def id(self) ->
|
|
1917
|
+
def id(self) -> _builtins.str:
|
|
1790
1918
|
"""
|
|
1791
1919
|
The ID of the IP
|
|
1792
1920
|
"""
|
|
@@ -1796,26 +1924,26 @@ class GetServersServerPublicIpResult(dict):
|
|
|
1796
1924
|
@pulumi.output_type
|
|
1797
1925
|
class GetSnapshotImportResult(dict):
|
|
1798
1926
|
def __init__(__self__, *,
|
|
1799
|
-
bucket:
|
|
1800
|
-
key:
|
|
1927
|
+
bucket: _builtins.str,
|
|
1928
|
+
key: _builtins.str):
|
|
1801
1929
|
"""
|
|
1802
|
-
:param
|
|
1803
|
-
:param
|
|
1930
|
+
:param _builtins.str bucket: Bucket containing qcow
|
|
1931
|
+
:param _builtins.str key: Key of the qcow file in the specified bucket
|
|
1804
1932
|
"""
|
|
1805
1933
|
pulumi.set(__self__, "bucket", bucket)
|
|
1806
1934
|
pulumi.set(__self__, "key", key)
|
|
1807
1935
|
|
|
1808
|
-
@property
|
|
1936
|
+
@_builtins.property
|
|
1809
1937
|
@pulumi.getter
|
|
1810
|
-
def bucket(self) ->
|
|
1938
|
+
def bucket(self) -> _builtins.str:
|
|
1811
1939
|
"""
|
|
1812
1940
|
Bucket containing qcow
|
|
1813
1941
|
"""
|
|
1814
1942
|
return pulumi.get(self, "bucket")
|
|
1815
1943
|
|
|
1816
|
-
@property
|
|
1944
|
+
@_builtins.property
|
|
1817
1945
|
@pulumi.getter
|
|
1818
|
-
def key(self) ->
|
|
1946
|
+
def key(self) -> _builtins.str:
|
|
1819
1947
|
"""
|
|
1820
1948
|
Key of the qcow file in the specified bucket
|
|
1821
1949
|
"""
|