pulumiverse-scaleway 1.30.0a1748337252__py3-none-any.whl → 1.30.0a1752168858__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumiverse_scaleway/__init__.py +11 -1
- pulumiverse_scaleway/_inputs.py +2252 -2143
- pulumiverse_scaleway/_utilities.py +1 -1
- pulumiverse_scaleway/account/__init__.py +2 -1
- pulumiverse_scaleway/account/get_availability_zones.py +9 -8
- pulumiverse_scaleway/account/get_project.py +21 -20
- pulumiverse_scaleway/account/get_projects.py +28 -21
- pulumiverse_scaleway/account/get_ssh_key.py +24 -23
- pulumiverse_scaleway/account/outputs.py +20 -19
- pulumiverse_scaleway/account/project.py +59 -57
- pulumiverse_scaleway/account/ssh_key.py +87 -85
- pulumiverse_scaleway/account_project.py +59 -57
- pulumiverse_scaleway/account_ssh_key.py +87 -85
- pulumiverse_scaleway/apple_silicon_server.py +204 -155
- pulumiverse_scaleway/applesilicon/__init__.py +2 -1
- pulumiverse_scaleway/applesilicon/_inputs.py +89 -34
- pulumiverse_scaleway/applesilicon/outputs.py +54 -21
- pulumiverse_scaleway/applesilicon/server.py +204 -155
- pulumiverse_scaleway/baremetal_server.py +262 -260
- pulumiverse_scaleway/billing/__init__.py +2 -1
- pulumiverse_scaleway/billing/get_consumptions.py +10 -9
- pulumiverse_scaleway/billing/get_invoices.py +19 -18
- pulumiverse_scaleway/billing/outputs.py +73 -72
- pulumiverse_scaleway/block/__init__.py +2 -1
- pulumiverse_scaleway/block/_inputs.py +12 -11
- pulumiverse_scaleway/block/get_snapshot.py +29 -28
- pulumiverse_scaleway/block/get_volume.py +28 -27
- pulumiverse_scaleway/block/outputs.py +14 -13
- pulumiverse_scaleway/block/snapshot.py +73 -71
- pulumiverse_scaleway/block/volume.py +115 -113
- pulumiverse_scaleway/block_snapshot.py +73 -71
- pulumiverse_scaleway/block_volume.py +115 -113
- pulumiverse_scaleway/cockpit.py +38 -36
- pulumiverse_scaleway/cockpit_alert_manager.py +52 -50
- pulumiverse_scaleway/cockpit_grafana_user.py +59 -57
- pulumiverse_scaleway/cockpit_source.py +115 -113
- pulumiverse_scaleway/cockpit_token.py +66 -64
- pulumiverse_scaleway/config/__init__.py +2 -1
- pulumiverse_scaleway/config/__init__.pyi +2 -1
- pulumiverse_scaleway/config/vars.py +2 -1
- pulumiverse_scaleway/container.py +573 -343
- pulumiverse_scaleway/container_cron.py +80 -78
- pulumiverse_scaleway/container_domain.py +52 -50
- pulumiverse_scaleway/container_namespace.py +211 -140
- pulumiverse_scaleway/container_token.py +80 -78
- pulumiverse_scaleway/container_trigger.py +59 -57
- pulumiverse_scaleway/containers/__init__.py +2 -1
- pulumiverse_scaleway/containers/_inputs.py +72 -71
- pulumiverse_scaleway/containers/container.py +573 -343
- pulumiverse_scaleway/containers/cron.py +80 -78
- pulumiverse_scaleway/containers/domain.py +52 -50
- pulumiverse_scaleway/containers/get_container.py +87 -42
- pulumiverse_scaleway/containers/get_namespace.py +43 -31
- pulumiverse_scaleway/containers/namespace.py +211 -140
- pulumiverse_scaleway/containers/outputs.py +62 -61
- pulumiverse_scaleway/containers/token.py +80 -78
- pulumiverse_scaleway/containers/trigger.py +59 -57
- pulumiverse_scaleway/database.py +66 -64
- pulumiverse_scaleway/database_acl.py +31 -29
- pulumiverse_scaleway/database_backup.py +101 -99
- pulumiverse_scaleway/database_instance.py +297 -295
- pulumiverse_scaleway/database_privilege.py +73 -71
- pulumiverse_scaleway/database_read_replica.py +45 -43
- pulumiverse_scaleway/database_user.py +73 -71
- pulumiverse_scaleway/databases/__init__.py +2 -1
- pulumiverse_scaleway/databases/_inputs.py +191 -190
- pulumiverse_scaleway/databases/acl.py +31 -29
- pulumiverse_scaleway/databases/database.py +66 -64
- pulumiverse_scaleway/databases/database_backup.py +101 -99
- pulumiverse_scaleway/databases/get_acl.py +13 -12
- pulumiverse_scaleway/databases/get_database.py +19 -18
- pulumiverse_scaleway/databases/get_database_backup.py +34 -33
- pulumiverse_scaleway/databases/get_instance.py +43 -42
- pulumiverse_scaleway/databases/get_privilege.py +24 -23
- pulumiverse_scaleway/databases/instance.py +297 -295
- pulumiverse_scaleway/databases/outputs.py +188 -187
- pulumiverse_scaleway/databases/privilege.py +73 -71
- pulumiverse_scaleway/databases/read_replica.py +45 -43
- pulumiverse_scaleway/databases/serverless_database.py +80 -78
- pulumiverse_scaleway/databases/snapshot.py +101 -99
- pulumiverse_scaleway/databases/user.py +73 -71
- pulumiverse_scaleway/domain/__init__.py +2 -1
- pulumiverse_scaleway/domain/_inputs.py +531 -530
- pulumiverse_scaleway/domain/get_record.py +38 -37
- pulumiverse_scaleway/domain/get_zone.py +24 -23
- pulumiverse_scaleway/domain/outputs.py +358 -357
- pulumiverse_scaleway/domain/record.py +129 -127
- pulumiverse_scaleway/domain/registration.py +94 -92
- pulumiverse_scaleway/domain/zone.py +87 -85
- pulumiverse_scaleway/domain_record.py +129 -127
- pulumiverse_scaleway/domain_zone.py +87 -85
- pulumiverse_scaleway/edge_services_backend_stage.py +45 -43
- pulumiverse_scaleway/edge_services_cache_stage.py +115 -113
- pulumiverse_scaleway/edge_services_dns_stage.py +108 -106
- pulumiverse_scaleway/edge_services_head_stage.py +31 -29
- pulumiverse_scaleway/edge_services_pipeline.py +66 -64
- pulumiverse_scaleway/edge_services_plan.py +31 -29
- pulumiverse_scaleway/edge_services_route_stage.py +59 -57
- pulumiverse_scaleway/edge_services_tls_stage.py +122 -120
- pulumiverse_scaleway/edge_services_waf_stage.py +87 -85
- pulumiverse_scaleway/elasticmetal/__init__.py +2 -1
- pulumiverse_scaleway/elasticmetal/_inputs.py +123 -122
- pulumiverse_scaleway/elasticmetal/get_ip.py +56 -39
- pulumiverse_scaleway/elasticmetal/get_ips.py +24 -23
- pulumiverse_scaleway/elasticmetal/get_offer.py +29 -28
- pulumiverse_scaleway/elasticmetal/get_option.py +19 -18
- pulumiverse_scaleway/elasticmetal/get_os.py +23 -22
- pulumiverse_scaleway/elasticmetal/get_partition_schema.py +29 -28
- pulumiverse_scaleway/elasticmetal/get_server.py +39 -38
- pulumiverse_scaleway/elasticmetal/ip.py +139 -137
- pulumiverse_scaleway/elasticmetal/ip_mac_address.py +87 -85
- pulumiverse_scaleway/elasticmetal/outputs.py +233 -232
- pulumiverse_scaleway/elasticmetal/server.py +262 -260
- pulumiverse_scaleway/file_filesystem.py +552 -0
- pulumiverse_scaleway/flexible_ip.py +139 -137
- pulumiverse_scaleway/flexible_ip_mac_address.py +87 -85
- pulumiverse_scaleway/function.py +394 -284
- pulumiverse_scaleway/function_cron.py +80 -78
- pulumiverse_scaleway/function_domain.py +52 -50
- pulumiverse_scaleway/function_namespace.py +197 -126
- pulumiverse_scaleway/function_token.py +80 -78
- pulumiverse_scaleway/function_trigger.py +59 -57
- pulumiverse_scaleway/functions/__init__.py +2 -1
- pulumiverse_scaleway/functions/_inputs.py +42 -41
- pulumiverse_scaleway/functions/cron.py +80 -78
- pulumiverse_scaleway/functions/domain.py +52 -50
- pulumiverse_scaleway/functions/function.py +394 -284
- pulumiverse_scaleway/functions/get_function.py +69 -46
- pulumiverse_scaleway/functions/get_namespace.py +42 -30
- pulumiverse_scaleway/functions/namespace.py +197 -126
- pulumiverse_scaleway/functions/outputs.py +26 -25
- pulumiverse_scaleway/functions/token.py +80 -78
- pulumiverse_scaleway/functions/trigger.py +59 -57
- pulumiverse_scaleway/get_account_project.py +21 -20
- pulumiverse_scaleway/get_account_ssh_key.py +24 -23
- pulumiverse_scaleway/get_availability_zones.py +9 -8
- pulumiverse_scaleway/get_baremetal_offer.py +29 -28
- pulumiverse_scaleway/get_baremetal_option.py +19 -18
- pulumiverse_scaleway/get_baremetal_os.py +23 -22
- pulumiverse_scaleway/get_baremetal_server.py +39 -38
- pulumiverse_scaleway/get_billing_consumptions.py +10 -9
- pulumiverse_scaleway/get_billing_invoices.py +19 -18
- pulumiverse_scaleway/get_block_snapshot.py +29 -28
- pulumiverse_scaleway/get_block_volume.py +28 -27
- pulumiverse_scaleway/get_cockpit.py +10 -9
- pulumiverse_scaleway/get_cockpit_source.py +33 -32
- pulumiverse_scaleway/get_config.py +13 -12
- pulumiverse_scaleway/get_container.py +87 -42
- pulumiverse_scaleway/get_container_namespace.py +43 -31
- pulumiverse_scaleway/get_database.py +19 -18
- pulumiverse_scaleway/get_database_acl.py +13 -12
- pulumiverse_scaleway/get_database_backup.py +34 -33
- pulumiverse_scaleway/get_database_instance.py +43 -42
- pulumiverse_scaleway/get_database_privilege.py +24 -23
- pulumiverse_scaleway/get_domain_record.py +38 -37
- pulumiverse_scaleway/get_domain_zone.py +24 -23
- pulumiverse_scaleway/get_flexible_ip.py +56 -39
- pulumiverse_scaleway/get_flexible_ips.py +24 -23
- pulumiverse_scaleway/get_function.py +69 -46
- pulumiverse_scaleway/get_function_namespace.py +42 -30
- pulumiverse_scaleway/get_iam_api_key.py +17 -16
- pulumiverse_scaleway/get_iam_application.py +23 -22
- pulumiverse_scaleway/get_iam_group.py +25 -24
- pulumiverse_scaleway/get_iam_ssh_key.py +24 -23
- pulumiverse_scaleway/get_iam_user.py +23 -22
- pulumiverse_scaleway/get_instance_image.py +42 -41
- pulumiverse_scaleway/get_instance_ip.py +20 -19
- pulumiverse_scaleway/get_instance_placement_group.py +28 -27
- pulumiverse_scaleway/get_instance_private_nic.py +31 -30
- pulumiverse_scaleway/get_instance_security_group.py +31 -30
- pulumiverse_scaleway/get_instance_server.py +59 -47
- pulumiverse_scaleway/get_instance_servers.py +24 -23
- pulumiverse_scaleway/get_instance_snapshot.py +29 -28
- pulumiverse_scaleway/get_instance_volume.py +30 -29
- pulumiverse_scaleway/get_iot_device.py +31 -30
- pulumiverse_scaleway/get_iot_hub.py +39 -38
- pulumiverse_scaleway/get_ipam_ip.py +51 -50
- pulumiverse_scaleway/get_ipam_ips.py +44 -43
- pulumiverse_scaleway/get_k8s_version.py +16 -15
- pulumiverse_scaleway/get_kubernetes_cluster.py +39 -38
- pulumiverse_scaleway/get_kubernetes_node_pool.py +47 -46
- pulumiverse_scaleway/get_lb_acls.py +22 -21
- pulumiverse_scaleway/get_lb_backend.py +43 -42
- pulumiverse_scaleway/get_lb_backends.py +22 -21
- pulumiverse_scaleway/get_lb_frontend.py +26 -25
- pulumiverse_scaleway/get_lb_frontends.py +22 -21
- pulumiverse_scaleway/get_lb_ips.py +29 -28
- pulumiverse_scaleway/get_lb_route.py +16 -15
- pulumiverse_scaleway/get_lb_routes.py +17 -16
- pulumiverse_scaleway/get_lbs.py +24 -23
- pulumiverse_scaleway/get_loadbalancer.py +36 -35
- pulumiverse_scaleway/get_loadbalancer_certificate.py +24 -23
- pulumiverse_scaleway/get_loadbalancer_ip.py +29 -28
- pulumiverse_scaleway/get_marketplace_image.py +23 -22
- pulumiverse_scaleway/get_mnq_sns.py +14 -13
- pulumiverse_scaleway/get_mnq_sqs.py +14 -13
- pulumiverse_scaleway/get_mongo_db_instance.py +35 -34
- pulumiverse_scaleway/get_object_bucket.py +22 -21
- pulumiverse_scaleway/get_object_bucket_policy.py +17 -16
- pulumiverse_scaleway/get_redis_cluster.py +34 -33
- pulumiverse_scaleway/get_registry_image.py +37 -36
- pulumiverse_scaleway/get_registry_image_tag.py +33 -32
- pulumiverse_scaleway/get_registry_namespace.py +27 -26
- pulumiverse_scaleway/get_secret.py +41 -40
- pulumiverse_scaleway/get_secret_version.py +34 -33
- pulumiverse_scaleway/get_tem_domain.py +43 -42
- pulumiverse_scaleway/get_vpc.py +35 -34
- pulumiverse_scaleway/get_vpc_gateway_network.py +28 -27
- pulumiverse_scaleway/get_vpc_private_network.py +32 -31
- pulumiverse_scaleway/get_vpc_public_gateway.py +36 -35
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +24 -23
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +33 -32
- pulumiverse_scaleway/get_vpc_public_gateway_ip.py +14 -13
- pulumiverse_scaleway/get_vpc_public_pat_rule.py +21 -20
- pulumiverse_scaleway/get_vpc_routes.py +38 -37
- pulumiverse_scaleway/get_vpcs.py +24 -23
- pulumiverse_scaleway/get_web_host_offer.py +25 -24
- pulumiverse_scaleway/get_webhosting.py +36 -35
- pulumiverse_scaleway/hosting/__init__.py +2 -1
- pulumiverse_scaleway/hosting/_inputs.py +61 -60
- pulumiverse_scaleway/hosting/get_hosting.py +36 -35
- pulumiverse_scaleway/hosting/get_offer.py +25 -24
- pulumiverse_scaleway/hosting/hosting.py +164 -162
- pulumiverse_scaleway/hosting/outputs.py +139 -138
- pulumiverse_scaleway/iam/__init__.py +2 -1
- pulumiverse_scaleway/iam/_inputs.py +22 -21
- pulumiverse_scaleway/iam/api_key.py +115 -113
- pulumiverse_scaleway/iam/application.py +80 -78
- pulumiverse_scaleway/iam/get_api_key.py +17 -16
- pulumiverse_scaleway/iam/get_application.py +23 -22
- pulumiverse_scaleway/iam/get_group.py +25 -24
- pulumiverse_scaleway/iam/get_ssh_key.py +24 -23
- pulumiverse_scaleway/iam/get_user.py +23 -22
- pulumiverse_scaleway/iam/group.py +115 -113
- pulumiverse_scaleway/iam/group_membership.py +45 -43
- pulumiverse_scaleway/iam/outputs.py +14 -13
- pulumiverse_scaleway/iam/policy.py +136 -134
- pulumiverse_scaleway/iam/ssh_key.py +87 -85
- pulumiverse_scaleway/iam/user.py +284 -273
- pulumiverse_scaleway/iam_api_key.py +115 -113
- pulumiverse_scaleway/iam_application.py +80 -78
- pulumiverse_scaleway/iam_group.py +115 -113
- pulumiverse_scaleway/iam_group_membership.py +45 -43
- pulumiverse_scaleway/iam_policy.py +136 -134
- pulumiverse_scaleway/iam_ssh_key.py +87 -85
- pulumiverse_scaleway/iam_user.py +284 -273
- pulumiverse_scaleway/inference/__init__.py +2 -1
- pulumiverse_scaleway/inference/_inputs.py +116 -61
- pulumiverse_scaleway/inference/deployment.py +225 -176
- pulumiverse_scaleway/inference/get_model.py +27 -26
- pulumiverse_scaleway/inference/model.py +129 -127
- pulumiverse_scaleway/inference/outputs.py +82 -49
- pulumiverse_scaleway/inference_deployment.py +225 -176
- pulumiverse_scaleway/instance/__init__.py +2 -1
- pulumiverse_scaleway/instance/_inputs.py +296 -295
- pulumiverse_scaleway/instance/get_image.py +42 -41
- pulumiverse_scaleway/instance/get_ip.py +20 -19
- pulumiverse_scaleway/instance/get_placement_group.py +28 -27
- pulumiverse_scaleway/instance/get_private_nic.py +31 -30
- pulumiverse_scaleway/instance/get_security_group.py +31 -30
- pulumiverse_scaleway/instance/get_server.py +59 -47
- pulumiverse_scaleway/instance/get_servers.py +24 -23
- pulumiverse_scaleway/instance/get_snapshot.py +29 -28
- pulumiverse_scaleway/instance/get_volume.py +30 -29
- pulumiverse_scaleway/instance/image.py +150 -148
- pulumiverse_scaleway/instance/ip.py +94 -92
- pulumiverse_scaleway/instance/ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/instance/outputs.py +349 -348
- pulumiverse_scaleway/instance/placement_group.py +101 -99
- pulumiverse_scaleway/instance/private_nic.py +94 -92
- pulumiverse_scaleway/instance/security_group.py +150 -148
- pulumiverse_scaleway/instance/security_group_rules.py +17 -15
- pulumiverse_scaleway/instance/server.py +393 -330
- pulumiverse_scaleway/instance/snapshot.py +108 -106
- pulumiverse_scaleway/instance/user_data.py +59 -57
- pulumiverse_scaleway/instance/volume.py +129 -127
- pulumiverse_scaleway/instance_image.py +150 -148
- pulumiverse_scaleway/instance_ip.py +94 -92
- pulumiverse_scaleway/instance_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/instance_placement_group.py +101 -99
- pulumiverse_scaleway/instance_private_nic.py +94 -92
- pulumiverse_scaleway/instance_security_group.py +150 -148
- pulumiverse_scaleway/instance_security_group_rules.py +17 -15
- pulumiverse_scaleway/instance_server.py +393 -330
- pulumiverse_scaleway/instance_snapshot.py +108 -106
- pulumiverse_scaleway/instance_user_data.py +59 -57
- pulumiverse_scaleway/instance_volume.py +129 -127
- pulumiverse_scaleway/iot/__init__.py +2 -1
- pulumiverse_scaleway/iot/_inputs.py +98 -97
- pulumiverse_scaleway/iot/device.py +122 -120
- pulumiverse_scaleway/iot/get_device.py +31 -30
- pulumiverse_scaleway/iot/get_hub.py +39 -38
- pulumiverse_scaleway/iot/hub.py +206 -204
- pulumiverse_scaleway/iot/network.py +94 -92
- pulumiverse_scaleway/iot/outputs.py +78 -77
- pulumiverse_scaleway/iot/route.py +66 -64
- pulumiverse_scaleway/iot_device.py +122 -120
- pulumiverse_scaleway/iot_hub.py +206 -204
- pulumiverse_scaleway/iot_network.py +94 -92
- pulumiverse_scaleway/iot_route.py +66 -64
- pulumiverse_scaleway/ipam/__init__.py +2 -1
- pulumiverse_scaleway/ipam/_inputs.py +87 -86
- pulumiverse_scaleway/ipam/get_ip.py +51 -50
- pulumiverse_scaleway/ipam/get_ips.py +44 -43
- pulumiverse_scaleway/ipam/ip.py +94 -92
- pulumiverse_scaleway/ipam/ip_reverse_dns.py +59 -57
- pulumiverse_scaleway/ipam/outputs.py +90 -89
- pulumiverse_scaleway/ipam_ip.py +94 -92
- pulumiverse_scaleway/ipam_ip_reverse_dns.py +59 -57
- pulumiverse_scaleway/job/__init__.py +2 -1
- pulumiverse_scaleway/job/_inputs.py +38 -37
- pulumiverse_scaleway/job/definition.py +143 -141
- pulumiverse_scaleway/job/outputs.py +24 -23
- pulumiverse_scaleway/job_definition.py +143 -141
- pulumiverse_scaleway/kubernetes/__init__.py +2 -1
- pulumiverse_scaleway/kubernetes/_inputs.py +190 -189
- pulumiverse_scaleway/kubernetes/acl.py +45 -43
- pulumiverse_scaleway/kubernetes/cluster.py +234 -232
- pulumiverse_scaleway/kubernetes/get_cluster.py +39 -38
- pulumiverse_scaleway/kubernetes/get_pool.py +47 -46
- pulumiverse_scaleway/kubernetes/get_version.py +16 -15
- pulumiverse_scaleway/kubernetes/outputs.py +217 -216
- pulumiverse_scaleway/kubernetes/pool.py +290 -288
- pulumiverse_scaleway/kubernetes_cluster.py +234 -232
- pulumiverse_scaleway/kubernetes_node_pool.py +290 -288
- pulumiverse_scaleway/loadbalancer.py +199 -197
- pulumiverse_scaleway/loadbalancer_acl.py +73 -71
- pulumiverse_scaleway/loadbalancer_backend.py +381 -379
- pulumiverse_scaleway/loadbalancer_certificate.py +73 -71
- pulumiverse_scaleway/loadbalancer_frontend.py +136 -134
- pulumiverse_scaleway/loadbalancer_ip.py +101 -99
- pulumiverse_scaleway/loadbalancer_route.py +101 -99
- pulumiverse_scaleway/loadbalancers/__init__.py +2 -1
- pulumiverse_scaleway/loadbalancers/_inputs.py +214 -213
- pulumiverse_scaleway/loadbalancers/acl.py +73 -71
- pulumiverse_scaleway/loadbalancers/backend.py +381 -379
- pulumiverse_scaleway/loadbalancers/certificate.py +73 -71
- pulumiverse_scaleway/loadbalancers/frontend.py +136 -134
- pulumiverse_scaleway/loadbalancers/get_acls.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_backend.py +43 -42
- pulumiverse_scaleway/loadbalancers/get_backends.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_certificate.py +24 -23
- pulumiverse_scaleway/loadbalancers/get_frontend.py +26 -25
- pulumiverse_scaleway/loadbalancers/get_frontends.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_ip.py +29 -28
- pulumiverse_scaleway/loadbalancers/get_ips.py +29 -28
- pulumiverse_scaleway/loadbalancers/get_load_balancer.py +36 -35
- pulumiverse_scaleway/loadbalancers/get_load_balancers.py +24 -23
- pulumiverse_scaleway/loadbalancers/get_route.py +16 -15
- pulumiverse_scaleway/loadbalancers/get_routes.py +17 -16
- pulumiverse_scaleway/loadbalancers/ip.py +101 -99
- pulumiverse_scaleway/loadbalancers/load_balancer.py +199 -197
- pulumiverse_scaleway/loadbalancers/outputs.py +525 -524
- pulumiverse_scaleway/loadbalancers/route.py +101 -99
- pulumiverse_scaleway/mnq/__init__.py +2 -1
- pulumiverse_scaleway/mnq/_inputs.py +32 -31
- pulumiverse_scaleway/mnq/get_sns.py +14 -13
- pulumiverse_scaleway/mnq/get_sqs.py +14 -13
- pulumiverse_scaleway/mnq/nats_account.py +52 -50
- pulumiverse_scaleway/mnq/nats_credentials.py +52 -50
- pulumiverse_scaleway/mnq/outputs.py +20 -19
- pulumiverse_scaleway/mnq/sns.py +38 -36
- pulumiverse_scaleway/mnq/sns_credentials.py +59 -57
- pulumiverse_scaleway/mnq/sns_topic.py +143 -141
- pulumiverse_scaleway/mnq/sns_topic_subscription.py +150 -148
- pulumiverse_scaleway/mnq/sqs.py +38 -36
- pulumiverse_scaleway/mnq/sqs_credentials.py +59 -57
- pulumiverse_scaleway/mnq/sqs_queue.py +192 -190
- pulumiverse_scaleway/mnq_nats_account.py +52 -50
- pulumiverse_scaleway/mnq_nats_credentials.py +52 -50
- pulumiverse_scaleway/mnq_sns.py +38 -36
- pulumiverse_scaleway/mnq_sns_credentials.py +59 -57
- pulumiverse_scaleway/mnq_sns_topic.py +143 -141
- pulumiverse_scaleway/mnq_sns_topic_subscription.py +150 -148
- pulumiverse_scaleway/mnq_sqs.py +38 -36
- pulumiverse_scaleway/mnq_sqs_credentials.py +59 -57
- pulumiverse_scaleway/mnq_sqs_queue.py +192 -190
- pulumiverse_scaleway/mongo_db_instance.py +199 -197
- pulumiverse_scaleway/mongo_db_snapshot.py +101 -99
- pulumiverse_scaleway/mongodb/__init__.py +2 -1
- pulumiverse_scaleway/mongodb/_inputs.py +53 -52
- pulumiverse_scaleway/mongodb/get_instance.py +35 -34
- pulumiverse_scaleway/mongodb/instance.py +199 -197
- pulumiverse_scaleway/mongodb/outputs.py +64 -63
- pulumiverse_scaleway/mongodb/snapshot.py +101 -99
- pulumiverse_scaleway/network/__init__.py +2 -1
- pulumiverse_scaleway/network/_inputs.py +140 -139
- pulumiverse_scaleway/network/acl.py +59 -57
- pulumiverse_scaleway/network/gateway_network.py +143 -141
- pulumiverse_scaleway/network/get_gateway_network.py +28 -27
- pulumiverse_scaleway/network/get_private_network.py +32 -31
- pulumiverse_scaleway/network/get_public_gateway.py +36 -35
- pulumiverse_scaleway/network/get_public_gateway_dhcp.py +24 -23
- pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +33 -32
- pulumiverse_scaleway/network/get_public_gateway_ip.py +14 -13
- pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +21 -20
- pulumiverse_scaleway/network/get_routes.py +38 -37
- pulumiverse_scaleway/network/get_vpc.py +35 -34
- pulumiverse_scaleway/network/get_vpcs.py +24 -23
- pulumiverse_scaleway/network/outputs.py +206 -205
- pulumiverse_scaleway/network/private_network.py +122 -120
- pulumiverse_scaleway/network/public_gateway.py +213 -211
- pulumiverse_scaleway/network/public_gateway_dhcp.py +234 -232
- pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +87 -85
- pulumiverse_scaleway/network/public_gateway_ip.py +87 -85
- pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/network/public_gateway_pat_rule.py +108 -106
- pulumiverse_scaleway/network/route.py +115 -113
- pulumiverse_scaleway/network/vpc.py +101 -99
- pulumiverse_scaleway/object/__init__.py +2 -1
- pulumiverse_scaleway/object/_inputs.py +127 -126
- pulumiverse_scaleway/object/bucket.py +115 -113
- pulumiverse_scaleway/object/bucket_acl.py +73 -71
- pulumiverse_scaleway/object/bucket_lock_configuration.py +45 -43
- pulumiverse_scaleway/object/bucket_policy.py +59 -57
- pulumiverse_scaleway/object/bucket_website_configuration.py +85 -65
- pulumiverse_scaleway/object/get_bucket.py +22 -21
- pulumiverse_scaleway/object/get_bucket_policy.py +17 -16
- pulumiverse_scaleway/object/item.py +232 -183
- pulumiverse_scaleway/object/outputs.py +114 -113
- pulumiverse_scaleway/object_bucket.py +115 -113
- pulumiverse_scaleway/object_bucket_acl.py +73 -71
- pulumiverse_scaleway/object_bucket_lock_configuration.py +45 -43
- pulumiverse_scaleway/object_bucket_policy.py +59 -57
- pulumiverse_scaleway/object_bucket_website_configuration.py +85 -65
- pulumiverse_scaleway/object_item.py +232 -183
- pulumiverse_scaleway/observability/__init__.py +2 -1
- pulumiverse_scaleway/observability/_inputs.py +89 -88
- pulumiverse_scaleway/observability/alert_manager.py +52 -50
- pulumiverse_scaleway/observability/cockpit.py +38 -36
- pulumiverse_scaleway/observability/get_instance.py +10 -9
- pulumiverse_scaleway/observability/get_source.py +33 -32
- pulumiverse_scaleway/observability/grafana_user.py +59 -57
- pulumiverse_scaleway/observability/outputs.py +77 -76
- pulumiverse_scaleway/observability/source.py +115 -113
- pulumiverse_scaleway/observability/token.py +66 -64
- pulumiverse_scaleway/outputs.py +2797 -2732
- pulumiverse_scaleway/provider.py +87 -65
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/rdb_snapshot.py +101 -99
- pulumiverse_scaleway/redis/__init__.py +2 -1
- pulumiverse_scaleway/redis/_inputs.py +63 -62
- pulumiverse_scaleway/redis/cluster.py +178 -176
- pulumiverse_scaleway/redis/get_cluster.py +34 -33
- pulumiverse_scaleway/redis/outputs.py +74 -73
- pulumiverse_scaleway/redis_cluster.py +178 -176
- pulumiverse_scaleway/registry/__init__.py +2 -1
- pulumiverse_scaleway/registry/get_image.py +37 -36
- pulumiverse_scaleway/registry/get_image_tag.py +33 -32
- pulumiverse_scaleway/registry/get_namespace.py +27 -26
- pulumiverse_scaleway/registry/namespace.py +87 -85
- pulumiverse_scaleway/registry_namespace.py +87 -85
- pulumiverse_scaleway/sdb_database.py +80 -78
- pulumiverse_scaleway/secret.py +143 -141
- pulumiverse_scaleway/secret_version.py +87 -85
- pulumiverse_scaleway/secrets/__init__.py +2 -1
- pulumiverse_scaleway/secrets/_inputs.py +53 -52
- pulumiverse_scaleway/secrets/get_secret.py +41 -40
- pulumiverse_scaleway/secrets/get_version.py +34 -33
- pulumiverse_scaleway/secrets/outputs.py +64 -63
- pulumiverse_scaleway/secrets/secret.py +143 -141
- pulumiverse_scaleway/secrets/version.py +87 -85
- pulumiverse_scaleway/tem/__init__.py +2 -1
- pulumiverse_scaleway/tem/_inputs.py +28 -27
- pulumiverse_scaleway/tem/blocked_list.py +87 -85
- pulumiverse_scaleway/tem/domain.py +199 -197
- pulumiverse_scaleway/tem/domain_validation.py +52 -50
- pulumiverse_scaleway/tem/get_domain.py +43 -42
- pulumiverse_scaleway/tem/get_offer_subscription.py +22 -21
- pulumiverse_scaleway/tem/outputs.py +34 -33
- pulumiverse_scaleway/tem/webhook.py +108 -106
- pulumiverse_scaleway/tem_domain.py +199 -197
- pulumiverse_scaleway/tem_domain_validation.py +52 -50
- pulumiverse_scaleway/tem_webhook.py +108 -106
- pulumiverse_scaleway/vpc.py +101 -99
- pulumiverse_scaleway/vpc_gateway_network.py +143 -141
- pulumiverse_scaleway/vpc_private_network.py +122 -120
- pulumiverse_scaleway/vpc_public_gateway.py +213 -211
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +234 -232
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +87 -85
- pulumiverse_scaleway/vpc_public_gateway_ip.py +87 -85
- pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +108 -106
- pulumiverse_scaleway/vpc_route.py +115 -113
- pulumiverse_scaleway/webhosting.py +164 -162
- {pulumiverse_scaleway-1.30.0a1748337252.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/METADATA +2 -2
- pulumiverse_scaleway-1.30.0a1752168858.dist-info/RECORD +493 -0
- pulumiverse_scaleway-1.30.0a1748337252.dist-info/RECORD +0 -492
- {pulumiverse_scaleway-1.30.0a1748337252.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.30.0a1748337252.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,8 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -62,7 +63,7 @@ class GetIamSshKeyResult:
|
|
62
63
|
|
63
64
|
@property
|
64
65
|
@pulumi.getter(name="createdAt")
|
65
|
-
def created_at(self) -> str:
|
66
|
+
def created_at(self) -> builtins.str:
|
66
67
|
"""
|
67
68
|
The date and time of the creation of the SSH key.
|
68
69
|
"""
|
@@ -70,7 +71,7 @@ class GetIamSshKeyResult:
|
|
70
71
|
|
71
72
|
@property
|
72
73
|
@pulumi.getter
|
73
|
-
def disabled(self) -> bool:
|
74
|
+
def disabled(self) -> builtins.bool:
|
74
75
|
"""
|
75
76
|
The SSH key status.
|
76
77
|
"""
|
@@ -78,12 +79,12 @@ class GetIamSshKeyResult:
|
|
78
79
|
|
79
80
|
@property
|
80
81
|
@pulumi.getter
|
81
|
-
def fingerprint(self) -> str:
|
82
|
+
def fingerprint(self) -> builtins.str:
|
82
83
|
return pulumi.get(self, "fingerprint")
|
83
84
|
|
84
85
|
@property
|
85
86
|
@pulumi.getter
|
86
|
-
def id(self) -> str:
|
87
|
+
def id(self) -> builtins.str:
|
87
88
|
"""
|
88
89
|
The provider-assigned unique ID for this managed resource.
|
89
90
|
"""
|
@@ -91,12 +92,12 @@ class GetIamSshKeyResult:
|
|
91
92
|
|
92
93
|
@property
|
93
94
|
@pulumi.getter
|
94
|
-
def name(self) -> Optional[str]:
|
95
|
+
def name(self) -> Optional[builtins.str]:
|
95
96
|
return pulumi.get(self, "name")
|
96
97
|
|
97
98
|
@property
|
98
99
|
@pulumi.getter(name="organizationId")
|
99
|
-
def organization_id(self) -> str:
|
100
|
+
def organization_id(self) -> builtins.str:
|
100
101
|
"""
|
101
102
|
The ID of the organization the SSH key is associated with.
|
102
103
|
"""
|
@@ -104,12 +105,12 @@ class GetIamSshKeyResult:
|
|
104
105
|
|
105
106
|
@property
|
106
107
|
@pulumi.getter(name="projectId")
|
107
|
-
def project_id(self) -> Optional[str]:
|
108
|
+
def project_id(self) -> Optional[builtins.str]:
|
108
109
|
return pulumi.get(self, "project_id")
|
109
110
|
|
110
111
|
@property
|
111
112
|
@pulumi.getter(name="publicKey")
|
112
|
-
def public_key(self) -> str:
|
113
|
+
def public_key(self) -> builtins.str:
|
113
114
|
"""
|
114
115
|
The SSH public key string
|
115
116
|
"""
|
@@ -117,12 +118,12 @@ class GetIamSshKeyResult:
|
|
117
118
|
|
118
119
|
@property
|
119
120
|
@pulumi.getter(name="sshKeyId")
|
120
|
-
def ssh_key_id(self) -> Optional[str]:
|
121
|
+
def ssh_key_id(self) -> Optional[builtins.str]:
|
121
122
|
return pulumi.get(self, "ssh_key_id")
|
122
123
|
|
123
124
|
@property
|
124
125
|
@pulumi.getter(name="updatedAt")
|
125
|
-
def updated_at(self) -> str:
|
126
|
+
def updated_at(self) -> builtins.str:
|
126
127
|
"""
|
127
128
|
The date and time of the last update of the SSH key.
|
128
129
|
"""
|
@@ -147,18 +148,18 @@ class AwaitableGetIamSshKeyResult(GetIamSshKeyResult):
|
|
147
148
|
updated_at=self.updated_at)
|
148
149
|
|
149
150
|
|
150
|
-
def get_iam_ssh_key(name: Optional[str] = None,
|
151
|
-
project_id: Optional[str] = None,
|
152
|
-
ssh_key_id: Optional[str] = None,
|
151
|
+
def get_iam_ssh_key(name: Optional[builtins.str] = None,
|
152
|
+
project_id: Optional[builtins.str] = None,
|
153
|
+
ssh_key_id: Optional[builtins.str] = None,
|
153
154
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetIamSshKeyResult:
|
154
155
|
"""
|
155
156
|
Use this data source to get SSH key information based on its ID or name.
|
156
157
|
|
157
158
|
|
158
|
-
:param str name: The SSH key name.
|
159
|
-
:param str project_id: `project_id`) The ID of the project the SSH
|
159
|
+
:param builtins.str name: The SSH key name.
|
160
|
+
:param builtins.str project_id: `project_id`) The ID of the project the SSH
|
160
161
|
key is associated with.
|
161
|
-
:param str ssh_key_id: The SSH key id.
|
162
|
+
:param builtins.str ssh_key_id: The SSH key id.
|
162
163
|
|
163
164
|
> **Note** You must specify at least one: `name` and/or `ssh_key_id`.
|
164
165
|
"""
|
@@ -181,18 +182,18 @@ def get_iam_ssh_key(name: Optional[str] = None,
|
|
181
182
|
public_key=pulumi.get(__ret__, 'public_key'),
|
182
183
|
ssh_key_id=pulumi.get(__ret__, 'ssh_key_id'),
|
183
184
|
updated_at=pulumi.get(__ret__, 'updated_at'))
|
184
|
-
def get_iam_ssh_key_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
185
|
-
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
186
|
-
ssh_key_id: Optional[pulumi.Input[Optional[str]]] = None,
|
185
|
+
def get_iam_ssh_key_output(name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
186
|
+
project_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
187
|
+
ssh_key_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
187
188
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetIamSshKeyResult]:
|
188
189
|
"""
|
189
190
|
Use this data source to get SSH key information based on its ID or name.
|
190
191
|
|
191
192
|
|
192
|
-
:param str name: The SSH key name.
|
193
|
-
:param str project_id: `project_id`) The ID of the project the SSH
|
193
|
+
:param builtins.str name: The SSH key name.
|
194
|
+
:param builtins.str project_id: `project_id`) The ID of the project the SSH
|
194
195
|
key is associated with.
|
195
|
-
:param str ssh_key_id: The SSH key id.
|
196
|
+
:param builtins.str ssh_key_id: The SSH key id.
|
196
197
|
|
197
198
|
> **Note** You must specify at least one: `name` and/or `ssh_key_id`.
|
198
199
|
"""
|
@@ -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
|
@@ -47,12 +48,12 @@ class GetIamUserResult:
|
|
47
48
|
|
48
49
|
@property
|
49
50
|
@pulumi.getter
|
50
|
-
def email(self) -> Optional[str]:
|
51
|
+
def email(self) -> Optional[builtins.str]:
|
51
52
|
return pulumi.get(self, "email")
|
52
53
|
|
53
54
|
@property
|
54
55
|
@pulumi.getter
|
55
|
-
def id(self) -> str:
|
56
|
+
def id(self) -> builtins.str:
|
56
57
|
"""
|
57
58
|
The provider-assigned unique ID for this managed resource.
|
58
59
|
"""
|
@@ -60,12 +61,12 @@ class GetIamUserResult:
|
|
60
61
|
|
61
62
|
@property
|
62
63
|
@pulumi.getter(name="organizationId")
|
63
|
-
def organization_id(self) -> Optional[str]:
|
64
|
+
def organization_id(self) -> Optional[builtins.str]:
|
64
65
|
return pulumi.get(self, "organization_id")
|
65
66
|
|
66
67
|
@property
|
67
68
|
@pulumi.getter
|
68
|
-
def tags(self) -> Optional[Sequence[str]]:
|
69
|
+
def tags(self) -> Optional[Sequence[builtins.str]]:
|
69
70
|
"""
|
70
71
|
The tags associated with the user.
|
71
72
|
"""
|
@@ -73,7 +74,7 @@ class GetIamUserResult:
|
|
73
74
|
|
74
75
|
@property
|
75
76
|
@pulumi.getter(name="userId")
|
76
|
-
def user_id(self) -> Optional[str]:
|
77
|
+
def user_id(self) -> Optional[builtins.str]:
|
77
78
|
return pulumi.get(self, "user_id")
|
78
79
|
|
79
80
|
|
@@ -90,10 +91,10 @@ class AwaitableGetIamUserResult(GetIamUserResult):
|
|
90
91
|
user_id=self.user_id)
|
91
92
|
|
92
93
|
|
93
|
-
def get_iam_user(email: Optional[str] = None,
|
94
|
-
organization_id: Optional[str] = None,
|
95
|
-
tags: Optional[Sequence[str]] = None,
|
96
|
-
user_id: Optional[str] = None,
|
94
|
+
def get_iam_user(email: Optional[builtins.str] = None,
|
95
|
+
organization_id: Optional[builtins.str] = None,
|
96
|
+
tags: Optional[Sequence[builtins.str]] = None,
|
97
|
+
user_id: Optional[builtins.str] = None,
|
97
98
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetIamUserResult:
|
98
99
|
"""
|
99
100
|
Use this data source to get information on an existing IAM user based on its ID or email address.
|
@@ -112,11 +113,11 @@ def get_iam_user(email: Optional[str] = None,
|
|
112
113
|
```
|
113
114
|
|
114
115
|
|
115
|
-
:param str email: The email address of the IAM user.
|
116
|
-
:param str organization_id: `organization_id`) The ID of the
|
116
|
+
:param builtins.str email: The email address of the IAM user.
|
117
|
+
:param builtins.str organization_id: `organization_id`) The ID of the
|
117
118
|
organization the user is associated with.
|
118
|
-
:param Sequence[str] tags: The tags associated with the user.
|
119
|
-
:param str user_id: The ID of the IAM user.
|
119
|
+
:param Sequence[builtins.str] tags: The tags associated with the user.
|
120
|
+
:param builtins.str user_id: The ID of the IAM user.
|
120
121
|
|
121
122
|
> **Note** You must specify at least one: `name` and/or `user_id`.
|
122
123
|
"""
|
@@ -135,10 +136,10 @@ def get_iam_user(email: Optional[str] = None,
|
|
135
136
|
organization_id=pulumi.get(__ret__, 'organization_id'),
|
136
137
|
tags=pulumi.get(__ret__, 'tags'),
|
137
138
|
user_id=pulumi.get(__ret__, 'user_id'))
|
138
|
-
def get_iam_user_output(email: Optional[pulumi.Input[Optional[str]]] = None,
|
139
|
-
organization_id: Optional[pulumi.Input[Optional[str]]] = None,
|
140
|
-
tags: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
|
141
|
-
user_id: Optional[pulumi.Input[Optional[str]]] = None,
|
139
|
+
def get_iam_user_output(email: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
140
|
+
organization_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
141
|
+
tags: Optional[pulumi.Input[Optional[Sequence[builtins.str]]]] = None,
|
142
|
+
user_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
142
143
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetIamUserResult]:
|
143
144
|
"""
|
144
145
|
Use this data source to get information on an existing IAM user based on its ID or email address.
|
@@ -157,11 +158,11 @@ def get_iam_user_output(email: Optional[pulumi.Input[Optional[str]]] = None,
|
|
157
158
|
```
|
158
159
|
|
159
160
|
|
160
|
-
:param str email: The email address of the IAM user.
|
161
|
-
:param str organization_id: `organization_id`) The ID of the
|
161
|
+
:param builtins.str email: The email address of the IAM user.
|
162
|
+
:param builtins.str organization_id: `organization_id`) The ID of the
|
162
163
|
organization the user is associated with.
|
163
|
-
:param Sequence[str] tags: The tags associated with the user.
|
164
|
-
:param str user_id: The ID of the IAM user.
|
164
|
+
:param Sequence[builtins.str] tags: The tags associated with the user.
|
165
|
+
:param builtins.str user_id: The ID of the IAM user.
|
165
166
|
|
166
167
|
> **Note** You must specify at least one: `name` and/or `user_id`.
|
167
168
|
"""
|
@@ -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
|
@@ -80,7 +81,7 @@ class GetInstanceImageResult:
|
|
80
81
|
|
81
82
|
@property
|
82
83
|
@pulumi.getter(name="additionalVolumeIds")
|
83
|
-
def additional_volume_ids(self) -> Sequence[str]:
|
84
|
+
def additional_volume_ids(self) -> Sequence[builtins.str]:
|
84
85
|
"""
|
85
86
|
IDs of the additional volumes in this image.
|
86
87
|
"""
|
@@ -88,12 +89,12 @@ class GetInstanceImageResult:
|
|
88
89
|
|
89
90
|
@property
|
90
91
|
@pulumi.getter
|
91
|
-
def architecture(self) -> Optional[str]:
|
92
|
+
def architecture(self) -> Optional[builtins.str]:
|
92
93
|
return pulumi.get(self, "architecture")
|
93
94
|
|
94
95
|
@property
|
95
96
|
@pulumi.getter(name="creationDate")
|
96
|
-
def creation_date(self) -> str:
|
97
|
+
def creation_date(self) -> builtins.str:
|
97
98
|
"""
|
98
99
|
Date of the image creation.
|
99
100
|
"""
|
@@ -101,7 +102,7 @@ class GetInstanceImageResult:
|
|
101
102
|
|
102
103
|
@property
|
103
104
|
@pulumi.getter(name="defaultBootscriptId")
|
104
|
-
def default_bootscript_id(self) -> str:
|
105
|
+
def default_bootscript_id(self) -> builtins.str:
|
105
106
|
"""
|
106
107
|
ID of the default bootscript for this image.
|
107
108
|
"""
|
@@ -109,7 +110,7 @@ class GetInstanceImageResult:
|
|
109
110
|
|
110
111
|
@property
|
111
112
|
@pulumi.getter(name="fromServerId")
|
112
|
-
def from_server_id(self) -> str:
|
113
|
+
def from_server_id(self) -> builtins.str:
|
113
114
|
"""
|
114
115
|
ID of the server the image if based from.
|
115
116
|
"""
|
@@ -117,7 +118,7 @@ class GetInstanceImageResult:
|
|
117
118
|
|
118
119
|
@property
|
119
120
|
@pulumi.getter
|
120
|
-
def id(self) -> str:
|
121
|
+
def id(self) -> builtins.str:
|
121
122
|
"""
|
122
123
|
The provider-assigned unique ID for this managed resource.
|
123
124
|
"""
|
@@ -125,17 +126,17 @@ class GetInstanceImageResult:
|
|
125
126
|
|
126
127
|
@property
|
127
128
|
@pulumi.getter(name="imageId")
|
128
|
-
def image_id(self) -> Optional[str]:
|
129
|
+
def image_id(self) -> Optional[builtins.str]:
|
129
130
|
return pulumi.get(self, "image_id")
|
130
131
|
|
131
132
|
@property
|
132
133
|
@pulumi.getter
|
133
|
-
def latest(self) -> Optional[bool]:
|
134
|
+
def latest(self) -> Optional[builtins.bool]:
|
134
135
|
return pulumi.get(self, "latest")
|
135
136
|
|
136
137
|
@property
|
137
138
|
@pulumi.getter(name="modificationDate")
|
138
|
-
def modification_date(self) -> str:
|
139
|
+
def modification_date(self) -> builtins.str:
|
139
140
|
"""
|
140
141
|
Date of image latest update.
|
141
142
|
"""
|
@@ -143,12 +144,12 @@ class GetInstanceImageResult:
|
|
143
144
|
|
144
145
|
@property
|
145
146
|
@pulumi.getter
|
146
|
-
def name(self) -> Optional[str]:
|
147
|
+
def name(self) -> Optional[builtins.str]:
|
147
148
|
return pulumi.get(self, "name")
|
148
149
|
|
149
150
|
@property
|
150
151
|
@pulumi.getter(name="organizationId")
|
151
|
-
def organization_id(self) -> str:
|
152
|
+
def organization_id(self) -> builtins.str:
|
152
153
|
"""
|
153
154
|
The ID of the organization the image is associated with.
|
154
155
|
"""
|
@@ -156,7 +157,7 @@ class GetInstanceImageResult:
|
|
156
157
|
|
157
158
|
@property
|
158
159
|
@pulumi.getter(name="projectId")
|
159
|
-
def project_id(self) -> str:
|
160
|
+
def project_id(self) -> builtins.str:
|
160
161
|
"""
|
161
162
|
The ID of the project the image is associated with.
|
162
163
|
"""
|
@@ -164,7 +165,7 @@ class GetInstanceImageResult:
|
|
164
165
|
|
165
166
|
@property
|
166
167
|
@pulumi.getter
|
167
|
-
def public(self) -> bool:
|
168
|
+
def public(self) -> builtins.bool:
|
168
169
|
"""
|
169
170
|
Set to `true` if the image is public.
|
170
171
|
"""
|
@@ -172,7 +173,7 @@ class GetInstanceImageResult:
|
|
172
173
|
|
173
174
|
@property
|
174
175
|
@pulumi.getter(name="rootVolumeId")
|
175
|
-
def root_volume_id(self) -> str:
|
176
|
+
def root_volume_id(self) -> builtins.str:
|
176
177
|
"""
|
177
178
|
ID of the root volume in this image.
|
178
179
|
"""
|
@@ -180,7 +181,7 @@ class GetInstanceImageResult:
|
|
180
181
|
|
181
182
|
@property
|
182
183
|
@pulumi.getter
|
183
|
-
def state(self) -> str:
|
184
|
+
def state(self) -> builtins.str:
|
184
185
|
"""
|
185
186
|
State of the image. Possible values are: `available`, `creating` or `error`.
|
186
187
|
"""
|
@@ -188,7 +189,7 @@ class GetInstanceImageResult:
|
|
188
189
|
|
189
190
|
@property
|
190
191
|
@pulumi.getter
|
191
|
-
def zone(self) -> str:
|
192
|
+
def zone(self) -> builtins.str:
|
192
193
|
return pulumi.get(self, "zone")
|
193
194
|
|
194
195
|
|
@@ -216,23 +217,23 @@ class AwaitableGetInstanceImageResult(GetInstanceImageResult):
|
|
216
217
|
zone=self.zone)
|
217
218
|
|
218
219
|
|
219
|
-
def get_instance_image(architecture: Optional[str] = None,
|
220
|
-
image_id: Optional[str] = None,
|
221
|
-
latest: Optional[bool] = None,
|
222
|
-
name: Optional[str] = None,
|
223
|
-
project_id: Optional[str] = None,
|
224
|
-
zone: Optional[str] = None,
|
220
|
+
def get_instance_image(architecture: Optional[builtins.str] = None,
|
221
|
+
image_id: Optional[builtins.str] = None,
|
222
|
+
latest: Optional[builtins.bool] = None,
|
223
|
+
name: Optional[builtins.str] = None,
|
224
|
+
project_id: Optional[builtins.str] = None,
|
225
|
+
zone: Optional[builtins.str] = None,
|
225
226
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetInstanceImageResult:
|
226
227
|
"""
|
227
228
|
Gets information about an instance image.
|
228
229
|
|
229
230
|
|
230
|
-
:param str architecture: The architecture the image is compatible with. Possible values are: `x86_64` or `arm`.
|
231
|
-
:param str image_id: The image id. Only one of `name` and `image_id` should be specified.
|
232
|
-
:param bool latest: Use the latest image ID.
|
233
|
-
:param str name: The image name. Only one of `name` and `image_id` should be specified.
|
234
|
-
:param str project_id: The ID of the project the image is associated with.
|
235
|
-
:param str zone: `zone`) The zone in which the image exists.
|
231
|
+
:param builtins.str architecture: The architecture the image is compatible with. Possible values are: `x86_64` or `arm`.
|
232
|
+
:param builtins.str image_id: The image id. Only one of `name` and `image_id` should be specified.
|
233
|
+
:param builtins.bool latest: Use the latest image ID.
|
234
|
+
:param builtins.str name: The image name. Only one of `name` and `image_id` should be specified.
|
235
|
+
:param builtins.str project_id: The ID of the project the image is associated with.
|
236
|
+
:param builtins.str zone: `zone`) The zone in which the image exists.
|
236
237
|
"""
|
237
238
|
pulumi.log.warn("""get_instance_image is deprecated: scaleway.index/getinstanceimage.getInstanceImage has been deprecated in favor of scaleway.instance/getimage.getImage""")
|
238
239
|
__args__ = dict()
|
@@ -262,23 +263,23 @@ def get_instance_image(architecture: Optional[str] = None,
|
|
262
263
|
root_volume_id=pulumi.get(__ret__, 'root_volume_id'),
|
263
264
|
state=pulumi.get(__ret__, 'state'),
|
264
265
|
zone=pulumi.get(__ret__, 'zone'))
|
265
|
-
def get_instance_image_output(architecture: Optional[pulumi.Input[Optional[str]]] = None,
|
266
|
-
image_id: Optional[pulumi.Input[Optional[str]]] = None,
|
267
|
-
latest: Optional[pulumi.Input[Optional[bool]]] = None,
|
268
|
-
name: Optional[pulumi.Input[Optional[str]]] = None,
|
269
|
-
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
270
|
-
zone: Optional[pulumi.Input[Optional[str]]] = None,
|
266
|
+
def get_instance_image_output(architecture: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
267
|
+
image_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
268
|
+
latest: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
|
269
|
+
name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
270
|
+
project_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
271
|
+
zone: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
271
272
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetInstanceImageResult]:
|
272
273
|
"""
|
273
274
|
Gets information about an instance image.
|
274
275
|
|
275
276
|
|
276
|
-
:param str architecture: The architecture the image is compatible with. Possible values are: `x86_64` or `arm`.
|
277
|
-
:param str image_id: The image id. Only one of `name` and `image_id` should be specified.
|
278
|
-
:param bool latest: Use the latest image ID.
|
279
|
-
:param str name: The image name. Only one of `name` and `image_id` should be specified.
|
280
|
-
:param str project_id: The ID of the project the image is associated with.
|
281
|
-
:param str zone: `zone`) The zone in which the image exists.
|
277
|
+
:param builtins.str architecture: The architecture the image is compatible with. Possible values are: `x86_64` or `arm`.
|
278
|
+
:param builtins.str image_id: The image id. Only one of `name` and `image_id` should be specified.
|
279
|
+
:param builtins.bool latest: Use the latest image ID.
|
280
|
+
:param builtins.str name: The image name. Only one of `name` and `image_id` should be specified.
|
281
|
+
:param builtins.str project_id: The ID of the project the image is associated with.
|
282
|
+
:param builtins.str zone: `zone`) The zone in which the image exists.
|
282
283
|
"""
|
283
284
|
pulumi.log.warn("""get_instance_image is deprecated: scaleway.index/getinstanceimage.getInstanceImage has been deprecated in favor of scaleway.instance/getimage.getImage""")
|
284
285
|
__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
|
@@ -62,7 +63,7 @@ class GetInstanceIpResult:
|
|
62
63
|
|
63
64
|
@property
|
64
65
|
@pulumi.getter
|
65
|
-
def address(self) -> Optional[str]:
|
66
|
+
def address(self) -> Optional[builtins.str]:
|
66
67
|
"""
|
67
68
|
The IP address.
|
68
69
|
"""
|
@@ -70,7 +71,7 @@ class GetInstanceIpResult:
|
|
70
71
|
|
71
72
|
@property
|
72
73
|
@pulumi.getter
|
73
|
-
def id(self) -> Optional[str]:
|
74
|
+
def id(self) -> Optional[builtins.str]:
|
74
75
|
"""
|
75
76
|
The ID of the IP.
|
76
77
|
"""
|
@@ -78,7 +79,7 @@ class GetInstanceIpResult:
|
|
78
79
|
|
79
80
|
@property
|
80
81
|
@pulumi.getter(name="organizationId")
|
81
|
-
def organization_id(self) -> str:
|
82
|
+
def organization_id(self) -> builtins.str:
|
82
83
|
"""
|
83
84
|
The organization ID the IP is associated with.
|
84
85
|
"""
|
@@ -86,7 +87,7 @@ class GetInstanceIpResult:
|
|
86
87
|
|
87
88
|
@property
|
88
89
|
@pulumi.getter
|
89
|
-
def prefix(self) -> str:
|
90
|
+
def prefix(self) -> builtins.str:
|
90
91
|
"""
|
91
92
|
The IP Prefix.
|
92
93
|
"""
|
@@ -94,12 +95,12 @@ class GetInstanceIpResult:
|
|
94
95
|
|
95
96
|
@property
|
96
97
|
@pulumi.getter(name="projectId")
|
97
|
-
def project_id(self) -> str:
|
98
|
+
def project_id(self) -> builtins.str:
|
98
99
|
return pulumi.get(self, "project_id")
|
99
100
|
|
100
101
|
@property
|
101
102
|
@pulumi.getter
|
102
|
-
def reverse(self) -> str:
|
103
|
+
def reverse(self) -> builtins.str:
|
103
104
|
"""
|
104
105
|
The reverse dns attached to this IP
|
105
106
|
"""
|
@@ -107,17 +108,17 @@ class GetInstanceIpResult:
|
|
107
108
|
|
108
109
|
@property
|
109
110
|
@pulumi.getter(name="serverId")
|
110
|
-
def server_id(self) -> str:
|
111
|
+
def server_id(self) -> builtins.str:
|
111
112
|
return pulumi.get(self, "server_id")
|
112
113
|
|
113
114
|
@property
|
114
115
|
@pulumi.getter
|
115
|
-
def tags(self) -> Sequence[str]:
|
116
|
+
def tags(self) -> Sequence[builtins.str]:
|
116
117
|
return pulumi.get(self, "tags")
|
117
118
|
|
118
119
|
@property
|
119
120
|
@pulumi.getter
|
120
|
-
def type(self) -> str:
|
121
|
+
def type(self) -> builtins.str:
|
121
122
|
"""
|
122
123
|
The type of the IP
|
123
124
|
"""
|
@@ -125,7 +126,7 @@ class GetInstanceIpResult:
|
|
125
126
|
|
126
127
|
@property
|
127
128
|
@pulumi.getter
|
128
|
-
def zone(self) -> str:
|
129
|
+
def zone(self) -> builtins.str:
|
129
130
|
return pulumi.get(self, "zone")
|
130
131
|
|
131
132
|
|
@@ -147,16 +148,16 @@ class AwaitableGetInstanceIpResult(GetInstanceIpResult):
|
|
147
148
|
zone=self.zone)
|
148
149
|
|
149
150
|
|
150
|
-
def get_instance_ip(address: Optional[str] = None,
|
151
|
-
id: Optional[str] = None,
|
151
|
+
def get_instance_ip(address: Optional[builtins.str] = None,
|
152
|
+
id: Optional[builtins.str] = None,
|
152
153
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetInstanceIpResult:
|
153
154
|
"""
|
154
155
|
Gets information about an instance IP.
|
155
156
|
|
156
157
|
|
157
|
-
:param str address: The IPv4 address to retrieve
|
158
|
+
:param builtins.str address: The IPv4 address to retrieve
|
158
159
|
Only one of `address` and `id` should be specified.
|
159
|
-
:param str id: The ID of the IP address to retrieve
|
160
|
+
:param builtins.str id: The ID of the IP address to retrieve
|
160
161
|
Only one of `address` and `id` should be specified.
|
161
162
|
"""
|
162
163
|
pulumi.log.warn("""get_instance_ip is deprecated: scaleway.index/getinstanceip.getInstanceIp has been deprecated in favor of scaleway.instance/getip.getIp""")
|
@@ -177,16 +178,16 @@ def get_instance_ip(address: Optional[str] = None,
|
|
177
178
|
tags=pulumi.get(__ret__, 'tags'),
|
178
179
|
type=pulumi.get(__ret__, 'type'),
|
179
180
|
zone=pulumi.get(__ret__, 'zone'))
|
180
|
-
def get_instance_ip_output(address: Optional[pulumi.Input[Optional[str]]] = None,
|
181
|
-
id: Optional[pulumi.Input[Optional[str]]] = None,
|
181
|
+
def get_instance_ip_output(address: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
182
|
+
id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
182
183
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetInstanceIpResult]:
|
183
184
|
"""
|
184
185
|
Gets information about an instance IP.
|
185
186
|
|
186
187
|
|
187
|
-
:param str address: The IPv4 address to retrieve
|
188
|
+
:param builtins.str address: The IPv4 address to retrieve
|
188
189
|
Only one of `address` and `id` should be specified.
|
189
|
-
:param str id: The ID of the IP address to retrieve
|
190
|
+
:param builtins.str id: The ID of the IP address to retrieve
|
190
191
|
Only one of `address` and `id` should be specified.
|
191
192
|
"""
|
192
193
|
pulumi.log.warn("""get_instance_ip is deprecated: scaleway.index/getinstanceip.getInstanceIp has been deprecated in favor of scaleway.instance/getip.getIp""")
|