pulumiverse-scaleway 1.30.0a1750140900__py3-none-any.whl → 1.30.0a1752168858__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumiverse_scaleway/__init__.py +11 -1
- pulumiverse_scaleway/_inputs.py +2252 -2143
- pulumiverse_scaleway/_utilities.py +1 -1
- pulumiverse_scaleway/account/__init__.py +2 -1
- pulumiverse_scaleway/account/get_availability_zones.py +9 -8
- pulumiverse_scaleway/account/get_project.py +21 -20
- pulumiverse_scaleway/account/get_projects.py +28 -21
- pulumiverse_scaleway/account/get_ssh_key.py +24 -23
- pulumiverse_scaleway/account/outputs.py +20 -19
- pulumiverse_scaleway/account/project.py +59 -57
- pulumiverse_scaleway/account/ssh_key.py +87 -85
- pulumiverse_scaleway/account_project.py +59 -57
- pulumiverse_scaleway/account_ssh_key.py +87 -85
- pulumiverse_scaleway/apple_silicon_server.py +204 -155
- pulumiverse_scaleway/applesilicon/__init__.py +2 -1
- pulumiverse_scaleway/applesilicon/_inputs.py +89 -34
- pulumiverse_scaleway/applesilicon/outputs.py +54 -21
- pulumiverse_scaleway/applesilicon/server.py +204 -155
- pulumiverse_scaleway/baremetal_server.py +262 -260
- pulumiverse_scaleway/billing/__init__.py +2 -1
- pulumiverse_scaleway/billing/get_consumptions.py +10 -9
- pulumiverse_scaleway/billing/get_invoices.py +19 -18
- pulumiverse_scaleway/billing/outputs.py +73 -72
- pulumiverse_scaleway/block/__init__.py +2 -1
- pulumiverse_scaleway/block/_inputs.py +12 -11
- pulumiverse_scaleway/block/get_snapshot.py +29 -28
- pulumiverse_scaleway/block/get_volume.py +28 -27
- pulumiverse_scaleway/block/outputs.py +14 -13
- pulumiverse_scaleway/block/snapshot.py +73 -71
- pulumiverse_scaleway/block/volume.py +115 -113
- pulumiverse_scaleway/block_snapshot.py +73 -71
- pulumiverse_scaleway/block_volume.py +115 -113
- pulumiverse_scaleway/cockpit.py +38 -36
- pulumiverse_scaleway/cockpit_alert_manager.py +52 -50
- pulumiverse_scaleway/cockpit_grafana_user.py +59 -57
- pulumiverse_scaleway/cockpit_source.py +115 -113
- pulumiverse_scaleway/cockpit_token.py +66 -64
- pulumiverse_scaleway/config/__init__.py +2 -1
- pulumiverse_scaleway/config/__init__.pyi +2 -1
- pulumiverse_scaleway/config/vars.py +2 -1
- pulumiverse_scaleway/container.py +573 -343
- pulumiverse_scaleway/container_cron.py +80 -78
- pulumiverse_scaleway/container_domain.py +52 -50
- pulumiverse_scaleway/container_namespace.py +211 -140
- pulumiverse_scaleway/container_token.py +80 -78
- pulumiverse_scaleway/container_trigger.py +59 -57
- pulumiverse_scaleway/containers/__init__.py +2 -1
- pulumiverse_scaleway/containers/_inputs.py +72 -71
- pulumiverse_scaleway/containers/container.py +573 -343
- pulumiverse_scaleway/containers/cron.py +80 -78
- pulumiverse_scaleway/containers/domain.py +52 -50
- pulumiverse_scaleway/containers/get_container.py +87 -42
- pulumiverse_scaleway/containers/get_namespace.py +43 -31
- pulumiverse_scaleway/containers/namespace.py +211 -140
- pulumiverse_scaleway/containers/outputs.py +62 -61
- pulumiverse_scaleway/containers/token.py +80 -78
- pulumiverse_scaleway/containers/trigger.py +59 -57
- pulumiverse_scaleway/database.py +66 -64
- pulumiverse_scaleway/database_acl.py +31 -29
- pulumiverse_scaleway/database_backup.py +101 -99
- pulumiverse_scaleway/database_instance.py +297 -295
- pulumiverse_scaleway/database_privilege.py +73 -71
- pulumiverse_scaleway/database_read_replica.py +45 -43
- pulumiverse_scaleway/database_user.py +73 -71
- pulumiverse_scaleway/databases/__init__.py +2 -1
- pulumiverse_scaleway/databases/_inputs.py +191 -190
- pulumiverse_scaleway/databases/acl.py +31 -29
- pulumiverse_scaleway/databases/database.py +66 -64
- pulumiverse_scaleway/databases/database_backup.py +101 -99
- pulumiverse_scaleway/databases/get_acl.py +13 -12
- pulumiverse_scaleway/databases/get_database.py +19 -18
- pulumiverse_scaleway/databases/get_database_backup.py +34 -33
- pulumiverse_scaleway/databases/get_instance.py +43 -42
- pulumiverse_scaleway/databases/get_privilege.py +24 -23
- pulumiverse_scaleway/databases/instance.py +297 -295
- pulumiverse_scaleway/databases/outputs.py +188 -187
- pulumiverse_scaleway/databases/privilege.py +73 -71
- pulumiverse_scaleway/databases/read_replica.py +45 -43
- pulumiverse_scaleway/databases/serverless_database.py +80 -78
- pulumiverse_scaleway/databases/snapshot.py +101 -99
- pulumiverse_scaleway/databases/user.py +73 -71
- pulumiverse_scaleway/domain/__init__.py +2 -1
- pulumiverse_scaleway/domain/_inputs.py +531 -530
- pulumiverse_scaleway/domain/get_record.py +38 -37
- pulumiverse_scaleway/domain/get_zone.py +24 -23
- pulumiverse_scaleway/domain/outputs.py +358 -357
- pulumiverse_scaleway/domain/record.py +129 -127
- pulumiverse_scaleway/domain/registration.py +94 -92
- pulumiverse_scaleway/domain/zone.py +87 -85
- pulumiverse_scaleway/domain_record.py +129 -127
- pulumiverse_scaleway/domain_zone.py +87 -85
- pulumiverse_scaleway/edge_services_backend_stage.py +45 -43
- pulumiverse_scaleway/edge_services_cache_stage.py +115 -113
- pulumiverse_scaleway/edge_services_dns_stage.py +108 -106
- pulumiverse_scaleway/edge_services_head_stage.py +31 -29
- pulumiverse_scaleway/edge_services_pipeline.py +66 -64
- pulumiverse_scaleway/edge_services_plan.py +31 -29
- pulumiverse_scaleway/edge_services_route_stage.py +59 -57
- pulumiverse_scaleway/edge_services_tls_stage.py +122 -120
- pulumiverse_scaleway/edge_services_waf_stage.py +87 -85
- pulumiverse_scaleway/elasticmetal/__init__.py +2 -1
- pulumiverse_scaleway/elasticmetal/_inputs.py +123 -122
- pulumiverse_scaleway/elasticmetal/get_ip.py +56 -39
- pulumiverse_scaleway/elasticmetal/get_ips.py +24 -23
- pulumiverse_scaleway/elasticmetal/get_offer.py +29 -28
- pulumiverse_scaleway/elasticmetal/get_option.py +19 -18
- pulumiverse_scaleway/elasticmetal/get_os.py +23 -22
- pulumiverse_scaleway/elasticmetal/get_partition_schema.py +29 -28
- pulumiverse_scaleway/elasticmetal/get_server.py +39 -38
- pulumiverse_scaleway/elasticmetal/ip.py +139 -137
- pulumiverse_scaleway/elasticmetal/ip_mac_address.py +87 -85
- pulumiverse_scaleway/elasticmetal/outputs.py +233 -232
- pulumiverse_scaleway/elasticmetal/server.py +262 -260
- pulumiverse_scaleway/file_filesystem.py +552 -0
- pulumiverse_scaleway/flexible_ip.py +139 -137
- pulumiverse_scaleway/flexible_ip_mac_address.py +87 -85
- pulumiverse_scaleway/function.py +394 -284
- pulumiverse_scaleway/function_cron.py +80 -78
- pulumiverse_scaleway/function_domain.py +52 -50
- pulumiverse_scaleway/function_namespace.py +197 -126
- pulumiverse_scaleway/function_token.py +80 -78
- pulumiverse_scaleway/function_trigger.py +59 -57
- pulumiverse_scaleway/functions/__init__.py +2 -1
- pulumiverse_scaleway/functions/_inputs.py +42 -41
- pulumiverse_scaleway/functions/cron.py +80 -78
- pulumiverse_scaleway/functions/domain.py +52 -50
- pulumiverse_scaleway/functions/function.py +394 -284
- pulumiverse_scaleway/functions/get_function.py +69 -46
- pulumiverse_scaleway/functions/get_namespace.py +42 -30
- pulumiverse_scaleway/functions/namespace.py +197 -126
- pulumiverse_scaleway/functions/outputs.py +26 -25
- pulumiverse_scaleway/functions/token.py +80 -78
- pulumiverse_scaleway/functions/trigger.py +59 -57
- pulumiverse_scaleway/get_account_project.py +21 -20
- pulumiverse_scaleway/get_account_ssh_key.py +24 -23
- pulumiverse_scaleway/get_availability_zones.py +9 -8
- pulumiverse_scaleway/get_baremetal_offer.py +29 -28
- pulumiverse_scaleway/get_baremetal_option.py +19 -18
- pulumiverse_scaleway/get_baremetal_os.py +23 -22
- pulumiverse_scaleway/get_baremetal_server.py +39 -38
- pulumiverse_scaleway/get_billing_consumptions.py +10 -9
- pulumiverse_scaleway/get_billing_invoices.py +19 -18
- pulumiverse_scaleway/get_block_snapshot.py +29 -28
- pulumiverse_scaleway/get_block_volume.py +28 -27
- pulumiverse_scaleway/get_cockpit.py +10 -9
- pulumiverse_scaleway/get_cockpit_source.py +33 -32
- pulumiverse_scaleway/get_config.py +13 -12
- pulumiverse_scaleway/get_container.py +87 -42
- pulumiverse_scaleway/get_container_namespace.py +43 -31
- pulumiverse_scaleway/get_database.py +19 -18
- pulumiverse_scaleway/get_database_acl.py +13 -12
- pulumiverse_scaleway/get_database_backup.py +34 -33
- pulumiverse_scaleway/get_database_instance.py +43 -42
- pulumiverse_scaleway/get_database_privilege.py +24 -23
- pulumiverse_scaleway/get_domain_record.py +38 -37
- pulumiverse_scaleway/get_domain_zone.py +24 -23
- pulumiverse_scaleway/get_flexible_ip.py +56 -39
- pulumiverse_scaleway/get_flexible_ips.py +24 -23
- pulumiverse_scaleway/get_function.py +69 -46
- pulumiverse_scaleway/get_function_namespace.py +42 -30
- pulumiverse_scaleway/get_iam_api_key.py +17 -16
- pulumiverse_scaleway/get_iam_application.py +23 -22
- pulumiverse_scaleway/get_iam_group.py +25 -24
- pulumiverse_scaleway/get_iam_ssh_key.py +24 -23
- pulumiverse_scaleway/get_iam_user.py +23 -22
- pulumiverse_scaleway/get_instance_image.py +42 -41
- pulumiverse_scaleway/get_instance_ip.py +20 -19
- pulumiverse_scaleway/get_instance_placement_group.py +28 -27
- pulumiverse_scaleway/get_instance_private_nic.py +31 -30
- pulumiverse_scaleway/get_instance_security_group.py +31 -30
- pulumiverse_scaleway/get_instance_server.py +59 -47
- pulumiverse_scaleway/get_instance_servers.py +24 -23
- pulumiverse_scaleway/get_instance_snapshot.py +29 -28
- pulumiverse_scaleway/get_instance_volume.py +30 -29
- pulumiverse_scaleway/get_iot_device.py +31 -30
- pulumiverse_scaleway/get_iot_hub.py +39 -38
- pulumiverse_scaleway/get_ipam_ip.py +51 -50
- pulumiverse_scaleway/get_ipam_ips.py +44 -43
- pulumiverse_scaleway/get_k8s_version.py +16 -15
- pulumiverse_scaleway/get_kubernetes_cluster.py +39 -38
- pulumiverse_scaleway/get_kubernetes_node_pool.py +47 -46
- pulumiverse_scaleway/get_lb_acls.py +22 -21
- pulumiverse_scaleway/get_lb_backend.py +43 -42
- pulumiverse_scaleway/get_lb_backends.py +22 -21
- pulumiverse_scaleway/get_lb_frontend.py +26 -25
- pulumiverse_scaleway/get_lb_frontends.py +22 -21
- pulumiverse_scaleway/get_lb_ips.py +29 -28
- pulumiverse_scaleway/get_lb_route.py +16 -15
- pulumiverse_scaleway/get_lb_routes.py +17 -16
- pulumiverse_scaleway/get_lbs.py +24 -23
- pulumiverse_scaleway/get_loadbalancer.py +36 -35
- pulumiverse_scaleway/get_loadbalancer_certificate.py +24 -23
- pulumiverse_scaleway/get_loadbalancer_ip.py +29 -28
- pulumiverse_scaleway/get_marketplace_image.py +23 -22
- pulumiverse_scaleway/get_mnq_sns.py +14 -13
- pulumiverse_scaleway/get_mnq_sqs.py +14 -13
- pulumiverse_scaleway/get_mongo_db_instance.py +35 -34
- pulumiverse_scaleway/get_object_bucket.py +22 -21
- pulumiverse_scaleway/get_object_bucket_policy.py +17 -16
- pulumiverse_scaleway/get_redis_cluster.py +34 -33
- pulumiverse_scaleway/get_registry_image.py +37 -36
- pulumiverse_scaleway/get_registry_image_tag.py +33 -32
- pulumiverse_scaleway/get_registry_namespace.py +27 -26
- pulumiverse_scaleway/get_secret.py +41 -40
- pulumiverse_scaleway/get_secret_version.py +34 -33
- pulumiverse_scaleway/get_tem_domain.py +43 -42
- pulumiverse_scaleway/get_vpc.py +35 -34
- pulumiverse_scaleway/get_vpc_gateway_network.py +28 -27
- pulumiverse_scaleway/get_vpc_private_network.py +32 -31
- pulumiverse_scaleway/get_vpc_public_gateway.py +36 -35
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +24 -23
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +33 -32
- pulumiverse_scaleway/get_vpc_public_gateway_ip.py +14 -13
- pulumiverse_scaleway/get_vpc_public_pat_rule.py +21 -20
- pulumiverse_scaleway/get_vpc_routes.py +38 -37
- pulumiverse_scaleway/get_vpcs.py +24 -23
- pulumiverse_scaleway/get_web_host_offer.py +25 -24
- pulumiverse_scaleway/get_webhosting.py +36 -35
- pulumiverse_scaleway/hosting/__init__.py +2 -1
- pulumiverse_scaleway/hosting/_inputs.py +61 -60
- pulumiverse_scaleway/hosting/get_hosting.py +36 -35
- pulumiverse_scaleway/hosting/get_offer.py +25 -24
- pulumiverse_scaleway/hosting/hosting.py +164 -162
- pulumiverse_scaleway/hosting/outputs.py +139 -138
- pulumiverse_scaleway/iam/__init__.py +2 -1
- pulumiverse_scaleway/iam/_inputs.py +22 -21
- pulumiverse_scaleway/iam/api_key.py +115 -113
- pulumiverse_scaleway/iam/application.py +80 -78
- pulumiverse_scaleway/iam/get_api_key.py +17 -16
- pulumiverse_scaleway/iam/get_application.py +23 -22
- pulumiverse_scaleway/iam/get_group.py +25 -24
- pulumiverse_scaleway/iam/get_ssh_key.py +24 -23
- pulumiverse_scaleway/iam/get_user.py +23 -22
- pulumiverse_scaleway/iam/group.py +115 -113
- pulumiverse_scaleway/iam/group_membership.py +45 -43
- pulumiverse_scaleway/iam/outputs.py +14 -13
- pulumiverse_scaleway/iam/policy.py +136 -134
- pulumiverse_scaleway/iam/ssh_key.py +87 -85
- pulumiverse_scaleway/iam/user.py +284 -273
- pulumiverse_scaleway/iam_api_key.py +115 -113
- pulumiverse_scaleway/iam_application.py +80 -78
- pulumiverse_scaleway/iam_group.py +115 -113
- pulumiverse_scaleway/iam_group_membership.py +45 -43
- pulumiverse_scaleway/iam_policy.py +136 -134
- pulumiverse_scaleway/iam_ssh_key.py +87 -85
- pulumiverse_scaleway/iam_user.py +284 -273
- pulumiverse_scaleway/inference/__init__.py +2 -1
- pulumiverse_scaleway/inference/_inputs.py +116 -61
- pulumiverse_scaleway/inference/deployment.py +225 -176
- pulumiverse_scaleway/inference/get_model.py +27 -26
- pulumiverse_scaleway/inference/model.py +129 -127
- pulumiverse_scaleway/inference/outputs.py +82 -49
- pulumiverse_scaleway/inference_deployment.py +225 -176
- pulumiverse_scaleway/instance/__init__.py +2 -1
- pulumiverse_scaleway/instance/_inputs.py +296 -295
- pulumiverse_scaleway/instance/get_image.py +42 -41
- pulumiverse_scaleway/instance/get_ip.py +20 -19
- pulumiverse_scaleway/instance/get_placement_group.py +28 -27
- pulumiverse_scaleway/instance/get_private_nic.py +31 -30
- pulumiverse_scaleway/instance/get_security_group.py +31 -30
- pulumiverse_scaleway/instance/get_server.py +59 -47
- pulumiverse_scaleway/instance/get_servers.py +24 -23
- pulumiverse_scaleway/instance/get_snapshot.py +29 -28
- pulumiverse_scaleway/instance/get_volume.py +30 -29
- pulumiverse_scaleway/instance/image.py +150 -148
- pulumiverse_scaleway/instance/ip.py +94 -92
- pulumiverse_scaleway/instance/ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/instance/outputs.py +349 -348
- pulumiverse_scaleway/instance/placement_group.py +101 -99
- pulumiverse_scaleway/instance/private_nic.py +94 -92
- pulumiverse_scaleway/instance/security_group.py +150 -148
- pulumiverse_scaleway/instance/security_group_rules.py +17 -15
- pulumiverse_scaleway/instance/server.py +393 -330
- pulumiverse_scaleway/instance/snapshot.py +108 -106
- pulumiverse_scaleway/instance/user_data.py +59 -57
- pulumiverse_scaleway/instance/volume.py +129 -127
- pulumiverse_scaleway/instance_image.py +150 -148
- pulumiverse_scaleway/instance_ip.py +94 -92
- pulumiverse_scaleway/instance_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/instance_placement_group.py +101 -99
- pulumiverse_scaleway/instance_private_nic.py +94 -92
- pulumiverse_scaleway/instance_security_group.py +150 -148
- pulumiverse_scaleway/instance_security_group_rules.py +17 -15
- pulumiverse_scaleway/instance_server.py +393 -330
- pulumiverse_scaleway/instance_snapshot.py +108 -106
- pulumiverse_scaleway/instance_user_data.py +59 -57
- pulumiverse_scaleway/instance_volume.py +129 -127
- pulumiverse_scaleway/iot/__init__.py +2 -1
- pulumiverse_scaleway/iot/_inputs.py +98 -97
- pulumiverse_scaleway/iot/device.py +122 -120
- pulumiverse_scaleway/iot/get_device.py +31 -30
- pulumiverse_scaleway/iot/get_hub.py +39 -38
- pulumiverse_scaleway/iot/hub.py +206 -204
- pulumiverse_scaleway/iot/network.py +94 -92
- pulumiverse_scaleway/iot/outputs.py +78 -77
- pulumiverse_scaleway/iot/route.py +66 -64
- pulumiverse_scaleway/iot_device.py +122 -120
- pulumiverse_scaleway/iot_hub.py +206 -204
- pulumiverse_scaleway/iot_network.py +94 -92
- pulumiverse_scaleway/iot_route.py +66 -64
- pulumiverse_scaleway/ipam/__init__.py +2 -1
- pulumiverse_scaleway/ipam/_inputs.py +87 -86
- pulumiverse_scaleway/ipam/get_ip.py +51 -50
- pulumiverse_scaleway/ipam/get_ips.py +44 -43
- pulumiverse_scaleway/ipam/ip.py +94 -92
- pulumiverse_scaleway/ipam/ip_reverse_dns.py +59 -57
- pulumiverse_scaleway/ipam/outputs.py +90 -89
- pulumiverse_scaleway/ipam_ip.py +94 -92
- pulumiverse_scaleway/ipam_ip_reverse_dns.py +59 -57
- pulumiverse_scaleway/job/__init__.py +2 -1
- pulumiverse_scaleway/job/_inputs.py +38 -37
- pulumiverse_scaleway/job/definition.py +143 -141
- pulumiverse_scaleway/job/outputs.py +24 -23
- pulumiverse_scaleway/job_definition.py +143 -141
- pulumiverse_scaleway/kubernetes/__init__.py +2 -1
- pulumiverse_scaleway/kubernetes/_inputs.py +190 -189
- pulumiverse_scaleway/kubernetes/acl.py +45 -43
- pulumiverse_scaleway/kubernetes/cluster.py +234 -232
- pulumiverse_scaleway/kubernetes/get_cluster.py +39 -38
- pulumiverse_scaleway/kubernetes/get_pool.py +47 -46
- pulumiverse_scaleway/kubernetes/get_version.py +16 -15
- pulumiverse_scaleway/kubernetes/outputs.py +217 -216
- pulumiverse_scaleway/kubernetes/pool.py +290 -288
- pulumiverse_scaleway/kubernetes_cluster.py +234 -232
- pulumiverse_scaleway/kubernetes_node_pool.py +290 -288
- pulumiverse_scaleway/loadbalancer.py +199 -197
- pulumiverse_scaleway/loadbalancer_acl.py +73 -71
- pulumiverse_scaleway/loadbalancer_backend.py +381 -379
- pulumiverse_scaleway/loadbalancer_certificate.py +73 -71
- pulumiverse_scaleway/loadbalancer_frontend.py +136 -134
- pulumiverse_scaleway/loadbalancer_ip.py +101 -99
- pulumiverse_scaleway/loadbalancer_route.py +101 -99
- pulumiverse_scaleway/loadbalancers/__init__.py +2 -1
- pulumiverse_scaleway/loadbalancers/_inputs.py +214 -213
- pulumiverse_scaleway/loadbalancers/acl.py +73 -71
- pulumiverse_scaleway/loadbalancers/backend.py +381 -379
- pulumiverse_scaleway/loadbalancers/certificate.py +73 -71
- pulumiverse_scaleway/loadbalancers/frontend.py +136 -134
- pulumiverse_scaleway/loadbalancers/get_acls.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_backend.py +43 -42
- pulumiverse_scaleway/loadbalancers/get_backends.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_certificate.py +24 -23
- pulumiverse_scaleway/loadbalancers/get_frontend.py +26 -25
- pulumiverse_scaleway/loadbalancers/get_frontends.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_ip.py +29 -28
- pulumiverse_scaleway/loadbalancers/get_ips.py +29 -28
- pulumiverse_scaleway/loadbalancers/get_load_balancer.py +36 -35
- pulumiverse_scaleway/loadbalancers/get_load_balancers.py +24 -23
- pulumiverse_scaleway/loadbalancers/get_route.py +16 -15
- pulumiverse_scaleway/loadbalancers/get_routes.py +17 -16
- pulumiverse_scaleway/loadbalancers/ip.py +101 -99
- pulumiverse_scaleway/loadbalancers/load_balancer.py +199 -197
- pulumiverse_scaleway/loadbalancers/outputs.py +525 -524
- pulumiverse_scaleway/loadbalancers/route.py +101 -99
- pulumiverse_scaleway/mnq/__init__.py +2 -1
- pulumiverse_scaleway/mnq/_inputs.py +32 -31
- pulumiverse_scaleway/mnq/get_sns.py +14 -13
- pulumiverse_scaleway/mnq/get_sqs.py +14 -13
- pulumiverse_scaleway/mnq/nats_account.py +52 -50
- pulumiverse_scaleway/mnq/nats_credentials.py +52 -50
- pulumiverse_scaleway/mnq/outputs.py +20 -19
- pulumiverse_scaleway/mnq/sns.py +38 -36
- pulumiverse_scaleway/mnq/sns_credentials.py +59 -57
- pulumiverse_scaleway/mnq/sns_topic.py +143 -141
- pulumiverse_scaleway/mnq/sns_topic_subscription.py +150 -148
- pulumiverse_scaleway/mnq/sqs.py +38 -36
- pulumiverse_scaleway/mnq/sqs_credentials.py +59 -57
- pulumiverse_scaleway/mnq/sqs_queue.py +192 -190
- pulumiverse_scaleway/mnq_nats_account.py +52 -50
- pulumiverse_scaleway/mnq_nats_credentials.py +52 -50
- pulumiverse_scaleway/mnq_sns.py +38 -36
- pulumiverse_scaleway/mnq_sns_credentials.py +59 -57
- pulumiverse_scaleway/mnq_sns_topic.py +143 -141
- pulumiverse_scaleway/mnq_sns_topic_subscription.py +150 -148
- pulumiverse_scaleway/mnq_sqs.py +38 -36
- pulumiverse_scaleway/mnq_sqs_credentials.py +59 -57
- pulumiverse_scaleway/mnq_sqs_queue.py +192 -190
- pulumiverse_scaleway/mongo_db_instance.py +199 -197
- pulumiverse_scaleway/mongo_db_snapshot.py +101 -99
- pulumiverse_scaleway/mongodb/__init__.py +2 -1
- pulumiverse_scaleway/mongodb/_inputs.py +53 -52
- pulumiverse_scaleway/mongodb/get_instance.py +35 -34
- pulumiverse_scaleway/mongodb/instance.py +199 -197
- pulumiverse_scaleway/mongodb/outputs.py +64 -63
- pulumiverse_scaleway/mongodb/snapshot.py +101 -99
- pulumiverse_scaleway/network/__init__.py +2 -1
- pulumiverse_scaleway/network/_inputs.py +140 -139
- pulumiverse_scaleway/network/acl.py +59 -57
- pulumiverse_scaleway/network/gateway_network.py +143 -141
- pulumiverse_scaleway/network/get_gateway_network.py +28 -27
- pulumiverse_scaleway/network/get_private_network.py +32 -31
- pulumiverse_scaleway/network/get_public_gateway.py +36 -35
- pulumiverse_scaleway/network/get_public_gateway_dhcp.py +24 -23
- pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +33 -32
- pulumiverse_scaleway/network/get_public_gateway_ip.py +14 -13
- pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +21 -20
- pulumiverse_scaleway/network/get_routes.py +38 -37
- pulumiverse_scaleway/network/get_vpc.py +35 -34
- pulumiverse_scaleway/network/get_vpcs.py +24 -23
- pulumiverse_scaleway/network/outputs.py +206 -205
- pulumiverse_scaleway/network/private_network.py +122 -120
- pulumiverse_scaleway/network/public_gateway.py +213 -211
- pulumiverse_scaleway/network/public_gateway_dhcp.py +234 -232
- pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +87 -85
- pulumiverse_scaleway/network/public_gateway_ip.py +87 -85
- pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/network/public_gateway_pat_rule.py +108 -106
- pulumiverse_scaleway/network/route.py +115 -113
- pulumiverse_scaleway/network/vpc.py +101 -99
- pulumiverse_scaleway/object/__init__.py +2 -1
- pulumiverse_scaleway/object/_inputs.py +127 -126
- pulumiverse_scaleway/object/bucket.py +115 -113
- pulumiverse_scaleway/object/bucket_acl.py +73 -71
- pulumiverse_scaleway/object/bucket_lock_configuration.py +45 -43
- pulumiverse_scaleway/object/bucket_policy.py +59 -57
- pulumiverse_scaleway/object/bucket_website_configuration.py +85 -65
- pulumiverse_scaleway/object/get_bucket.py +22 -21
- pulumiverse_scaleway/object/get_bucket_policy.py +17 -16
- pulumiverse_scaleway/object/item.py +232 -183
- pulumiverse_scaleway/object/outputs.py +114 -113
- pulumiverse_scaleway/object_bucket.py +115 -113
- pulumiverse_scaleway/object_bucket_acl.py +73 -71
- pulumiverse_scaleway/object_bucket_lock_configuration.py +45 -43
- pulumiverse_scaleway/object_bucket_policy.py +59 -57
- pulumiverse_scaleway/object_bucket_website_configuration.py +85 -65
- pulumiverse_scaleway/object_item.py +232 -183
- pulumiverse_scaleway/observability/__init__.py +2 -1
- pulumiverse_scaleway/observability/_inputs.py +89 -88
- pulumiverse_scaleway/observability/alert_manager.py +52 -50
- pulumiverse_scaleway/observability/cockpit.py +38 -36
- pulumiverse_scaleway/observability/get_instance.py +10 -9
- pulumiverse_scaleway/observability/get_source.py +33 -32
- pulumiverse_scaleway/observability/grafana_user.py +59 -57
- pulumiverse_scaleway/observability/outputs.py +77 -76
- pulumiverse_scaleway/observability/source.py +115 -113
- pulumiverse_scaleway/observability/token.py +66 -64
- pulumiverse_scaleway/outputs.py +2797 -2732
- pulumiverse_scaleway/provider.py +87 -65
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/rdb_snapshot.py +101 -99
- pulumiverse_scaleway/redis/__init__.py +2 -1
- pulumiverse_scaleway/redis/_inputs.py +63 -62
- pulumiverse_scaleway/redis/cluster.py +178 -176
- pulumiverse_scaleway/redis/get_cluster.py +34 -33
- pulumiverse_scaleway/redis/outputs.py +74 -73
- pulumiverse_scaleway/redis_cluster.py +178 -176
- pulumiverse_scaleway/registry/__init__.py +2 -1
- pulumiverse_scaleway/registry/get_image.py +37 -36
- pulumiverse_scaleway/registry/get_image_tag.py +33 -32
- pulumiverse_scaleway/registry/get_namespace.py +27 -26
- pulumiverse_scaleway/registry/namespace.py +87 -85
- pulumiverse_scaleway/registry_namespace.py +87 -85
- pulumiverse_scaleway/sdb_database.py +80 -78
- pulumiverse_scaleway/secret.py +143 -141
- pulumiverse_scaleway/secret_version.py +87 -85
- pulumiverse_scaleway/secrets/__init__.py +2 -1
- pulumiverse_scaleway/secrets/_inputs.py +53 -52
- pulumiverse_scaleway/secrets/get_secret.py +41 -40
- pulumiverse_scaleway/secrets/get_version.py +34 -33
- pulumiverse_scaleway/secrets/outputs.py +64 -63
- pulumiverse_scaleway/secrets/secret.py +143 -141
- pulumiverse_scaleway/secrets/version.py +87 -85
- pulumiverse_scaleway/tem/__init__.py +2 -1
- pulumiverse_scaleway/tem/_inputs.py +28 -27
- pulumiverse_scaleway/tem/blocked_list.py +87 -85
- pulumiverse_scaleway/tem/domain.py +199 -197
- pulumiverse_scaleway/tem/domain_validation.py +52 -50
- pulumiverse_scaleway/tem/get_domain.py +43 -42
- pulumiverse_scaleway/tem/get_offer_subscription.py +22 -21
- pulumiverse_scaleway/tem/outputs.py +34 -33
- pulumiverse_scaleway/tem/webhook.py +108 -106
- pulumiverse_scaleway/tem_domain.py +199 -197
- pulumiverse_scaleway/tem_domain_validation.py +52 -50
- pulumiverse_scaleway/tem_webhook.py +108 -106
- pulumiverse_scaleway/vpc.py +101 -99
- pulumiverse_scaleway/vpc_gateway_network.py +143 -141
- pulumiverse_scaleway/vpc_private_network.py +122 -120
- pulumiverse_scaleway/vpc_public_gateway.py +213 -211
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +234 -232
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +87 -85
- pulumiverse_scaleway/vpc_public_gateway_ip.py +87 -85
- pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +108 -106
- pulumiverse_scaleway/vpc_route.py +115 -113
- pulumiverse_scaleway/webhosting.py +164 -162
- {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/METADATA +2 -2
- pulumiverse_scaleway-1.30.0a1752168858.dist-info/RECORD +493 -0
- pulumiverse_scaleway-1.30.0a1750140900.dist-info/RECORD +0 -492
- {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,8 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -27,7 +28,13 @@ class GetContainerResult:
|
|
27
28
|
"""
|
28
29
|
A collection of values returned by getContainer.
|
29
30
|
"""
|
30
|
-
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):
|
31
|
+
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):
|
32
|
+
if args and not isinstance(args, list):
|
33
|
+
raise TypeError("Expected argument 'args' to be a list")
|
34
|
+
pulumi.set(__self__, "args", args)
|
35
|
+
if commands and not isinstance(commands, list):
|
36
|
+
raise TypeError("Expected argument 'commands' to be a list")
|
37
|
+
pulumi.set(__self__, "commands", commands)
|
31
38
|
if container_id and not isinstance(container_id, str):
|
32
39
|
raise TypeError("Expected argument 'container_id' to be a str")
|
33
40
|
pulumi.set(__self__, "container_id", container_id)
|
@@ -88,6 +95,9 @@ class GetContainerResult:
|
|
88
95
|
if privacy and not isinstance(privacy, str):
|
89
96
|
raise TypeError("Expected argument 'privacy' to be a str")
|
90
97
|
pulumi.set(__self__, "privacy", privacy)
|
98
|
+
if private_network_id and not isinstance(private_network_id, str):
|
99
|
+
raise TypeError("Expected argument 'private_network_id' to be a str")
|
100
|
+
pulumi.set(__self__, "private_network_id", private_network_id)
|
91
101
|
if project_id and not isinstance(project_id, str):
|
92
102
|
raise TypeError("Expected argument 'project_id' to be a str")
|
93
103
|
pulumi.set(__self__, "project_id", project_id)
|
@@ -115,18 +125,31 @@ class GetContainerResult:
|
|
115
125
|
if status and not isinstance(status, str):
|
116
126
|
raise TypeError("Expected argument 'status' to be a str")
|
117
127
|
pulumi.set(__self__, "status", status)
|
128
|
+
if tags and not isinstance(tags, list):
|
129
|
+
raise TypeError("Expected argument 'tags' to be a list")
|
130
|
+
pulumi.set(__self__, "tags", tags)
|
118
131
|
if timeout and not isinstance(timeout, int):
|
119
132
|
raise TypeError("Expected argument 'timeout' to be a int")
|
120
133
|
pulumi.set(__self__, "timeout", timeout)
|
121
134
|
|
135
|
+
@property
|
136
|
+
@pulumi.getter
|
137
|
+
def args(self) -> Sequence[builtins.str]:
|
138
|
+
return pulumi.get(self, "args")
|
139
|
+
|
140
|
+
@property
|
141
|
+
@pulumi.getter
|
142
|
+
def commands(self) -> Sequence[builtins.str]:
|
143
|
+
return pulumi.get(self, "commands")
|
144
|
+
|
122
145
|
@property
|
123
146
|
@pulumi.getter(name="containerId")
|
124
|
-
def container_id(self) -> Optional[str]:
|
147
|
+
def container_id(self) -> Optional[builtins.str]:
|
125
148
|
return pulumi.get(self, "container_id")
|
126
149
|
|
127
150
|
@property
|
128
151
|
@pulumi.getter(name="cpuLimit")
|
129
|
-
def cpu_limit(self) -> int:
|
152
|
+
def cpu_limit(self) -> builtins.int:
|
130
153
|
"""
|
131
154
|
The amount of vCPU computing resources to allocate to each container.
|
132
155
|
"""
|
@@ -134,7 +157,7 @@ class GetContainerResult:
|
|
134
157
|
|
135
158
|
@property
|
136
159
|
@pulumi.getter(name="cronStatus")
|
137
|
-
def cron_status(self) -> str:
|
160
|
+
def cron_status(self) -> builtins.str:
|
138
161
|
"""
|
139
162
|
The cron status of the container.
|
140
163
|
"""
|
@@ -142,7 +165,7 @@ class GetContainerResult:
|
|
142
165
|
|
143
166
|
@property
|
144
167
|
@pulumi.getter
|
145
|
-
def deploy(self) -> bool:
|
168
|
+
def deploy(self) -> builtins.bool:
|
146
169
|
"""
|
147
170
|
Boolean indicating whether the container is on a production environment.
|
148
171
|
"""
|
@@ -150,7 +173,7 @@ class GetContainerResult:
|
|
150
173
|
|
151
174
|
@property
|
152
175
|
@pulumi.getter
|
153
|
-
def description(self) -> str:
|
176
|
+
def description(self) -> builtins.str:
|
154
177
|
"""
|
155
178
|
The description of the container.
|
156
179
|
"""
|
@@ -158,7 +181,7 @@ class GetContainerResult:
|
|
158
181
|
|
159
182
|
@property
|
160
183
|
@pulumi.getter(name="domainName")
|
161
|
-
def domain_name(self) -> str:
|
184
|
+
def domain_name(self) -> builtins.str:
|
162
185
|
"""
|
163
186
|
The container domain name.
|
164
187
|
"""
|
@@ -166,7 +189,7 @@ class GetContainerResult:
|
|
166
189
|
|
167
190
|
@property
|
168
191
|
@pulumi.getter(name="environmentVariables")
|
169
|
-
def environment_variables(self) -> Mapping[str, str]:
|
192
|
+
def environment_variables(self) -> Mapping[str, builtins.str]:
|
170
193
|
"""
|
171
194
|
The [environment](https://www.scaleway.com/en/docs/serverless-containers/concepts/#environment-variables) variables of the container.
|
172
195
|
"""
|
@@ -174,7 +197,7 @@ class GetContainerResult:
|
|
174
197
|
|
175
198
|
@property
|
176
199
|
@pulumi.getter(name="errorMessage")
|
177
|
-
def error_message(self) -> str:
|
200
|
+
def error_message(self) -> builtins.str:
|
178
201
|
"""
|
179
202
|
The error message of the container.
|
180
203
|
"""
|
@@ -190,12 +213,12 @@ class GetContainerResult:
|
|
190
213
|
|
191
214
|
@property
|
192
215
|
@pulumi.getter(name="httpOption")
|
193
|
-
def http_option(self) -> str:
|
216
|
+
def http_option(self) -> builtins.str:
|
194
217
|
return pulumi.get(self, "http_option")
|
195
218
|
|
196
219
|
@property
|
197
220
|
@pulumi.getter
|
198
|
-
def id(self) -> str:
|
221
|
+
def id(self) -> builtins.str:
|
199
222
|
"""
|
200
223
|
The provider-assigned unique ID for this managed resource.
|
201
224
|
"""
|
@@ -203,12 +226,12 @@ class GetContainerResult:
|
|
203
226
|
|
204
227
|
@property
|
205
228
|
@pulumi.getter(name="localStorageLimit")
|
206
|
-
def local_storage_limit(self) -> int:
|
229
|
+
def local_storage_limit(self) -> builtins.int:
|
207
230
|
return pulumi.get(self, "local_storage_limit")
|
208
231
|
|
209
232
|
@property
|
210
233
|
@pulumi.getter(name="maxConcurrency")
|
211
|
-
def max_concurrency(self) -> int:
|
234
|
+
def max_concurrency(self) -> builtins.int:
|
212
235
|
"""
|
213
236
|
The maximum number of simultaneous requests your container can handle at the same time.
|
214
237
|
"""
|
@@ -216,7 +239,7 @@ class GetContainerResult:
|
|
216
239
|
|
217
240
|
@property
|
218
241
|
@pulumi.getter(name="maxScale")
|
219
|
-
def max_scale(self) -> int:
|
242
|
+
def max_scale(self) -> builtins.int:
|
220
243
|
"""
|
221
244
|
The maximum number of instances the container can scale to.
|
222
245
|
"""
|
@@ -224,7 +247,7 @@ class GetContainerResult:
|
|
224
247
|
|
225
248
|
@property
|
226
249
|
@pulumi.getter(name="memoryLimit")
|
227
|
-
def memory_limit(self) -> int:
|
250
|
+
def memory_limit(self) -> builtins.int:
|
228
251
|
"""
|
229
252
|
The memory resources in MB to allocate to each container.
|
230
253
|
"""
|
@@ -232,7 +255,7 @@ class GetContainerResult:
|
|
232
255
|
|
233
256
|
@property
|
234
257
|
@pulumi.getter(name="minScale")
|
235
|
-
def min_scale(self) -> int:
|
258
|
+
def min_scale(self) -> builtins.int:
|
236
259
|
"""
|
237
260
|
The minimum number of container instances running continuously.
|
238
261
|
"""
|
@@ -240,17 +263,17 @@ class GetContainerResult:
|
|
240
263
|
|
241
264
|
@property
|
242
265
|
@pulumi.getter
|
243
|
-
def name(self) -> Optional[str]:
|
266
|
+
def name(self) -> Optional[builtins.str]:
|
244
267
|
return pulumi.get(self, "name")
|
245
268
|
|
246
269
|
@property
|
247
270
|
@pulumi.getter(name="namespaceId")
|
248
|
-
def namespace_id(self) -> str:
|
271
|
+
def namespace_id(self) -> builtins.str:
|
249
272
|
return pulumi.get(self, "namespace_id")
|
250
273
|
|
251
274
|
@property
|
252
275
|
@pulumi.getter
|
253
|
-
def port(self) -> int:
|
276
|
+
def port(self) -> builtins.int:
|
254
277
|
"""
|
255
278
|
The port to expose the container.
|
256
279
|
"""
|
@@ -258,20 +281,25 @@ class GetContainerResult:
|
|
258
281
|
|
259
282
|
@property
|
260
283
|
@pulumi.getter
|
261
|
-
def privacy(self) -> str:
|
284
|
+
def privacy(self) -> builtins.str:
|
262
285
|
"""
|
263
286
|
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.
|
264
287
|
"""
|
265
288
|
return pulumi.get(self, "privacy")
|
266
289
|
|
290
|
+
@property
|
291
|
+
@pulumi.getter(name="privateNetworkId")
|
292
|
+
def private_network_id(self) -> builtins.str:
|
293
|
+
return pulumi.get(self, "private_network_id")
|
294
|
+
|
267
295
|
@property
|
268
296
|
@pulumi.getter(name="projectId")
|
269
|
-
def project_id(self) -> Optional[str]:
|
297
|
+
def project_id(self) -> Optional[builtins.str]:
|
270
298
|
return pulumi.get(self, "project_id")
|
271
299
|
|
272
300
|
@property
|
273
301
|
@pulumi.getter
|
274
|
-
def protocol(self) -> str:
|
302
|
+
def protocol(self) -> builtins.str:
|
275
303
|
"""
|
276
304
|
The communication [protocol](https://www.scaleway.com/en/developers/api/serverless-containers/#path-containers-update-an-existing-container) `http1` or `h2c`. Defaults to `http1`.
|
277
305
|
"""
|
@@ -279,7 +307,7 @@ class GetContainerResult:
|
|
279
307
|
|
280
308
|
@property
|
281
309
|
@pulumi.getter
|
282
|
-
def region(self) -> Optional[str]:
|
310
|
+
def region(self) -> Optional[builtins.str]:
|
283
311
|
"""
|
284
312
|
(Defaults to provider `region`) The region in which the container was created.
|
285
313
|
"""
|
@@ -287,7 +315,7 @@ class GetContainerResult:
|
|
287
315
|
|
288
316
|
@property
|
289
317
|
@pulumi.getter(name="registryImage")
|
290
|
-
def registry_image(self) -> str:
|
318
|
+
def registry_image(self) -> builtins.str:
|
291
319
|
"""
|
292
320
|
The registry image address (e.g. `rg.fr-par.scw.cloud/$NAMESPACE/$IMAGE`).
|
293
321
|
"""
|
@@ -295,7 +323,7 @@ class GetContainerResult:
|
|
295
323
|
|
296
324
|
@property
|
297
325
|
@pulumi.getter(name="registrySha256")
|
298
|
-
def registry_sha256(self) -> str:
|
326
|
+
def registry_sha256(self) -> builtins.str:
|
299
327
|
"""
|
300
328
|
The sha256 of your source registry image, changing it will re-apply the deployment. Can be any string.
|
301
329
|
"""
|
@@ -303,7 +331,7 @@ class GetContainerResult:
|
|
303
331
|
|
304
332
|
@property
|
305
333
|
@pulumi.getter
|
306
|
-
def sandbox(self) -> str:
|
334
|
+
def sandbox(self) -> builtins.str:
|
307
335
|
"""
|
308
336
|
(Optional) Execution environment of the container.
|
309
337
|
"""
|
@@ -319,12 +347,12 @@ class GetContainerResult:
|
|
319
347
|
|
320
348
|
@property
|
321
349
|
@pulumi.getter(name="secretEnvironmentVariables")
|
322
|
-
def secret_environment_variables(self) -> Mapping[str, str]:
|
350
|
+
def secret_environment_variables(self) -> Mapping[str, builtins.str]:
|
323
351
|
return pulumi.get(self, "secret_environment_variables")
|
324
352
|
|
325
353
|
@property
|
326
354
|
@pulumi.getter
|
327
|
-
def status(self) -> str:
|
355
|
+
def status(self) -> builtins.str:
|
328
356
|
"""
|
329
357
|
The container status.
|
330
358
|
"""
|
@@ -332,7 +360,12 @@ class GetContainerResult:
|
|
332
360
|
|
333
361
|
@property
|
334
362
|
@pulumi.getter
|
335
|
-
def
|
363
|
+
def tags(self) -> Sequence[builtins.str]:
|
364
|
+
return pulumi.get(self, "tags")
|
365
|
+
|
366
|
+
@property
|
367
|
+
@pulumi.getter
|
368
|
+
def timeout(self) -> builtins.int:
|
336
369
|
"""
|
337
370
|
The maximum amount of time your container can spend processing a request before being stopped.
|
338
371
|
"""
|
@@ -345,6 +378,8 @@ class AwaitableGetContainerResult(GetContainerResult):
|
|
345
378
|
if False:
|
346
379
|
yield self
|
347
380
|
return GetContainerResult(
|
381
|
+
args=self.args,
|
382
|
+
commands=self.commands,
|
348
383
|
container_id=self.container_id,
|
349
384
|
cpu_limit=self.cpu_limit,
|
350
385
|
cron_status=self.cron_status,
|
@@ -365,6 +400,7 @@ class AwaitableGetContainerResult(GetContainerResult):
|
|
365
400
|
namespace_id=self.namespace_id,
|
366
401
|
port=self.port,
|
367
402
|
privacy=self.privacy,
|
403
|
+
private_network_id=self.private_network_id,
|
368
404
|
project_id=self.project_id,
|
369
405
|
protocol=self.protocol,
|
370
406
|
region=self.region,
|
@@ -374,14 +410,15 @@ class AwaitableGetContainerResult(GetContainerResult):
|
|
374
410
|
scaling_options=self.scaling_options,
|
375
411
|
secret_environment_variables=self.secret_environment_variables,
|
376
412
|
status=self.status,
|
413
|
+
tags=self.tags,
|
377
414
|
timeout=self.timeout)
|
378
415
|
|
379
416
|
|
380
|
-
def get_container(container_id: Optional[str] = None,
|
381
|
-
name: Optional[str] = None,
|
382
|
-
namespace_id: Optional[str] = None,
|
383
|
-
project_id: Optional[str] = None,
|
384
|
-
region: Optional[str] = None,
|
417
|
+
def get_container(container_id: Optional[builtins.str] = None,
|
418
|
+
name: Optional[builtins.str] = None,
|
419
|
+
namespace_id: Optional[builtins.str] = None,
|
420
|
+
project_id: Optional[builtins.str] = None,
|
421
|
+
region: Optional[builtins.str] = None,
|
385
422
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetContainerResult:
|
386
423
|
"""
|
387
424
|
The `containers.Container` data source is used to retrieve information about a Serverless Container.
|
@@ -427,7 +464,7 @@ def get_container(container_id: Optional[str] = None,
|
|
427
464
|
> **Important** Updating the `name` argument will recreate the container.
|
428
465
|
|
429
466
|
|
430
|
-
:param str region: (Defaults to provider `region`) The region in which the container was created.
|
467
|
+
:param builtins.str region: (Defaults to provider `region`) The region in which the container was created.
|
431
468
|
"""
|
432
469
|
__args__ = dict()
|
433
470
|
__args__['containerId'] = container_id
|
@@ -439,6 +476,8 @@ def get_container(container_id: Optional[str] = None,
|
|
439
476
|
__ret__ = pulumi.runtime.invoke('scaleway:containers/getContainer:getContainer', __args__, opts=opts, typ=GetContainerResult).value
|
440
477
|
|
441
478
|
return AwaitableGetContainerResult(
|
479
|
+
args=pulumi.get(__ret__, 'args'),
|
480
|
+
commands=pulumi.get(__ret__, 'commands'),
|
442
481
|
container_id=pulumi.get(__ret__, 'container_id'),
|
443
482
|
cpu_limit=pulumi.get(__ret__, 'cpu_limit'),
|
444
483
|
cron_status=pulumi.get(__ret__, 'cron_status'),
|
@@ -459,6 +498,7 @@ def get_container(container_id: Optional[str] = None,
|
|
459
498
|
namespace_id=pulumi.get(__ret__, 'namespace_id'),
|
460
499
|
port=pulumi.get(__ret__, 'port'),
|
461
500
|
privacy=pulumi.get(__ret__, 'privacy'),
|
501
|
+
private_network_id=pulumi.get(__ret__, 'private_network_id'),
|
462
502
|
project_id=pulumi.get(__ret__, 'project_id'),
|
463
503
|
protocol=pulumi.get(__ret__, 'protocol'),
|
464
504
|
region=pulumi.get(__ret__, 'region'),
|
@@ -468,12 +508,13 @@ def get_container(container_id: Optional[str] = None,
|
|
468
508
|
scaling_options=pulumi.get(__ret__, 'scaling_options'),
|
469
509
|
secret_environment_variables=pulumi.get(__ret__, 'secret_environment_variables'),
|
470
510
|
status=pulumi.get(__ret__, 'status'),
|
511
|
+
tags=pulumi.get(__ret__, 'tags'),
|
471
512
|
timeout=pulumi.get(__ret__, 'timeout'))
|
472
|
-
def get_container_output(container_id: Optional[pulumi.Input[Optional[str]]] = None,
|
473
|
-
name: Optional[pulumi.Input[Optional[str]]] = None,
|
474
|
-
namespace_id: Optional[pulumi.Input[str]] = None,
|
475
|
-
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
476
|
-
region: Optional[pulumi.Input[Optional[str]]] = None,
|
513
|
+
def get_container_output(container_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
514
|
+
name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
515
|
+
namespace_id: Optional[pulumi.Input[builtins.str]] = None,
|
516
|
+
project_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
517
|
+
region: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
477
518
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetContainerResult]:
|
478
519
|
"""
|
479
520
|
The `containers.Container` data source is used to retrieve information about a Serverless Container.
|
@@ -519,7 +560,7 @@ def get_container_output(container_id: Optional[pulumi.Input[Optional[str]]] = N
|
|
519
560
|
> **Important** Updating the `name` argument will recreate the container.
|
520
561
|
|
521
562
|
|
522
|
-
:param str region: (Defaults to provider `region`) The region in which the container was created.
|
563
|
+
:param builtins.str region: (Defaults to provider `region`) The region in which the container was created.
|
523
564
|
"""
|
524
565
|
__args__ = dict()
|
525
566
|
__args__['containerId'] = container_id
|
@@ -530,6 +571,8 @@ def get_container_output(container_id: Optional[pulumi.Input[Optional[str]]] = N
|
|
530
571
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
531
572
|
__ret__ = pulumi.runtime.invoke_output('scaleway:containers/getContainer:getContainer', __args__, opts=opts, typ=GetContainerResult)
|
532
573
|
return __ret__.apply(lambda __response__: GetContainerResult(
|
574
|
+
args=pulumi.get(__response__, 'args'),
|
575
|
+
commands=pulumi.get(__response__, 'commands'),
|
533
576
|
container_id=pulumi.get(__response__, 'container_id'),
|
534
577
|
cpu_limit=pulumi.get(__response__, 'cpu_limit'),
|
535
578
|
cron_status=pulumi.get(__response__, 'cron_status'),
|
@@ -550,6 +593,7 @@ def get_container_output(container_id: Optional[pulumi.Input[Optional[str]]] = N
|
|
550
593
|
namespace_id=pulumi.get(__response__, 'namespace_id'),
|
551
594
|
port=pulumi.get(__response__, 'port'),
|
552
595
|
privacy=pulumi.get(__response__, 'privacy'),
|
596
|
+
private_network_id=pulumi.get(__response__, 'private_network_id'),
|
553
597
|
project_id=pulumi.get(__response__, 'project_id'),
|
554
598
|
protocol=pulumi.get(__response__, 'protocol'),
|
555
599
|
region=pulumi.get(__response__, 'region'),
|
@@ -559,4 +603,5 @@ def get_container_output(container_id: Optional[pulumi.Input[Optional[str]]] = N
|
|
559
603
|
scaling_options=pulumi.get(__response__, 'scaling_options'),
|
560
604
|
secret_environment_variables=pulumi.get(__response__, 'secret_environment_variables'),
|
561
605
|
status=pulumi.get(__response__, 'status'),
|
606
|
+
tags=pulumi.get(__response__, 'tags'),
|
562
607
|
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
|
@@ -26,7 +27,10 @@ class GetNamespaceResult:
|
|
26
27
|
"""
|
27
28
|
A collection of values returned by getNamespace.
|
28
29
|
"""
|
29
|
-
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):
|
30
|
+
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):
|
31
|
+
if activate_vpc_integration and not isinstance(activate_vpc_integration, bool):
|
32
|
+
raise TypeError("Expected argument 'activate_vpc_integration' to be a bool")
|
33
|
+
pulumi.set(__self__, "activate_vpc_integration", activate_vpc_integration)
|
30
34
|
if description and not isinstance(description, str):
|
31
35
|
raise TypeError("Expected argument 'description' to be a str")
|
32
36
|
pulumi.set(__self__, "description", description)
|
@@ -67,9 +71,14 @@ class GetNamespaceResult:
|
|
67
71
|
raise TypeError("Expected argument 'tags' to be a list")
|
68
72
|
pulumi.set(__self__, "tags", tags)
|
69
73
|
|
74
|
+
@property
|
75
|
+
@pulumi.getter(name="activateVpcIntegration")
|
76
|
+
def activate_vpc_integration(self) -> builtins.bool:
|
77
|
+
return pulumi.get(self, "activate_vpc_integration")
|
78
|
+
|
70
79
|
@property
|
71
80
|
@pulumi.getter
|
72
|
-
def description(self) -> str:
|
81
|
+
def description(self) -> builtins.str:
|
73
82
|
"""
|
74
83
|
The description of the namespace.
|
75
84
|
"""
|
@@ -77,12 +86,12 @@ class GetNamespaceResult:
|
|
77
86
|
|
78
87
|
@property
|
79
88
|
@pulumi.getter(name="destroyRegistry")
|
80
|
-
def destroy_registry(self) -> bool:
|
89
|
+
def destroy_registry(self) -> builtins.bool:
|
81
90
|
return pulumi.get(self, "destroy_registry")
|
82
91
|
|
83
92
|
@property
|
84
93
|
@pulumi.getter(name="environmentVariables")
|
85
|
-
def environment_variables(self) -> Mapping[str, str]:
|
94
|
+
def environment_variables(self) -> Mapping[str, builtins.str]:
|
86
95
|
"""
|
87
96
|
The environment variables of the namespace.
|
88
97
|
"""
|
@@ -90,7 +99,7 @@ class GetNamespaceResult:
|
|
90
99
|
|
91
100
|
@property
|
92
101
|
@pulumi.getter
|
93
|
-
def id(self) -> str:
|
102
|
+
def id(self) -> builtins.str:
|
94
103
|
"""
|
95
104
|
The provider-assigned unique ID for this managed resource.
|
96
105
|
"""
|
@@ -98,17 +107,17 @@ class GetNamespaceResult:
|
|
98
107
|
|
99
108
|
@property
|
100
109
|
@pulumi.getter
|
101
|
-
def name(self) -> Optional[str]:
|
110
|
+
def name(self) -> Optional[builtins.str]:
|
102
111
|
return pulumi.get(self, "name")
|
103
112
|
|
104
113
|
@property
|
105
114
|
@pulumi.getter(name="namespaceId")
|
106
|
-
def namespace_id(self) -> Optional[str]:
|
115
|
+
def namespace_id(self) -> Optional[builtins.str]:
|
107
116
|
return pulumi.get(self, "namespace_id")
|
108
117
|
|
109
118
|
@property
|
110
119
|
@pulumi.getter(name="organizationId")
|
111
|
-
def organization_id(self) -> str:
|
120
|
+
def organization_id(self) -> builtins.str:
|
112
121
|
"""
|
113
122
|
The unique identifier of the organization with which the namespace is associated.
|
114
123
|
"""
|
@@ -116,17 +125,17 @@ class GetNamespaceResult:
|
|
116
125
|
|
117
126
|
@property
|
118
127
|
@pulumi.getter(name="projectId")
|
119
|
-
def project_id(self) -> Optional[str]:
|
128
|
+
def project_id(self) -> Optional[builtins.str]:
|
120
129
|
return pulumi.get(self, "project_id")
|
121
130
|
|
122
131
|
@property
|
123
132
|
@pulumi.getter
|
124
|
-
def region(self) -> Optional[str]:
|
133
|
+
def region(self) -> Optional[builtins.str]:
|
125
134
|
return pulumi.get(self, "region")
|
126
135
|
|
127
136
|
@property
|
128
137
|
@pulumi.getter(name="registryEndpoint")
|
129
|
-
def registry_endpoint(self) -> str:
|
138
|
+
def registry_endpoint(self) -> builtins.str:
|
130
139
|
"""
|
131
140
|
The registry endpoint of the namespace.
|
132
141
|
"""
|
@@ -134,7 +143,7 @@ class GetNamespaceResult:
|
|
134
143
|
|
135
144
|
@property
|
136
145
|
@pulumi.getter(name="registryNamespaceId")
|
137
|
-
def registry_namespace_id(self) -> str:
|
146
|
+
def registry_namespace_id(self) -> builtins.str:
|
138
147
|
"""
|
139
148
|
The unique identifier of the registry namespace of the Serverless Containers namespace.
|
140
149
|
"""
|
@@ -142,12 +151,12 @@ class GetNamespaceResult:
|
|
142
151
|
|
143
152
|
@property
|
144
153
|
@pulumi.getter(name="secretEnvironmentVariables")
|
145
|
-
def secret_environment_variables(self) -> Mapping[str, str]:
|
154
|
+
def secret_environment_variables(self) -> Mapping[str, builtins.str]:
|
146
155
|
return pulumi.get(self, "secret_environment_variables")
|
147
156
|
|
148
157
|
@property
|
149
158
|
@pulumi.getter
|
150
|
-
def tags(self) -> Sequence[str]:
|
159
|
+
def tags(self) -> Sequence[builtins.str]:
|
151
160
|
return pulumi.get(self, "tags")
|
152
161
|
|
153
162
|
|
@@ -157,6 +166,7 @@ class AwaitableGetNamespaceResult(GetNamespaceResult):
|
|
157
166
|
if False:
|
158
167
|
yield self
|
159
168
|
return GetNamespaceResult(
|
169
|
+
activate_vpc_integration=self.activate_vpc_integration,
|
160
170
|
description=self.description,
|
161
171
|
destroy_registry=self.destroy_registry,
|
162
172
|
environment_variables=self.environment_variables,
|
@@ -172,10 +182,10 @@ class AwaitableGetNamespaceResult(GetNamespaceResult):
|
|
172
182
|
tags=self.tags)
|
173
183
|
|
174
184
|
|
175
|
-
def get_namespace(name: Optional[str] = None,
|
176
|
-
namespace_id: Optional[str] = None,
|
177
|
-
project_id: Optional[str] = None,
|
178
|
-
region: Optional[str] = None,
|
185
|
+
def get_namespace(name: Optional[builtins.str] = None,
|
186
|
+
namespace_id: Optional[builtins.str] = None,
|
187
|
+
project_id: Optional[builtins.str] = None,
|
188
|
+
region: Optional[builtins.str] = None,
|
179
189
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetNamespaceResult:
|
180
190
|
"""
|
181
191
|
The `containers.Namespace` data source is used to retrieve information about a Serverless Containers namespace.
|
@@ -200,10 +210,10 @@ def get_namespace(name: Optional[str] = None,
|
|
200
210
|
```
|
201
211
|
|
202
212
|
|
203
|
-
:param str name: The name of the namespace. Only one of `name` and `namespace_id` should be specified.
|
204
|
-
:param str namespace_id: The unique identifier of the namespace. Only one of `name` and `namespace_id` should be specified.
|
205
|
-
:param str project_id: `project_id`) The unique identifier of the project with which the namespace is associated.
|
206
|
-
:param str region: `region`) The region in which the namespace exists.
|
213
|
+
:param builtins.str name: The name of the namespace. Only one of `name` and `namespace_id` should be specified.
|
214
|
+
:param builtins.str namespace_id: The unique identifier of the namespace. Only one of `name` and `namespace_id` should be specified.
|
215
|
+
:param builtins.str project_id: `project_id`) The unique identifier of the project with which the namespace is associated.
|
216
|
+
:param builtins.str region: `region`) The region in which the namespace exists.
|
207
217
|
"""
|
208
218
|
__args__ = dict()
|
209
219
|
__args__['name'] = name
|
@@ -214,6 +224,7 @@ def get_namespace(name: Optional[str] = None,
|
|
214
224
|
__ret__ = pulumi.runtime.invoke('scaleway:containers/getNamespace:getNamespace', __args__, opts=opts, typ=GetNamespaceResult).value
|
215
225
|
|
216
226
|
return AwaitableGetNamespaceResult(
|
227
|
+
activate_vpc_integration=pulumi.get(__ret__, 'activate_vpc_integration'),
|
217
228
|
description=pulumi.get(__ret__, 'description'),
|
218
229
|
destroy_registry=pulumi.get(__ret__, 'destroy_registry'),
|
219
230
|
environment_variables=pulumi.get(__ret__, 'environment_variables'),
|
@@ -227,10 +238,10 @@ def get_namespace(name: Optional[str] = None,
|
|
227
238
|
registry_namespace_id=pulumi.get(__ret__, 'registry_namespace_id'),
|
228
239
|
secret_environment_variables=pulumi.get(__ret__, 'secret_environment_variables'),
|
229
240
|
tags=pulumi.get(__ret__, 'tags'))
|
230
|
-
def get_namespace_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
231
|
-
namespace_id: Optional[pulumi.Input[Optional[str]]] = None,
|
232
|
-
project_id: Optional[pulumi.Input[Optional[str]]] = None,
|
233
|
-
region: Optional[pulumi.Input[Optional[str]]] = None,
|
241
|
+
def get_namespace_output(name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
242
|
+
namespace_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
243
|
+
project_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
244
|
+
region: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
234
245
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetNamespaceResult]:
|
235
246
|
"""
|
236
247
|
The `containers.Namespace` data source is used to retrieve information about a Serverless Containers namespace.
|
@@ -255,10 +266,10 @@ def get_namespace_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
255
266
|
```
|
256
267
|
|
257
268
|
|
258
|
-
:param str name: The name of the namespace. Only one of `name` and `namespace_id` should be specified.
|
259
|
-
:param str namespace_id: The unique identifier of the namespace. Only one of `name` and `namespace_id` should be specified.
|
260
|
-
:param str project_id: `project_id`) The unique identifier of the project with which the namespace is associated.
|
261
|
-
:param str region: `region`) The region in which the namespace exists.
|
269
|
+
:param builtins.str name: The name of the namespace. Only one of `name` and `namespace_id` should be specified.
|
270
|
+
:param builtins.str namespace_id: The unique identifier of the namespace. Only one of `name` and `namespace_id` should be specified.
|
271
|
+
:param builtins.str project_id: `project_id`) The unique identifier of the project with which the namespace is associated.
|
272
|
+
:param builtins.str region: `region`) The region in which the namespace exists.
|
262
273
|
"""
|
263
274
|
__args__ = dict()
|
264
275
|
__args__['name'] = name
|
@@ -268,6 +279,7 @@ def get_namespace_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
268
279
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
269
280
|
__ret__ = pulumi.runtime.invoke_output('scaleway:containers/getNamespace:getNamespace', __args__, opts=opts, typ=GetNamespaceResult)
|
270
281
|
return __ret__.apply(lambda __response__: GetNamespaceResult(
|
282
|
+
activate_vpc_integration=pulumi.get(__response__, 'activate_vpc_integration'),
|
271
283
|
description=pulumi.get(__response__, 'description'),
|
272
284
|
destroy_registry=pulumi.get(__response__, 'destroy_registry'),
|
273
285
|
environment_variables=pulumi.get(__response__, 'environment_variables'),
|