pulumiverse-scaleway 1.30.0a1750140900__py3-none-any.whl → 1.31.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.
- pulumiverse_scaleway/__init__.py +38 -1
- pulumiverse_scaleway/_inputs.py +2331 -2160
- pulumiverse_scaleway/_utilities.py +1 -1
- pulumiverse_scaleway/account/__init__.py +2 -1
- pulumiverse_scaleway/account/get_availability_zones.py +9 -8
- pulumiverse_scaleway/account/get_project.py +21 -20
- pulumiverse_scaleway/account/get_projects.py +28 -21
- pulumiverse_scaleway/account/get_ssh_key.py +24 -23
- pulumiverse_scaleway/account/outputs.py +20 -19
- pulumiverse_scaleway/account/project.py +59 -57
- pulumiverse_scaleway/account/ssh_key.py +87 -85
- pulumiverse_scaleway/account_project.py +59 -57
- pulumiverse_scaleway/account_ssh_key.py +87 -85
- pulumiverse_scaleway/apple_silicon_server.py +251 -155
- pulumiverse_scaleway/applesilicon/__init__.py +2 -1
- pulumiverse_scaleway/applesilicon/_inputs.py +89 -34
- pulumiverse_scaleway/applesilicon/outputs.py +54 -21
- pulumiverse_scaleway/applesilicon/server.py +251 -155
- pulumiverse_scaleway/autoscaling/__init__.py +13 -0
- pulumiverse_scaleway/autoscaling/_inputs.py +559 -0
- pulumiverse_scaleway/autoscaling/instance_group.py +808 -0
- pulumiverse_scaleway/autoscaling/instance_policy.py +635 -0
- pulumiverse_scaleway/autoscaling/instance_template.py +879 -0
- pulumiverse_scaleway/autoscaling/outputs.py +439 -0
- pulumiverse_scaleway/baremetal_server.py +262 -260
- pulumiverse_scaleway/billing/__init__.py +2 -1
- pulumiverse_scaleway/billing/get_consumptions.py +10 -9
- pulumiverse_scaleway/billing/get_invoices.py +19 -18
- pulumiverse_scaleway/billing/outputs.py +73 -72
- pulumiverse_scaleway/block/__init__.py +2 -1
- pulumiverse_scaleway/block/_inputs.py +12 -11
- pulumiverse_scaleway/block/get_snapshot.py +29 -28
- pulumiverse_scaleway/block/get_volume.py +28 -27
- pulumiverse_scaleway/block/outputs.py +14 -13
- pulumiverse_scaleway/block/snapshot.py +73 -71
- pulumiverse_scaleway/block/volume.py +115 -113
- pulumiverse_scaleway/block_snapshot.py +73 -71
- pulumiverse_scaleway/block_volume.py +115 -113
- pulumiverse_scaleway/cockpit.py +38 -36
- pulumiverse_scaleway/cockpit_alert_manager.py +52 -50
- pulumiverse_scaleway/cockpit_grafana_user.py +59 -57
- pulumiverse_scaleway/cockpit_source.py +115 -113
- pulumiverse_scaleway/cockpit_token.py +66 -64
- pulumiverse_scaleway/config/__init__.py +2 -1
- pulumiverse_scaleway/config/__init__.pyi +2 -1
- pulumiverse_scaleway/config/vars.py +2 -1
- pulumiverse_scaleway/container.py +573 -343
- pulumiverse_scaleway/container_cron.py +80 -78
- pulumiverse_scaleway/container_domain.py +52 -50
- pulumiverse_scaleway/container_namespace.py +211 -140
- pulumiverse_scaleway/container_token.py +80 -78
- pulumiverse_scaleway/container_trigger.py +59 -57
- pulumiverse_scaleway/containers/__init__.py +2 -1
- pulumiverse_scaleway/containers/_inputs.py +72 -71
- pulumiverse_scaleway/containers/container.py +573 -343
- pulumiverse_scaleway/containers/cron.py +80 -78
- pulumiverse_scaleway/containers/domain.py +52 -50
- pulumiverse_scaleway/containers/get_container.py +87 -42
- pulumiverse_scaleway/containers/get_namespace.py +43 -31
- pulumiverse_scaleway/containers/namespace.py +211 -140
- pulumiverse_scaleway/containers/outputs.py +62 -61
- pulumiverse_scaleway/containers/token.py +80 -78
- pulumiverse_scaleway/containers/trigger.py +59 -57
- pulumiverse_scaleway/database.py +66 -64
- pulumiverse_scaleway/database_acl.py +31 -29
- pulumiverse_scaleway/database_backup.py +101 -99
- pulumiverse_scaleway/database_instance.py +297 -295
- pulumiverse_scaleway/database_privilege.py +73 -71
- pulumiverse_scaleway/database_read_replica.py +45 -43
- pulumiverse_scaleway/database_user.py +73 -71
- pulumiverse_scaleway/databases/__init__.py +2 -1
- pulumiverse_scaleway/databases/_inputs.py +191 -190
- pulumiverse_scaleway/databases/acl.py +31 -29
- pulumiverse_scaleway/databases/database.py +66 -64
- pulumiverse_scaleway/databases/database_backup.py +101 -99
- pulumiverse_scaleway/databases/get_acl.py +13 -12
- pulumiverse_scaleway/databases/get_database.py +19 -18
- pulumiverse_scaleway/databases/get_database_backup.py +34 -33
- pulumiverse_scaleway/databases/get_instance.py +43 -42
- pulumiverse_scaleway/databases/get_privilege.py +24 -23
- pulumiverse_scaleway/databases/instance.py +297 -295
- pulumiverse_scaleway/databases/outputs.py +188 -187
- pulumiverse_scaleway/databases/privilege.py +73 -71
- pulumiverse_scaleway/databases/read_replica.py +45 -43
- pulumiverse_scaleway/databases/serverless_database.py +80 -78
- pulumiverse_scaleway/databases/snapshot.py +101 -99
- pulumiverse_scaleway/databases/user.py +73 -71
- pulumiverse_scaleway/domain/__init__.py +2 -1
- pulumiverse_scaleway/domain/_inputs.py +531 -530
- pulumiverse_scaleway/domain/get_record.py +38 -37
- pulumiverse_scaleway/domain/get_zone.py +24 -23
- pulumiverse_scaleway/domain/outputs.py +358 -357
- pulumiverse_scaleway/domain/record.py +129 -127
- pulumiverse_scaleway/domain/registration.py +94 -92
- pulumiverse_scaleway/domain/zone.py +87 -85
- pulumiverse_scaleway/domain_record.py +129 -127
- pulumiverse_scaleway/domain_zone.py +87 -85
- pulumiverse_scaleway/edge_services_backend_stage.py +45 -43
- pulumiverse_scaleway/edge_services_cache_stage.py +162 -113
- pulumiverse_scaleway/edge_services_dns_stage.py +108 -106
- pulumiverse_scaleway/edge_services_head_stage.py +31 -29
- pulumiverse_scaleway/edge_services_pipeline.py +66 -64
- pulumiverse_scaleway/edge_services_plan.py +31 -29
- pulumiverse_scaleway/edge_services_route_stage.py +59 -57
- pulumiverse_scaleway/edge_services_tls_stage.py +122 -120
- pulumiverse_scaleway/edge_services_waf_stage.py +87 -85
- pulumiverse_scaleway/elasticmetal/__init__.py +2 -1
- pulumiverse_scaleway/elasticmetal/_inputs.py +123 -122
- pulumiverse_scaleway/elasticmetal/get_ip.py +56 -39
- pulumiverse_scaleway/elasticmetal/get_ips.py +24 -23
- pulumiverse_scaleway/elasticmetal/get_offer.py +29 -28
- pulumiverse_scaleway/elasticmetal/get_option.py +19 -18
- pulumiverse_scaleway/elasticmetal/get_os.py +23 -22
- pulumiverse_scaleway/elasticmetal/get_partition_schema.py +29 -28
- pulumiverse_scaleway/elasticmetal/get_server.py +39 -38
- pulumiverse_scaleway/elasticmetal/ip.py +139 -137
- pulumiverse_scaleway/elasticmetal/ip_mac_address.py +87 -85
- pulumiverse_scaleway/elasticmetal/outputs.py +233 -232
- pulumiverse_scaleway/elasticmetal/server.py +262 -260
- pulumiverse_scaleway/file_filesystem.py +552 -0
- pulumiverse_scaleway/flexible_ip.py +139 -137
- pulumiverse_scaleway/flexible_ip_mac_address.py +87 -85
- pulumiverse_scaleway/function.py +394 -284
- pulumiverse_scaleway/function_cron.py +80 -78
- pulumiverse_scaleway/function_domain.py +52 -50
- pulumiverse_scaleway/function_namespace.py +197 -126
- pulumiverse_scaleway/function_token.py +80 -78
- pulumiverse_scaleway/function_trigger.py +59 -57
- pulumiverse_scaleway/functions/__init__.py +2 -1
- pulumiverse_scaleway/functions/_inputs.py +42 -41
- pulumiverse_scaleway/functions/cron.py +80 -78
- pulumiverse_scaleway/functions/domain.py +52 -50
- pulumiverse_scaleway/functions/function.py +394 -284
- pulumiverse_scaleway/functions/get_function.py +69 -46
- pulumiverse_scaleway/functions/get_namespace.py +42 -30
- pulumiverse_scaleway/functions/namespace.py +197 -126
- pulumiverse_scaleway/functions/outputs.py +26 -25
- pulumiverse_scaleway/functions/token.py +80 -78
- pulumiverse_scaleway/functions/trigger.py +59 -57
- pulumiverse_scaleway/get_account_project.py +21 -20
- pulumiverse_scaleway/get_account_ssh_key.py +24 -23
- pulumiverse_scaleway/get_availability_zones.py +9 -8
- pulumiverse_scaleway/get_baremetal_offer.py +29 -28
- pulumiverse_scaleway/get_baremetal_option.py +19 -18
- pulumiverse_scaleway/get_baremetal_os.py +23 -22
- pulumiverse_scaleway/get_baremetal_server.py +39 -38
- pulumiverse_scaleway/get_billing_consumptions.py +10 -9
- pulumiverse_scaleway/get_billing_invoices.py +19 -18
- pulumiverse_scaleway/get_block_snapshot.py +29 -28
- pulumiverse_scaleway/get_block_volume.py +28 -27
- pulumiverse_scaleway/get_cockpit.py +10 -9
- pulumiverse_scaleway/get_cockpit_source.py +77 -33
- pulumiverse_scaleway/get_config.py +13 -12
- pulumiverse_scaleway/get_container.py +87 -42
- pulumiverse_scaleway/get_container_namespace.py +43 -31
- pulumiverse_scaleway/get_database.py +19 -18
- pulumiverse_scaleway/get_database_acl.py +13 -12
- pulumiverse_scaleway/get_database_backup.py +34 -33
- pulumiverse_scaleway/get_database_instance.py +43 -42
- pulumiverse_scaleway/get_database_privilege.py +24 -23
- pulumiverse_scaleway/get_domain_record.py +38 -37
- pulumiverse_scaleway/get_domain_zone.py +24 -23
- pulumiverse_scaleway/get_flexible_ip.py +56 -39
- pulumiverse_scaleway/get_flexible_ips.py +24 -23
- pulumiverse_scaleway/get_function.py +69 -46
- pulumiverse_scaleway/get_function_namespace.py +42 -30
- pulumiverse_scaleway/get_iam_api_key.py +17 -16
- pulumiverse_scaleway/get_iam_application.py +23 -22
- pulumiverse_scaleway/get_iam_group.py +25 -24
- pulumiverse_scaleway/get_iam_ssh_key.py +24 -23
- pulumiverse_scaleway/get_iam_user.py +23 -22
- pulumiverse_scaleway/get_instance_image.py +42 -41
- pulumiverse_scaleway/get_instance_ip.py +20 -19
- pulumiverse_scaleway/get_instance_placement_group.py +28 -27
- pulumiverse_scaleway/get_instance_private_nic.py +31 -30
- pulumiverse_scaleway/get_instance_security_group.py +31 -30
- pulumiverse_scaleway/get_instance_server.py +59 -47
- pulumiverse_scaleway/get_instance_servers.py +24 -23
- pulumiverse_scaleway/get_instance_snapshot.py +29 -28
- pulumiverse_scaleway/get_instance_volume.py +30 -29
- pulumiverse_scaleway/get_iot_device.py +31 -30
- pulumiverse_scaleway/get_iot_hub.py +39 -38
- pulumiverse_scaleway/get_ipam_ip.py +51 -50
- pulumiverse_scaleway/get_ipam_ips.py +44 -43
- pulumiverse_scaleway/get_k8s_version.py +16 -15
- pulumiverse_scaleway/get_kubernetes_cluster.py +39 -38
- pulumiverse_scaleway/get_kubernetes_node_pool.py +59 -47
- pulumiverse_scaleway/get_lb_acls.py +22 -21
- pulumiverse_scaleway/get_lb_backend.py +43 -42
- pulumiverse_scaleway/get_lb_backends.py +22 -21
- pulumiverse_scaleway/get_lb_frontend.py +26 -25
- pulumiverse_scaleway/get_lb_frontends.py +22 -21
- pulumiverse_scaleway/get_lb_ips.py +29 -28
- pulumiverse_scaleway/get_lb_route.py +16 -15
- pulumiverse_scaleway/get_lb_routes.py +17 -16
- pulumiverse_scaleway/get_lbs.py +24 -23
- pulumiverse_scaleway/get_loadbalancer.py +36 -35
- pulumiverse_scaleway/get_loadbalancer_certificate.py +24 -23
- pulumiverse_scaleway/get_loadbalancer_ip.py +29 -28
- pulumiverse_scaleway/get_marketplace_image.py +23 -22
- pulumiverse_scaleway/get_mnq_sns.py +14 -13
- pulumiverse_scaleway/get_mnq_sqs.py +14 -13
- pulumiverse_scaleway/get_mongo_db_instance.py +35 -34
- pulumiverse_scaleway/get_object_bucket.py +22 -21
- pulumiverse_scaleway/get_object_bucket_policy.py +17 -16
- pulumiverse_scaleway/get_redis_cluster.py +34 -33
- pulumiverse_scaleway/get_registry_image.py +37 -36
- pulumiverse_scaleway/get_registry_image_tag.py +33 -32
- pulumiverse_scaleway/get_registry_namespace.py +27 -26
- pulumiverse_scaleway/get_secret.py +41 -40
- pulumiverse_scaleway/get_secret_version.py +34 -33
- pulumiverse_scaleway/get_tem_domain.py +43 -42
- pulumiverse_scaleway/get_vpc.py +47 -35
- pulumiverse_scaleway/get_vpc_gateway_network.py +28 -27
- pulumiverse_scaleway/get_vpc_private_network.py +44 -32
- pulumiverse_scaleway/get_vpc_public_gateway.py +36 -35
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +24 -23
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +33 -32
- pulumiverse_scaleway/get_vpc_public_gateway_ip.py +14 -13
- pulumiverse_scaleway/get_vpc_public_pat_rule.py +21 -20
- pulumiverse_scaleway/get_vpc_routes.py +38 -37
- pulumiverse_scaleway/get_vpcs.py +24 -23
- pulumiverse_scaleway/get_web_host_offer.py +25 -24
- pulumiverse_scaleway/get_webhosting.py +36 -35
- pulumiverse_scaleway/hosting/__init__.py +2 -1
- pulumiverse_scaleway/hosting/_inputs.py +61 -60
- pulumiverse_scaleway/hosting/get_hosting.py +36 -35
- pulumiverse_scaleway/hosting/get_offer.py +25 -24
- pulumiverse_scaleway/hosting/hosting.py +164 -162
- pulumiverse_scaleway/hosting/outputs.py +139 -138
- pulumiverse_scaleway/iam/__init__.py +2 -1
- pulumiverse_scaleway/iam/_inputs.py +22 -21
- pulumiverse_scaleway/iam/api_key.py +115 -113
- pulumiverse_scaleway/iam/application.py +80 -78
- pulumiverse_scaleway/iam/get_api_key.py +17 -16
- pulumiverse_scaleway/iam/get_application.py +23 -22
- pulumiverse_scaleway/iam/get_group.py +25 -24
- pulumiverse_scaleway/iam/get_ssh_key.py +24 -23
- pulumiverse_scaleway/iam/get_user.py +23 -22
- pulumiverse_scaleway/iam/group.py +115 -113
- pulumiverse_scaleway/iam/group_membership.py +45 -43
- pulumiverse_scaleway/iam/outputs.py +14 -13
- pulumiverse_scaleway/iam/policy.py +136 -134
- pulumiverse_scaleway/iam/ssh_key.py +87 -85
- pulumiverse_scaleway/iam/user.py +284 -273
- pulumiverse_scaleway/iam_api_key.py +115 -113
- pulumiverse_scaleway/iam_application.py +80 -78
- pulumiverse_scaleway/iam_group.py +115 -113
- pulumiverse_scaleway/iam_group_membership.py +45 -43
- pulumiverse_scaleway/iam_policy.py +136 -134
- pulumiverse_scaleway/iam_ssh_key.py +87 -85
- pulumiverse_scaleway/iam_user.py +284 -273
- pulumiverse_scaleway/inference/__init__.py +2 -1
- pulumiverse_scaleway/inference/_inputs.py +116 -61
- pulumiverse_scaleway/inference/deployment.py +225 -176
- pulumiverse_scaleway/inference/get_model.py +27 -26
- pulumiverse_scaleway/inference/model.py +129 -127
- pulumiverse_scaleway/inference/outputs.py +82 -49
- pulumiverse_scaleway/inference_deployment.py +225 -176
- pulumiverse_scaleway/instance/__init__.py +2 -1
- pulumiverse_scaleway/instance/_inputs.py +296 -295
- pulumiverse_scaleway/instance/get_image.py +42 -41
- pulumiverse_scaleway/instance/get_ip.py +20 -19
- pulumiverse_scaleway/instance/get_placement_group.py +28 -27
- pulumiverse_scaleway/instance/get_private_nic.py +31 -30
- pulumiverse_scaleway/instance/get_security_group.py +31 -30
- pulumiverse_scaleway/instance/get_server.py +59 -47
- pulumiverse_scaleway/instance/get_servers.py +24 -23
- pulumiverse_scaleway/instance/get_snapshot.py +29 -28
- pulumiverse_scaleway/instance/get_volume.py +30 -29
- pulumiverse_scaleway/instance/image.py +150 -148
- pulumiverse_scaleway/instance/ip.py +94 -92
- pulumiverse_scaleway/instance/ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/instance/outputs.py +349 -348
- pulumiverse_scaleway/instance/placement_group.py +101 -99
- pulumiverse_scaleway/instance/private_nic.py +94 -92
- pulumiverse_scaleway/instance/security_group.py +150 -148
- pulumiverse_scaleway/instance/security_group_rules.py +17 -15
- pulumiverse_scaleway/instance/server.py +393 -330
- pulumiverse_scaleway/instance/snapshot.py +108 -106
- pulumiverse_scaleway/instance/user_data.py +59 -57
- pulumiverse_scaleway/instance/volume.py +129 -127
- pulumiverse_scaleway/instance_image.py +150 -148
- pulumiverse_scaleway/instance_ip.py +94 -92
- pulumiverse_scaleway/instance_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/instance_placement_group.py +101 -99
- pulumiverse_scaleway/instance_private_nic.py +94 -92
- pulumiverse_scaleway/instance_security_group.py +150 -148
- pulumiverse_scaleway/instance_security_group_rules.py +17 -15
- pulumiverse_scaleway/instance_server.py +393 -330
- pulumiverse_scaleway/instance_snapshot.py +108 -106
- pulumiverse_scaleway/instance_user_data.py +59 -57
- pulumiverse_scaleway/instance_volume.py +129 -127
- pulumiverse_scaleway/iot/__init__.py +2 -1
- pulumiverse_scaleway/iot/_inputs.py +98 -97
- pulumiverse_scaleway/iot/device.py +122 -120
- pulumiverse_scaleway/iot/get_device.py +31 -30
- pulumiverse_scaleway/iot/get_hub.py +39 -38
- pulumiverse_scaleway/iot/hub.py +206 -204
- pulumiverse_scaleway/iot/network.py +94 -92
- pulumiverse_scaleway/iot/outputs.py +78 -77
- pulumiverse_scaleway/iot/route.py +66 -64
- pulumiverse_scaleway/iot_device.py +122 -120
- pulumiverse_scaleway/iot_hub.py +206 -204
- pulumiverse_scaleway/iot_network.py +94 -92
- pulumiverse_scaleway/iot_route.py +66 -64
- pulumiverse_scaleway/ipam/__init__.py +2 -1
- pulumiverse_scaleway/ipam/_inputs.py +87 -86
- pulumiverse_scaleway/ipam/get_ip.py +51 -50
- pulumiverse_scaleway/ipam/get_ips.py +44 -43
- pulumiverse_scaleway/ipam/ip.py +94 -92
- pulumiverse_scaleway/ipam/ip_reverse_dns.py +59 -57
- pulumiverse_scaleway/ipam/outputs.py +90 -89
- pulumiverse_scaleway/ipam_ip.py +94 -92
- pulumiverse_scaleway/ipam_ip_reverse_dns.py +59 -57
- pulumiverse_scaleway/job/__init__.py +2 -1
- pulumiverse_scaleway/job/_inputs.py +38 -37
- pulumiverse_scaleway/job/definition.py +143 -141
- pulumiverse_scaleway/job/outputs.py +24 -23
- pulumiverse_scaleway/job_definition.py +143 -141
- pulumiverse_scaleway/kubernetes/__init__.py +2 -1
- pulumiverse_scaleway/kubernetes/_inputs.py +190 -189
- pulumiverse_scaleway/kubernetes/acl.py +45 -43
- pulumiverse_scaleway/kubernetes/cluster.py +234 -232
- pulumiverse_scaleway/kubernetes/get_cluster.py +39 -38
- pulumiverse_scaleway/kubernetes/get_pool.py +59 -47
- pulumiverse_scaleway/kubernetes/get_version.py +16 -15
- pulumiverse_scaleway/kubernetes/outputs.py +217 -216
- pulumiverse_scaleway/kubernetes/pool.py +351 -288
- pulumiverse_scaleway/kubernetes_cluster.py +234 -232
- pulumiverse_scaleway/kubernetes_node_pool.py +351 -288
- pulumiverse_scaleway/loadbalancer.py +199 -197
- pulumiverse_scaleway/loadbalancer_acl.py +80 -78
- pulumiverse_scaleway/loadbalancer_backend.py +381 -379
- pulumiverse_scaleway/loadbalancer_certificate.py +73 -71
- pulumiverse_scaleway/loadbalancer_frontend.py +136 -134
- pulumiverse_scaleway/loadbalancer_ip.py +101 -99
- pulumiverse_scaleway/loadbalancer_route.py +101 -99
- pulumiverse_scaleway/loadbalancers/__init__.py +2 -1
- pulumiverse_scaleway/loadbalancers/_inputs.py +263 -222
- pulumiverse_scaleway/loadbalancers/acl.py +80 -78
- pulumiverse_scaleway/loadbalancers/backend.py +381 -379
- pulumiverse_scaleway/loadbalancers/certificate.py +73 -71
- pulumiverse_scaleway/loadbalancers/frontend.py +136 -134
- pulumiverse_scaleway/loadbalancers/get_acls.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_backend.py +43 -42
- pulumiverse_scaleway/loadbalancers/get_backends.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_certificate.py +24 -23
- pulumiverse_scaleway/loadbalancers/get_frontend.py +26 -25
- pulumiverse_scaleway/loadbalancers/get_frontends.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_ip.py +29 -28
- pulumiverse_scaleway/loadbalancers/get_ips.py +29 -28
- pulumiverse_scaleway/loadbalancers/get_load_balancer.py +36 -35
- pulumiverse_scaleway/loadbalancers/get_load_balancers.py +24 -23
- pulumiverse_scaleway/loadbalancers/get_route.py +16 -15
- pulumiverse_scaleway/loadbalancers/get_routes.py +17 -16
- pulumiverse_scaleway/loadbalancers/ip.py +101 -99
- pulumiverse_scaleway/loadbalancers/load_balancer.py +199 -197
- pulumiverse_scaleway/loadbalancers/outputs.py +581 -530
- pulumiverse_scaleway/loadbalancers/route.py +101 -99
- pulumiverse_scaleway/mnq/__init__.py +2 -1
- pulumiverse_scaleway/mnq/_inputs.py +32 -31
- pulumiverse_scaleway/mnq/get_sns.py +14 -13
- pulumiverse_scaleway/mnq/get_sqs.py +14 -13
- pulumiverse_scaleway/mnq/nats_account.py +52 -50
- pulumiverse_scaleway/mnq/nats_credentials.py +52 -50
- pulumiverse_scaleway/mnq/outputs.py +20 -19
- pulumiverse_scaleway/mnq/sns.py +38 -36
- pulumiverse_scaleway/mnq/sns_credentials.py +59 -57
- pulumiverse_scaleway/mnq/sns_topic.py +143 -141
- pulumiverse_scaleway/mnq/sns_topic_subscription.py +150 -148
- pulumiverse_scaleway/mnq/sqs.py +38 -36
- pulumiverse_scaleway/mnq/sqs_credentials.py +59 -57
- pulumiverse_scaleway/mnq/sqs_queue.py +192 -190
- pulumiverse_scaleway/mnq_nats_account.py +52 -50
- pulumiverse_scaleway/mnq_nats_credentials.py +52 -50
- pulumiverse_scaleway/mnq_sns.py +38 -36
- pulumiverse_scaleway/mnq_sns_credentials.py +59 -57
- pulumiverse_scaleway/mnq_sns_topic.py +143 -141
- pulumiverse_scaleway/mnq_sns_topic_subscription.py +150 -148
- pulumiverse_scaleway/mnq_sqs.py +38 -36
- pulumiverse_scaleway/mnq_sqs_credentials.py +59 -57
- pulumiverse_scaleway/mnq_sqs_queue.py +192 -190
- pulumiverse_scaleway/mongo_db_instance.py +199 -197
- pulumiverse_scaleway/mongo_db_snapshot.py +101 -99
- pulumiverse_scaleway/mongodb/__init__.py +2 -1
- pulumiverse_scaleway/mongodb/_inputs.py +53 -52
- pulumiverse_scaleway/mongodb/get_instance.py +35 -34
- pulumiverse_scaleway/mongodb/instance.py +199 -197
- pulumiverse_scaleway/mongodb/outputs.py +64 -63
- pulumiverse_scaleway/mongodb/snapshot.py +101 -99
- pulumiverse_scaleway/network/__init__.py +2 -1
- pulumiverse_scaleway/network/_inputs.py +140 -139
- pulumiverse_scaleway/network/acl.py +59 -57
- pulumiverse_scaleway/network/gateway_network.py +143 -141
- pulumiverse_scaleway/network/get_gateway_network.py +28 -27
- pulumiverse_scaleway/network/get_private_network.py +44 -32
- pulumiverse_scaleway/network/get_public_gateway.py +36 -35
- pulumiverse_scaleway/network/get_public_gateway_dhcp.py +24 -23
- pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +33 -32
- pulumiverse_scaleway/network/get_public_gateway_ip.py +14 -13
- pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +21 -20
- pulumiverse_scaleway/network/get_routes.py +38 -37
- pulumiverse_scaleway/network/get_vpc.py +47 -35
- pulumiverse_scaleway/network/get_vpcs.py +24 -23
- pulumiverse_scaleway/network/outputs.py +206 -205
- pulumiverse_scaleway/network/private_network.py +170 -121
- pulumiverse_scaleway/network/public_gateway.py +213 -211
- pulumiverse_scaleway/network/public_gateway_dhcp.py +234 -232
- pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +87 -85
- pulumiverse_scaleway/network/public_gateway_ip.py +87 -85
- pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/network/public_gateway_pat_rule.py +108 -106
- pulumiverse_scaleway/network/route.py +115 -113
- pulumiverse_scaleway/network/vpc.py +149 -100
- pulumiverse_scaleway/object/__init__.py +2 -1
- pulumiverse_scaleway/object/_inputs.py +157 -134
- pulumiverse_scaleway/object/bucket.py +115 -113
- pulumiverse_scaleway/object/bucket_acl.py +79 -75
- pulumiverse_scaleway/object/bucket_lock_configuration.py +45 -43
- pulumiverse_scaleway/object/bucket_policy.py +59 -57
- pulumiverse_scaleway/object/bucket_website_configuration.py +85 -65
- pulumiverse_scaleway/object/get_bucket.py +22 -21
- pulumiverse_scaleway/object/get_bucket_policy.py +17 -16
- pulumiverse_scaleway/object/item.py +232 -183
- pulumiverse_scaleway/object/outputs.py +133 -118
- pulumiverse_scaleway/object_bucket.py +115 -113
- pulumiverse_scaleway/object_bucket_acl.py +79 -75
- pulumiverse_scaleway/object_bucket_lock_configuration.py +45 -43
- pulumiverse_scaleway/object_bucket_policy.py +59 -57
- pulumiverse_scaleway/object_bucket_website_configuration.py +85 -65
- pulumiverse_scaleway/object_item.py +232 -183
- pulumiverse_scaleway/observability/__init__.py +2 -1
- pulumiverse_scaleway/observability/_inputs.py +89 -88
- pulumiverse_scaleway/observability/alert_manager.py +52 -50
- pulumiverse_scaleway/observability/cockpit.py +38 -36
- pulumiverse_scaleway/observability/get_instance.py +10 -9
- pulumiverse_scaleway/observability/get_source.py +77 -33
- pulumiverse_scaleway/observability/grafana_user.py +59 -57
- pulumiverse_scaleway/observability/outputs.py +77 -76
- pulumiverse_scaleway/observability/source.py +115 -113
- pulumiverse_scaleway/observability/token.py +66 -64
- pulumiverse_scaleway/outputs.py +2870 -2741
- pulumiverse_scaleway/provider.py +87 -65
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/rdb_snapshot.py +101 -99
- pulumiverse_scaleway/redis/__init__.py +2 -1
- pulumiverse_scaleway/redis/_inputs.py +63 -62
- pulumiverse_scaleway/redis/cluster.py +178 -176
- pulumiverse_scaleway/redis/get_cluster.py +34 -33
- pulumiverse_scaleway/redis/outputs.py +74 -73
- pulumiverse_scaleway/redis_cluster.py +178 -176
- pulumiverse_scaleway/registry/__init__.py +2 -1
- pulumiverse_scaleway/registry/get_image.py +37 -36
- pulumiverse_scaleway/registry/get_image_tag.py +33 -32
- pulumiverse_scaleway/registry/get_namespace.py +27 -26
- pulumiverse_scaleway/registry/namespace.py +87 -85
- pulumiverse_scaleway/registry_namespace.py +87 -85
- pulumiverse_scaleway/sdb_database.py +80 -78
- pulumiverse_scaleway/secret.py +143 -141
- pulumiverse_scaleway/secret_version.py +87 -85
- pulumiverse_scaleway/secrets/__init__.py +2 -1
- pulumiverse_scaleway/secrets/_inputs.py +53 -52
- pulumiverse_scaleway/secrets/get_secret.py +41 -40
- pulumiverse_scaleway/secrets/get_version.py +34 -33
- pulumiverse_scaleway/secrets/outputs.py +64 -63
- pulumiverse_scaleway/secrets/secret.py +143 -141
- pulumiverse_scaleway/secrets/version.py +87 -85
- pulumiverse_scaleway/tem/__init__.py +2 -1
- pulumiverse_scaleway/tem/_inputs.py +28 -27
- pulumiverse_scaleway/tem/blocked_list.py +87 -85
- pulumiverse_scaleway/tem/domain.py +199 -197
- pulumiverse_scaleway/tem/domain_validation.py +52 -50
- pulumiverse_scaleway/tem/get_domain.py +43 -42
- pulumiverse_scaleway/tem/get_offer_subscription.py +22 -21
- pulumiverse_scaleway/tem/outputs.py +34 -33
- pulumiverse_scaleway/tem/webhook.py +108 -106
- pulumiverse_scaleway/tem_domain.py +199 -197
- pulumiverse_scaleway/tem_domain_validation.py +52 -50
- pulumiverse_scaleway/tem_webhook.py +108 -106
- pulumiverse_scaleway/vpc.py +149 -100
- pulumiverse_scaleway/vpc_gateway_network.py +143 -141
- pulumiverse_scaleway/vpc_private_network.py +170 -121
- pulumiverse_scaleway/vpc_public_gateway.py +213 -211
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +234 -232
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +87 -85
- pulumiverse_scaleway/vpc_public_gateway_ip.py +87 -85
- pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +108 -106
- pulumiverse_scaleway/vpc_route.py +115 -113
- pulumiverse_scaleway/webhosting.py +164 -162
- {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.31.0.dist-info}/METADATA +2 -2
- pulumiverse_scaleway-1.31.0.dist-info/RECORD +496 -0
- pulumiverse_scaleway/elasticmetal/get_easy_partitioning.py +0 -177
- pulumiverse_scaleway/get_cockpit_plan.py +0 -94
- pulumiverse_scaleway/observability/get_plan.py +0 -90
- pulumiverse_scaleway-1.30.0a1750140900.dist-info/RECORD +0 -492
- {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.31.0.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.31.0.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,8 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -60,7 +61,7 @@ class GetVpcRoutesResult:
|
|
60
61
|
|
61
62
|
@property
|
62
63
|
@pulumi.getter
|
63
|
-
def id(self) -> str:
|
64
|
+
def id(self) -> builtins.str:
|
64
65
|
"""
|
65
66
|
The provider-assigned unique ID for this managed resource.
|
66
67
|
"""
|
@@ -68,27 +69,27 @@ class GetVpcRoutesResult:
|
|
68
69
|
|
69
70
|
@property
|
70
71
|
@pulumi.getter(name="isIpv6")
|
71
|
-
def is_ipv6(self) -> Optional[bool]:
|
72
|
+
def is_ipv6(self) -> Optional[builtins.bool]:
|
72
73
|
return pulumi.get(self, "is_ipv6")
|
73
74
|
|
74
75
|
@property
|
75
76
|
@pulumi.getter(name="nexthopPrivateNetworkId")
|
76
|
-
def nexthop_private_network_id(self) -> Optional[str]:
|
77
|
+
def nexthop_private_network_id(self) -> Optional[builtins.str]:
|
77
78
|
return pulumi.get(self, "nexthop_private_network_id")
|
78
79
|
|
79
80
|
@property
|
80
81
|
@pulumi.getter(name="nexthopResourceId")
|
81
|
-
def nexthop_resource_id(self) -> Optional[str]:
|
82
|
+
def nexthop_resource_id(self) -> Optional[builtins.str]:
|
82
83
|
return pulumi.get(self, "nexthop_resource_id")
|
83
84
|
|
84
85
|
@property
|
85
86
|
@pulumi.getter(name="nexthopResourceType")
|
86
|
-
def nexthop_resource_type(self) -> Optional[str]:
|
87
|
+
def nexthop_resource_type(self) -> Optional[builtins.str]:
|
87
88
|
return pulumi.get(self, "nexthop_resource_type")
|
88
89
|
|
89
90
|
@property
|
90
91
|
@pulumi.getter
|
91
|
-
def region(self) -> str:
|
92
|
+
def region(self) -> builtins.str:
|
92
93
|
return pulumi.get(self, "region")
|
93
94
|
|
94
95
|
@property
|
@@ -101,12 +102,12 @@ class GetVpcRoutesResult:
|
|
101
102
|
|
102
103
|
@property
|
103
104
|
@pulumi.getter
|
104
|
-
def tags(self) -> Optional[Sequence[str]]:
|
105
|
+
def tags(self) -> Optional[Sequence[builtins.str]]:
|
105
106
|
return pulumi.get(self, "tags")
|
106
107
|
|
107
108
|
@property
|
108
109
|
@pulumi.getter(name="vpcId")
|
109
|
-
def vpc_id(self) -> Optional[str]:
|
110
|
+
def vpc_id(self) -> Optional[builtins.str]:
|
110
111
|
return pulumi.get(self, "vpc_id")
|
111
112
|
|
112
113
|
|
@@ -127,25 +128,25 @@ class AwaitableGetVpcRoutesResult(GetVpcRoutesResult):
|
|
127
128
|
vpc_id=self.vpc_id)
|
128
129
|
|
129
130
|
|
130
|
-
def get_vpc_routes(is_ipv6: Optional[bool] = None,
|
131
|
-
nexthop_private_network_id: Optional[str] = None,
|
132
|
-
nexthop_resource_id: Optional[str] = None,
|
133
|
-
nexthop_resource_type: Optional[str] = None,
|
134
|
-
region: Optional[str] = None,
|
135
|
-
tags: Optional[Sequence[str]] = None,
|
136
|
-
vpc_id: Optional[str] = None,
|
131
|
+
def get_vpc_routes(is_ipv6: Optional[builtins.bool] = None,
|
132
|
+
nexthop_private_network_id: Optional[builtins.str] = None,
|
133
|
+
nexthop_resource_id: Optional[builtins.str] = None,
|
134
|
+
nexthop_resource_type: Optional[builtins.str] = None,
|
135
|
+
region: Optional[builtins.str] = None,
|
136
|
+
tags: Optional[Sequence[builtins.str]] = None,
|
137
|
+
vpc_id: Optional[builtins.str] = None,
|
137
138
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVpcRoutesResult:
|
138
139
|
"""
|
139
140
|
Gets information about multiple VPC routes.
|
140
141
|
|
141
142
|
|
142
|
-
:param bool is_ipv6: Routes with an IPv6 destination will be listed.
|
143
|
-
:param str nexthop_private_network_id: The next hop private network ID to filter for. routes with a similar next hop private network ID are listed.
|
144
|
-
:param str nexthop_resource_id: The next hop resource ID to filter for. routes with a similar next hop resource ID are listed.
|
145
|
-
:param str nexthop_resource_type: The next hop resource type to filter for. routes with a similar next hop resource type are listed.
|
146
|
-
:param str region: `region`). The region in which the routes exist.
|
147
|
-
:param Sequence[str] tags: List of tags to filter for. routes with these exact tags are listed.
|
148
|
-
:param str vpc_id: The VPC ID to filter for. routes with a similar VPC ID are listed.
|
143
|
+
:param builtins.bool is_ipv6: Routes with an IPv6 destination will be listed.
|
144
|
+
:param builtins.str nexthop_private_network_id: The next hop private network ID to filter for. routes with a similar next hop private network ID are listed.
|
145
|
+
:param builtins.str nexthop_resource_id: The next hop resource ID to filter for. routes with a similar next hop resource ID are listed.
|
146
|
+
:param builtins.str nexthop_resource_type: The next hop resource type to filter for. routes with a similar next hop resource type are listed.
|
147
|
+
:param builtins.str region: `region`). The region in which the routes exist.
|
148
|
+
:param Sequence[builtins.str] tags: List of tags to filter for. routes with these exact tags are listed.
|
149
|
+
:param builtins.str vpc_id: The VPC ID to filter for. routes with a similar VPC ID are listed.
|
149
150
|
"""
|
150
151
|
pulumi.log.warn("""get_vpc_routes is deprecated: scaleway.index/getvpcroutes.getVpcRoutes has been deprecated in favor of scaleway.network/getroutes.getRoutes""")
|
151
152
|
__args__ = dict()
|
@@ -169,25 +170,25 @@ def get_vpc_routes(is_ipv6: Optional[bool] = None,
|
|
169
170
|
routes=pulumi.get(__ret__, 'routes'),
|
170
171
|
tags=pulumi.get(__ret__, 'tags'),
|
171
172
|
vpc_id=pulumi.get(__ret__, 'vpc_id'))
|
172
|
-
def get_vpc_routes_output(is_ipv6: Optional[pulumi.Input[Optional[bool]]] = None,
|
173
|
-
nexthop_private_network_id: Optional[pulumi.Input[Optional[str]]] = None,
|
174
|
-
nexthop_resource_id: Optional[pulumi.Input[Optional[str]]] = None,
|
175
|
-
nexthop_resource_type: Optional[pulumi.Input[Optional[str]]] = None,
|
176
|
-
region: Optional[pulumi.Input[Optional[str]]] = None,
|
177
|
-
tags: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
|
178
|
-
vpc_id: Optional[pulumi.Input[Optional[str]]] = None,
|
173
|
+
def get_vpc_routes_output(is_ipv6: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
|
174
|
+
nexthop_private_network_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
175
|
+
nexthop_resource_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
176
|
+
nexthop_resource_type: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
177
|
+
region: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
178
|
+
tags: Optional[pulumi.Input[Optional[Sequence[builtins.str]]]] = None,
|
179
|
+
vpc_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
179
180
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVpcRoutesResult]:
|
180
181
|
"""
|
181
182
|
Gets information about multiple VPC routes.
|
182
183
|
|
183
184
|
|
184
|
-
:param bool is_ipv6: Routes with an IPv6 destination will be listed.
|
185
|
-
:param str nexthop_private_network_id: The next hop private network ID to filter for. routes with a similar next hop private network ID are listed.
|
186
|
-
:param str nexthop_resource_id: The next hop resource ID to filter for. routes with a similar next hop resource ID are listed.
|
187
|
-
:param str nexthop_resource_type: The next hop resource type to filter for. routes with a similar next hop resource type are listed.
|
188
|
-
:param str region: `region`). The region in which the routes exist.
|
189
|
-
:param Sequence[str] tags: List of tags to filter for. routes with these exact tags are listed.
|
190
|
-
:param str vpc_id: The VPC ID to filter for. routes with a similar VPC ID are listed.
|
185
|
+
:param builtins.bool is_ipv6: Routes with an IPv6 destination will be listed.
|
186
|
+
:param builtins.str nexthop_private_network_id: The next hop private network ID to filter for. routes with a similar next hop private network ID are listed.
|
187
|
+
:param builtins.str nexthop_resource_id: The next hop resource ID to filter for. routes with a similar next hop resource ID are listed.
|
188
|
+
:param builtins.str nexthop_resource_type: The next hop resource type to filter for. routes with a similar next hop resource type are listed.
|
189
|
+
:param builtins.str region: `region`). The region in which the routes exist.
|
190
|
+
:param Sequence[builtins.str] tags: List of tags to filter for. routes with these exact tags are listed.
|
191
|
+
:param builtins.str vpc_id: The VPC ID to filter for. routes with a similar VPC ID are listed.
|
191
192
|
"""
|
192
193
|
pulumi.log.warn("""get_vpc_routes is deprecated: scaleway.index/getvpcroutes.getVpcRoutes has been deprecated in favor of scaleway.network/getroutes.getRoutes""")
|
193
194
|
__args__ = dict()
|
pulumiverse_scaleway/get_vpcs.py
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -54,7 +55,7 @@ class GetVpcsResult:
|
|
54
55
|
|
55
56
|
@property
|
56
57
|
@pulumi.getter
|
57
|
-
def id(self) -> str:
|
58
|
+
def id(self) -> builtins.str:
|
58
59
|
"""
|
59
60
|
The provider-assigned unique ID for this managed resource.
|
60
61
|
"""
|
@@ -62,12 +63,12 @@ class GetVpcsResult:
|
|
62
63
|
|
63
64
|
@property
|
64
65
|
@pulumi.getter
|
65
|
-
def name(self) -> Optional[str]:
|
66
|
+
def name(self) -> Optional[builtins.str]:
|
66
67
|
return pulumi.get(self, "name")
|
67
68
|
|
68
69
|
@property
|
69
70
|
@pulumi.getter(name="organizationId")
|
70
|
-
def organization_id(self) -> str:
|
71
|
+
def organization_id(self) -> builtins.str:
|
71
72
|
"""
|
72
73
|
The Organization ID the VPC is associated with.
|
73
74
|
"""
|
@@ -75,7 +76,7 @@ class GetVpcsResult:
|
|
75
76
|
|
76
77
|
@property
|
77
78
|
@pulumi.getter(name="projectId")
|
78
|
-
def project_id(self) -> str:
|
79
|
+
def project_id(self) -> builtins.str:
|
79
80
|
"""
|
80
81
|
The ID of the Project the VPC is associated with.
|
81
82
|
"""
|
@@ -83,12 +84,12 @@ class GetVpcsResult:
|
|
83
84
|
|
84
85
|
@property
|
85
86
|
@pulumi.getter
|
86
|
-
def region(self) -> str:
|
87
|
+
def region(self) -> builtins.str:
|
87
88
|
return pulumi.get(self, "region")
|
88
89
|
|
89
90
|
@property
|
90
91
|
@pulumi.getter
|
91
|
-
def tags(self) -> Optional[Sequence[str]]:
|
92
|
+
def tags(self) -> Optional[Sequence[builtins.str]]:
|
92
93
|
return pulumi.get(self, "tags")
|
93
94
|
|
94
95
|
@property
|
@@ -115,19 +116,19 @@ class AwaitableGetVpcsResult(GetVpcsResult):
|
|
115
116
|
vpcs=self.vpcs)
|
116
117
|
|
117
118
|
|
118
|
-
def get_vpcs(name: Optional[str] = None,
|
119
|
-
project_id: Optional[str] = None,
|
120
|
-
region: Optional[str] = None,
|
121
|
-
tags: Optional[Sequence[str]] = None,
|
119
|
+
def get_vpcs(name: Optional[builtins.str] = None,
|
120
|
+
project_id: Optional[builtins.str] = None,
|
121
|
+
region: Optional[builtins.str] = None,
|
122
|
+
tags: Optional[Sequence[builtins.str]] = None,
|
122
123
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVpcsResult:
|
123
124
|
"""
|
124
125
|
Gets information about multiple Virtual Private Clouds.
|
125
126
|
|
126
127
|
|
127
|
-
:param str name: The VPC name to filter for. VPCs with a similar name are listed.
|
128
|
-
:param str project_id: The ID of the Project the VPC is associated with.
|
129
|
-
:param str region: `region`). The region in which the VPCs exist.
|
130
|
-
:param Sequence[str] tags: List of tags to filter for. VPCs with these exact tags are listed.
|
128
|
+
:param builtins.str name: The VPC name to filter for. VPCs with a similar name are listed.
|
129
|
+
:param builtins.str project_id: The ID of the Project the VPC is associated with.
|
130
|
+
:param builtins.str region: `region`). The region in which the VPCs exist.
|
131
|
+
:param Sequence[builtins.str] tags: List of tags to filter for. VPCs with these exact tags are listed.
|
131
132
|
"""
|
132
133
|
pulumi.log.warn("""get_vpcs is deprecated: scaleway.index/getvpcs.getVpcs has been deprecated in favor of scaleway.network/getvpcs.getVpcs""")
|
133
134
|
__args__ = dict()
|
@@ -146,19 +147,19 @@ def get_vpcs(name: Optional[str] = None,
|
|
146
147
|
region=pulumi.get(__ret__, 'region'),
|
147
148
|
tags=pulumi.get(__ret__, 'tags'),
|
148
149
|
vpcs=pulumi.get(__ret__, 'vpcs'))
|
149
|
-
def get_vpcs_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
150
|
-
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
151
|
-
region: Optional[pulumi.Input[Optional[str]]] = None,
|
152
|
-
tags: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
|
150
|
+
def get_vpcs_output(name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
151
|
+
project_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
152
|
+
region: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
153
|
+
tags: Optional[pulumi.Input[Optional[Sequence[builtins.str]]]] = None,
|
153
154
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVpcsResult]:
|
154
155
|
"""
|
155
156
|
Gets information about multiple Virtual Private Clouds.
|
156
157
|
|
157
158
|
|
158
|
-
:param str name: The VPC name to filter for. VPCs with a similar name are listed.
|
159
|
-
:param str project_id: The ID of the Project the VPC is associated with.
|
160
|
-
:param str region: `region`). The region in which the VPCs exist.
|
161
|
-
:param Sequence[str] tags: List of tags to filter for. VPCs with these exact tags are listed.
|
159
|
+
:param builtins.str name: The VPC name to filter for. VPCs with a similar name are listed.
|
160
|
+
:param builtins.str project_id: The ID of the Project the VPC is associated with.
|
161
|
+
:param builtins.str region: `region`). The region in which the VPCs exist.
|
162
|
+
:param Sequence[builtins.str] tags: List of tags to filter for. VPCs with these exact tags are listed.
|
162
163
|
"""
|
163
164
|
pulumi.log.warn("""get_vpcs is deprecated: scaleway.index/getvpcs.getVpcs has been deprecated in favor of scaleway.network/getvpcs.getVpcs""")
|
164
165
|
__args__ = dict()
|
@@ -1,7 +1,8 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -60,7 +61,7 @@ class GetWebHostOfferResult:
|
|
60
61
|
|
61
62
|
@property
|
62
63
|
@pulumi.getter(name="billingOperationPath")
|
63
|
-
def billing_operation_path(self) -> str:
|
64
|
+
def billing_operation_path(self) -> builtins.str:
|
64
65
|
"""
|
65
66
|
The billing operation identifier for the option.
|
66
67
|
"""
|
@@ -68,12 +69,12 @@ class GetWebHostOfferResult:
|
|
68
69
|
|
69
70
|
@property
|
70
71
|
@pulumi.getter(name="controlPanel")
|
71
|
-
def control_panel(self) -> Optional[str]:
|
72
|
+
def control_panel(self) -> Optional[builtins.str]:
|
72
73
|
return pulumi.get(self, "control_panel")
|
73
74
|
|
74
75
|
@property
|
75
76
|
@pulumi.getter
|
76
|
-
def id(self) -> str:
|
77
|
+
def id(self) -> builtins.str:
|
77
78
|
"""
|
78
79
|
The provider-assigned unique ID for this managed resource.
|
79
80
|
"""
|
@@ -81,7 +82,7 @@ class GetWebHostOfferResult:
|
|
81
82
|
|
82
83
|
@property
|
83
84
|
@pulumi.getter
|
84
|
-
def name(self) -> Optional[str]:
|
85
|
+
def name(self) -> Optional[builtins.str]:
|
85
86
|
"""
|
86
87
|
The name of the option.
|
87
88
|
"""
|
@@ -89,7 +90,7 @@ class GetWebHostOfferResult:
|
|
89
90
|
|
90
91
|
@property
|
91
92
|
@pulumi.getter(name="offerId")
|
92
|
-
def offer_id(self) -> Optional[str]:
|
93
|
+
def offer_id(self) -> Optional[builtins.str]:
|
93
94
|
return pulumi.get(self, "offer_id")
|
94
95
|
|
95
96
|
@property
|
@@ -102,7 +103,7 @@ class GetWebHostOfferResult:
|
|
102
103
|
|
103
104
|
@property
|
104
105
|
@pulumi.getter
|
105
|
-
def price(self) -> str:
|
106
|
+
def price(self) -> builtins.str:
|
106
107
|
"""
|
107
108
|
The offer price.
|
108
109
|
"""
|
@@ -119,7 +120,7 @@ class GetWebHostOfferResult:
|
|
119
120
|
|
120
121
|
@property
|
121
122
|
@pulumi.getter
|
122
|
-
def region(self) -> str:
|
123
|
+
def region(self) -> builtins.str:
|
123
124
|
return pulumi.get(self, "region")
|
124
125
|
|
125
126
|
|
@@ -140,10 +141,10 @@ class AwaitableGetWebHostOfferResult(GetWebHostOfferResult):
|
|
140
141
|
region=self.region)
|
141
142
|
|
142
143
|
|
143
|
-
def get_web_host_offer(control_panel: Optional[str] = None,
|
144
|
-
name: Optional[str] = None,
|
145
|
-
offer_id: Optional[str] = None,
|
146
|
-
region: Optional[str] = None,
|
144
|
+
def get_web_host_offer(control_panel: Optional[builtins.str] = None,
|
145
|
+
name: Optional[builtins.str] = None,
|
146
|
+
offer_id: Optional[builtins.str] = None,
|
147
|
+
region: Optional[builtins.str] = None,
|
147
148
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetWebHostOfferResult:
|
148
149
|
"""
|
149
150
|
Gets information about a webhosting offer.
|
@@ -162,10 +163,10 @@ def get_web_host_offer(control_panel: Optional[str] = None,
|
|
162
163
|
```
|
163
164
|
|
164
165
|
|
165
|
-
:param str control_panel: Name of the control panel (Cpanel or Plesk). This argument is only used when `offer_id` is not specified.
|
166
|
-
:param str name: The offer name. Only one of `name` and `offer_id` should be specified.
|
167
|
-
:param str offer_id: The offer id. Only one of `name` and `offer_id` should be specified.
|
168
|
-
:param str region: `region`) The region in which offer exists.
|
166
|
+
:param builtins.str control_panel: Name of the control panel (Cpanel or Plesk). This argument is only used when `offer_id` is not specified.
|
167
|
+
:param builtins.str name: The offer name. Only one of `name` and `offer_id` should be specified.
|
168
|
+
:param builtins.str offer_id: The offer id. Only one of `name` and `offer_id` should be specified.
|
169
|
+
:param builtins.str region: `region`) The region in which offer exists.
|
169
170
|
"""
|
170
171
|
pulumi.log.warn("""get_web_host_offer is deprecated: scaleway.index/getwebhostoffer.getWebHostOffer has been deprecated in favor of scaleway.hosting/getoffer.getOffer""")
|
171
172
|
__args__ = dict()
|
@@ -186,10 +187,10 @@ def get_web_host_offer(control_panel: Optional[str] = None,
|
|
186
187
|
price=pulumi.get(__ret__, 'price'),
|
187
188
|
products=pulumi.get(__ret__, 'products'),
|
188
189
|
region=pulumi.get(__ret__, 'region'))
|
189
|
-
def get_web_host_offer_output(control_panel: Optional[pulumi.Input[Optional[str]]] = None,
|
190
|
-
name: Optional[pulumi.Input[Optional[str]]] = None,
|
191
|
-
offer_id: Optional[pulumi.Input[Optional[str]]] = None,
|
192
|
-
region: Optional[pulumi.Input[Optional[str]]] = None,
|
190
|
+
def get_web_host_offer_output(control_panel: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
191
|
+
name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
192
|
+
offer_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
193
|
+
region: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
193
194
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetWebHostOfferResult]:
|
194
195
|
"""
|
195
196
|
Gets information about a webhosting offer.
|
@@ -208,10 +209,10 @@ def get_web_host_offer_output(control_panel: Optional[pulumi.Input[Optional[str]
|
|
208
209
|
```
|
209
210
|
|
210
211
|
|
211
|
-
:param str control_panel: Name of the control panel (Cpanel or Plesk). This argument is only used when `offer_id` is not specified.
|
212
|
-
:param str name: The offer name. Only one of `name` and `offer_id` should be specified.
|
213
|
-
:param str offer_id: The offer id. Only one of `name` and `offer_id` should be specified.
|
214
|
-
:param str region: `region`) The region in which offer exists.
|
212
|
+
:param builtins.str control_panel: Name of the control panel (Cpanel or Plesk). This argument is only used when `offer_id` is not specified.
|
213
|
+
:param builtins.str name: The offer name. Only one of `name` and `offer_id` should be specified.
|
214
|
+
:param builtins.str offer_id: The offer id. Only one of `name` and `offer_id` should be specified.
|
215
|
+
:param builtins.str region: `region`) The region in which offer exists.
|
215
216
|
"""
|
216
217
|
pulumi.log.warn("""get_web_host_offer is deprecated: scaleway.index/getwebhostoffer.getWebHostOffer has been deprecated in favor of scaleway.hosting/getoffer.getOffer""")
|
217
218
|
__args__ = dict()
|
@@ -1,7 +1,8 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -104,27 +105,27 @@ class GetWebhostingResult:
|
|
104
105
|
|
105
106
|
@property
|
106
107
|
@pulumi.getter(name="createdAt")
|
107
|
-
def created_at(self) -> str:
|
108
|
+
def created_at(self) -> builtins.str:
|
108
109
|
return pulumi.get(self, "created_at")
|
109
110
|
|
110
111
|
@property
|
111
112
|
@pulumi.getter(name="dnsStatus")
|
112
|
-
def dns_status(self) -> str:
|
113
|
+
def dns_status(self) -> builtins.str:
|
113
114
|
return pulumi.get(self, "dns_status")
|
114
115
|
|
115
116
|
@property
|
116
117
|
@pulumi.getter
|
117
|
-
def domain(self) -> Optional[str]:
|
118
|
+
def domain(self) -> Optional[builtins.str]:
|
118
119
|
return pulumi.get(self, "domain")
|
119
120
|
|
120
121
|
@property
|
121
122
|
@pulumi.getter
|
122
|
-
def email(self) -> str:
|
123
|
+
def email(self) -> builtins.str:
|
123
124
|
return pulumi.get(self, "email")
|
124
125
|
|
125
126
|
@property
|
126
127
|
@pulumi.getter
|
127
|
-
def id(self) -> str:
|
128
|
+
def id(self) -> builtins.str:
|
128
129
|
"""
|
129
130
|
The provider-assigned unique ID for this managed resource.
|
130
131
|
"""
|
@@ -137,17 +138,17 @@ class GetWebhostingResult:
|
|
137
138
|
|
138
139
|
@property
|
139
140
|
@pulumi.getter(name="offerId")
|
140
|
-
def offer_id(self) -> str:
|
141
|
+
def offer_id(self) -> builtins.str:
|
141
142
|
return pulumi.get(self, "offer_id")
|
142
143
|
|
143
144
|
@property
|
144
145
|
@pulumi.getter(name="offerName")
|
145
|
-
def offer_name(self) -> str:
|
146
|
+
def offer_name(self) -> builtins.str:
|
146
147
|
return pulumi.get(self, "offer_name")
|
147
148
|
|
148
149
|
@property
|
149
150
|
@pulumi.getter(name="optionIds")
|
150
|
-
def option_ids(self) -> Sequence[str]:
|
151
|
+
def option_ids(self) -> Sequence[builtins.str]:
|
151
152
|
return pulumi.get(self, "option_ids")
|
152
153
|
|
153
154
|
@property
|
@@ -157,22 +158,22 @@ class GetWebhostingResult:
|
|
157
158
|
|
158
159
|
@property
|
159
160
|
@pulumi.getter(name="organizationId")
|
160
|
-
def organization_id(self) -> str:
|
161
|
+
def organization_id(self) -> builtins.str:
|
161
162
|
return pulumi.get(self, "organization_id")
|
162
163
|
|
163
164
|
@property
|
164
165
|
@pulumi.getter(name="platformHostname")
|
165
|
-
def platform_hostname(self) -> str:
|
166
|
+
def platform_hostname(self) -> builtins.str:
|
166
167
|
return pulumi.get(self, "platform_hostname")
|
167
168
|
|
168
169
|
@property
|
169
170
|
@pulumi.getter(name="platformNumber")
|
170
|
-
def platform_number(self) -> int:
|
171
|
+
def platform_number(self) -> builtins.int:
|
171
172
|
return pulumi.get(self, "platform_number")
|
172
173
|
|
173
174
|
@property
|
174
175
|
@pulumi.getter(name="projectId")
|
175
|
-
def project_id(self) -> Optional[str]:
|
176
|
+
def project_id(self) -> Optional[builtins.str]:
|
176
177
|
return pulumi.get(self, "project_id")
|
177
178
|
|
178
179
|
@property
|
@@ -182,32 +183,32 @@ class GetWebhostingResult:
|
|
182
183
|
|
183
184
|
@property
|
184
185
|
@pulumi.getter
|
185
|
-
def region(self) -> str:
|
186
|
+
def region(self) -> builtins.str:
|
186
187
|
return pulumi.get(self, "region")
|
187
188
|
|
188
189
|
@property
|
189
190
|
@pulumi.getter
|
190
|
-
def status(self) -> str:
|
191
|
+
def status(self) -> builtins.str:
|
191
192
|
return pulumi.get(self, "status")
|
192
193
|
|
193
194
|
@property
|
194
195
|
@pulumi.getter
|
195
|
-
def tags(self) -> Sequence[str]:
|
196
|
+
def tags(self) -> Sequence[builtins.str]:
|
196
197
|
return pulumi.get(self, "tags")
|
197
198
|
|
198
199
|
@property
|
199
200
|
@pulumi.getter(name="updatedAt")
|
200
|
-
def updated_at(self) -> str:
|
201
|
+
def updated_at(self) -> builtins.str:
|
201
202
|
return pulumi.get(self, "updated_at")
|
202
203
|
|
203
204
|
@property
|
204
205
|
@pulumi.getter
|
205
|
-
def username(self) -> str:
|
206
|
+
def username(self) -> builtins.str:
|
206
207
|
return pulumi.get(self, "username")
|
207
208
|
|
208
209
|
@property
|
209
210
|
@pulumi.getter(name="webhostingId")
|
210
|
-
def webhosting_id(self) -> Optional[str]:
|
211
|
+
def webhosting_id(self) -> Optional[builtins.str]:
|
211
212
|
return pulumi.get(self, "webhosting_id")
|
212
213
|
|
213
214
|
|
@@ -241,10 +242,10 @@ class AwaitableGetWebhostingResult(GetWebhostingResult):
|
|
241
242
|
webhosting_id=self.webhosting_id)
|
242
243
|
|
243
244
|
|
244
|
-
def get_webhosting(domain: Optional[str] = None,
|
245
|
-
organization_id: Optional[str] = None,
|
246
|
-
project_id: Optional[str] = None,
|
247
|
-
webhosting_id: Optional[str] = None,
|
245
|
+
def get_webhosting(domain: Optional[builtins.str] = None,
|
246
|
+
organization_id: Optional[builtins.str] = None,
|
247
|
+
project_id: Optional[builtins.str] = None,
|
248
|
+
webhosting_id: Optional[builtins.str] = None,
|
248
249
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetWebhostingResult:
|
249
250
|
"""
|
250
251
|
Gets information about a webhosting.
|
@@ -262,10 +263,10 @@ def get_webhosting(domain: Optional[str] = None,
|
|
262
263
|
```
|
263
264
|
|
264
265
|
|
265
|
-
:param str domain: The hosting domain name. Only one of `domain` and `webhosting_id` should be specified.
|
266
|
-
:param str organization_id: The ID of the organization the hosting is associated with.
|
267
|
-
:param str project_id: `project_id`) The ID of the project the hosting is associated with.
|
268
|
-
:param str webhosting_id: The hosting id. Only one of `domain` and `webhosting_id` should be specified.
|
266
|
+
:param builtins.str domain: The hosting domain name. Only one of `domain` and `webhosting_id` should be specified.
|
267
|
+
:param builtins.str organization_id: The ID of the organization the hosting is associated with.
|
268
|
+
:param builtins.str project_id: `project_id`) The ID of the project the hosting is associated with.
|
269
|
+
:param builtins.str webhosting_id: The hosting id. Only one of `domain` and `webhosting_id` should be specified.
|
269
270
|
"""
|
270
271
|
pulumi.log.warn("""get_webhosting is deprecated: scaleway.index/getwebhosting.getWebhosting has been deprecated in favor of scaleway.hosting/gethosting.getHosting""")
|
271
272
|
__args__ = dict()
|
@@ -299,10 +300,10 @@ def get_webhosting(domain: Optional[str] = None,
|
|
299
300
|
updated_at=pulumi.get(__ret__, 'updated_at'),
|
300
301
|
username=pulumi.get(__ret__, 'username'),
|
301
302
|
webhosting_id=pulumi.get(__ret__, 'webhosting_id'))
|
302
|
-
def get_webhosting_output(domain: Optional[pulumi.Input[Optional[str]]] = None,
|
303
|
-
organization_id: Optional[pulumi.Input[Optional[str]]] = None,
|
304
|
-
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
305
|
-
webhosting_id: Optional[pulumi.Input[Optional[str]]] = None,
|
303
|
+
def get_webhosting_output(domain: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
304
|
+
organization_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
305
|
+
project_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
306
|
+
webhosting_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
306
307
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetWebhostingResult]:
|
307
308
|
"""
|
308
309
|
Gets information about a webhosting.
|
@@ -320,10 +321,10 @@ def get_webhosting_output(domain: Optional[pulumi.Input[Optional[str]]] = None,
|
|
320
321
|
```
|
321
322
|
|
322
323
|
|
323
|
-
:param str domain: The hosting domain name. Only one of `domain` and `webhosting_id` should be specified.
|
324
|
-
:param str organization_id: The ID of the organization the hosting is associated with.
|
325
|
-
:param str project_id: `project_id`) The ID of the project the hosting is associated with.
|
326
|
-
:param str webhosting_id: The hosting id. Only one of `domain` and `webhosting_id` should be specified.
|
324
|
+
:param builtins.str domain: The hosting domain name. Only one of `domain` and `webhosting_id` should be specified.
|
325
|
+
:param builtins.str organization_id: The ID of the organization the hosting is associated with.
|
326
|
+
:param builtins.str project_id: `project_id`) The ID of the project the hosting is associated with.
|
327
|
+
:param builtins.str webhosting_id: The hosting id. Only one of `domain` and `webhosting_id` should be specified.
|
327
328
|
"""
|
328
329
|
pulumi.log.warn("""get_webhosting is deprecated: scaleway.index/getwebhosting.getWebhosting has been deprecated in favor of scaleway.hosting/gethosting.getHosting""")
|
329
330
|
__args__ = dict()
|
@@ -1,7 +1,8 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
from .. import _utilities
|
6
7
|
import typing
|
7
8
|
# Export this package's modules as members:
|