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
|
@@ -29,7 +30,13 @@ class GetContainerResult:
|
|
29
30
|
"""
|
30
31
|
A collection of values returned by getContainer.
|
31
32
|
"""
|
32
|
-
def __init__(__self__, container_id=None, cpu_limit=None, cron_status=None, deploy=None, description=None, domain_name=None, environment_variables=None, error_message=None, health_checks=None, http_option=None, id=None, local_storage_limit=None, max_concurrency=None, max_scale=None, memory_limit=None, min_scale=None, name=None, namespace_id=None, port=None, privacy=None, project_id=None, protocol=None, region=None, registry_image=None, registry_sha256=None, sandbox=None, scaling_options=None, secret_environment_variables=None, status=None, timeout=None):
|
33
|
+
def __init__(__self__, args=None, commands=None, container_id=None, cpu_limit=None, cron_status=None, deploy=None, description=None, domain_name=None, environment_variables=None, error_message=None, health_checks=None, http_option=None, id=None, local_storage_limit=None, max_concurrency=None, max_scale=None, memory_limit=None, min_scale=None, name=None, namespace_id=None, port=None, privacy=None, private_network_id=None, project_id=None, protocol=None, region=None, registry_image=None, registry_sha256=None, sandbox=None, scaling_options=None, secret_environment_variables=None, status=None, tags=None, timeout=None):
|
34
|
+
if args and not isinstance(args, list):
|
35
|
+
raise TypeError("Expected argument 'args' to be a list")
|
36
|
+
pulumi.set(__self__, "args", args)
|
37
|
+
if commands and not isinstance(commands, list):
|
38
|
+
raise TypeError("Expected argument 'commands' to be a list")
|
39
|
+
pulumi.set(__self__, "commands", commands)
|
33
40
|
if container_id and not isinstance(container_id, str):
|
34
41
|
raise TypeError("Expected argument 'container_id' to be a str")
|
35
42
|
pulumi.set(__self__, "container_id", container_id)
|
@@ -90,6 +97,9 @@ class GetContainerResult:
|
|
90
97
|
if privacy and not isinstance(privacy, str):
|
91
98
|
raise TypeError("Expected argument 'privacy' to be a str")
|
92
99
|
pulumi.set(__self__, "privacy", privacy)
|
100
|
+
if private_network_id and not isinstance(private_network_id, str):
|
101
|
+
raise TypeError("Expected argument 'private_network_id' to be a str")
|
102
|
+
pulumi.set(__self__, "private_network_id", private_network_id)
|
93
103
|
if project_id and not isinstance(project_id, str):
|
94
104
|
raise TypeError("Expected argument 'project_id' to be a str")
|
95
105
|
pulumi.set(__self__, "project_id", project_id)
|
@@ -117,18 +127,31 @@ class GetContainerResult:
|
|
117
127
|
if status and not isinstance(status, str):
|
118
128
|
raise TypeError("Expected argument 'status' to be a str")
|
119
129
|
pulumi.set(__self__, "status", status)
|
130
|
+
if tags and not isinstance(tags, list):
|
131
|
+
raise TypeError("Expected argument 'tags' to be a list")
|
132
|
+
pulumi.set(__self__, "tags", tags)
|
120
133
|
if timeout and not isinstance(timeout, int):
|
121
134
|
raise TypeError("Expected argument 'timeout' to be a int")
|
122
135
|
pulumi.set(__self__, "timeout", timeout)
|
123
136
|
|
137
|
+
@property
|
138
|
+
@pulumi.getter
|
139
|
+
def args(self) -> Sequence[builtins.str]:
|
140
|
+
return pulumi.get(self, "args")
|
141
|
+
|
142
|
+
@property
|
143
|
+
@pulumi.getter
|
144
|
+
def commands(self) -> Sequence[builtins.str]:
|
145
|
+
return pulumi.get(self, "commands")
|
146
|
+
|
124
147
|
@property
|
125
148
|
@pulumi.getter(name="containerId")
|
126
|
-
def container_id(self) -> Optional[str]:
|
149
|
+
def container_id(self) -> Optional[builtins.str]:
|
127
150
|
return pulumi.get(self, "container_id")
|
128
151
|
|
129
152
|
@property
|
130
153
|
@pulumi.getter(name="cpuLimit")
|
131
|
-
def cpu_limit(self) -> int:
|
154
|
+
def cpu_limit(self) -> builtins.int:
|
132
155
|
"""
|
133
156
|
The amount of vCPU computing resources to allocate to each container.
|
134
157
|
"""
|
@@ -136,7 +159,7 @@ class GetContainerResult:
|
|
136
159
|
|
137
160
|
@property
|
138
161
|
@pulumi.getter(name="cronStatus")
|
139
|
-
def cron_status(self) -> str:
|
162
|
+
def cron_status(self) -> builtins.str:
|
140
163
|
"""
|
141
164
|
The cron status of the container.
|
142
165
|
"""
|
@@ -144,7 +167,7 @@ class GetContainerResult:
|
|
144
167
|
|
145
168
|
@property
|
146
169
|
@pulumi.getter
|
147
|
-
def deploy(self) -> bool:
|
170
|
+
def deploy(self) -> builtins.bool:
|
148
171
|
"""
|
149
172
|
Boolean indicating whether the container is on a production environment.
|
150
173
|
"""
|
@@ -152,7 +175,7 @@ class GetContainerResult:
|
|
152
175
|
|
153
176
|
@property
|
154
177
|
@pulumi.getter
|
155
|
-
def description(self) -> str:
|
178
|
+
def description(self) -> builtins.str:
|
156
179
|
"""
|
157
180
|
The description of the container.
|
158
181
|
"""
|
@@ -160,7 +183,7 @@ class GetContainerResult:
|
|
160
183
|
|
161
184
|
@property
|
162
185
|
@pulumi.getter(name="domainName")
|
163
|
-
def domain_name(self) -> str:
|
186
|
+
def domain_name(self) -> builtins.str:
|
164
187
|
"""
|
165
188
|
The container domain name.
|
166
189
|
"""
|
@@ -168,7 +191,7 @@ class GetContainerResult:
|
|
168
191
|
|
169
192
|
@property
|
170
193
|
@pulumi.getter(name="environmentVariables")
|
171
|
-
def environment_variables(self) -> Mapping[str, str]:
|
194
|
+
def environment_variables(self) -> Mapping[str, builtins.str]:
|
172
195
|
"""
|
173
196
|
The [environment](https://www.scaleway.com/en/docs/serverless-containers/concepts/#environment-variables) variables of the container.
|
174
197
|
"""
|
@@ -176,7 +199,7 @@ class GetContainerResult:
|
|
176
199
|
|
177
200
|
@property
|
178
201
|
@pulumi.getter(name="errorMessage")
|
179
|
-
def error_message(self) -> str:
|
202
|
+
def error_message(self) -> builtins.str:
|
180
203
|
"""
|
181
204
|
The error message of the container.
|
182
205
|
"""
|
@@ -192,12 +215,12 @@ class GetContainerResult:
|
|
192
215
|
|
193
216
|
@property
|
194
217
|
@pulumi.getter(name="httpOption")
|
195
|
-
def http_option(self) -> str:
|
218
|
+
def http_option(self) -> builtins.str:
|
196
219
|
return pulumi.get(self, "http_option")
|
197
220
|
|
198
221
|
@property
|
199
222
|
@pulumi.getter
|
200
|
-
def id(self) -> str:
|
223
|
+
def id(self) -> builtins.str:
|
201
224
|
"""
|
202
225
|
The provider-assigned unique ID for this managed resource.
|
203
226
|
"""
|
@@ -205,12 +228,12 @@ class GetContainerResult:
|
|
205
228
|
|
206
229
|
@property
|
207
230
|
@pulumi.getter(name="localStorageLimit")
|
208
|
-
def local_storage_limit(self) -> int:
|
231
|
+
def local_storage_limit(self) -> builtins.int:
|
209
232
|
return pulumi.get(self, "local_storage_limit")
|
210
233
|
|
211
234
|
@property
|
212
235
|
@pulumi.getter(name="maxConcurrency")
|
213
|
-
def max_concurrency(self) -> int:
|
236
|
+
def max_concurrency(self) -> builtins.int:
|
214
237
|
"""
|
215
238
|
The maximum number of simultaneous requests your container can handle at the same time.
|
216
239
|
"""
|
@@ -218,7 +241,7 @@ class GetContainerResult:
|
|
218
241
|
|
219
242
|
@property
|
220
243
|
@pulumi.getter(name="maxScale")
|
221
|
-
def max_scale(self) -> int:
|
244
|
+
def max_scale(self) -> builtins.int:
|
222
245
|
"""
|
223
246
|
The maximum number of instances the container can scale to.
|
224
247
|
"""
|
@@ -226,7 +249,7 @@ class GetContainerResult:
|
|
226
249
|
|
227
250
|
@property
|
228
251
|
@pulumi.getter(name="memoryLimit")
|
229
|
-
def memory_limit(self) -> int:
|
252
|
+
def memory_limit(self) -> builtins.int:
|
230
253
|
"""
|
231
254
|
The memory resources in MB to allocate to each container.
|
232
255
|
"""
|
@@ -234,7 +257,7 @@ class GetContainerResult:
|
|
234
257
|
|
235
258
|
@property
|
236
259
|
@pulumi.getter(name="minScale")
|
237
|
-
def min_scale(self) -> int:
|
260
|
+
def min_scale(self) -> builtins.int:
|
238
261
|
"""
|
239
262
|
The minimum number of container instances running continuously.
|
240
263
|
"""
|
@@ -242,17 +265,17 @@ class GetContainerResult:
|
|
242
265
|
|
243
266
|
@property
|
244
267
|
@pulumi.getter
|
245
|
-
def name(self) -> Optional[str]:
|
268
|
+
def name(self) -> Optional[builtins.str]:
|
246
269
|
return pulumi.get(self, "name")
|
247
270
|
|
248
271
|
@property
|
249
272
|
@pulumi.getter(name="namespaceId")
|
250
|
-
def namespace_id(self) -> str:
|
273
|
+
def namespace_id(self) -> builtins.str:
|
251
274
|
return pulumi.get(self, "namespace_id")
|
252
275
|
|
253
276
|
@property
|
254
277
|
@pulumi.getter
|
255
|
-
def port(self) -> int:
|
278
|
+
def port(self) -> builtins.int:
|
256
279
|
"""
|
257
280
|
The port to expose the container.
|
258
281
|
"""
|
@@ -260,20 +283,25 @@ class GetContainerResult:
|
|
260
283
|
|
261
284
|
@property
|
262
285
|
@pulumi.getter
|
263
|
-
def privacy(self) -> str:
|
286
|
+
def privacy(self) -> builtins.str:
|
264
287
|
"""
|
265
288
|
The privacy type define the way to authenticate to your container. Refer to the [dedicated documentation](https://www.scaleway.com/en/developers/api/serverless-containers/#path-containers-update-an-existing-container) for more information.
|
266
289
|
"""
|
267
290
|
return pulumi.get(self, "privacy")
|
268
291
|
|
292
|
+
@property
|
293
|
+
@pulumi.getter(name="privateNetworkId")
|
294
|
+
def private_network_id(self) -> builtins.str:
|
295
|
+
return pulumi.get(self, "private_network_id")
|
296
|
+
|
269
297
|
@property
|
270
298
|
@pulumi.getter(name="projectId")
|
271
|
-
def project_id(self) -> Optional[str]:
|
299
|
+
def project_id(self) -> Optional[builtins.str]:
|
272
300
|
return pulumi.get(self, "project_id")
|
273
301
|
|
274
302
|
@property
|
275
303
|
@pulumi.getter
|
276
|
-
def protocol(self) -> str:
|
304
|
+
def protocol(self) -> builtins.str:
|
277
305
|
"""
|
278
306
|
The communication [protocol](https://www.scaleway.com/en/developers/api/serverless-containers/#path-containers-update-an-existing-container) `http1` or `h2c`. Defaults to `http1`.
|
279
307
|
"""
|
@@ -281,7 +309,7 @@ class GetContainerResult:
|
|
281
309
|
|
282
310
|
@property
|
283
311
|
@pulumi.getter
|
284
|
-
def region(self) -> Optional[str]:
|
312
|
+
def region(self) -> Optional[builtins.str]:
|
285
313
|
"""
|
286
314
|
(Defaults to provider `region`) The region in which the container was created.
|
287
315
|
"""
|
@@ -289,7 +317,7 @@ class GetContainerResult:
|
|
289
317
|
|
290
318
|
@property
|
291
319
|
@pulumi.getter(name="registryImage")
|
292
|
-
def registry_image(self) -> str:
|
320
|
+
def registry_image(self) -> builtins.str:
|
293
321
|
"""
|
294
322
|
The registry image address (e.g. `rg.fr-par.scw.cloud/$NAMESPACE/$IMAGE`).
|
295
323
|
"""
|
@@ -297,7 +325,7 @@ class GetContainerResult:
|
|
297
325
|
|
298
326
|
@property
|
299
327
|
@pulumi.getter(name="registrySha256")
|
300
|
-
def registry_sha256(self) -> str:
|
328
|
+
def registry_sha256(self) -> builtins.str:
|
301
329
|
"""
|
302
330
|
The sha256 of your source registry image, changing it will re-apply the deployment. Can be any string.
|
303
331
|
"""
|
@@ -305,7 +333,7 @@ class GetContainerResult:
|
|
305
333
|
|
306
334
|
@property
|
307
335
|
@pulumi.getter
|
308
|
-
def sandbox(self) -> str:
|
336
|
+
def sandbox(self) -> builtins.str:
|
309
337
|
"""
|
310
338
|
(Optional) Execution environment of the container.
|
311
339
|
"""
|
@@ -321,12 +349,12 @@ class GetContainerResult:
|
|
321
349
|
|
322
350
|
@property
|
323
351
|
@pulumi.getter(name="secretEnvironmentVariables")
|
324
|
-
def secret_environment_variables(self) -> Mapping[str, str]:
|
352
|
+
def secret_environment_variables(self) -> Mapping[str, builtins.str]:
|
325
353
|
return pulumi.get(self, "secret_environment_variables")
|
326
354
|
|
327
355
|
@property
|
328
356
|
@pulumi.getter
|
329
|
-
def status(self) -> str:
|
357
|
+
def status(self) -> builtins.str:
|
330
358
|
"""
|
331
359
|
The container status.
|
332
360
|
"""
|
@@ -334,7 +362,12 @@ class GetContainerResult:
|
|
334
362
|
|
335
363
|
@property
|
336
364
|
@pulumi.getter
|
337
|
-
def
|
365
|
+
def tags(self) -> Sequence[builtins.str]:
|
366
|
+
return pulumi.get(self, "tags")
|
367
|
+
|
368
|
+
@property
|
369
|
+
@pulumi.getter
|
370
|
+
def timeout(self) -> builtins.int:
|
338
371
|
"""
|
339
372
|
The maximum amount of time your container can spend processing a request before being stopped.
|
340
373
|
"""
|
@@ -347,6 +380,8 @@ class AwaitableGetContainerResult(GetContainerResult):
|
|
347
380
|
if False:
|
348
381
|
yield self
|
349
382
|
return GetContainerResult(
|
383
|
+
args=self.args,
|
384
|
+
commands=self.commands,
|
350
385
|
container_id=self.container_id,
|
351
386
|
cpu_limit=self.cpu_limit,
|
352
387
|
cron_status=self.cron_status,
|
@@ -367,6 +402,7 @@ class AwaitableGetContainerResult(GetContainerResult):
|
|
367
402
|
namespace_id=self.namespace_id,
|
368
403
|
port=self.port,
|
369
404
|
privacy=self.privacy,
|
405
|
+
private_network_id=self.private_network_id,
|
370
406
|
project_id=self.project_id,
|
371
407
|
protocol=self.protocol,
|
372
408
|
region=self.region,
|
@@ -376,14 +412,15 @@ class AwaitableGetContainerResult(GetContainerResult):
|
|
376
412
|
scaling_options=self.scaling_options,
|
377
413
|
secret_environment_variables=self.secret_environment_variables,
|
378
414
|
status=self.status,
|
415
|
+
tags=self.tags,
|
379
416
|
timeout=self.timeout)
|
380
417
|
|
381
418
|
|
382
|
-
def get_container(container_id: Optional[str] = None,
|
383
|
-
name: Optional[str] = None,
|
384
|
-
namespace_id: Optional[str] = None,
|
385
|
-
project_id: Optional[str] = None,
|
386
|
-
region: Optional[str] = None,
|
419
|
+
def get_container(container_id: Optional[builtins.str] = None,
|
420
|
+
name: Optional[builtins.str] = None,
|
421
|
+
namespace_id: Optional[builtins.str] = None,
|
422
|
+
project_id: Optional[builtins.str] = None,
|
423
|
+
region: Optional[builtins.str] = None,
|
387
424
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetContainerResult:
|
388
425
|
"""
|
389
426
|
The `containers.Container` data source is used to retrieve information about a Serverless Container.
|
@@ -429,7 +466,7 @@ def get_container(container_id: Optional[str] = None,
|
|
429
466
|
> **Important** Updating the `name` argument will recreate the container.
|
430
467
|
|
431
468
|
|
432
|
-
:param str region: (Defaults to provider `region`) The region in which the container was created.
|
469
|
+
:param builtins.str region: (Defaults to provider `region`) The region in which the container was created.
|
433
470
|
"""
|
434
471
|
pulumi.log.warn("""get_container is deprecated: scaleway.index/getcontainer.getContainer has been deprecated in favor of scaleway.containers/getcontainer.getContainer""")
|
435
472
|
__args__ = dict()
|
@@ -442,6 +479,8 @@ def get_container(container_id: Optional[str] = None,
|
|
442
479
|
__ret__ = pulumi.runtime.invoke('scaleway:index/getContainer:getContainer', __args__, opts=opts, typ=GetContainerResult).value
|
443
480
|
|
444
481
|
return AwaitableGetContainerResult(
|
482
|
+
args=pulumi.get(__ret__, 'args'),
|
483
|
+
commands=pulumi.get(__ret__, 'commands'),
|
445
484
|
container_id=pulumi.get(__ret__, 'container_id'),
|
446
485
|
cpu_limit=pulumi.get(__ret__, 'cpu_limit'),
|
447
486
|
cron_status=pulumi.get(__ret__, 'cron_status'),
|
@@ -462,6 +501,7 @@ def get_container(container_id: Optional[str] = None,
|
|
462
501
|
namespace_id=pulumi.get(__ret__, 'namespace_id'),
|
463
502
|
port=pulumi.get(__ret__, 'port'),
|
464
503
|
privacy=pulumi.get(__ret__, 'privacy'),
|
504
|
+
private_network_id=pulumi.get(__ret__, 'private_network_id'),
|
465
505
|
project_id=pulumi.get(__ret__, 'project_id'),
|
466
506
|
protocol=pulumi.get(__ret__, 'protocol'),
|
467
507
|
region=pulumi.get(__ret__, 'region'),
|
@@ -471,12 +511,13 @@ def get_container(container_id: Optional[str] = None,
|
|
471
511
|
scaling_options=pulumi.get(__ret__, 'scaling_options'),
|
472
512
|
secret_environment_variables=pulumi.get(__ret__, 'secret_environment_variables'),
|
473
513
|
status=pulumi.get(__ret__, 'status'),
|
514
|
+
tags=pulumi.get(__ret__, 'tags'),
|
474
515
|
timeout=pulumi.get(__ret__, 'timeout'))
|
475
|
-
def get_container_output(container_id: Optional[pulumi.Input[Optional[str]]] = None,
|
476
|
-
name: Optional[pulumi.Input[Optional[str]]] = None,
|
477
|
-
namespace_id: Optional[pulumi.Input[str]] = None,
|
478
|
-
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
479
|
-
region: Optional[pulumi.Input[Optional[str]]] = None,
|
516
|
+
def get_container_output(container_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
517
|
+
name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
518
|
+
namespace_id: Optional[pulumi.Input[builtins.str]] = None,
|
519
|
+
project_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
520
|
+
region: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
480
521
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetContainerResult]:
|
481
522
|
"""
|
482
523
|
The `containers.Container` data source is used to retrieve information about a Serverless Container.
|
@@ -522,7 +563,7 @@ def get_container_output(container_id: Optional[pulumi.Input[Optional[str]]] = N
|
|
522
563
|
> **Important** Updating the `name` argument will recreate the container.
|
523
564
|
|
524
565
|
|
525
|
-
:param str region: (Defaults to provider `region`) The region in which the container was created.
|
566
|
+
:param builtins.str region: (Defaults to provider `region`) The region in which the container was created.
|
526
567
|
"""
|
527
568
|
pulumi.log.warn("""get_container is deprecated: scaleway.index/getcontainer.getContainer has been deprecated in favor of scaleway.containers/getcontainer.getContainer""")
|
528
569
|
__args__ = dict()
|
@@ -534,6 +575,8 @@ def get_container_output(container_id: Optional[pulumi.Input[Optional[str]]] = N
|
|
534
575
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
535
576
|
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getContainer:getContainer', __args__, opts=opts, typ=GetContainerResult)
|
536
577
|
return __ret__.apply(lambda __response__: GetContainerResult(
|
578
|
+
args=pulumi.get(__response__, 'args'),
|
579
|
+
commands=pulumi.get(__response__, 'commands'),
|
537
580
|
container_id=pulumi.get(__response__, 'container_id'),
|
538
581
|
cpu_limit=pulumi.get(__response__, 'cpu_limit'),
|
539
582
|
cron_status=pulumi.get(__response__, 'cron_status'),
|
@@ -554,6 +597,7 @@ def get_container_output(container_id: Optional[pulumi.Input[Optional[str]]] = N
|
|
554
597
|
namespace_id=pulumi.get(__response__, 'namespace_id'),
|
555
598
|
port=pulumi.get(__response__, 'port'),
|
556
599
|
privacy=pulumi.get(__response__, 'privacy'),
|
600
|
+
private_network_id=pulumi.get(__response__, 'private_network_id'),
|
557
601
|
project_id=pulumi.get(__response__, 'project_id'),
|
558
602
|
protocol=pulumi.get(__response__, 'protocol'),
|
559
603
|
region=pulumi.get(__response__, 'region'),
|
@@ -563,4 +607,5 @@ def get_container_output(container_id: Optional[pulumi.Input[Optional[str]]] = N
|
|
563
607
|
scaling_options=pulumi.get(__response__, 'scaling_options'),
|
564
608
|
secret_environment_variables=pulumi.get(__response__, 'secret_environment_variables'),
|
565
609
|
status=pulumi.get(__response__, 'status'),
|
610
|
+
tags=pulumi.get(__response__, 'tags'),
|
566
611
|
timeout=pulumi.get(__response__, 'timeout')))
|
@@ -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
|
@@ -28,7 +29,10 @@ class GetContainerNamespaceResult:
|
|
28
29
|
"""
|
29
30
|
A collection of values returned by getContainerNamespace.
|
30
31
|
"""
|
31
|
-
def __init__(__self__, description=None, destroy_registry=None, environment_variables=None, id=None, name=None, namespace_id=None, organization_id=None, project_id=None, region=None, registry_endpoint=None, registry_namespace_id=None, secret_environment_variables=None, tags=None):
|
32
|
+
def __init__(__self__, activate_vpc_integration=None, description=None, destroy_registry=None, environment_variables=None, id=None, name=None, namespace_id=None, organization_id=None, project_id=None, region=None, registry_endpoint=None, registry_namespace_id=None, secret_environment_variables=None, tags=None):
|
33
|
+
if activate_vpc_integration and not isinstance(activate_vpc_integration, bool):
|
34
|
+
raise TypeError("Expected argument 'activate_vpc_integration' to be a bool")
|
35
|
+
pulumi.set(__self__, "activate_vpc_integration", activate_vpc_integration)
|
32
36
|
if description and not isinstance(description, str):
|
33
37
|
raise TypeError("Expected argument 'description' to be a str")
|
34
38
|
pulumi.set(__self__, "description", description)
|
@@ -69,9 +73,14 @@ class GetContainerNamespaceResult:
|
|
69
73
|
raise TypeError("Expected argument 'tags' to be a list")
|
70
74
|
pulumi.set(__self__, "tags", tags)
|
71
75
|
|
76
|
+
@property
|
77
|
+
@pulumi.getter(name="activateVpcIntegration")
|
78
|
+
def activate_vpc_integration(self) -> builtins.bool:
|
79
|
+
return pulumi.get(self, "activate_vpc_integration")
|
80
|
+
|
72
81
|
@property
|
73
82
|
@pulumi.getter
|
74
|
-
def description(self) -> str:
|
83
|
+
def description(self) -> builtins.str:
|
75
84
|
"""
|
76
85
|
The description of the namespace.
|
77
86
|
"""
|
@@ -79,12 +88,12 @@ class GetContainerNamespaceResult:
|
|
79
88
|
|
80
89
|
@property
|
81
90
|
@pulumi.getter(name="destroyRegistry")
|
82
|
-
def destroy_registry(self) -> bool:
|
91
|
+
def destroy_registry(self) -> builtins.bool:
|
83
92
|
return pulumi.get(self, "destroy_registry")
|
84
93
|
|
85
94
|
@property
|
86
95
|
@pulumi.getter(name="environmentVariables")
|
87
|
-
def environment_variables(self) -> Mapping[str, str]:
|
96
|
+
def environment_variables(self) -> Mapping[str, builtins.str]:
|
88
97
|
"""
|
89
98
|
The environment variables of the namespace.
|
90
99
|
"""
|
@@ -92,7 +101,7 @@ class GetContainerNamespaceResult:
|
|
92
101
|
|
93
102
|
@property
|
94
103
|
@pulumi.getter
|
95
|
-
def id(self) -> str:
|
104
|
+
def id(self) -> builtins.str:
|
96
105
|
"""
|
97
106
|
The provider-assigned unique ID for this managed resource.
|
98
107
|
"""
|
@@ -100,17 +109,17 @@ class GetContainerNamespaceResult:
|
|
100
109
|
|
101
110
|
@property
|
102
111
|
@pulumi.getter
|
103
|
-
def name(self) -> Optional[str]:
|
112
|
+
def name(self) -> Optional[builtins.str]:
|
104
113
|
return pulumi.get(self, "name")
|
105
114
|
|
106
115
|
@property
|
107
116
|
@pulumi.getter(name="namespaceId")
|
108
|
-
def namespace_id(self) -> Optional[str]:
|
117
|
+
def namespace_id(self) -> Optional[builtins.str]:
|
109
118
|
return pulumi.get(self, "namespace_id")
|
110
119
|
|
111
120
|
@property
|
112
121
|
@pulumi.getter(name="organizationId")
|
113
|
-
def organization_id(self) -> str:
|
122
|
+
def organization_id(self) -> builtins.str:
|
114
123
|
"""
|
115
124
|
The unique identifier of the organization with which the namespace is associated.
|
116
125
|
"""
|
@@ -118,17 +127,17 @@ class GetContainerNamespaceResult:
|
|
118
127
|
|
119
128
|
@property
|
120
129
|
@pulumi.getter(name="projectId")
|
121
|
-
def project_id(self) -> Optional[str]:
|
130
|
+
def project_id(self) -> Optional[builtins.str]:
|
122
131
|
return pulumi.get(self, "project_id")
|
123
132
|
|
124
133
|
@property
|
125
134
|
@pulumi.getter
|
126
|
-
def region(self) -> Optional[str]:
|
135
|
+
def region(self) -> Optional[builtins.str]:
|
127
136
|
return pulumi.get(self, "region")
|
128
137
|
|
129
138
|
@property
|
130
139
|
@pulumi.getter(name="registryEndpoint")
|
131
|
-
def registry_endpoint(self) -> str:
|
140
|
+
def registry_endpoint(self) -> builtins.str:
|
132
141
|
"""
|
133
142
|
The registry endpoint of the namespace.
|
134
143
|
"""
|
@@ -136,7 +145,7 @@ class GetContainerNamespaceResult:
|
|
136
145
|
|
137
146
|
@property
|
138
147
|
@pulumi.getter(name="registryNamespaceId")
|
139
|
-
def registry_namespace_id(self) -> str:
|
148
|
+
def registry_namespace_id(self) -> builtins.str:
|
140
149
|
"""
|
141
150
|
The unique identifier of the registry namespace of the Serverless Containers namespace.
|
142
151
|
"""
|
@@ -144,12 +153,12 @@ class GetContainerNamespaceResult:
|
|
144
153
|
|
145
154
|
@property
|
146
155
|
@pulumi.getter(name="secretEnvironmentVariables")
|
147
|
-
def secret_environment_variables(self) -> Mapping[str, str]:
|
156
|
+
def secret_environment_variables(self) -> Mapping[str, builtins.str]:
|
148
157
|
return pulumi.get(self, "secret_environment_variables")
|
149
158
|
|
150
159
|
@property
|
151
160
|
@pulumi.getter
|
152
|
-
def tags(self) -> Sequence[str]:
|
161
|
+
def tags(self) -> Sequence[builtins.str]:
|
153
162
|
return pulumi.get(self, "tags")
|
154
163
|
|
155
164
|
|
@@ -159,6 +168,7 @@ class AwaitableGetContainerNamespaceResult(GetContainerNamespaceResult):
|
|
159
168
|
if False:
|
160
169
|
yield self
|
161
170
|
return GetContainerNamespaceResult(
|
171
|
+
activate_vpc_integration=self.activate_vpc_integration,
|
162
172
|
description=self.description,
|
163
173
|
destroy_registry=self.destroy_registry,
|
164
174
|
environment_variables=self.environment_variables,
|
@@ -174,10 +184,10 @@ class AwaitableGetContainerNamespaceResult(GetContainerNamespaceResult):
|
|
174
184
|
tags=self.tags)
|
175
185
|
|
176
186
|
|
177
|
-
def get_container_namespace(name: Optional[str] = None,
|
178
|
-
namespace_id: Optional[str] = None,
|
179
|
-
project_id: Optional[str] = None,
|
180
|
-
region: Optional[str] = None,
|
187
|
+
def get_container_namespace(name: Optional[builtins.str] = None,
|
188
|
+
namespace_id: Optional[builtins.str] = None,
|
189
|
+
project_id: Optional[builtins.str] = None,
|
190
|
+
region: Optional[builtins.str] = None,
|
181
191
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetContainerNamespaceResult:
|
182
192
|
"""
|
183
193
|
The `containers.Namespace` data source is used to retrieve information about a Serverless Containers namespace.
|
@@ -202,10 +212,10 @@ def get_container_namespace(name: Optional[str] = None,
|
|
202
212
|
```
|
203
213
|
|
204
214
|
|
205
|
-
:param str name: The name of the namespace. Only one of `name` and `namespace_id` should be specified.
|
206
|
-
:param str namespace_id: The unique identifier of the namespace. Only one of `name` and `namespace_id` should be specified.
|
207
|
-
:param str project_id: `project_id`) The unique identifier of the project with which the namespace is associated.
|
208
|
-
:param str region: `region`) The region in which the namespace exists.
|
215
|
+
:param builtins.str name: The name of the namespace. Only one of `name` and `namespace_id` should be specified.
|
216
|
+
:param builtins.str namespace_id: The unique identifier of the namespace. Only one of `name` and `namespace_id` should be specified.
|
217
|
+
:param builtins.str project_id: `project_id`) The unique identifier of the project with which the namespace is associated.
|
218
|
+
:param builtins.str region: `region`) The region in which the namespace exists.
|
209
219
|
"""
|
210
220
|
pulumi.log.warn("""get_container_namespace is deprecated: scaleway.index/getcontainernamespace.getContainerNamespace has been deprecated in favor of scaleway.containers/getnamespace.getNamespace""")
|
211
221
|
__args__ = dict()
|
@@ -217,6 +227,7 @@ def get_container_namespace(name: Optional[str] = None,
|
|
217
227
|
__ret__ = pulumi.runtime.invoke('scaleway:index/getContainerNamespace:getContainerNamespace', __args__, opts=opts, typ=GetContainerNamespaceResult).value
|
218
228
|
|
219
229
|
return AwaitableGetContainerNamespaceResult(
|
230
|
+
activate_vpc_integration=pulumi.get(__ret__, 'activate_vpc_integration'),
|
220
231
|
description=pulumi.get(__ret__, 'description'),
|
221
232
|
destroy_registry=pulumi.get(__ret__, 'destroy_registry'),
|
222
233
|
environment_variables=pulumi.get(__ret__, 'environment_variables'),
|
@@ -230,10 +241,10 @@ def get_container_namespace(name: Optional[str] = None,
|
|
230
241
|
registry_namespace_id=pulumi.get(__ret__, 'registry_namespace_id'),
|
231
242
|
secret_environment_variables=pulumi.get(__ret__, 'secret_environment_variables'),
|
232
243
|
tags=pulumi.get(__ret__, 'tags'))
|
233
|
-
def get_container_namespace_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
234
|
-
namespace_id: Optional[pulumi.Input[Optional[str]]] = None,
|
235
|
-
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
236
|
-
region: Optional[pulumi.Input[Optional[str]]] = None,
|
244
|
+
def get_container_namespace_output(name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
245
|
+
namespace_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
246
|
+
project_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
247
|
+
region: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
237
248
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetContainerNamespaceResult]:
|
238
249
|
"""
|
239
250
|
The `containers.Namespace` data source is used to retrieve information about a Serverless Containers namespace.
|
@@ -258,10 +269,10 @@ def get_container_namespace_output(name: Optional[pulumi.Input[Optional[str]]] =
|
|
258
269
|
```
|
259
270
|
|
260
271
|
|
261
|
-
:param str name: The name of the namespace. Only one of `name` and `namespace_id` should be specified.
|
262
|
-
:param str namespace_id: The unique identifier of the namespace. Only one of `name` and `namespace_id` should be specified.
|
263
|
-
:param str project_id: `project_id`) The unique identifier of the project with which the namespace is associated.
|
264
|
-
:param str region: `region`) The region in which the namespace exists.
|
272
|
+
:param builtins.str name: The name of the namespace. Only one of `name` and `namespace_id` should be specified.
|
273
|
+
:param builtins.str namespace_id: The unique identifier of the namespace. Only one of `name` and `namespace_id` should be specified.
|
274
|
+
:param builtins.str project_id: `project_id`) The unique identifier of the project with which the namespace is associated.
|
275
|
+
:param builtins.str region: `region`) The region in which the namespace exists.
|
265
276
|
"""
|
266
277
|
pulumi.log.warn("""get_container_namespace is deprecated: scaleway.index/getcontainernamespace.getContainerNamespace has been deprecated in favor of scaleway.containers/getnamespace.getNamespace""")
|
267
278
|
__args__ = dict()
|
@@ -272,6 +283,7 @@ def get_container_namespace_output(name: Optional[pulumi.Input[Optional[str]]] =
|
|
272
283
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
273
284
|
__ret__ = pulumi.runtime.invoke_output('scaleway:index/getContainerNamespace:getContainerNamespace', __args__, opts=opts, typ=GetContainerNamespaceResult)
|
274
285
|
return __ret__.apply(lambda __response__: GetContainerNamespaceResult(
|
286
|
+
activate_vpc_integration=pulumi.get(__response__, 'activate_vpc_integration'),
|
275
287
|
description=pulumi.get(__response__, 'description'),
|
276
288
|
destroy_registry=pulumi.get(__response__, 'destroy_registry'),
|
277
289
|
environment_variables=pulumi.get(__response__, 'environment_variables'),
|