pulumiverse-scaleway 1.25.0a1742464679__py3-none-any.whl → 1.26.0a1742897201__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 +929 -0
- pulumiverse_scaleway/account/__init__.py +12 -0
- pulumiverse_scaleway/account/get_availability_zones.py +139 -0
- pulumiverse_scaleway/account/get_project.py +170 -0
- pulumiverse_scaleway/account/get_ssh_key.py +205 -0
- pulumiverse_scaleway/account/project.py +318 -0
- pulumiverse_scaleway/account/ssh_key.py +456 -0
- pulumiverse_scaleway/account_project.py +6 -0
- pulumiverse_scaleway/account_ssh_key.py +12 -6
- pulumiverse_scaleway/apple_silicon_server.py +8 -2
- pulumiverse_scaleway/applesilicon/__init__.py +10 -0
- pulumiverse_scaleway/applesilicon/_inputs.py +154 -0
- pulumiverse_scaleway/applesilicon/outputs.py +119 -0
- pulumiverse_scaleway/applesilicon/server.py +690 -0
- pulumiverse_scaleway/baremetal_server.py +64 -58
- pulumiverse_scaleway/billing/__init__.py +10 -0
- pulumiverse_scaleway/billing/get_consumptions.py +134 -0
- pulumiverse_scaleway/billing/get_invoices.py +154 -0
- pulumiverse_scaleway/billing/outputs.py +288 -0
- pulumiverse_scaleway/block/__init__.py +11 -0
- pulumiverse_scaleway/block/get_snapshot.py +174 -0
- pulumiverse_scaleway/block/get_volume.py +199 -0
- pulumiverse_scaleway/block/snapshot.py +403 -0
- pulumiverse_scaleway/block/volume.py +576 -0
- pulumiverse_scaleway/block_snapshot.py +12 -6
- pulumiverse_scaleway/block_volume.py +16 -10
- pulumiverse_scaleway/cockpit.py +10 -4
- pulumiverse_scaleway/cockpit_alert_manager.py +12 -6
- pulumiverse_scaleway/cockpit_grafana_user.py +12 -6
- pulumiverse_scaleway/cockpit_source.py +12 -6
- pulumiverse_scaleway/cockpit_token.py +16 -10
- pulumiverse_scaleway/container.py +16 -10
- pulumiverse_scaleway/container_cron.py +14 -8
- pulumiverse_scaleway/container_domain.py +24 -18
- pulumiverse_scaleway/container_namespace.py +10 -4
- pulumiverse_scaleway/container_token.py +32 -26
- pulumiverse_scaleway/container_trigger.py +12 -6
- pulumiverse_scaleway/containers/__init__.py +17 -0
- pulumiverse_scaleway/containers/_inputs.py +389 -0
- pulumiverse_scaleway/containers/container.py +1635 -0
- pulumiverse_scaleway/containers/cron.py +460 -0
- pulumiverse_scaleway/containers/domain.py +408 -0
- pulumiverse_scaleway/containers/get_container.py +562 -0
- pulumiverse_scaleway/containers/get_namespace.py +283 -0
- pulumiverse_scaleway/containers/namespace.py +638 -0
- pulumiverse_scaleway/containers/outputs.py +412 -0
- pulumiverse_scaleway/containers/token.py +454 -0
- pulumiverse_scaleway/containers/trigger.py +482 -0
- pulumiverse_scaleway/database.py +10 -4
- pulumiverse_scaleway/database_acl.py +10 -4
- pulumiverse_scaleway/database_backup.py +14 -8
- pulumiverse_scaleway/database_instance.py +24 -18
- pulumiverse_scaleway/database_privilege.py +16 -10
- pulumiverse_scaleway/database_read_replica.py +22 -16
- pulumiverse_scaleway/database_user.py +10 -4
- pulumiverse_scaleway/databases/__init__.py +23 -0
- pulumiverse_scaleway/databases/_inputs.py +822 -0
- pulumiverse_scaleway/databases/acl.py +334 -0
- pulumiverse_scaleway/databases/database.py +409 -0
- pulumiverse_scaleway/databases/database_backup.py +576 -0
- pulumiverse_scaleway/databases/get_acl.py +143 -0
- pulumiverse_scaleway/databases/get_database.py +187 -0
- pulumiverse_scaleway/databases/get_database_backup.py +253 -0
- pulumiverse_scaleway/databases/get_instance.py +415 -0
- pulumiverse_scaleway/databases/get_privilege.py +181 -0
- pulumiverse_scaleway/databases/instance.py +1696 -0
- pulumiverse_scaleway/databases/outputs.py +866 -0
- pulumiverse_scaleway/databases/privilege.py +424 -0
- pulumiverse_scaleway/databases/read_replica.py +530 -0
- pulumiverse_scaleway/databases/serverless_database.py +434 -0
- pulumiverse_scaleway/databases/snapshot.py +610 -0
- pulumiverse_scaleway/databases/user.py +448 -0
- pulumiverse_scaleway/domain/__init__.py +13 -0
- pulumiverse_scaleway/domain/_inputs.py +341 -0
- pulumiverse_scaleway/domain/get_record.py +340 -0
- pulumiverse_scaleway/domain/get_zone.py +201 -0
- pulumiverse_scaleway/domain/outputs.py +408 -0
- pulumiverse_scaleway/domain/record.py +1118 -0
- pulumiverse_scaleway/domain/zone.py +432 -0
- pulumiverse_scaleway/domain_record.py +36 -30
- pulumiverse_scaleway/domain_zone.py +6 -0
- pulumiverse_scaleway/elasticmetal/__init__.py +18 -0
- pulumiverse_scaleway/elasticmetal/_inputs.py +509 -0
- pulumiverse_scaleway/elasticmetal/get_ip.py +247 -0
- pulumiverse_scaleway/elasticmetal/get_ips.py +240 -0
- pulumiverse_scaleway/elasticmetal/get_offer.py +245 -0
- pulumiverse_scaleway/elasticmetal/get_option.py +168 -0
- pulumiverse_scaleway/elasticmetal/get_os.py +174 -0
- pulumiverse_scaleway/elasticmetal/get_server.py +422 -0
- pulumiverse_scaleway/elasticmetal/ip.py +704 -0
- pulumiverse_scaleway/elasticmetal/ip_mac_address.py +512 -0
- pulumiverse_scaleway/elasticmetal/outputs.py +974 -0
- pulumiverse_scaleway/elasticmetal/server.py +1591 -0
- pulumiverse_scaleway/flexible_ip.py +22 -16
- pulumiverse_scaleway/flexible_ip_mac_address.py +22 -16
- pulumiverse_scaleway/function.py +6 -0
- pulumiverse_scaleway/function_cron.py +16 -10
- pulumiverse_scaleway/function_domain.py +16 -10
- pulumiverse_scaleway/function_namespace.py +10 -4
- pulumiverse_scaleway/function_token.py +32 -26
- pulumiverse_scaleway/function_trigger.py +12 -6
- pulumiverse_scaleway/functions/__init__.py +17 -0
- pulumiverse_scaleway/functions/_inputs.py +211 -0
- pulumiverse_scaleway/functions/cron.py +464 -0
- pulumiverse_scaleway/functions/domain.py +372 -0
- pulumiverse_scaleway/functions/function.py +1105 -0
- pulumiverse_scaleway/functions/get_function.py +365 -0
- pulumiverse_scaleway/functions/get_namespace.py +238 -0
- pulumiverse_scaleway/functions/namespace.py +582 -0
- pulumiverse_scaleway/functions/outputs.py +168 -0
- pulumiverse_scaleway/functions/token.py +462 -0
- pulumiverse_scaleway/functions/trigger.py +482 -0
- pulumiverse_scaleway/get_account_project.py +6 -2
- pulumiverse_scaleway/get_account_ssh_key.py +6 -2
- pulumiverse_scaleway/get_availability_zones.py +8 -4
- pulumiverse_scaleway/get_baremetal_offer.py +4 -0
- pulumiverse_scaleway/get_baremetal_option.py +8 -4
- pulumiverse_scaleway/get_baremetal_os.py +8 -4
- pulumiverse_scaleway/get_baremetal_server.py +8 -4
- pulumiverse_scaleway/get_billing_consumptions.py +4 -0
- pulumiverse_scaleway/get_billing_invoices.py +4 -0
- pulumiverse_scaleway/get_block_snapshot.py +6 -2
- pulumiverse_scaleway/get_block_volume.py +6 -2
- pulumiverse_scaleway/get_cockpit.py +12 -8
- pulumiverse_scaleway/get_cockpit_plan.py +10 -6
- pulumiverse_scaleway/get_cockpit_source.py +8 -4
- pulumiverse_scaleway/get_container.py +16 -12
- pulumiverse_scaleway/get_container_namespace.py +10 -6
- pulumiverse_scaleway/get_database.py +6 -2
- pulumiverse_scaleway/get_database_acl.py +6 -2
- pulumiverse_scaleway/get_database_backup.py +10 -6
- pulumiverse_scaleway/get_database_instance.py +4 -0
- pulumiverse_scaleway/get_database_privilege.py +6 -2
- pulumiverse_scaleway/get_domain_record.py +10 -6
- pulumiverse_scaleway/get_domain_zone.py +4 -0
- pulumiverse_scaleway/get_flexible_ip.py +4 -0
- pulumiverse_scaleway/get_flexible_ips.py +16 -12
- pulumiverse_scaleway/get_function.py +6 -2
- pulumiverse_scaleway/get_function_namespace.py +6 -2
- pulumiverse_scaleway/get_iam_api_key.py +6 -2
- pulumiverse_scaleway/get_iam_application.py +8 -4
- pulumiverse_scaleway/get_iam_group.py +8 -4
- pulumiverse_scaleway/get_iam_ssh_key.py +4 -0
- pulumiverse_scaleway/get_iam_user.py +8 -4
- pulumiverse_scaleway/get_instance_image.py +4 -0
- pulumiverse_scaleway/get_instance_ip.py +4 -0
- pulumiverse_scaleway/get_instance_placement_group.py +4 -0
- pulumiverse_scaleway/get_instance_private_nic.py +10 -6
- pulumiverse_scaleway/get_instance_security_group.py +4 -0
- pulumiverse_scaleway/get_instance_server.py +4 -0
- pulumiverse_scaleway/get_instance_servers.py +4 -0
- pulumiverse_scaleway/get_instance_snapshot.py +8 -4
- pulumiverse_scaleway/get_instance_volume.py +4 -0
- pulumiverse_scaleway/get_iot_device.py +4 -0
- pulumiverse_scaleway/get_iot_hub.py +4 -0
- pulumiverse_scaleway/get_ipam_ip.py +18 -14
- pulumiverse_scaleway/get_ipam_ips.py +14 -10
- pulumiverse_scaleway/get_k8s_version.py +8 -4
- pulumiverse_scaleway/get_kubernetes_cluster.py +4 -0
- pulumiverse_scaleway/get_kubernetes_node_pool.py +4 -0
- pulumiverse_scaleway/get_lb_acls.py +8 -4
- pulumiverse_scaleway/get_lb_backend.py +18 -14
- pulumiverse_scaleway/get_lb_backends.py +8 -4
- pulumiverse_scaleway/get_lb_frontend.py +16 -12
- pulumiverse_scaleway/get_lb_frontends.py +8 -4
- pulumiverse_scaleway/get_lb_ips.py +4 -0
- pulumiverse_scaleway/get_lb_route.py +16 -12
- pulumiverse_scaleway/get_lb_routes.py +8 -4
- pulumiverse_scaleway/get_lbs.py +4 -0
- pulumiverse_scaleway/get_loadbalancer.py +8 -4
- pulumiverse_scaleway/get_loadbalancer_certificate.py +4 -0
- pulumiverse_scaleway/get_loadbalancer_ip.py +4 -0
- pulumiverse_scaleway/get_mnq_sns.py +8 -4
- pulumiverse_scaleway/get_mnq_sqs.py +8 -4
- pulumiverse_scaleway/get_mongo_db_instance.py +4 -0
- pulumiverse_scaleway/get_object_bucket.py +12 -8
- pulumiverse_scaleway/get_object_bucket_policy.py +8 -4
- pulumiverse_scaleway/get_redis_cluster.py +4 -0
- pulumiverse_scaleway/get_registry_image.py +4 -0
- pulumiverse_scaleway/get_registry_image_tag.py +4 -0
- pulumiverse_scaleway/get_registry_namespace.py +4 -0
- pulumiverse_scaleway/get_secret.py +12 -8
- pulumiverse_scaleway/get_secret_version.py +14 -10
- pulumiverse_scaleway/get_tem_domain.py +4 -0
- pulumiverse_scaleway/get_vpc.py +10 -6
- pulumiverse_scaleway/get_vpc_gateway_network.py +10 -6
- pulumiverse_scaleway/get_vpc_private_network.py +10 -6
- pulumiverse_scaleway/get_vpc_public_gateway.py +10 -6
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +8 -4
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +70 -66
- pulumiverse_scaleway/get_vpc_public_gateway_ip.py +8 -4
- pulumiverse_scaleway/get_vpc_public_pat_rule.py +26 -22
- pulumiverse_scaleway/get_vpc_routes.py +4 -0
- pulumiverse_scaleway/get_vpcs.py +4 -0
- pulumiverse_scaleway/get_web_host_offer.py +8 -4
- pulumiverse_scaleway/get_webhosting.py +8 -4
- pulumiverse_scaleway/hosting/__init__.py +12 -0
- pulumiverse_scaleway/hosting/_inputs.py +295 -0
- pulumiverse_scaleway/hosting/get_hosting.py +354 -0
- pulumiverse_scaleway/hosting/get_offer.py +229 -0
- pulumiverse_scaleway/hosting/hosting.py +870 -0
- pulumiverse_scaleway/hosting/outputs.py +626 -0
- pulumiverse_scaleway/iam/__init__.py +21 -0
- pulumiverse_scaleway/iam/_inputs.py +138 -0
- pulumiverse_scaleway/iam/api_key.py +622 -0
- pulumiverse_scaleway/iam/application.py +419 -0
- pulumiverse_scaleway/iam/get_api_key.py +210 -0
- pulumiverse_scaleway/iam/get_application.py +210 -0
- pulumiverse_scaleway/iam/get_group.py +236 -0
- pulumiverse_scaleway/iam/get_ssh_key.py +212 -0
- pulumiverse_scaleway/iam/get_user.py +177 -0
- pulumiverse_scaleway/iam/group.py +568 -0
- pulumiverse_scaleway/iam/group_membership.py +325 -0
- pulumiverse_scaleway/iam/outputs.py +111 -0
- pulumiverse_scaleway/iam/policy.py +775 -0
- pulumiverse_scaleway/iam/ssh_key.py +457 -0
- pulumiverse_scaleway/iam/user.py +515 -0
- pulumiverse_scaleway/iam_api_key.py +16 -10
- pulumiverse_scaleway/iam_application.py +8 -2
- pulumiverse_scaleway/iam_group.py +12 -6
- pulumiverse_scaleway/iam_group_membership.py +12 -6
- pulumiverse_scaleway/iam_policy.py +18 -12
- pulumiverse_scaleway/iam_ssh_key.py +8 -2
- pulumiverse_scaleway/iam_user.py +8 -2
- pulumiverse_scaleway/inference/__init__.py +10 -0
- pulumiverse_scaleway/inference/_inputs.py +209 -0
- pulumiverse_scaleway/inference/deployment.py +824 -0
- pulumiverse_scaleway/inference/outputs.py +169 -0
- pulumiverse_scaleway/inference_deployment.py +8 -2
- pulumiverse_scaleway/instance/__init__.py +29 -0
- pulumiverse_scaleway/instance/_inputs.py +1237 -0
- pulumiverse_scaleway/instance/get_image.py +305 -0
- pulumiverse_scaleway/instance/get_ip.py +204 -0
- pulumiverse_scaleway/instance/get_placement_group.py +212 -0
- pulumiverse_scaleway/instance/get_private_nic.py +226 -0
- pulumiverse_scaleway/instance/get_security_group.py +268 -0
- pulumiverse_scaleway/instance/get_server.py +488 -0
- pulumiverse_scaleway/instance/get_servers.py +187 -0
- pulumiverse_scaleway/instance/get_snapshot.py +248 -0
- pulumiverse_scaleway/instance/get_volume.py +226 -0
- pulumiverse_scaleway/instance/image.py +752 -0
- pulumiverse_scaleway/instance/ip.py +471 -0
- pulumiverse_scaleway/instance/ip_reverse_dns.py +310 -0
- pulumiverse_scaleway/instance/outputs.py +1533 -0
- pulumiverse_scaleway/instance/placement_group.py +481 -0
- pulumiverse_scaleway/instance/private_nic.py +557 -0
- pulumiverse_scaleway/instance/security_group.py +722 -0
- pulumiverse_scaleway/instance/security_group_rules.py +441 -0
- pulumiverse_scaleway/instance/server.py +1938 -0
- pulumiverse_scaleway/instance/snapshot.py +671 -0
- pulumiverse_scaleway/instance/user_data.py +437 -0
- pulumiverse_scaleway/instance/volume.py +584 -0
- pulumiverse_scaleway/instance_image.py +18 -12
- pulumiverse_scaleway/instance_ip.py +8 -2
- pulumiverse_scaleway/instance_ip_reverse_dns.py +12 -6
- pulumiverse_scaleway/instance_placement_group.py +8 -2
- pulumiverse_scaleway/instance_private_nic.py +24 -18
- pulumiverse_scaleway/instance_security_group.py +6 -0
- pulumiverse_scaleway/instance_security_group_rules.py +22 -16
- pulumiverse_scaleway/instance_server.py +74 -68
- pulumiverse_scaleway/instance_snapshot.py +22 -16
- pulumiverse_scaleway/instance_user_data.py +16 -10
- pulumiverse_scaleway/instance_volume.py +8 -2
- pulumiverse_scaleway/iot/__init__.py +15 -0
- pulumiverse_scaleway/iot/_inputs.py +539 -0
- pulumiverse_scaleway/iot/device.py +752 -0
- pulumiverse_scaleway/iot/get_device.py +257 -0
- pulumiverse_scaleway/iot/get_hub.py +322 -0
- pulumiverse_scaleway/iot/hub.py +898 -0
- pulumiverse_scaleway/iot/network.py +474 -0
- pulumiverse_scaleway/iot/outputs.py +465 -0
- pulumiverse_scaleway/iot/route.py +662 -0
- pulumiverse_scaleway/iot_device.py +14 -8
- pulumiverse_scaleway/iot_hub.py +8 -2
- pulumiverse_scaleway/iot_network.py +12 -6
- pulumiverse_scaleway/iot_route.py +32 -26
- pulumiverse_scaleway/ipam/__init__.py +13 -0
- pulumiverse_scaleway/ipam/_inputs.py +442 -0
- pulumiverse_scaleway/ipam/get_ip.py +419 -0
- pulumiverse_scaleway/ipam/get_ips.py +358 -0
- pulumiverse_scaleway/ipam/ip.py +759 -0
- pulumiverse_scaleway/ipam/ip_reverse_dns.py +320 -0
- pulumiverse_scaleway/ipam/outputs.py +481 -0
- pulumiverse_scaleway/ipam_ip.py +30 -24
- pulumiverse_scaleway/ipam_ip_reverse_dns.py +6 -0
- pulumiverse_scaleway/job/__init__.py +10 -0
- pulumiverse_scaleway/job/_inputs.py +73 -0
- pulumiverse_scaleway/job/definition.py +694 -0
- pulumiverse_scaleway/job/outputs.py +49 -0
- pulumiverse_scaleway/job_definition.py +8 -2
- pulumiverse_scaleway/kubernetes/__init__.py +14 -0
- pulumiverse_scaleway/kubernetes/_inputs.py +717 -0
- pulumiverse_scaleway/kubernetes/cluster.py +1540 -0
- pulumiverse_scaleway/kubernetes/get_cluster.py +417 -0
- pulumiverse_scaleway/kubernetes/get_pool.py +436 -0
- pulumiverse_scaleway/kubernetes/get_version.py +196 -0
- pulumiverse_scaleway/kubernetes/outputs.py +944 -0
- pulumiverse_scaleway/kubernetes/pool.py +1313 -0
- pulumiverse_scaleway/kubernetes_cluster.py +36 -30
- pulumiverse_scaleway/kubernetes_node_pool.py +6 -0
- pulumiverse_scaleway/loadbalancer.py +35 -29
- pulumiverse_scaleway/loadbalancer_acl.py +8 -2
- pulumiverse_scaleway/loadbalancer_backend.py +10 -4
- pulumiverse_scaleway/loadbalancer_certificate.py +6 -0
- pulumiverse_scaleway/loadbalancer_frontend.py +10 -4
- pulumiverse_scaleway/loadbalancer_ip.py +10 -4
- pulumiverse_scaleway/loadbalancer_route.py +26 -20
- pulumiverse_scaleway/loadbalancers/__init__.py +28 -0
- pulumiverse_scaleway/loadbalancers/_inputs.py +1103 -0
- pulumiverse_scaleway/loadbalancers/acl.py +522 -0
- pulumiverse_scaleway/loadbalancers/backend.py +1590 -0
- pulumiverse_scaleway/loadbalancers/certificate.py +462 -0
- pulumiverse_scaleway/loadbalancers/frontend.py +831 -0
- pulumiverse_scaleway/loadbalancers/get_acls.py +198 -0
- pulumiverse_scaleway/loadbalancers/get_backend.py +486 -0
- pulumiverse_scaleway/loadbalancers/get_backends.py +196 -0
- pulumiverse_scaleway/loadbalancers/get_certificate.py +230 -0
- pulumiverse_scaleway/loadbalancers/get_frontend.py +274 -0
- pulumiverse_scaleway/loadbalancers/get_frontends.py +196 -0
- pulumiverse_scaleway/loadbalancers/get_ip.py +228 -0
- pulumiverse_scaleway/loadbalancers/get_ips.py +198 -0
- pulumiverse_scaleway/loadbalancers/get_load_balancer.py +339 -0
- pulumiverse_scaleway/loadbalancers/get_load_balancers.py +187 -0
- pulumiverse_scaleway/loadbalancers/get_route.py +217 -0
- pulumiverse_scaleway/loadbalancers/get_routes.py +179 -0
- pulumiverse_scaleway/loadbalancers/ip.py +516 -0
- pulumiverse_scaleway/loadbalancers/load_balancer.py +1063 -0
- pulumiverse_scaleway/loadbalancers/outputs.py +2491 -0
- pulumiverse_scaleway/loadbalancers/route.py +525 -0
- pulumiverse_scaleway/mnq/__init__.py +20 -0
- pulumiverse_scaleway/mnq/_inputs.py +169 -0
- pulumiverse_scaleway/mnq/get_sns.py +150 -0
- pulumiverse_scaleway/mnq/get_sqs.py +150 -0
- pulumiverse_scaleway/mnq/nats_account.py +336 -0
- pulumiverse_scaleway/mnq/nats_credentials.py +332 -0
- pulumiverse_scaleway/mnq/outputs.py +149 -0
- pulumiverse_scaleway/mnq/sns.py +308 -0
- pulumiverse_scaleway/mnq/sns_credentials.py +415 -0
- pulumiverse_scaleway/mnq/sns_topic.py +661 -0
- pulumiverse_scaleway/mnq/sns_topic_subscription.py +701 -0
- pulumiverse_scaleway/mnq/sqs.py +306 -0
- pulumiverse_scaleway/mnq/sqs_credentials.py +415 -0
- pulumiverse_scaleway/mnq/sqs_queue.py +802 -0
- pulumiverse_scaleway/mnq_nats_account.py +8 -2
- pulumiverse_scaleway/mnq_nats_credentials.py +10 -4
- pulumiverse_scaleway/mnq_sns.py +12 -6
- pulumiverse_scaleway/mnq_sns_credentials.py +10 -4
- pulumiverse_scaleway/mnq_sns_topic.py +16 -10
- pulumiverse_scaleway/mnq_sns_topic_subscription.py +22 -16
- pulumiverse_scaleway/mnq_sqs.py +12 -6
- pulumiverse_scaleway/mnq_sqs_credentials.py +10 -4
- pulumiverse_scaleway/mnq_sqs_queue.py +16 -10
- pulumiverse_scaleway/mongo_db_instance.py +14 -8
- pulumiverse_scaleway/mongo_db_snapshot.py +8 -2
- pulumiverse_scaleway/mongodb/__init__.py +12 -0
- pulumiverse_scaleway/mongodb/_inputs.py +208 -0
- pulumiverse_scaleway/mongodb/get_instance.py +335 -0
- pulumiverse_scaleway/mongodb/instance.py +1000 -0
- pulumiverse_scaleway/mongodb/outputs.py +270 -0
- pulumiverse_scaleway/mongodb/snapshot.py +523 -0
- pulumiverse_scaleway/network/__init__.py +29 -0
- pulumiverse_scaleway/network/_inputs.py +383 -0
- pulumiverse_scaleway/network/gateway_network.py +868 -0
- pulumiverse_scaleway/network/get_gateway_network.py +287 -0
- pulumiverse_scaleway/network/get_private_network.py +282 -0
- pulumiverse_scaleway/network/get_public_gateway.py +304 -0
- pulumiverse_scaleway/network/get_public_gateway_dhcp.py +305 -0
- pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +382 -0
- pulumiverse_scaleway/network/get_public_gateway_ip.py +199 -0
- pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +313 -0
- pulumiverse_scaleway/network/get_routes.py +208 -0
- pulumiverse_scaleway/network/get_vpc.py +246 -0
- pulumiverse_scaleway/network/get_vpcs.py +174 -0
- pulumiverse_scaleway/network/outputs.py +747 -0
- pulumiverse_scaleway/network/private_network.py +736 -0
- pulumiverse_scaleway/network/public_gateway.py +791 -0
- pulumiverse_scaleway/network/public_gateway_dhcp.py +949 -0
- pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +516 -0
- pulumiverse_scaleway/network/public_gateway_ip.py +459 -0
- pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +308 -0
- pulumiverse_scaleway/network/public_gateway_pat_rule.py +593 -0
- pulumiverse_scaleway/network/route.py +579 -0
- pulumiverse_scaleway/network/vpc.py +538 -0
- pulumiverse_scaleway/object/__init__.py +17 -0
- pulumiverse_scaleway/object/_inputs.py +831 -0
- pulumiverse_scaleway/object/bucket.py +876 -0
- pulumiverse_scaleway/object/bucket_acl.py +598 -0
- pulumiverse_scaleway/object/bucket_lock_configuration.py +397 -0
- pulumiverse_scaleway/object/bucket_policy.py +675 -0
- pulumiverse_scaleway/object/bucket_website_configuration.py +536 -0
- pulumiverse_scaleway/object/get_bucket.py +290 -0
- pulumiverse_scaleway/object/get_bucket_policy.py +163 -0
- pulumiverse_scaleway/object/item.py +778 -0
- pulumiverse_scaleway/object/outputs.py +802 -0
- pulumiverse_scaleway/object_bucket.py +28 -22
- pulumiverse_scaleway/object_bucket_acl.py +14 -8
- pulumiverse_scaleway/object_bucket_lock_configuration.py +12 -6
- pulumiverse_scaleway/object_bucket_policy.py +46 -40
- pulumiverse_scaleway/object_bucket_website_configuration.py +18 -12
- pulumiverse_scaleway/object_item.py +8 -2
- pulumiverse_scaleway/observability/__init__.py +17 -0
- pulumiverse_scaleway/observability/_inputs.py +417 -0
- pulumiverse_scaleway/observability/alert_manager.py +403 -0
- pulumiverse_scaleway/observability/cockpit.py +325 -0
- pulumiverse_scaleway/observability/get_instance.py +205 -0
- pulumiverse_scaleway/observability/get_plan.py +125 -0
- pulumiverse_scaleway/observability/get_source.py +262 -0
- pulumiverse_scaleway/observability/grafana_user.py +364 -0
- pulumiverse_scaleway/observability/outputs.py +425 -0
- pulumiverse_scaleway/observability/source.py +569 -0
- pulumiverse_scaleway/observability/token.py +481 -0
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/rdb_snapshot.py +16 -10
- pulumiverse_scaleway/redis/__init__.py +11 -0
- pulumiverse_scaleway/redis/_inputs.py +330 -0
- pulumiverse_scaleway/redis/cluster.py +1203 -0
- pulumiverse_scaleway/redis/get_cluster.py +347 -0
- pulumiverse_scaleway/redis/outputs.py +356 -0
- pulumiverse_scaleway/redis_cluster.py +14 -8
- pulumiverse_scaleway/registry/__init__.py +11 -0
- pulumiverse_scaleway/registry/get_image.py +239 -0
- pulumiverse_scaleway/registry/get_image_tag.py +229 -0
- pulumiverse_scaleway/registry/get_namespace.py +199 -0
- pulumiverse_scaleway/registry/namespace.py +460 -0
- pulumiverse_scaleway/registry_namespace.py +8 -2
- pulumiverse_scaleway/sdb_database.py +10 -4
- pulumiverse_scaleway/secret.py +6 -0
- pulumiverse_scaleway/secret_version.py +12 -6
- pulumiverse_scaleway/secrets/__init__.py +13 -0
- pulumiverse_scaleway/secrets/_inputs.py +94 -0
- pulumiverse_scaleway/secrets/get_secret.py +338 -0
- pulumiverse_scaleway/secrets/get_version.py +340 -0
- pulumiverse_scaleway/secrets/outputs.py +120 -0
- pulumiverse_scaleway/secrets/secret.py +665 -0
- pulumiverse_scaleway/secrets/version.py +489 -0
- pulumiverse_scaleway/tem/__init__.py +13 -0
- pulumiverse_scaleway/tem/_inputs.py +135 -0
- pulumiverse_scaleway/tem/domain.py +1032 -0
- pulumiverse_scaleway/tem/domain_validation.py +305 -0
- pulumiverse_scaleway/tem/get_domain.py +378 -0
- pulumiverse_scaleway/tem/outputs.py +171 -0
- pulumiverse_scaleway/tem/webhook.py +642 -0
- pulumiverse_scaleway/tem_domain.py +20 -14
- pulumiverse_scaleway/tem_domain_validation.py +10 -4
- pulumiverse_scaleway/tem_webhook.py +28 -22
- pulumiverse_scaleway/vpc.py +10 -4
- pulumiverse_scaleway/vpc_gateway_network.py +40 -34
- pulumiverse_scaleway/vpc_private_network.py +10 -4
- pulumiverse_scaleway/vpc_public_gateway.py +8 -2
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +15 -9
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +32 -26
- pulumiverse_scaleway/vpc_public_gateway_ip.py +10 -4
- pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +12 -6
- pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +26 -20
- pulumiverse_scaleway/vpc_route.py +16 -10
- pulumiverse_scaleway/webhosting.py +10 -4
- {pulumiverse_scaleway-1.25.0a1742464679.dist-info → pulumiverse_scaleway-1.26.0a1742897201.dist-info}/METADATA +1 -1
- pulumiverse_scaleway-1.26.0a1742897201.dist-info/RECORD +470 -0
- {pulumiverse_scaleway-1.25.0a1742464679.dist-info → pulumiverse_scaleway-1.26.0a1742897201.dist-info}/WHEEL +1 -1
- pulumiverse_scaleway-1.25.0a1742464679.dist-info/RECORD +0 -206
- {pulumiverse_scaleway-1.25.0a1742464679.dist-info → pulumiverse_scaleway-1.26.0a1742897201.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,747 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
|
17
|
+
__all__ = [
|
18
|
+
'GatewayNetworkIpamConfig',
|
19
|
+
'PrivateNetworkIpv4Subnet',
|
20
|
+
'PrivateNetworkIpv6Subnet',
|
21
|
+
'GetGatewayNetworkIpamConfigResult',
|
22
|
+
'GetPrivateNetworkIpv4SubnetResult',
|
23
|
+
'GetPrivateNetworkIpv6SubnetResult',
|
24
|
+
'GetRoutesRouteResult',
|
25
|
+
'GetVpcsVpcResult',
|
26
|
+
]
|
27
|
+
|
28
|
+
@pulumi.output_type
|
29
|
+
class GatewayNetworkIpamConfig(dict):
|
30
|
+
@staticmethod
|
31
|
+
def __key_warning(key: str):
|
32
|
+
suggest = None
|
33
|
+
if key == "ipamIpId":
|
34
|
+
suggest = "ipam_ip_id"
|
35
|
+
elif key == "pushDefaultRoute":
|
36
|
+
suggest = "push_default_route"
|
37
|
+
|
38
|
+
if suggest:
|
39
|
+
pulumi.log.warn(f"Key '{key}' not found in GatewayNetworkIpamConfig. Access the value via the '{suggest}' property getter instead.")
|
40
|
+
|
41
|
+
def __getitem__(self, key: str) -> Any:
|
42
|
+
GatewayNetworkIpamConfig.__key_warning(key)
|
43
|
+
return super().__getitem__(key)
|
44
|
+
|
45
|
+
def get(self, key: str, default = None) -> Any:
|
46
|
+
GatewayNetworkIpamConfig.__key_warning(key)
|
47
|
+
return super().get(key, default)
|
48
|
+
|
49
|
+
def __init__(__self__, *,
|
50
|
+
ipam_ip_id: Optional[str] = None,
|
51
|
+
push_default_route: Optional[bool] = None):
|
52
|
+
"""
|
53
|
+
:param str ipam_ip_id: Use this IPAM-booked IP ID as the Gateway's IP in this Private Network.
|
54
|
+
:param bool push_default_route: Defines whether to enable the default route on the GatewayNetwork.
|
55
|
+
"""
|
56
|
+
if ipam_ip_id is not None:
|
57
|
+
pulumi.set(__self__, "ipam_ip_id", ipam_ip_id)
|
58
|
+
if push_default_route is not None:
|
59
|
+
pulumi.set(__self__, "push_default_route", push_default_route)
|
60
|
+
|
61
|
+
@property
|
62
|
+
@pulumi.getter(name="ipamIpId")
|
63
|
+
def ipam_ip_id(self) -> Optional[str]:
|
64
|
+
"""
|
65
|
+
Use this IPAM-booked IP ID as the Gateway's IP in this Private Network.
|
66
|
+
"""
|
67
|
+
return pulumi.get(self, "ipam_ip_id")
|
68
|
+
|
69
|
+
@property
|
70
|
+
@pulumi.getter(name="pushDefaultRoute")
|
71
|
+
def push_default_route(self) -> Optional[bool]:
|
72
|
+
"""
|
73
|
+
Defines whether to enable the default route on the GatewayNetwork.
|
74
|
+
"""
|
75
|
+
return pulumi.get(self, "push_default_route")
|
76
|
+
|
77
|
+
|
78
|
+
@pulumi.output_type
|
79
|
+
class PrivateNetworkIpv4Subnet(dict):
|
80
|
+
@staticmethod
|
81
|
+
def __key_warning(key: str):
|
82
|
+
suggest = None
|
83
|
+
if key == "createdAt":
|
84
|
+
suggest = "created_at"
|
85
|
+
elif key == "prefixLength":
|
86
|
+
suggest = "prefix_length"
|
87
|
+
elif key == "subnetMask":
|
88
|
+
suggest = "subnet_mask"
|
89
|
+
elif key == "updatedAt":
|
90
|
+
suggest = "updated_at"
|
91
|
+
|
92
|
+
if suggest:
|
93
|
+
pulumi.log.warn(f"Key '{key}' not found in PrivateNetworkIpv4Subnet. Access the value via the '{suggest}' property getter instead.")
|
94
|
+
|
95
|
+
def __getitem__(self, key: str) -> Any:
|
96
|
+
PrivateNetworkIpv4Subnet.__key_warning(key)
|
97
|
+
return super().__getitem__(key)
|
98
|
+
|
99
|
+
def get(self, key: str, default = None) -> Any:
|
100
|
+
PrivateNetworkIpv4Subnet.__key_warning(key)
|
101
|
+
return super().get(key, default)
|
102
|
+
|
103
|
+
def __init__(__self__, *,
|
104
|
+
address: Optional[str] = None,
|
105
|
+
created_at: Optional[str] = None,
|
106
|
+
id: Optional[str] = None,
|
107
|
+
prefix_length: Optional[int] = None,
|
108
|
+
subnet: Optional[str] = None,
|
109
|
+
subnet_mask: Optional[str] = None,
|
110
|
+
updated_at: Optional[str] = None):
|
111
|
+
"""
|
112
|
+
:param str address: The network address of the subnet in hexadecimal notation, e.g., '2001:db8::' for a '2001:db8::/64' subnet.
|
113
|
+
:param str created_at: The date and time of the creation of the subnet.
|
114
|
+
:param str id: The subnet ID.
|
115
|
+
:param int prefix_length: The length of the network prefix, e.g., 64 for a 'ffff:ffff:ffff:ffff::' mask.
|
116
|
+
:param str subnet: The subnet CIDR.
|
117
|
+
:param str subnet_mask: The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
|
118
|
+
:param str updated_at: The date and time of the last update of the subnet.
|
119
|
+
"""
|
120
|
+
if address is not None:
|
121
|
+
pulumi.set(__self__, "address", address)
|
122
|
+
if created_at is not None:
|
123
|
+
pulumi.set(__self__, "created_at", created_at)
|
124
|
+
if id is not None:
|
125
|
+
pulumi.set(__self__, "id", id)
|
126
|
+
if prefix_length is not None:
|
127
|
+
pulumi.set(__self__, "prefix_length", prefix_length)
|
128
|
+
if subnet is not None:
|
129
|
+
pulumi.set(__self__, "subnet", subnet)
|
130
|
+
if subnet_mask is not None:
|
131
|
+
pulumi.set(__self__, "subnet_mask", subnet_mask)
|
132
|
+
if updated_at is not None:
|
133
|
+
pulumi.set(__self__, "updated_at", updated_at)
|
134
|
+
|
135
|
+
@property
|
136
|
+
@pulumi.getter
|
137
|
+
def address(self) -> Optional[str]:
|
138
|
+
"""
|
139
|
+
The network address of the subnet in hexadecimal notation, e.g., '2001:db8::' for a '2001:db8::/64' subnet.
|
140
|
+
"""
|
141
|
+
return pulumi.get(self, "address")
|
142
|
+
|
143
|
+
@property
|
144
|
+
@pulumi.getter(name="createdAt")
|
145
|
+
def created_at(self) -> Optional[str]:
|
146
|
+
"""
|
147
|
+
The date and time of the creation of the subnet.
|
148
|
+
"""
|
149
|
+
return pulumi.get(self, "created_at")
|
150
|
+
|
151
|
+
@property
|
152
|
+
@pulumi.getter
|
153
|
+
def id(self) -> Optional[str]:
|
154
|
+
"""
|
155
|
+
The subnet ID.
|
156
|
+
"""
|
157
|
+
return pulumi.get(self, "id")
|
158
|
+
|
159
|
+
@property
|
160
|
+
@pulumi.getter(name="prefixLength")
|
161
|
+
def prefix_length(self) -> Optional[int]:
|
162
|
+
"""
|
163
|
+
The length of the network prefix, e.g., 64 for a 'ffff:ffff:ffff:ffff::' mask.
|
164
|
+
"""
|
165
|
+
return pulumi.get(self, "prefix_length")
|
166
|
+
|
167
|
+
@property
|
168
|
+
@pulumi.getter
|
169
|
+
def subnet(self) -> Optional[str]:
|
170
|
+
"""
|
171
|
+
The subnet CIDR.
|
172
|
+
"""
|
173
|
+
return pulumi.get(self, "subnet")
|
174
|
+
|
175
|
+
@property
|
176
|
+
@pulumi.getter(name="subnetMask")
|
177
|
+
def subnet_mask(self) -> Optional[str]:
|
178
|
+
"""
|
179
|
+
The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
|
180
|
+
"""
|
181
|
+
return pulumi.get(self, "subnet_mask")
|
182
|
+
|
183
|
+
@property
|
184
|
+
@pulumi.getter(name="updatedAt")
|
185
|
+
def updated_at(self) -> Optional[str]:
|
186
|
+
"""
|
187
|
+
The date and time of the last update of the subnet.
|
188
|
+
"""
|
189
|
+
return pulumi.get(self, "updated_at")
|
190
|
+
|
191
|
+
|
192
|
+
@pulumi.output_type
|
193
|
+
class PrivateNetworkIpv6Subnet(dict):
|
194
|
+
@staticmethod
|
195
|
+
def __key_warning(key: str):
|
196
|
+
suggest = None
|
197
|
+
if key == "createdAt":
|
198
|
+
suggest = "created_at"
|
199
|
+
elif key == "prefixLength":
|
200
|
+
suggest = "prefix_length"
|
201
|
+
elif key == "subnetMask":
|
202
|
+
suggest = "subnet_mask"
|
203
|
+
elif key == "updatedAt":
|
204
|
+
suggest = "updated_at"
|
205
|
+
|
206
|
+
if suggest:
|
207
|
+
pulumi.log.warn(f"Key '{key}' not found in PrivateNetworkIpv6Subnet. Access the value via the '{suggest}' property getter instead.")
|
208
|
+
|
209
|
+
def __getitem__(self, key: str) -> Any:
|
210
|
+
PrivateNetworkIpv6Subnet.__key_warning(key)
|
211
|
+
return super().__getitem__(key)
|
212
|
+
|
213
|
+
def get(self, key: str, default = None) -> Any:
|
214
|
+
PrivateNetworkIpv6Subnet.__key_warning(key)
|
215
|
+
return super().get(key, default)
|
216
|
+
|
217
|
+
def __init__(__self__, *,
|
218
|
+
address: Optional[str] = None,
|
219
|
+
created_at: Optional[str] = None,
|
220
|
+
id: Optional[str] = None,
|
221
|
+
prefix_length: Optional[int] = None,
|
222
|
+
subnet: Optional[str] = None,
|
223
|
+
subnet_mask: Optional[str] = None,
|
224
|
+
updated_at: Optional[str] = None):
|
225
|
+
"""
|
226
|
+
:param str address: The network address of the subnet in hexadecimal notation, e.g., '2001:db8::' for a '2001:db8::/64' subnet.
|
227
|
+
:param str created_at: The date and time of the creation of the subnet.
|
228
|
+
:param str id: The subnet ID.
|
229
|
+
:param int prefix_length: The length of the network prefix, e.g., 64 for a 'ffff:ffff:ffff:ffff::' mask.
|
230
|
+
:param str subnet: The subnet CIDR.
|
231
|
+
:param str subnet_mask: The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
|
232
|
+
:param str updated_at: The date and time of the last update of the subnet.
|
233
|
+
"""
|
234
|
+
if address is not None:
|
235
|
+
pulumi.set(__self__, "address", address)
|
236
|
+
if created_at is not None:
|
237
|
+
pulumi.set(__self__, "created_at", created_at)
|
238
|
+
if id is not None:
|
239
|
+
pulumi.set(__self__, "id", id)
|
240
|
+
if prefix_length is not None:
|
241
|
+
pulumi.set(__self__, "prefix_length", prefix_length)
|
242
|
+
if subnet is not None:
|
243
|
+
pulumi.set(__self__, "subnet", subnet)
|
244
|
+
if subnet_mask is not None:
|
245
|
+
pulumi.set(__self__, "subnet_mask", subnet_mask)
|
246
|
+
if updated_at is not None:
|
247
|
+
pulumi.set(__self__, "updated_at", updated_at)
|
248
|
+
|
249
|
+
@property
|
250
|
+
@pulumi.getter
|
251
|
+
def address(self) -> Optional[str]:
|
252
|
+
"""
|
253
|
+
The network address of the subnet in hexadecimal notation, e.g., '2001:db8::' for a '2001:db8::/64' subnet.
|
254
|
+
"""
|
255
|
+
return pulumi.get(self, "address")
|
256
|
+
|
257
|
+
@property
|
258
|
+
@pulumi.getter(name="createdAt")
|
259
|
+
def created_at(self) -> Optional[str]:
|
260
|
+
"""
|
261
|
+
The date and time of the creation of the subnet.
|
262
|
+
"""
|
263
|
+
return pulumi.get(self, "created_at")
|
264
|
+
|
265
|
+
@property
|
266
|
+
@pulumi.getter
|
267
|
+
def id(self) -> Optional[str]:
|
268
|
+
"""
|
269
|
+
The subnet ID.
|
270
|
+
"""
|
271
|
+
return pulumi.get(self, "id")
|
272
|
+
|
273
|
+
@property
|
274
|
+
@pulumi.getter(name="prefixLength")
|
275
|
+
def prefix_length(self) -> Optional[int]:
|
276
|
+
"""
|
277
|
+
The length of the network prefix, e.g., 64 for a 'ffff:ffff:ffff:ffff::' mask.
|
278
|
+
"""
|
279
|
+
return pulumi.get(self, "prefix_length")
|
280
|
+
|
281
|
+
@property
|
282
|
+
@pulumi.getter
|
283
|
+
def subnet(self) -> Optional[str]:
|
284
|
+
"""
|
285
|
+
The subnet CIDR.
|
286
|
+
"""
|
287
|
+
return pulumi.get(self, "subnet")
|
288
|
+
|
289
|
+
@property
|
290
|
+
@pulumi.getter(name="subnetMask")
|
291
|
+
def subnet_mask(self) -> Optional[str]:
|
292
|
+
"""
|
293
|
+
The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
|
294
|
+
"""
|
295
|
+
return pulumi.get(self, "subnet_mask")
|
296
|
+
|
297
|
+
@property
|
298
|
+
@pulumi.getter(name="updatedAt")
|
299
|
+
def updated_at(self) -> Optional[str]:
|
300
|
+
"""
|
301
|
+
The date and time of the last update of the subnet.
|
302
|
+
"""
|
303
|
+
return pulumi.get(self, "updated_at")
|
304
|
+
|
305
|
+
|
306
|
+
@pulumi.output_type
|
307
|
+
class GetGatewayNetworkIpamConfigResult(dict):
|
308
|
+
def __init__(__self__, *,
|
309
|
+
ipam_ip_id: str,
|
310
|
+
push_default_route: bool):
|
311
|
+
"""
|
312
|
+
:param str ipam_ip_id: Use this IPAM-booked IP ID as the Gateway's IP in this Private Network
|
313
|
+
:param bool push_default_route: Defines whether the default route is enabled on that Gateway Network
|
314
|
+
"""
|
315
|
+
pulumi.set(__self__, "ipam_ip_id", ipam_ip_id)
|
316
|
+
pulumi.set(__self__, "push_default_route", push_default_route)
|
317
|
+
|
318
|
+
@property
|
319
|
+
@pulumi.getter(name="ipamIpId")
|
320
|
+
def ipam_ip_id(self) -> str:
|
321
|
+
"""
|
322
|
+
Use this IPAM-booked IP ID as the Gateway's IP in this Private Network
|
323
|
+
"""
|
324
|
+
return pulumi.get(self, "ipam_ip_id")
|
325
|
+
|
326
|
+
@property
|
327
|
+
@pulumi.getter(name="pushDefaultRoute")
|
328
|
+
def push_default_route(self) -> bool:
|
329
|
+
"""
|
330
|
+
Defines whether the default route is enabled on that Gateway Network
|
331
|
+
"""
|
332
|
+
return pulumi.get(self, "push_default_route")
|
333
|
+
|
334
|
+
|
335
|
+
@pulumi.output_type
|
336
|
+
class GetPrivateNetworkIpv4SubnetResult(dict):
|
337
|
+
def __init__(__self__, *,
|
338
|
+
address: str,
|
339
|
+
created_at: str,
|
340
|
+
id: str,
|
341
|
+
prefix_length: int,
|
342
|
+
subnet: str,
|
343
|
+
subnet_mask: str,
|
344
|
+
updated_at: str):
|
345
|
+
"""
|
346
|
+
:param str address: The network address of the subnet in dotted decimal notation, e.g., '192.168.0.0' for a '192.168.0.0/24' subnet
|
347
|
+
:param str created_at: The date and time of the creation of the subnet
|
348
|
+
:param str id: The ID of the Private Network.
|
349
|
+
:param int prefix_length: The length of the network prefix, e.g., 24 for a 255.255.255.0 mask
|
350
|
+
:param str subnet: The subnet CIDR
|
351
|
+
:param str subnet_mask: The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
|
352
|
+
:param str updated_at: The date and time of the last update of the subnet
|
353
|
+
"""
|
354
|
+
pulumi.set(__self__, "address", address)
|
355
|
+
pulumi.set(__self__, "created_at", created_at)
|
356
|
+
pulumi.set(__self__, "id", id)
|
357
|
+
pulumi.set(__self__, "prefix_length", prefix_length)
|
358
|
+
pulumi.set(__self__, "subnet", subnet)
|
359
|
+
pulumi.set(__self__, "subnet_mask", subnet_mask)
|
360
|
+
pulumi.set(__self__, "updated_at", updated_at)
|
361
|
+
|
362
|
+
@property
|
363
|
+
@pulumi.getter
|
364
|
+
def address(self) -> str:
|
365
|
+
"""
|
366
|
+
The network address of the subnet in dotted decimal notation, e.g., '192.168.0.0' for a '192.168.0.0/24' subnet
|
367
|
+
"""
|
368
|
+
return pulumi.get(self, "address")
|
369
|
+
|
370
|
+
@property
|
371
|
+
@pulumi.getter(name="createdAt")
|
372
|
+
def created_at(self) -> str:
|
373
|
+
"""
|
374
|
+
The date and time of the creation of the subnet
|
375
|
+
"""
|
376
|
+
return pulumi.get(self, "created_at")
|
377
|
+
|
378
|
+
@property
|
379
|
+
@pulumi.getter
|
380
|
+
def id(self) -> str:
|
381
|
+
"""
|
382
|
+
The ID of the Private Network.
|
383
|
+
"""
|
384
|
+
return pulumi.get(self, "id")
|
385
|
+
|
386
|
+
@property
|
387
|
+
@pulumi.getter(name="prefixLength")
|
388
|
+
def prefix_length(self) -> int:
|
389
|
+
"""
|
390
|
+
The length of the network prefix, e.g., 24 for a 255.255.255.0 mask
|
391
|
+
"""
|
392
|
+
return pulumi.get(self, "prefix_length")
|
393
|
+
|
394
|
+
@property
|
395
|
+
@pulumi.getter
|
396
|
+
def subnet(self) -> str:
|
397
|
+
"""
|
398
|
+
The subnet CIDR
|
399
|
+
"""
|
400
|
+
return pulumi.get(self, "subnet")
|
401
|
+
|
402
|
+
@property
|
403
|
+
@pulumi.getter(name="subnetMask")
|
404
|
+
def subnet_mask(self) -> str:
|
405
|
+
"""
|
406
|
+
The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
|
407
|
+
"""
|
408
|
+
return pulumi.get(self, "subnet_mask")
|
409
|
+
|
410
|
+
@property
|
411
|
+
@pulumi.getter(name="updatedAt")
|
412
|
+
def updated_at(self) -> str:
|
413
|
+
"""
|
414
|
+
The date and time of the last update of the subnet
|
415
|
+
"""
|
416
|
+
return pulumi.get(self, "updated_at")
|
417
|
+
|
418
|
+
|
419
|
+
@pulumi.output_type
|
420
|
+
class GetPrivateNetworkIpv6SubnetResult(dict):
|
421
|
+
def __init__(__self__, *,
|
422
|
+
address: str,
|
423
|
+
created_at: str,
|
424
|
+
id: str,
|
425
|
+
prefix_length: int,
|
426
|
+
subnet: str,
|
427
|
+
subnet_mask: str,
|
428
|
+
updated_at: str):
|
429
|
+
"""
|
430
|
+
:param str address: The network address of the subnet in dotted decimal notation, e.g., '192.168.0.0' for a '192.168.0.0/24' subnet
|
431
|
+
:param str created_at: The date and time of the creation of the subnet
|
432
|
+
:param str id: The ID of the Private Network.
|
433
|
+
:param int prefix_length: The length of the network prefix, e.g., 24 for a 255.255.255.0 mask
|
434
|
+
:param str subnet: The subnet CIDR
|
435
|
+
:param str subnet_mask: The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
|
436
|
+
:param str updated_at: The date and time of the last update of the subnet
|
437
|
+
"""
|
438
|
+
pulumi.set(__self__, "address", address)
|
439
|
+
pulumi.set(__self__, "created_at", created_at)
|
440
|
+
pulumi.set(__self__, "id", id)
|
441
|
+
pulumi.set(__self__, "prefix_length", prefix_length)
|
442
|
+
pulumi.set(__self__, "subnet", subnet)
|
443
|
+
pulumi.set(__self__, "subnet_mask", subnet_mask)
|
444
|
+
pulumi.set(__self__, "updated_at", updated_at)
|
445
|
+
|
446
|
+
@property
|
447
|
+
@pulumi.getter
|
448
|
+
def address(self) -> str:
|
449
|
+
"""
|
450
|
+
The network address of the subnet in dotted decimal notation, e.g., '192.168.0.0' for a '192.168.0.0/24' subnet
|
451
|
+
"""
|
452
|
+
return pulumi.get(self, "address")
|
453
|
+
|
454
|
+
@property
|
455
|
+
@pulumi.getter(name="createdAt")
|
456
|
+
def created_at(self) -> str:
|
457
|
+
"""
|
458
|
+
The date and time of the creation of the subnet
|
459
|
+
"""
|
460
|
+
return pulumi.get(self, "created_at")
|
461
|
+
|
462
|
+
@property
|
463
|
+
@pulumi.getter
|
464
|
+
def id(self) -> str:
|
465
|
+
"""
|
466
|
+
The ID of the Private Network.
|
467
|
+
"""
|
468
|
+
return pulumi.get(self, "id")
|
469
|
+
|
470
|
+
@property
|
471
|
+
@pulumi.getter(name="prefixLength")
|
472
|
+
def prefix_length(self) -> int:
|
473
|
+
"""
|
474
|
+
The length of the network prefix, e.g., 24 for a 255.255.255.0 mask
|
475
|
+
"""
|
476
|
+
return pulumi.get(self, "prefix_length")
|
477
|
+
|
478
|
+
@property
|
479
|
+
@pulumi.getter
|
480
|
+
def subnet(self) -> str:
|
481
|
+
"""
|
482
|
+
The subnet CIDR
|
483
|
+
"""
|
484
|
+
return pulumi.get(self, "subnet")
|
485
|
+
|
486
|
+
@property
|
487
|
+
@pulumi.getter(name="subnetMask")
|
488
|
+
def subnet_mask(self) -> str:
|
489
|
+
"""
|
490
|
+
The subnet mask expressed in dotted decimal notation, e.g., '255.255.255.0' for a /24 subnet
|
491
|
+
"""
|
492
|
+
return pulumi.get(self, "subnet_mask")
|
493
|
+
|
494
|
+
@property
|
495
|
+
@pulumi.getter(name="updatedAt")
|
496
|
+
def updated_at(self) -> str:
|
497
|
+
"""
|
498
|
+
The date and time of the last update of the subnet
|
499
|
+
"""
|
500
|
+
return pulumi.get(self, "updated_at")
|
501
|
+
|
502
|
+
|
503
|
+
@pulumi.output_type
|
504
|
+
class GetRoutesRouteResult(dict):
|
505
|
+
def __init__(__self__, *,
|
506
|
+
created_at: str,
|
507
|
+
description: str,
|
508
|
+
destination: str,
|
509
|
+
id: str,
|
510
|
+
nexthop_ip: str,
|
511
|
+
nexthop_name: str,
|
512
|
+
nexthop_private_network_id: str,
|
513
|
+
nexthop_resource_id: str,
|
514
|
+
nexthop_resource_type: str,
|
515
|
+
region: str,
|
516
|
+
tags: Sequence[str],
|
517
|
+
vpc_id: str):
|
518
|
+
"""
|
519
|
+
:param str created_at: The date on which the route was created (RFC 3339 format).
|
520
|
+
:param str description: The description of the route.
|
521
|
+
:param str destination: The destination IP or IP range of the route.
|
522
|
+
:param str id: The ID of the route.
|
523
|
+
> **Important:** route IDs are regional, which means they are of the form `{region}/{id}`, e.g. `fr-par/11111111-1111-1111-1111-111111111111
|
524
|
+
:param str nexthop_ip: The IP of the route's next hop.
|
525
|
+
:param str nexthop_name: The name of the route's next hop.
|
526
|
+
:param str nexthop_private_network_id: The next hop private network ID to filter for. routes with a similar next hop private network ID are listed.
|
527
|
+
:param str nexthop_resource_id: The next hop resource ID to filter for. routes with a similar next hop resource ID are listed.
|
528
|
+
:param str nexthop_resource_type: The next hop resource type to filter for. routes with a similar next hop resource type are listed.
|
529
|
+
:param str region: `region`). The region in which the routes exist.
|
530
|
+
:param Sequence[str] tags: List of tags to filter for. routes with these exact tags are listed.
|
531
|
+
:param str vpc_id: The VPC ID to filter for. routes with a similar VPC ID are listed.
|
532
|
+
"""
|
533
|
+
pulumi.set(__self__, "created_at", created_at)
|
534
|
+
pulumi.set(__self__, "description", description)
|
535
|
+
pulumi.set(__self__, "destination", destination)
|
536
|
+
pulumi.set(__self__, "id", id)
|
537
|
+
pulumi.set(__self__, "nexthop_ip", nexthop_ip)
|
538
|
+
pulumi.set(__self__, "nexthop_name", nexthop_name)
|
539
|
+
pulumi.set(__self__, "nexthop_private_network_id", nexthop_private_network_id)
|
540
|
+
pulumi.set(__self__, "nexthop_resource_id", nexthop_resource_id)
|
541
|
+
pulumi.set(__self__, "nexthop_resource_type", nexthop_resource_type)
|
542
|
+
pulumi.set(__self__, "region", region)
|
543
|
+
pulumi.set(__self__, "tags", tags)
|
544
|
+
pulumi.set(__self__, "vpc_id", vpc_id)
|
545
|
+
|
546
|
+
@property
|
547
|
+
@pulumi.getter(name="createdAt")
|
548
|
+
def created_at(self) -> str:
|
549
|
+
"""
|
550
|
+
The date on which the route was created (RFC 3339 format).
|
551
|
+
"""
|
552
|
+
return pulumi.get(self, "created_at")
|
553
|
+
|
554
|
+
@property
|
555
|
+
@pulumi.getter
|
556
|
+
def description(self) -> str:
|
557
|
+
"""
|
558
|
+
The description of the route.
|
559
|
+
"""
|
560
|
+
return pulumi.get(self, "description")
|
561
|
+
|
562
|
+
@property
|
563
|
+
@pulumi.getter
|
564
|
+
def destination(self) -> str:
|
565
|
+
"""
|
566
|
+
The destination IP or IP range of the route.
|
567
|
+
"""
|
568
|
+
return pulumi.get(self, "destination")
|
569
|
+
|
570
|
+
@property
|
571
|
+
@pulumi.getter
|
572
|
+
def id(self) -> str:
|
573
|
+
"""
|
574
|
+
The ID of the route.
|
575
|
+
> **Important:** route IDs are regional, which means they are of the form `{region}/{id}`, e.g. `fr-par/11111111-1111-1111-1111-111111111111
|
576
|
+
"""
|
577
|
+
return pulumi.get(self, "id")
|
578
|
+
|
579
|
+
@property
|
580
|
+
@pulumi.getter(name="nexthopIp")
|
581
|
+
def nexthop_ip(self) -> str:
|
582
|
+
"""
|
583
|
+
The IP of the route's next hop.
|
584
|
+
"""
|
585
|
+
return pulumi.get(self, "nexthop_ip")
|
586
|
+
|
587
|
+
@property
|
588
|
+
@pulumi.getter(name="nexthopName")
|
589
|
+
def nexthop_name(self) -> str:
|
590
|
+
"""
|
591
|
+
The name of the route's next hop.
|
592
|
+
"""
|
593
|
+
return pulumi.get(self, "nexthop_name")
|
594
|
+
|
595
|
+
@property
|
596
|
+
@pulumi.getter(name="nexthopPrivateNetworkId")
|
597
|
+
def nexthop_private_network_id(self) -> str:
|
598
|
+
"""
|
599
|
+
The next hop private network ID to filter for. routes with a similar next hop private network ID are listed.
|
600
|
+
"""
|
601
|
+
return pulumi.get(self, "nexthop_private_network_id")
|
602
|
+
|
603
|
+
@property
|
604
|
+
@pulumi.getter(name="nexthopResourceId")
|
605
|
+
def nexthop_resource_id(self) -> str:
|
606
|
+
"""
|
607
|
+
The next hop resource ID to filter for. routes with a similar next hop resource ID are listed.
|
608
|
+
"""
|
609
|
+
return pulumi.get(self, "nexthop_resource_id")
|
610
|
+
|
611
|
+
@property
|
612
|
+
@pulumi.getter(name="nexthopResourceType")
|
613
|
+
def nexthop_resource_type(self) -> str:
|
614
|
+
"""
|
615
|
+
The next hop resource type to filter for. routes with a similar next hop resource type are listed.
|
616
|
+
"""
|
617
|
+
return pulumi.get(self, "nexthop_resource_type")
|
618
|
+
|
619
|
+
@property
|
620
|
+
@pulumi.getter
|
621
|
+
def region(self) -> str:
|
622
|
+
"""
|
623
|
+
`region`). The region in which the routes exist.
|
624
|
+
"""
|
625
|
+
return pulumi.get(self, "region")
|
626
|
+
|
627
|
+
@property
|
628
|
+
@pulumi.getter
|
629
|
+
def tags(self) -> Sequence[str]:
|
630
|
+
"""
|
631
|
+
List of tags to filter for. routes with these exact tags are listed.
|
632
|
+
"""
|
633
|
+
return pulumi.get(self, "tags")
|
634
|
+
|
635
|
+
@property
|
636
|
+
@pulumi.getter(name="vpcId")
|
637
|
+
def vpc_id(self) -> str:
|
638
|
+
"""
|
639
|
+
The VPC ID to filter for. routes with a similar VPC ID are listed.
|
640
|
+
"""
|
641
|
+
return pulumi.get(self, "vpc_id")
|
642
|
+
|
643
|
+
|
644
|
+
@pulumi.output_type
|
645
|
+
class GetVpcsVpcResult(dict):
|
646
|
+
def __init__(__self__, *,
|
647
|
+
created_at: str,
|
648
|
+
id: str,
|
649
|
+
is_default: bool,
|
650
|
+
name: str,
|
651
|
+
organization_id: str,
|
652
|
+
project_id: str,
|
653
|
+
region: str,
|
654
|
+
tags: Sequence[str],
|
655
|
+
update_at: str):
|
656
|
+
"""
|
657
|
+
:param str created_at: Date and time of VPC's creation (RFC 3339 format).
|
658
|
+
:param str id: The associated VPC ID.
|
659
|
+
> **Important:** VPC IDs are regional, which means they are of the form `{region}/{id}`, e.g. `fr-par/11111111-1111-1111-1111-111111111111
|
660
|
+
:param bool is_default: Defines whether the VPC is the default one for its Project.
|
661
|
+
:param str name: The VPC name to filter for. VPCs with a similar name are listed.
|
662
|
+
:param str organization_id: The Organization ID the VPC is associated with.
|
663
|
+
:param str project_id: The ID of the Project the VPC is associated with.
|
664
|
+
:param str region: `region`). The region in which the VPCs exist.
|
665
|
+
:param Sequence[str] tags: List of tags to filter for. VPCs with these exact tags are listed.
|
666
|
+
"""
|
667
|
+
pulumi.set(__self__, "created_at", created_at)
|
668
|
+
pulumi.set(__self__, "id", id)
|
669
|
+
pulumi.set(__self__, "is_default", is_default)
|
670
|
+
pulumi.set(__self__, "name", name)
|
671
|
+
pulumi.set(__self__, "organization_id", organization_id)
|
672
|
+
pulumi.set(__self__, "project_id", project_id)
|
673
|
+
pulumi.set(__self__, "region", region)
|
674
|
+
pulumi.set(__self__, "tags", tags)
|
675
|
+
pulumi.set(__self__, "update_at", update_at)
|
676
|
+
|
677
|
+
@property
|
678
|
+
@pulumi.getter(name="createdAt")
|
679
|
+
def created_at(self) -> str:
|
680
|
+
"""
|
681
|
+
Date and time of VPC's creation (RFC 3339 format).
|
682
|
+
"""
|
683
|
+
return pulumi.get(self, "created_at")
|
684
|
+
|
685
|
+
@property
|
686
|
+
@pulumi.getter
|
687
|
+
def id(self) -> str:
|
688
|
+
"""
|
689
|
+
The associated VPC ID.
|
690
|
+
> **Important:** VPC IDs are regional, which means they are of the form `{region}/{id}`, e.g. `fr-par/11111111-1111-1111-1111-111111111111
|
691
|
+
"""
|
692
|
+
return pulumi.get(self, "id")
|
693
|
+
|
694
|
+
@property
|
695
|
+
@pulumi.getter(name="isDefault")
|
696
|
+
def is_default(self) -> bool:
|
697
|
+
"""
|
698
|
+
Defines whether the VPC is the default one for its Project.
|
699
|
+
"""
|
700
|
+
return pulumi.get(self, "is_default")
|
701
|
+
|
702
|
+
@property
|
703
|
+
@pulumi.getter
|
704
|
+
def name(self) -> str:
|
705
|
+
"""
|
706
|
+
The VPC name to filter for. VPCs with a similar name are listed.
|
707
|
+
"""
|
708
|
+
return pulumi.get(self, "name")
|
709
|
+
|
710
|
+
@property
|
711
|
+
@pulumi.getter(name="organizationId")
|
712
|
+
def organization_id(self) -> str:
|
713
|
+
"""
|
714
|
+
The Organization ID the VPC is associated with.
|
715
|
+
"""
|
716
|
+
return pulumi.get(self, "organization_id")
|
717
|
+
|
718
|
+
@property
|
719
|
+
@pulumi.getter(name="projectId")
|
720
|
+
def project_id(self) -> str:
|
721
|
+
"""
|
722
|
+
The ID of the Project the VPC is associated with.
|
723
|
+
"""
|
724
|
+
return pulumi.get(self, "project_id")
|
725
|
+
|
726
|
+
@property
|
727
|
+
@pulumi.getter
|
728
|
+
def region(self) -> str:
|
729
|
+
"""
|
730
|
+
`region`). The region in which the VPCs exist.
|
731
|
+
"""
|
732
|
+
return pulumi.get(self, "region")
|
733
|
+
|
734
|
+
@property
|
735
|
+
@pulumi.getter
|
736
|
+
def tags(self) -> Sequence[str]:
|
737
|
+
"""
|
738
|
+
List of tags to filter for. VPCs with these exact tags are listed.
|
739
|
+
"""
|
740
|
+
return pulumi.get(self, "tags")
|
741
|
+
|
742
|
+
@property
|
743
|
+
@pulumi.getter(name="updateAt")
|
744
|
+
def update_at(self) -> str:
|
745
|
+
return pulumi.get(self, "update_at")
|
746
|
+
|
747
|
+
|