pulumiverse-scaleway 1.30.0a1748337252__py3-none-any.whl → 1.30.0a1752168858__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumiverse_scaleway/__init__.py +11 -1
- pulumiverse_scaleway/_inputs.py +2252 -2143
- pulumiverse_scaleway/_utilities.py +1 -1
- pulumiverse_scaleway/account/__init__.py +2 -1
- pulumiverse_scaleway/account/get_availability_zones.py +9 -8
- pulumiverse_scaleway/account/get_project.py +21 -20
- pulumiverse_scaleway/account/get_projects.py +28 -21
- pulumiverse_scaleway/account/get_ssh_key.py +24 -23
- pulumiverse_scaleway/account/outputs.py +20 -19
- pulumiverse_scaleway/account/project.py +59 -57
- pulumiverse_scaleway/account/ssh_key.py +87 -85
- pulumiverse_scaleway/account_project.py +59 -57
- pulumiverse_scaleway/account_ssh_key.py +87 -85
- pulumiverse_scaleway/apple_silicon_server.py +204 -155
- pulumiverse_scaleway/applesilicon/__init__.py +2 -1
- pulumiverse_scaleway/applesilicon/_inputs.py +89 -34
- pulumiverse_scaleway/applesilicon/outputs.py +54 -21
- pulumiverse_scaleway/applesilicon/server.py +204 -155
- pulumiverse_scaleway/baremetal_server.py +262 -260
- pulumiverse_scaleway/billing/__init__.py +2 -1
- pulumiverse_scaleway/billing/get_consumptions.py +10 -9
- pulumiverse_scaleway/billing/get_invoices.py +19 -18
- pulumiverse_scaleway/billing/outputs.py +73 -72
- pulumiverse_scaleway/block/__init__.py +2 -1
- pulumiverse_scaleway/block/_inputs.py +12 -11
- pulumiverse_scaleway/block/get_snapshot.py +29 -28
- pulumiverse_scaleway/block/get_volume.py +28 -27
- pulumiverse_scaleway/block/outputs.py +14 -13
- pulumiverse_scaleway/block/snapshot.py +73 -71
- pulumiverse_scaleway/block/volume.py +115 -113
- pulumiverse_scaleway/block_snapshot.py +73 -71
- pulumiverse_scaleway/block_volume.py +115 -113
- pulumiverse_scaleway/cockpit.py +38 -36
- pulumiverse_scaleway/cockpit_alert_manager.py +52 -50
- pulumiverse_scaleway/cockpit_grafana_user.py +59 -57
- pulumiverse_scaleway/cockpit_source.py +115 -113
- pulumiverse_scaleway/cockpit_token.py +66 -64
- pulumiverse_scaleway/config/__init__.py +2 -1
- pulumiverse_scaleway/config/__init__.pyi +2 -1
- pulumiverse_scaleway/config/vars.py +2 -1
- pulumiverse_scaleway/container.py +573 -343
- pulumiverse_scaleway/container_cron.py +80 -78
- pulumiverse_scaleway/container_domain.py +52 -50
- pulumiverse_scaleway/container_namespace.py +211 -140
- pulumiverse_scaleway/container_token.py +80 -78
- pulumiverse_scaleway/container_trigger.py +59 -57
- pulumiverse_scaleway/containers/__init__.py +2 -1
- pulumiverse_scaleway/containers/_inputs.py +72 -71
- pulumiverse_scaleway/containers/container.py +573 -343
- pulumiverse_scaleway/containers/cron.py +80 -78
- pulumiverse_scaleway/containers/domain.py +52 -50
- pulumiverse_scaleway/containers/get_container.py +87 -42
- pulumiverse_scaleway/containers/get_namespace.py +43 -31
- pulumiverse_scaleway/containers/namespace.py +211 -140
- pulumiverse_scaleway/containers/outputs.py +62 -61
- pulumiverse_scaleway/containers/token.py +80 -78
- pulumiverse_scaleway/containers/trigger.py +59 -57
- pulumiverse_scaleway/database.py +66 -64
- pulumiverse_scaleway/database_acl.py +31 -29
- pulumiverse_scaleway/database_backup.py +101 -99
- pulumiverse_scaleway/database_instance.py +297 -295
- pulumiverse_scaleway/database_privilege.py +73 -71
- pulumiverse_scaleway/database_read_replica.py +45 -43
- pulumiverse_scaleway/database_user.py +73 -71
- pulumiverse_scaleway/databases/__init__.py +2 -1
- pulumiverse_scaleway/databases/_inputs.py +191 -190
- pulumiverse_scaleway/databases/acl.py +31 -29
- pulumiverse_scaleway/databases/database.py +66 -64
- pulumiverse_scaleway/databases/database_backup.py +101 -99
- pulumiverse_scaleway/databases/get_acl.py +13 -12
- pulumiverse_scaleway/databases/get_database.py +19 -18
- pulumiverse_scaleway/databases/get_database_backup.py +34 -33
- pulumiverse_scaleway/databases/get_instance.py +43 -42
- pulumiverse_scaleway/databases/get_privilege.py +24 -23
- pulumiverse_scaleway/databases/instance.py +297 -295
- pulumiverse_scaleway/databases/outputs.py +188 -187
- pulumiverse_scaleway/databases/privilege.py +73 -71
- pulumiverse_scaleway/databases/read_replica.py +45 -43
- pulumiverse_scaleway/databases/serverless_database.py +80 -78
- pulumiverse_scaleway/databases/snapshot.py +101 -99
- pulumiverse_scaleway/databases/user.py +73 -71
- pulumiverse_scaleway/domain/__init__.py +2 -1
- pulumiverse_scaleway/domain/_inputs.py +531 -530
- pulumiverse_scaleway/domain/get_record.py +38 -37
- pulumiverse_scaleway/domain/get_zone.py +24 -23
- pulumiverse_scaleway/domain/outputs.py +358 -357
- pulumiverse_scaleway/domain/record.py +129 -127
- pulumiverse_scaleway/domain/registration.py +94 -92
- pulumiverse_scaleway/domain/zone.py +87 -85
- pulumiverse_scaleway/domain_record.py +129 -127
- pulumiverse_scaleway/domain_zone.py +87 -85
- pulumiverse_scaleway/edge_services_backend_stage.py +45 -43
- pulumiverse_scaleway/edge_services_cache_stage.py +115 -113
- pulumiverse_scaleway/edge_services_dns_stage.py +108 -106
- pulumiverse_scaleway/edge_services_head_stage.py +31 -29
- pulumiverse_scaleway/edge_services_pipeline.py +66 -64
- pulumiverse_scaleway/edge_services_plan.py +31 -29
- pulumiverse_scaleway/edge_services_route_stage.py +59 -57
- pulumiverse_scaleway/edge_services_tls_stage.py +122 -120
- pulumiverse_scaleway/edge_services_waf_stage.py +87 -85
- pulumiverse_scaleway/elasticmetal/__init__.py +2 -1
- pulumiverse_scaleway/elasticmetal/_inputs.py +123 -122
- pulumiverse_scaleway/elasticmetal/get_ip.py +56 -39
- pulumiverse_scaleway/elasticmetal/get_ips.py +24 -23
- pulumiverse_scaleway/elasticmetal/get_offer.py +29 -28
- pulumiverse_scaleway/elasticmetal/get_option.py +19 -18
- pulumiverse_scaleway/elasticmetal/get_os.py +23 -22
- pulumiverse_scaleway/elasticmetal/get_partition_schema.py +29 -28
- pulumiverse_scaleway/elasticmetal/get_server.py +39 -38
- pulumiverse_scaleway/elasticmetal/ip.py +139 -137
- pulumiverse_scaleway/elasticmetal/ip_mac_address.py +87 -85
- pulumiverse_scaleway/elasticmetal/outputs.py +233 -232
- pulumiverse_scaleway/elasticmetal/server.py +262 -260
- pulumiverse_scaleway/file_filesystem.py +552 -0
- pulumiverse_scaleway/flexible_ip.py +139 -137
- pulumiverse_scaleway/flexible_ip_mac_address.py +87 -85
- pulumiverse_scaleway/function.py +394 -284
- pulumiverse_scaleway/function_cron.py +80 -78
- pulumiverse_scaleway/function_domain.py +52 -50
- pulumiverse_scaleway/function_namespace.py +197 -126
- pulumiverse_scaleway/function_token.py +80 -78
- pulumiverse_scaleway/function_trigger.py +59 -57
- pulumiverse_scaleway/functions/__init__.py +2 -1
- pulumiverse_scaleway/functions/_inputs.py +42 -41
- pulumiverse_scaleway/functions/cron.py +80 -78
- pulumiverse_scaleway/functions/domain.py +52 -50
- pulumiverse_scaleway/functions/function.py +394 -284
- pulumiverse_scaleway/functions/get_function.py +69 -46
- pulumiverse_scaleway/functions/get_namespace.py +42 -30
- pulumiverse_scaleway/functions/namespace.py +197 -126
- pulumiverse_scaleway/functions/outputs.py +26 -25
- pulumiverse_scaleway/functions/token.py +80 -78
- pulumiverse_scaleway/functions/trigger.py +59 -57
- pulumiverse_scaleway/get_account_project.py +21 -20
- pulumiverse_scaleway/get_account_ssh_key.py +24 -23
- pulumiverse_scaleway/get_availability_zones.py +9 -8
- pulumiverse_scaleway/get_baremetal_offer.py +29 -28
- pulumiverse_scaleway/get_baremetal_option.py +19 -18
- pulumiverse_scaleway/get_baremetal_os.py +23 -22
- pulumiverse_scaleway/get_baremetal_server.py +39 -38
- pulumiverse_scaleway/get_billing_consumptions.py +10 -9
- pulumiverse_scaleway/get_billing_invoices.py +19 -18
- pulumiverse_scaleway/get_block_snapshot.py +29 -28
- pulumiverse_scaleway/get_block_volume.py +28 -27
- pulumiverse_scaleway/get_cockpit.py +10 -9
- pulumiverse_scaleway/get_cockpit_source.py +33 -32
- pulumiverse_scaleway/get_config.py +13 -12
- pulumiverse_scaleway/get_container.py +87 -42
- pulumiverse_scaleway/get_container_namespace.py +43 -31
- pulumiverse_scaleway/get_database.py +19 -18
- pulumiverse_scaleway/get_database_acl.py +13 -12
- pulumiverse_scaleway/get_database_backup.py +34 -33
- pulumiverse_scaleway/get_database_instance.py +43 -42
- pulumiverse_scaleway/get_database_privilege.py +24 -23
- pulumiverse_scaleway/get_domain_record.py +38 -37
- pulumiverse_scaleway/get_domain_zone.py +24 -23
- pulumiverse_scaleway/get_flexible_ip.py +56 -39
- pulumiverse_scaleway/get_flexible_ips.py +24 -23
- pulumiverse_scaleway/get_function.py +69 -46
- pulumiverse_scaleway/get_function_namespace.py +42 -30
- pulumiverse_scaleway/get_iam_api_key.py +17 -16
- pulumiverse_scaleway/get_iam_application.py +23 -22
- pulumiverse_scaleway/get_iam_group.py +25 -24
- pulumiverse_scaleway/get_iam_ssh_key.py +24 -23
- pulumiverse_scaleway/get_iam_user.py +23 -22
- pulumiverse_scaleway/get_instance_image.py +42 -41
- pulumiverse_scaleway/get_instance_ip.py +20 -19
- pulumiverse_scaleway/get_instance_placement_group.py +28 -27
- pulumiverse_scaleway/get_instance_private_nic.py +31 -30
- pulumiverse_scaleway/get_instance_security_group.py +31 -30
- pulumiverse_scaleway/get_instance_server.py +59 -47
- pulumiverse_scaleway/get_instance_servers.py +24 -23
- pulumiverse_scaleway/get_instance_snapshot.py +29 -28
- pulumiverse_scaleway/get_instance_volume.py +30 -29
- pulumiverse_scaleway/get_iot_device.py +31 -30
- pulumiverse_scaleway/get_iot_hub.py +39 -38
- pulumiverse_scaleway/get_ipam_ip.py +51 -50
- pulumiverse_scaleway/get_ipam_ips.py +44 -43
- pulumiverse_scaleway/get_k8s_version.py +16 -15
- pulumiverse_scaleway/get_kubernetes_cluster.py +39 -38
- pulumiverse_scaleway/get_kubernetes_node_pool.py +47 -46
- pulumiverse_scaleway/get_lb_acls.py +22 -21
- pulumiverse_scaleway/get_lb_backend.py +43 -42
- pulumiverse_scaleway/get_lb_backends.py +22 -21
- pulumiverse_scaleway/get_lb_frontend.py +26 -25
- pulumiverse_scaleway/get_lb_frontends.py +22 -21
- pulumiverse_scaleway/get_lb_ips.py +29 -28
- pulumiverse_scaleway/get_lb_route.py +16 -15
- pulumiverse_scaleway/get_lb_routes.py +17 -16
- pulumiverse_scaleway/get_lbs.py +24 -23
- pulumiverse_scaleway/get_loadbalancer.py +36 -35
- pulumiverse_scaleway/get_loadbalancer_certificate.py +24 -23
- pulumiverse_scaleway/get_loadbalancer_ip.py +29 -28
- pulumiverse_scaleway/get_marketplace_image.py +23 -22
- pulumiverse_scaleway/get_mnq_sns.py +14 -13
- pulumiverse_scaleway/get_mnq_sqs.py +14 -13
- pulumiverse_scaleway/get_mongo_db_instance.py +35 -34
- pulumiverse_scaleway/get_object_bucket.py +22 -21
- pulumiverse_scaleway/get_object_bucket_policy.py +17 -16
- pulumiverse_scaleway/get_redis_cluster.py +34 -33
- pulumiverse_scaleway/get_registry_image.py +37 -36
- pulumiverse_scaleway/get_registry_image_tag.py +33 -32
- pulumiverse_scaleway/get_registry_namespace.py +27 -26
- pulumiverse_scaleway/get_secret.py +41 -40
- pulumiverse_scaleway/get_secret_version.py +34 -33
- pulumiverse_scaleway/get_tem_domain.py +43 -42
- pulumiverse_scaleway/get_vpc.py +35 -34
- pulumiverse_scaleway/get_vpc_gateway_network.py +28 -27
- pulumiverse_scaleway/get_vpc_private_network.py +32 -31
- pulumiverse_scaleway/get_vpc_public_gateway.py +36 -35
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +24 -23
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +33 -32
- pulumiverse_scaleway/get_vpc_public_gateway_ip.py +14 -13
- pulumiverse_scaleway/get_vpc_public_pat_rule.py +21 -20
- pulumiverse_scaleway/get_vpc_routes.py +38 -37
- pulumiverse_scaleway/get_vpcs.py +24 -23
- pulumiverse_scaleway/get_web_host_offer.py +25 -24
- pulumiverse_scaleway/get_webhosting.py +36 -35
- pulumiverse_scaleway/hosting/__init__.py +2 -1
- pulumiverse_scaleway/hosting/_inputs.py +61 -60
- pulumiverse_scaleway/hosting/get_hosting.py +36 -35
- pulumiverse_scaleway/hosting/get_offer.py +25 -24
- pulumiverse_scaleway/hosting/hosting.py +164 -162
- pulumiverse_scaleway/hosting/outputs.py +139 -138
- pulumiverse_scaleway/iam/__init__.py +2 -1
- pulumiverse_scaleway/iam/_inputs.py +22 -21
- pulumiverse_scaleway/iam/api_key.py +115 -113
- pulumiverse_scaleway/iam/application.py +80 -78
- pulumiverse_scaleway/iam/get_api_key.py +17 -16
- pulumiverse_scaleway/iam/get_application.py +23 -22
- pulumiverse_scaleway/iam/get_group.py +25 -24
- pulumiverse_scaleway/iam/get_ssh_key.py +24 -23
- pulumiverse_scaleway/iam/get_user.py +23 -22
- pulumiverse_scaleway/iam/group.py +115 -113
- pulumiverse_scaleway/iam/group_membership.py +45 -43
- pulumiverse_scaleway/iam/outputs.py +14 -13
- pulumiverse_scaleway/iam/policy.py +136 -134
- pulumiverse_scaleway/iam/ssh_key.py +87 -85
- pulumiverse_scaleway/iam/user.py +284 -273
- pulumiverse_scaleway/iam_api_key.py +115 -113
- pulumiverse_scaleway/iam_application.py +80 -78
- pulumiverse_scaleway/iam_group.py +115 -113
- pulumiverse_scaleway/iam_group_membership.py +45 -43
- pulumiverse_scaleway/iam_policy.py +136 -134
- pulumiverse_scaleway/iam_ssh_key.py +87 -85
- pulumiverse_scaleway/iam_user.py +284 -273
- pulumiverse_scaleway/inference/__init__.py +2 -1
- pulumiverse_scaleway/inference/_inputs.py +116 -61
- pulumiverse_scaleway/inference/deployment.py +225 -176
- pulumiverse_scaleway/inference/get_model.py +27 -26
- pulumiverse_scaleway/inference/model.py +129 -127
- pulumiverse_scaleway/inference/outputs.py +82 -49
- pulumiverse_scaleway/inference_deployment.py +225 -176
- pulumiverse_scaleway/instance/__init__.py +2 -1
- pulumiverse_scaleway/instance/_inputs.py +296 -295
- pulumiverse_scaleway/instance/get_image.py +42 -41
- pulumiverse_scaleway/instance/get_ip.py +20 -19
- pulumiverse_scaleway/instance/get_placement_group.py +28 -27
- pulumiverse_scaleway/instance/get_private_nic.py +31 -30
- pulumiverse_scaleway/instance/get_security_group.py +31 -30
- pulumiverse_scaleway/instance/get_server.py +59 -47
- pulumiverse_scaleway/instance/get_servers.py +24 -23
- pulumiverse_scaleway/instance/get_snapshot.py +29 -28
- pulumiverse_scaleway/instance/get_volume.py +30 -29
- pulumiverse_scaleway/instance/image.py +150 -148
- pulumiverse_scaleway/instance/ip.py +94 -92
- pulumiverse_scaleway/instance/ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/instance/outputs.py +349 -348
- pulumiverse_scaleway/instance/placement_group.py +101 -99
- pulumiverse_scaleway/instance/private_nic.py +94 -92
- pulumiverse_scaleway/instance/security_group.py +150 -148
- pulumiverse_scaleway/instance/security_group_rules.py +17 -15
- pulumiverse_scaleway/instance/server.py +393 -330
- pulumiverse_scaleway/instance/snapshot.py +108 -106
- pulumiverse_scaleway/instance/user_data.py +59 -57
- pulumiverse_scaleway/instance/volume.py +129 -127
- pulumiverse_scaleway/instance_image.py +150 -148
- pulumiverse_scaleway/instance_ip.py +94 -92
- pulumiverse_scaleway/instance_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/instance_placement_group.py +101 -99
- pulumiverse_scaleway/instance_private_nic.py +94 -92
- pulumiverse_scaleway/instance_security_group.py +150 -148
- pulumiverse_scaleway/instance_security_group_rules.py +17 -15
- pulumiverse_scaleway/instance_server.py +393 -330
- pulumiverse_scaleway/instance_snapshot.py +108 -106
- pulumiverse_scaleway/instance_user_data.py +59 -57
- pulumiverse_scaleway/instance_volume.py +129 -127
- pulumiverse_scaleway/iot/__init__.py +2 -1
- pulumiverse_scaleway/iot/_inputs.py +98 -97
- pulumiverse_scaleway/iot/device.py +122 -120
- pulumiverse_scaleway/iot/get_device.py +31 -30
- pulumiverse_scaleway/iot/get_hub.py +39 -38
- pulumiverse_scaleway/iot/hub.py +206 -204
- pulumiverse_scaleway/iot/network.py +94 -92
- pulumiverse_scaleway/iot/outputs.py +78 -77
- pulumiverse_scaleway/iot/route.py +66 -64
- pulumiverse_scaleway/iot_device.py +122 -120
- pulumiverse_scaleway/iot_hub.py +206 -204
- pulumiverse_scaleway/iot_network.py +94 -92
- pulumiverse_scaleway/iot_route.py +66 -64
- pulumiverse_scaleway/ipam/__init__.py +2 -1
- pulumiverse_scaleway/ipam/_inputs.py +87 -86
- pulumiverse_scaleway/ipam/get_ip.py +51 -50
- pulumiverse_scaleway/ipam/get_ips.py +44 -43
- pulumiverse_scaleway/ipam/ip.py +94 -92
- pulumiverse_scaleway/ipam/ip_reverse_dns.py +59 -57
- pulumiverse_scaleway/ipam/outputs.py +90 -89
- pulumiverse_scaleway/ipam_ip.py +94 -92
- pulumiverse_scaleway/ipam_ip_reverse_dns.py +59 -57
- pulumiverse_scaleway/job/__init__.py +2 -1
- pulumiverse_scaleway/job/_inputs.py +38 -37
- pulumiverse_scaleway/job/definition.py +143 -141
- pulumiverse_scaleway/job/outputs.py +24 -23
- pulumiverse_scaleway/job_definition.py +143 -141
- pulumiverse_scaleway/kubernetes/__init__.py +2 -1
- pulumiverse_scaleway/kubernetes/_inputs.py +190 -189
- pulumiverse_scaleway/kubernetes/acl.py +45 -43
- pulumiverse_scaleway/kubernetes/cluster.py +234 -232
- pulumiverse_scaleway/kubernetes/get_cluster.py +39 -38
- pulumiverse_scaleway/kubernetes/get_pool.py +47 -46
- pulumiverse_scaleway/kubernetes/get_version.py +16 -15
- pulumiverse_scaleway/kubernetes/outputs.py +217 -216
- pulumiverse_scaleway/kubernetes/pool.py +290 -288
- pulumiverse_scaleway/kubernetes_cluster.py +234 -232
- pulumiverse_scaleway/kubernetes_node_pool.py +290 -288
- pulumiverse_scaleway/loadbalancer.py +199 -197
- pulumiverse_scaleway/loadbalancer_acl.py +73 -71
- pulumiverse_scaleway/loadbalancer_backend.py +381 -379
- pulumiverse_scaleway/loadbalancer_certificate.py +73 -71
- pulumiverse_scaleway/loadbalancer_frontend.py +136 -134
- pulumiverse_scaleway/loadbalancer_ip.py +101 -99
- pulumiverse_scaleway/loadbalancer_route.py +101 -99
- pulumiverse_scaleway/loadbalancers/__init__.py +2 -1
- pulumiverse_scaleway/loadbalancers/_inputs.py +214 -213
- pulumiverse_scaleway/loadbalancers/acl.py +73 -71
- pulumiverse_scaleway/loadbalancers/backend.py +381 -379
- pulumiverse_scaleway/loadbalancers/certificate.py +73 -71
- pulumiverse_scaleway/loadbalancers/frontend.py +136 -134
- pulumiverse_scaleway/loadbalancers/get_acls.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_backend.py +43 -42
- pulumiverse_scaleway/loadbalancers/get_backends.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_certificate.py +24 -23
- pulumiverse_scaleway/loadbalancers/get_frontend.py +26 -25
- pulumiverse_scaleway/loadbalancers/get_frontends.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_ip.py +29 -28
- pulumiverse_scaleway/loadbalancers/get_ips.py +29 -28
- pulumiverse_scaleway/loadbalancers/get_load_balancer.py +36 -35
- pulumiverse_scaleway/loadbalancers/get_load_balancers.py +24 -23
- pulumiverse_scaleway/loadbalancers/get_route.py +16 -15
- pulumiverse_scaleway/loadbalancers/get_routes.py +17 -16
- pulumiverse_scaleway/loadbalancers/ip.py +101 -99
- pulumiverse_scaleway/loadbalancers/load_balancer.py +199 -197
- pulumiverse_scaleway/loadbalancers/outputs.py +525 -524
- pulumiverse_scaleway/loadbalancers/route.py +101 -99
- pulumiverse_scaleway/mnq/__init__.py +2 -1
- pulumiverse_scaleway/mnq/_inputs.py +32 -31
- pulumiverse_scaleway/mnq/get_sns.py +14 -13
- pulumiverse_scaleway/mnq/get_sqs.py +14 -13
- pulumiverse_scaleway/mnq/nats_account.py +52 -50
- pulumiverse_scaleway/mnq/nats_credentials.py +52 -50
- pulumiverse_scaleway/mnq/outputs.py +20 -19
- pulumiverse_scaleway/mnq/sns.py +38 -36
- pulumiverse_scaleway/mnq/sns_credentials.py +59 -57
- pulumiverse_scaleway/mnq/sns_topic.py +143 -141
- pulumiverse_scaleway/mnq/sns_topic_subscription.py +150 -148
- pulumiverse_scaleway/mnq/sqs.py +38 -36
- pulumiverse_scaleway/mnq/sqs_credentials.py +59 -57
- pulumiverse_scaleway/mnq/sqs_queue.py +192 -190
- pulumiverse_scaleway/mnq_nats_account.py +52 -50
- pulumiverse_scaleway/mnq_nats_credentials.py +52 -50
- pulumiverse_scaleway/mnq_sns.py +38 -36
- pulumiverse_scaleway/mnq_sns_credentials.py +59 -57
- pulumiverse_scaleway/mnq_sns_topic.py +143 -141
- pulumiverse_scaleway/mnq_sns_topic_subscription.py +150 -148
- pulumiverse_scaleway/mnq_sqs.py +38 -36
- pulumiverse_scaleway/mnq_sqs_credentials.py +59 -57
- pulumiverse_scaleway/mnq_sqs_queue.py +192 -190
- pulumiverse_scaleway/mongo_db_instance.py +199 -197
- pulumiverse_scaleway/mongo_db_snapshot.py +101 -99
- pulumiverse_scaleway/mongodb/__init__.py +2 -1
- pulumiverse_scaleway/mongodb/_inputs.py +53 -52
- pulumiverse_scaleway/mongodb/get_instance.py +35 -34
- pulumiverse_scaleway/mongodb/instance.py +199 -197
- pulumiverse_scaleway/mongodb/outputs.py +64 -63
- pulumiverse_scaleway/mongodb/snapshot.py +101 -99
- pulumiverse_scaleway/network/__init__.py +2 -1
- pulumiverse_scaleway/network/_inputs.py +140 -139
- pulumiverse_scaleway/network/acl.py +59 -57
- pulumiverse_scaleway/network/gateway_network.py +143 -141
- pulumiverse_scaleway/network/get_gateway_network.py +28 -27
- pulumiverse_scaleway/network/get_private_network.py +32 -31
- pulumiverse_scaleway/network/get_public_gateway.py +36 -35
- pulumiverse_scaleway/network/get_public_gateway_dhcp.py +24 -23
- pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +33 -32
- pulumiverse_scaleway/network/get_public_gateway_ip.py +14 -13
- pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +21 -20
- pulumiverse_scaleway/network/get_routes.py +38 -37
- pulumiverse_scaleway/network/get_vpc.py +35 -34
- pulumiverse_scaleway/network/get_vpcs.py +24 -23
- pulumiverse_scaleway/network/outputs.py +206 -205
- pulumiverse_scaleway/network/private_network.py +122 -120
- pulumiverse_scaleway/network/public_gateway.py +213 -211
- pulumiverse_scaleway/network/public_gateway_dhcp.py +234 -232
- pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +87 -85
- pulumiverse_scaleway/network/public_gateway_ip.py +87 -85
- pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/network/public_gateway_pat_rule.py +108 -106
- pulumiverse_scaleway/network/route.py +115 -113
- pulumiverse_scaleway/network/vpc.py +101 -99
- pulumiverse_scaleway/object/__init__.py +2 -1
- pulumiverse_scaleway/object/_inputs.py +127 -126
- pulumiverse_scaleway/object/bucket.py +115 -113
- pulumiverse_scaleway/object/bucket_acl.py +73 -71
- pulumiverse_scaleway/object/bucket_lock_configuration.py +45 -43
- pulumiverse_scaleway/object/bucket_policy.py +59 -57
- pulumiverse_scaleway/object/bucket_website_configuration.py +85 -65
- pulumiverse_scaleway/object/get_bucket.py +22 -21
- pulumiverse_scaleway/object/get_bucket_policy.py +17 -16
- pulumiverse_scaleway/object/item.py +232 -183
- pulumiverse_scaleway/object/outputs.py +114 -113
- pulumiverse_scaleway/object_bucket.py +115 -113
- pulumiverse_scaleway/object_bucket_acl.py +73 -71
- pulumiverse_scaleway/object_bucket_lock_configuration.py +45 -43
- pulumiverse_scaleway/object_bucket_policy.py +59 -57
- pulumiverse_scaleway/object_bucket_website_configuration.py +85 -65
- pulumiverse_scaleway/object_item.py +232 -183
- pulumiverse_scaleway/observability/__init__.py +2 -1
- pulumiverse_scaleway/observability/_inputs.py +89 -88
- pulumiverse_scaleway/observability/alert_manager.py +52 -50
- pulumiverse_scaleway/observability/cockpit.py +38 -36
- pulumiverse_scaleway/observability/get_instance.py +10 -9
- pulumiverse_scaleway/observability/get_source.py +33 -32
- pulumiverse_scaleway/observability/grafana_user.py +59 -57
- pulumiverse_scaleway/observability/outputs.py +77 -76
- pulumiverse_scaleway/observability/source.py +115 -113
- pulumiverse_scaleway/observability/token.py +66 -64
- pulumiverse_scaleway/outputs.py +2797 -2732
- pulumiverse_scaleway/provider.py +87 -65
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/rdb_snapshot.py +101 -99
- pulumiverse_scaleway/redis/__init__.py +2 -1
- pulumiverse_scaleway/redis/_inputs.py +63 -62
- pulumiverse_scaleway/redis/cluster.py +178 -176
- pulumiverse_scaleway/redis/get_cluster.py +34 -33
- pulumiverse_scaleway/redis/outputs.py +74 -73
- pulumiverse_scaleway/redis_cluster.py +178 -176
- pulumiverse_scaleway/registry/__init__.py +2 -1
- pulumiverse_scaleway/registry/get_image.py +37 -36
- pulumiverse_scaleway/registry/get_image_tag.py +33 -32
- pulumiverse_scaleway/registry/get_namespace.py +27 -26
- pulumiverse_scaleway/registry/namespace.py +87 -85
- pulumiverse_scaleway/registry_namespace.py +87 -85
- pulumiverse_scaleway/sdb_database.py +80 -78
- pulumiverse_scaleway/secret.py +143 -141
- pulumiverse_scaleway/secret_version.py +87 -85
- pulumiverse_scaleway/secrets/__init__.py +2 -1
- pulumiverse_scaleway/secrets/_inputs.py +53 -52
- pulumiverse_scaleway/secrets/get_secret.py +41 -40
- pulumiverse_scaleway/secrets/get_version.py +34 -33
- pulumiverse_scaleway/secrets/outputs.py +64 -63
- pulumiverse_scaleway/secrets/secret.py +143 -141
- pulumiverse_scaleway/secrets/version.py +87 -85
- pulumiverse_scaleway/tem/__init__.py +2 -1
- pulumiverse_scaleway/tem/_inputs.py +28 -27
- pulumiverse_scaleway/tem/blocked_list.py +87 -85
- pulumiverse_scaleway/tem/domain.py +199 -197
- pulumiverse_scaleway/tem/domain_validation.py +52 -50
- pulumiverse_scaleway/tem/get_domain.py +43 -42
- pulumiverse_scaleway/tem/get_offer_subscription.py +22 -21
- pulumiverse_scaleway/tem/outputs.py +34 -33
- pulumiverse_scaleway/tem/webhook.py +108 -106
- pulumiverse_scaleway/tem_domain.py +199 -197
- pulumiverse_scaleway/tem_domain_validation.py +52 -50
- pulumiverse_scaleway/tem_webhook.py +108 -106
- pulumiverse_scaleway/vpc.py +101 -99
- pulumiverse_scaleway/vpc_gateway_network.py +143 -141
- pulumiverse_scaleway/vpc_private_network.py +122 -120
- pulumiverse_scaleway/vpc_public_gateway.py +213 -211
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +234 -232
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +87 -85
- pulumiverse_scaleway/vpc_public_gateway_ip.py +87 -85
- pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +108 -106
- pulumiverse_scaleway/vpc_route.py +115 -113
- pulumiverse_scaleway/webhosting.py +164 -162
- {pulumiverse_scaleway-1.30.0a1748337252.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/METADATA +2 -2
- pulumiverse_scaleway-1.30.0a1752168858.dist-info/RECORD +493 -0
- pulumiverse_scaleway-1.30.0a1748337252.dist-info/RECORD +0 -492
- {pulumiverse_scaleway-1.30.0a1748337252.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.30.0a1748337252.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,8 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -19,20 +20,20 @@ __all__ = ['VpcPublicGatewayPatRuleArgs', 'VpcPublicGatewayPatRule']
|
|
19
20
|
@pulumi.input_type
|
20
21
|
class VpcPublicGatewayPatRuleArgs:
|
21
22
|
def __init__(__self__, *,
|
22
|
-
gateway_id: pulumi.Input[str],
|
23
|
-
private_ip: pulumi.Input[str],
|
24
|
-
private_port: pulumi.Input[int],
|
25
|
-
public_port: pulumi.Input[int],
|
26
|
-
protocol: Optional[pulumi.Input[str]] = None,
|
27
|
-
zone: Optional[pulumi.Input[str]] = None):
|
23
|
+
gateway_id: pulumi.Input[builtins.str],
|
24
|
+
private_ip: pulumi.Input[builtins.str],
|
25
|
+
private_port: pulumi.Input[builtins.int],
|
26
|
+
public_port: pulumi.Input[builtins.int],
|
27
|
+
protocol: Optional[pulumi.Input[builtins.str]] = None,
|
28
|
+
zone: Optional[pulumi.Input[builtins.str]] = None):
|
28
29
|
"""
|
29
30
|
The set of arguments for constructing a VpcPublicGatewayPatRule resource.
|
30
|
-
:param pulumi.Input[str] gateway_id: The ID of the Public Gateway.
|
31
|
-
:param pulumi.Input[str] private_ip: The private IP address to forward data to.
|
32
|
-
:param pulumi.Input[int] private_port: The private port to translate to.
|
33
|
-
:param pulumi.Input[int] public_port: The public port to listen on.
|
34
|
-
:param pulumi.Input[str] protocol: The protocol the rule should apply to. Possible values are `both`, `tcp` and `udp`.
|
35
|
-
:param pulumi.Input[str] zone: `zone`) The zone in which the Public Gateway DHCP configuration should be created.
|
31
|
+
:param pulumi.Input[builtins.str] gateway_id: The ID of the Public Gateway.
|
32
|
+
:param pulumi.Input[builtins.str] private_ip: The private IP address to forward data to.
|
33
|
+
:param pulumi.Input[builtins.int] private_port: The private port to translate to.
|
34
|
+
:param pulumi.Input[builtins.int] public_port: The public port to listen on.
|
35
|
+
:param pulumi.Input[builtins.str] protocol: The protocol the rule should apply to. Possible values are `both`, `tcp` and `udp`.
|
36
|
+
:param pulumi.Input[builtins.str] zone: `zone`) The zone in which the Public Gateway DHCP configuration should be created.
|
36
37
|
"""
|
37
38
|
pulumi.set(__self__, "gateway_id", gateway_id)
|
38
39
|
pulumi.set(__self__, "private_ip", private_ip)
|
@@ -45,100 +46,100 @@ class VpcPublicGatewayPatRuleArgs:
|
|
45
46
|
|
46
47
|
@property
|
47
48
|
@pulumi.getter(name="gatewayId")
|
48
|
-
def gateway_id(self) -> pulumi.Input[str]:
|
49
|
+
def gateway_id(self) -> pulumi.Input[builtins.str]:
|
49
50
|
"""
|
50
51
|
The ID of the Public Gateway.
|
51
52
|
"""
|
52
53
|
return pulumi.get(self, "gateway_id")
|
53
54
|
|
54
55
|
@gateway_id.setter
|
55
|
-
def gateway_id(self, value: pulumi.Input[str]):
|
56
|
+
def gateway_id(self, value: pulumi.Input[builtins.str]):
|
56
57
|
pulumi.set(self, "gateway_id", value)
|
57
58
|
|
58
59
|
@property
|
59
60
|
@pulumi.getter(name="privateIp")
|
60
|
-
def private_ip(self) -> pulumi.Input[str]:
|
61
|
+
def private_ip(self) -> pulumi.Input[builtins.str]:
|
61
62
|
"""
|
62
63
|
The private IP address to forward data to.
|
63
64
|
"""
|
64
65
|
return pulumi.get(self, "private_ip")
|
65
66
|
|
66
67
|
@private_ip.setter
|
67
|
-
def private_ip(self, value: pulumi.Input[str]):
|
68
|
+
def private_ip(self, value: pulumi.Input[builtins.str]):
|
68
69
|
pulumi.set(self, "private_ip", value)
|
69
70
|
|
70
71
|
@property
|
71
72
|
@pulumi.getter(name="privatePort")
|
72
|
-
def private_port(self) -> pulumi.Input[int]:
|
73
|
+
def private_port(self) -> pulumi.Input[builtins.int]:
|
73
74
|
"""
|
74
75
|
The private port to translate to.
|
75
76
|
"""
|
76
77
|
return pulumi.get(self, "private_port")
|
77
78
|
|
78
79
|
@private_port.setter
|
79
|
-
def private_port(self, value: pulumi.Input[int]):
|
80
|
+
def private_port(self, value: pulumi.Input[builtins.int]):
|
80
81
|
pulumi.set(self, "private_port", value)
|
81
82
|
|
82
83
|
@property
|
83
84
|
@pulumi.getter(name="publicPort")
|
84
|
-
def public_port(self) -> pulumi.Input[int]:
|
85
|
+
def public_port(self) -> pulumi.Input[builtins.int]:
|
85
86
|
"""
|
86
87
|
The public port to listen on.
|
87
88
|
"""
|
88
89
|
return pulumi.get(self, "public_port")
|
89
90
|
|
90
91
|
@public_port.setter
|
91
|
-
def public_port(self, value: pulumi.Input[int]):
|
92
|
+
def public_port(self, value: pulumi.Input[builtins.int]):
|
92
93
|
pulumi.set(self, "public_port", value)
|
93
94
|
|
94
95
|
@property
|
95
96
|
@pulumi.getter
|
96
|
-
def protocol(self) -> Optional[pulumi.Input[str]]:
|
97
|
+
def protocol(self) -> Optional[pulumi.Input[builtins.str]]:
|
97
98
|
"""
|
98
99
|
The protocol the rule should apply to. Possible values are `both`, `tcp` and `udp`.
|
99
100
|
"""
|
100
101
|
return pulumi.get(self, "protocol")
|
101
102
|
|
102
103
|
@protocol.setter
|
103
|
-
def protocol(self, value: Optional[pulumi.Input[str]]):
|
104
|
+
def protocol(self, value: Optional[pulumi.Input[builtins.str]]):
|
104
105
|
pulumi.set(self, "protocol", value)
|
105
106
|
|
106
107
|
@property
|
107
108
|
@pulumi.getter
|
108
|
-
def zone(self) -> Optional[pulumi.Input[str]]:
|
109
|
+
def zone(self) -> Optional[pulumi.Input[builtins.str]]:
|
109
110
|
"""
|
110
111
|
`zone`) The zone in which the Public Gateway DHCP configuration should be created.
|
111
112
|
"""
|
112
113
|
return pulumi.get(self, "zone")
|
113
114
|
|
114
115
|
@zone.setter
|
115
|
-
def zone(self, value: Optional[pulumi.Input[str]]):
|
116
|
+
def zone(self, value: Optional[pulumi.Input[builtins.str]]):
|
116
117
|
pulumi.set(self, "zone", value)
|
117
118
|
|
118
119
|
|
119
120
|
@pulumi.input_type
|
120
121
|
class _VpcPublicGatewayPatRuleState:
|
121
122
|
def __init__(__self__, *,
|
122
|
-
created_at: Optional[pulumi.Input[str]] = None,
|
123
|
-
gateway_id: Optional[pulumi.Input[str]] = None,
|
124
|
-
organization_id: Optional[pulumi.Input[str]] = None,
|
125
|
-
private_ip: Optional[pulumi.Input[str]] = None,
|
126
|
-
private_port: Optional[pulumi.Input[int]] = None,
|
127
|
-
protocol: Optional[pulumi.Input[str]] = None,
|
128
|
-
public_port: Optional[pulumi.Input[int]] = None,
|
129
|
-
updated_at: Optional[pulumi.Input[str]] = None,
|
130
|
-
zone: Optional[pulumi.Input[str]] = None):
|
123
|
+
created_at: Optional[pulumi.Input[builtins.str]] = None,
|
124
|
+
gateway_id: Optional[pulumi.Input[builtins.str]] = None,
|
125
|
+
organization_id: Optional[pulumi.Input[builtins.str]] = None,
|
126
|
+
private_ip: Optional[pulumi.Input[builtins.str]] = None,
|
127
|
+
private_port: Optional[pulumi.Input[builtins.int]] = None,
|
128
|
+
protocol: Optional[pulumi.Input[builtins.str]] = None,
|
129
|
+
public_port: Optional[pulumi.Input[builtins.int]] = None,
|
130
|
+
updated_at: Optional[pulumi.Input[builtins.str]] = None,
|
131
|
+
zone: Optional[pulumi.Input[builtins.str]] = None):
|
131
132
|
"""
|
132
133
|
Input properties used for looking up and filtering VpcPublicGatewayPatRule resources.
|
133
|
-
:param pulumi.Input[str] created_at: The date and time of the creation of the PAT rule configuration.
|
134
|
-
:param pulumi.Input[str] gateway_id: The ID of the Public Gateway.
|
135
|
-
:param pulumi.Input[str] organization_id: The Organization ID the PAT rule configuration is associated with.
|
136
|
-
:param pulumi.Input[str] private_ip: The private IP address to forward data to.
|
137
|
-
:param pulumi.Input[int] private_port: The private port to translate to.
|
138
|
-
:param pulumi.Input[str] protocol: The protocol the rule should apply to. Possible values are `both`, `tcp` and `udp`.
|
139
|
-
:param pulumi.Input[int] public_port: The public port to listen on.
|
140
|
-
:param pulumi.Input[str] updated_at: The date and time of the last update of the PAT rule configuration.
|
141
|
-
:param pulumi.Input[str] zone: `zone`) The zone in which the Public Gateway DHCP configuration should be created.
|
134
|
+
:param pulumi.Input[builtins.str] created_at: The date and time of the creation of the PAT rule configuration.
|
135
|
+
:param pulumi.Input[builtins.str] gateway_id: The ID of the Public Gateway.
|
136
|
+
:param pulumi.Input[builtins.str] organization_id: The Organization ID the PAT rule configuration is associated with.
|
137
|
+
:param pulumi.Input[builtins.str] private_ip: The private IP address to forward data to.
|
138
|
+
:param pulumi.Input[builtins.int] private_port: The private port to translate to.
|
139
|
+
:param pulumi.Input[builtins.str] protocol: The protocol the rule should apply to. Possible values are `both`, `tcp` and `udp`.
|
140
|
+
:param pulumi.Input[builtins.int] public_port: The public port to listen on.
|
141
|
+
:param pulumi.Input[builtins.str] updated_at: The date and time of the last update of the PAT rule configuration.
|
142
|
+
:param pulumi.Input[builtins.str] zone: `zone`) The zone in which the Public Gateway DHCP configuration should be created.
|
142
143
|
"""
|
143
144
|
if created_at is not None:
|
144
145
|
pulumi.set(__self__, "created_at", created_at)
|
@@ -161,116 +162,117 @@ class _VpcPublicGatewayPatRuleState:
|
|
161
162
|
|
162
163
|
@property
|
163
164
|
@pulumi.getter(name="createdAt")
|
164
|
-
def created_at(self) -> Optional[pulumi.Input[str]]:
|
165
|
+
def created_at(self) -> Optional[pulumi.Input[builtins.str]]:
|
165
166
|
"""
|
166
167
|
The date and time of the creation of the PAT rule configuration.
|
167
168
|
"""
|
168
169
|
return pulumi.get(self, "created_at")
|
169
170
|
|
170
171
|
@created_at.setter
|
171
|
-
def created_at(self, value: Optional[pulumi.Input[str]]):
|
172
|
+
def created_at(self, value: Optional[pulumi.Input[builtins.str]]):
|
172
173
|
pulumi.set(self, "created_at", value)
|
173
174
|
|
174
175
|
@property
|
175
176
|
@pulumi.getter(name="gatewayId")
|
176
|
-
def gateway_id(self) -> Optional[pulumi.Input[str]]:
|
177
|
+
def gateway_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
177
178
|
"""
|
178
179
|
The ID of the Public Gateway.
|
179
180
|
"""
|
180
181
|
return pulumi.get(self, "gateway_id")
|
181
182
|
|
182
183
|
@gateway_id.setter
|
183
|
-
def gateway_id(self, value: Optional[pulumi.Input[str]]):
|
184
|
+
def gateway_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
184
185
|
pulumi.set(self, "gateway_id", value)
|
185
186
|
|
186
187
|
@property
|
187
188
|
@pulumi.getter(name="organizationId")
|
188
|
-
def organization_id(self) -> Optional[pulumi.Input[str]]:
|
189
|
+
def organization_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
189
190
|
"""
|
190
191
|
The Organization ID the PAT rule configuration is associated with.
|
191
192
|
"""
|
192
193
|
return pulumi.get(self, "organization_id")
|
193
194
|
|
194
195
|
@organization_id.setter
|
195
|
-
def organization_id(self, value: Optional[pulumi.Input[str]]):
|
196
|
+
def organization_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
196
197
|
pulumi.set(self, "organization_id", value)
|
197
198
|
|
198
199
|
@property
|
199
200
|
@pulumi.getter(name="privateIp")
|
200
|
-
def private_ip(self) -> Optional[pulumi.Input[str]]:
|
201
|
+
def private_ip(self) -> Optional[pulumi.Input[builtins.str]]:
|
201
202
|
"""
|
202
203
|
The private IP address to forward data to.
|
203
204
|
"""
|
204
205
|
return pulumi.get(self, "private_ip")
|
205
206
|
|
206
207
|
@private_ip.setter
|
207
|
-
def private_ip(self, value: Optional[pulumi.Input[str]]):
|
208
|
+
def private_ip(self, value: Optional[pulumi.Input[builtins.str]]):
|
208
209
|
pulumi.set(self, "private_ip", value)
|
209
210
|
|
210
211
|
@property
|
211
212
|
@pulumi.getter(name="privatePort")
|
212
|
-
def private_port(self) -> Optional[pulumi.Input[int]]:
|
213
|
+
def private_port(self) -> Optional[pulumi.Input[builtins.int]]:
|
213
214
|
"""
|
214
215
|
The private port to translate to.
|
215
216
|
"""
|
216
217
|
return pulumi.get(self, "private_port")
|
217
218
|
|
218
219
|
@private_port.setter
|
219
|
-
def private_port(self, value: Optional[pulumi.Input[int]]):
|
220
|
+
def private_port(self, value: Optional[pulumi.Input[builtins.int]]):
|
220
221
|
pulumi.set(self, "private_port", value)
|
221
222
|
|
222
223
|
@property
|
223
224
|
@pulumi.getter
|
224
|
-
def protocol(self) -> Optional[pulumi.Input[str]]:
|
225
|
+
def protocol(self) -> Optional[pulumi.Input[builtins.str]]:
|
225
226
|
"""
|
226
227
|
The protocol the rule should apply to. Possible values are `both`, `tcp` and `udp`.
|
227
228
|
"""
|
228
229
|
return pulumi.get(self, "protocol")
|
229
230
|
|
230
231
|
@protocol.setter
|
231
|
-
def protocol(self, value: Optional[pulumi.Input[str]]):
|
232
|
+
def protocol(self, value: Optional[pulumi.Input[builtins.str]]):
|
232
233
|
pulumi.set(self, "protocol", value)
|
233
234
|
|
234
235
|
@property
|
235
236
|
@pulumi.getter(name="publicPort")
|
236
|
-
def public_port(self) -> Optional[pulumi.Input[int]]:
|
237
|
+
def public_port(self) -> Optional[pulumi.Input[builtins.int]]:
|
237
238
|
"""
|
238
239
|
The public port to listen on.
|
239
240
|
"""
|
240
241
|
return pulumi.get(self, "public_port")
|
241
242
|
|
242
243
|
@public_port.setter
|
243
|
-
def public_port(self, value: Optional[pulumi.Input[int]]):
|
244
|
+
def public_port(self, value: Optional[pulumi.Input[builtins.int]]):
|
244
245
|
pulumi.set(self, "public_port", value)
|
245
246
|
|
246
247
|
@property
|
247
248
|
@pulumi.getter(name="updatedAt")
|
248
|
-
def updated_at(self) -> Optional[pulumi.Input[str]]:
|
249
|
+
def updated_at(self) -> Optional[pulumi.Input[builtins.str]]:
|
249
250
|
"""
|
250
251
|
The date and time of the last update of the PAT rule configuration.
|
251
252
|
"""
|
252
253
|
return pulumi.get(self, "updated_at")
|
253
254
|
|
254
255
|
@updated_at.setter
|
255
|
-
def updated_at(self, value: Optional[pulumi.Input[str]]):
|
256
|
+
def updated_at(self, value: Optional[pulumi.Input[builtins.str]]):
|
256
257
|
pulumi.set(self, "updated_at", value)
|
257
258
|
|
258
259
|
@property
|
259
260
|
@pulumi.getter
|
260
|
-
def zone(self) -> Optional[pulumi.Input[str]]:
|
261
|
+
def zone(self) -> Optional[pulumi.Input[builtins.str]]:
|
261
262
|
"""
|
262
263
|
`zone`) The zone in which the Public Gateway DHCP configuration should be created.
|
263
264
|
"""
|
264
265
|
return pulumi.get(self, "zone")
|
265
266
|
|
266
267
|
@zone.setter
|
267
|
-
def zone(self, value: Optional[pulumi.Input[str]]):
|
268
|
+
def zone(self, value: Optional[pulumi.Input[builtins.str]]):
|
268
269
|
pulumi.set(self, "zone", value)
|
269
270
|
|
270
271
|
|
271
272
|
warnings.warn("""scaleway.index/vpcpublicgatewaypatrule.VpcPublicGatewayPatRule has been deprecated in favor of scaleway.network/publicgatewaypatrule.PublicGatewayPatRule""", DeprecationWarning)
|
272
273
|
|
273
274
|
|
275
|
+
@pulumi.type_token("scaleway:index/vpcPublicGatewayPatRule:VpcPublicGatewayPatRule")
|
274
276
|
class VpcPublicGatewayPatRule(pulumi.CustomResource):
|
275
277
|
warnings.warn("""scaleway.index/vpcpublicgatewaypatrule.VpcPublicGatewayPatRule has been deprecated in favor of scaleway.network/publicgatewaypatrule.PublicGatewayPatRule""", DeprecationWarning)
|
276
278
|
|
@@ -278,12 +280,12 @@ class VpcPublicGatewayPatRule(pulumi.CustomResource):
|
|
278
280
|
def __init__(__self__,
|
279
281
|
resource_name: str,
|
280
282
|
opts: Optional[pulumi.ResourceOptions] = None,
|
281
|
-
gateway_id: Optional[pulumi.Input[str]] = None,
|
282
|
-
private_ip: Optional[pulumi.Input[str]] = None,
|
283
|
-
private_port: Optional[pulumi.Input[int]] = None,
|
284
|
-
protocol: Optional[pulumi.Input[str]] = None,
|
285
|
-
public_port: Optional[pulumi.Input[int]] = None,
|
286
|
-
zone: Optional[pulumi.Input[str]] = None,
|
283
|
+
gateway_id: Optional[pulumi.Input[builtins.str]] = None,
|
284
|
+
private_ip: Optional[pulumi.Input[builtins.str]] = None,
|
285
|
+
private_port: Optional[pulumi.Input[builtins.int]] = None,
|
286
|
+
protocol: Optional[pulumi.Input[builtins.str]] = None,
|
287
|
+
public_port: Optional[pulumi.Input[builtins.int]] = None,
|
288
|
+
zone: Optional[pulumi.Input[builtins.str]] = None,
|
287
289
|
__props__=None):
|
288
290
|
"""
|
289
291
|
Creates and manages Scaleway Public Gateway PAT (Port Address Translation).
|
@@ -349,12 +351,12 @@ class VpcPublicGatewayPatRule(pulumi.CustomResource):
|
|
349
351
|
|
350
352
|
:param str resource_name: The name of the resource.
|
351
353
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
352
|
-
:param pulumi.Input[str] gateway_id: The ID of the Public Gateway.
|
353
|
-
:param pulumi.Input[str] private_ip: The private IP address to forward data to.
|
354
|
-
:param pulumi.Input[int] private_port: The private port to translate to.
|
355
|
-
:param pulumi.Input[str] protocol: The protocol the rule should apply to. Possible values are `both`, `tcp` and `udp`.
|
356
|
-
:param pulumi.Input[int] public_port: The public port to listen on.
|
357
|
-
:param pulumi.Input[str] zone: `zone`) The zone in which the Public Gateway DHCP configuration should be created.
|
354
|
+
:param pulumi.Input[builtins.str] gateway_id: The ID of the Public Gateway.
|
355
|
+
:param pulumi.Input[builtins.str] private_ip: The private IP address to forward data to.
|
356
|
+
:param pulumi.Input[builtins.int] private_port: The private port to translate to.
|
357
|
+
:param pulumi.Input[builtins.str] protocol: The protocol the rule should apply to. Possible values are `both`, `tcp` and `udp`.
|
358
|
+
:param pulumi.Input[builtins.int] public_port: The public port to listen on.
|
359
|
+
:param pulumi.Input[builtins.str] zone: `zone`) The zone in which the Public Gateway DHCP configuration should be created.
|
358
360
|
"""
|
359
361
|
...
|
360
362
|
@overload
|
@@ -439,12 +441,12 @@ class VpcPublicGatewayPatRule(pulumi.CustomResource):
|
|
439
441
|
def _internal_init(__self__,
|
440
442
|
resource_name: str,
|
441
443
|
opts: Optional[pulumi.ResourceOptions] = None,
|
442
|
-
gateway_id: Optional[pulumi.Input[str]] = None,
|
443
|
-
private_ip: Optional[pulumi.Input[str]] = None,
|
444
|
-
private_port: Optional[pulumi.Input[int]] = None,
|
445
|
-
protocol: Optional[pulumi.Input[str]] = None,
|
446
|
-
public_port: Optional[pulumi.Input[int]] = None,
|
447
|
-
zone: Optional[pulumi.Input[str]] = None,
|
444
|
+
gateway_id: Optional[pulumi.Input[builtins.str]] = None,
|
445
|
+
private_ip: Optional[pulumi.Input[builtins.str]] = None,
|
446
|
+
private_port: Optional[pulumi.Input[builtins.int]] = None,
|
447
|
+
protocol: Optional[pulumi.Input[builtins.str]] = None,
|
448
|
+
public_port: Optional[pulumi.Input[builtins.int]] = None,
|
449
|
+
zone: Optional[pulumi.Input[builtins.str]] = None,
|
448
450
|
__props__=None):
|
449
451
|
pulumi.log.warn("""VpcPublicGatewayPatRule is deprecated: scaleway.index/vpcpublicgatewaypatrule.VpcPublicGatewayPatRule has been deprecated in favor of scaleway.network/publicgatewaypatrule.PublicGatewayPatRule""")
|
450
452
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -482,15 +484,15 @@ class VpcPublicGatewayPatRule(pulumi.CustomResource):
|
|
482
484
|
def get(resource_name: str,
|
483
485
|
id: pulumi.Input[str],
|
484
486
|
opts: Optional[pulumi.ResourceOptions] = None,
|
485
|
-
created_at: Optional[pulumi.Input[str]] = None,
|
486
|
-
gateway_id: Optional[pulumi.Input[str]] = None,
|
487
|
-
organization_id: Optional[pulumi.Input[str]] = None,
|
488
|
-
private_ip: Optional[pulumi.Input[str]] = None,
|
489
|
-
private_port: Optional[pulumi.Input[int]] = None,
|
490
|
-
protocol: Optional[pulumi.Input[str]] = None,
|
491
|
-
public_port: Optional[pulumi.Input[int]] = None,
|
492
|
-
updated_at: Optional[pulumi.Input[str]] = None,
|
493
|
-
zone: Optional[pulumi.Input[str]] = None) -> 'VpcPublicGatewayPatRule':
|
487
|
+
created_at: Optional[pulumi.Input[builtins.str]] = None,
|
488
|
+
gateway_id: Optional[pulumi.Input[builtins.str]] = None,
|
489
|
+
organization_id: Optional[pulumi.Input[builtins.str]] = None,
|
490
|
+
private_ip: Optional[pulumi.Input[builtins.str]] = None,
|
491
|
+
private_port: Optional[pulumi.Input[builtins.int]] = None,
|
492
|
+
protocol: Optional[pulumi.Input[builtins.str]] = None,
|
493
|
+
public_port: Optional[pulumi.Input[builtins.int]] = None,
|
494
|
+
updated_at: Optional[pulumi.Input[builtins.str]] = None,
|
495
|
+
zone: Optional[pulumi.Input[builtins.str]] = None) -> 'VpcPublicGatewayPatRule':
|
494
496
|
"""
|
495
497
|
Get an existing VpcPublicGatewayPatRule resource's state with the given name, id, and optional extra
|
496
498
|
properties used to qualify the lookup.
|
@@ -498,15 +500,15 @@ class VpcPublicGatewayPatRule(pulumi.CustomResource):
|
|
498
500
|
:param str resource_name: The unique name of the resulting resource.
|
499
501
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
500
502
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
501
|
-
:param pulumi.Input[str] created_at: The date and time of the creation of the PAT rule configuration.
|
502
|
-
:param pulumi.Input[str] gateway_id: The ID of the Public Gateway.
|
503
|
-
:param pulumi.Input[str] organization_id: The Organization ID the PAT rule configuration is associated with.
|
504
|
-
:param pulumi.Input[str] private_ip: The private IP address to forward data to.
|
505
|
-
:param pulumi.Input[int] private_port: The private port to translate to.
|
506
|
-
:param pulumi.Input[str] protocol: The protocol the rule should apply to. Possible values are `both`, `tcp` and `udp`.
|
507
|
-
:param pulumi.Input[int] public_port: The public port to listen on.
|
508
|
-
:param pulumi.Input[str] updated_at: The date and time of the last update of the PAT rule configuration.
|
509
|
-
:param pulumi.Input[str] zone: `zone`) The zone in which the Public Gateway DHCP configuration should be created.
|
503
|
+
:param pulumi.Input[builtins.str] created_at: The date and time of the creation of the PAT rule configuration.
|
504
|
+
:param pulumi.Input[builtins.str] gateway_id: The ID of the Public Gateway.
|
505
|
+
:param pulumi.Input[builtins.str] organization_id: The Organization ID the PAT rule configuration is associated with.
|
506
|
+
:param pulumi.Input[builtins.str] private_ip: The private IP address to forward data to.
|
507
|
+
:param pulumi.Input[builtins.int] private_port: The private port to translate to.
|
508
|
+
:param pulumi.Input[builtins.str] protocol: The protocol the rule should apply to. Possible values are `both`, `tcp` and `udp`.
|
509
|
+
:param pulumi.Input[builtins.int] public_port: The public port to listen on.
|
510
|
+
:param pulumi.Input[builtins.str] updated_at: The date and time of the last update of the PAT rule configuration.
|
511
|
+
:param pulumi.Input[builtins.str] zone: `zone`) The zone in which the Public Gateway DHCP configuration should be created.
|
510
512
|
"""
|
511
513
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
512
514
|
|
@@ -525,7 +527,7 @@ class VpcPublicGatewayPatRule(pulumi.CustomResource):
|
|
525
527
|
|
526
528
|
@property
|
527
529
|
@pulumi.getter(name="createdAt")
|
528
|
-
def created_at(self) -> pulumi.Output[str]:
|
530
|
+
def created_at(self) -> pulumi.Output[builtins.str]:
|
529
531
|
"""
|
530
532
|
The date and time of the creation of the PAT rule configuration.
|
531
533
|
"""
|
@@ -533,7 +535,7 @@ class VpcPublicGatewayPatRule(pulumi.CustomResource):
|
|
533
535
|
|
534
536
|
@property
|
535
537
|
@pulumi.getter(name="gatewayId")
|
536
|
-
def gateway_id(self) -> pulumi.Output[str]:
|
538
|
+
def gateway_id(self) -> pulumi.Output[builtins.str]:
|
537
539
|
"""
|
538
540
|
The ID of the Public Gateway.
|
539
541
|
"""
|
@@ -541,7 +543,7 @@ class VpcPublicGatewayPatRule(pulumi.CustomResource):
|
|
541
543
|
|
542
544
|
@property
|
543
545
|
@pulumi.getter(name="organizationId")
|
544
|
-
def organization_id(self) -> pulumi.Output[str]:
|
546
|
+
def organization_id(self) -> pulumi.Output[builtins.str]:
|
545
547
|
"""
|
546
548
|
The Organization ID the PAT rule configuration is associated with.
|
547
549
|
"""
|
@@ -549,7 +551,7 @@ class VpcPublicGatewayPatRule(pulumi.CustomResource):
|
|
549
551
|
|
550
552
|
@property
|
551
553
|
@pulumi.getter(name="privateIp")
|
552
|
-
def private_ip(self) -> pulumi.Output[str]:
|
554
|
+
def private_ip(self) -> pulumi.Output[builtins.str]:
|
553
555
|
"""
|
554
556
|
The private IP address to forward data to.
|
555
557
|
"""
|
@@ -557,7 +559,7 @@ class VpcPublicGatewayPatRule(pulumi.CustomResource):
|
|
557
559
|
|
558
560
|
@property
|
559
561
|
@pulumi.getter(name="privatePort")
|
560
|
-
def private_port(self) -> pulumi.Output[int]:
|
562
|
+
def private_port(self) -> pulumi.Output[builtins.int]:
|
561
563
|
"""
|
562
564
|
The private port to translate to.
|
563
565
|
"""
|
@@ -565,7 +567,7 @@ class VpcPublicGatewayPatRule(pulumi.CustomResource):
|
|
565
567
|
|
566
568
|
@property
|
567
569
|
@pulumi.getter
|
568
|
-
def protocol(self) -> pulumi.Output[Optional[str]]:
|
570
|
+
def protocol(self) -> pulumi.Output[Optional[builtins.str]]:
|
569
571
|
"""
|
570
572
|
The protocol the rule should apply to. Possible values are `both`, `tcp` and `udp`.
|
571
573
|
"""
|
@@ -573,7 +575,7 @@ class VpcPublicGatewayPatRule(pulumi.CustomResource):
|
|
573
575
|
|
574
576
|
@property
|
575
577
|
@pulumi.getter(name="publicPort")
|
576
|
-
def public_port(self) -> pulumi.Output[int]:
|
578
|
+
def public_port(self) -> pulumi.Output[builtins.int]:
|
577
579
|
"""
|
578
580
|
The public port to listen on.
|
579
581
|
"""
|
@@ -581,7 +583,7 @@ class VpcPublicGatewayPatRule(pulumi.CustomResource):
|
|
581
583
|
|
582
584
|
@property
|
583
585
|
@pulumi.getter(name="updatedAt")
|
584
|
-
def updated_at(self) -> pulumi.Output[str]:
|
586
|
+
def updated_at(self) -> pulumi.Output[builtins.str]:
|
585
587
|
"""
|
586
588
|
The date and time of the last update of the PAT rule configuration.
|
587
589
|
"""
|
@@ -589,7 +591,7 @@ class VpcPublicGatewayPatRule(pulumi.CustomResource):
|
|
589
591
|
|
590
592
|
@property
|
591
593
|
@pulumi.getter
|
592
|
-
def zone(self) -> pulumi.Output[str]:
|
594
|
+
def zone(self) -> pulumi.Output[builtins.str]:
|
593
595
|
"""
|
594
596
|
`zone`) The zone in which the Public Gateway DHCP configuration should be created.
|
595
597
|
"""
|