pulumiverse-scaleway 1.25.0a1742288097__py3-none-any.whl → 1.25.0a1742668904__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.0a1742288097.dist-info → pulumiverse_scaleway-1.25.0a1742668904.dist-info}/METADATA +2 -2
- pulumiverse_scaleway-1.25.0a1742668904.dist-info/RECORD +470 -0
- {pulumiverse_scaleway-1.25.0a1742288097.dist-info → pulumiverse_scaleway-1.25.0a1742668904.dist-info}/WHEEL +1 -1
- pulumiverse_scaleway-1.25.0a1742288097.dist-info/RECORD +0 -206
- {pulumiverse_scaleway-1.25.0a1742288097.dist-info → pulumiverse_scaleway-1.25.0a1742668904.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,974 @@
|
|
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
|
+
from . import outputs
|
17
|
+
|
18
|
+
__all__ = [
|
19
|
+
'ServerIp',
|
20
|
+
'ServerIpv4',
|
21
|
+
'ServerIpv6',
|
22
|
+
'ServerOption',
|
23
|
+
'ServerPrivateNetwork',
|
24
|
+
'GetIpsIpResult',
|
25
|
+
'GetIpsIpMacAddressResult',
|
26
|
+
'GetOfferCpuResult',
|
27
|
+
'GetOfferDiskResult',
|
28
|
+
'GetOfferMemoryResult',
|
29
|
+
'GetServerIpResult',
|
30
|
+
'GetServerIpv4Result',
|
31
|
+
'GetServerIpv6Result',
|
32
|
+
'GetServerOptionResult',
|
33
|
+
'GetServerPrivateNetworkResult',
|
34
|
+
]
|
35
|
+
|
36
|
+
@pulumi.output_type
|
37
|
+
class ServerIp(dict):
|
38
|
+
def __init__(__self__, *,
|
39
|
+
address: Optional[str] = None,
|
40
|
+
id: Optional[str] = None,
|
41
|
+
reverse: Optional[str] = None,
|
42
|
+
version: Optional[str] = None):
|
43
|
+
"""
|
44
|
+
:param str address: The address of the IPv6.
|
45
|
+
:param str id: The ID of the IPv6.
|
46
|
+
:param str reverse: The reverse of the IPv6.
|
47
|
+
:param str version: The type of the IPv6.
|
48
|
+
"""
|
49
|
+
if address is not None:
|
50
|
+
pulumi.set(__self__, "address", address)
|
51
|
+
if id is not None:
|
52
|
+
pulumi.set(__self__, "id", id)
|
53
|
+
if reverse is not None:
|
54
|
+
pulumi.set(__self__, "reverse", reverse)
|
55
|
+
if version is not None:
|
56
|
+
pulumi.set(__self__, "version", version)
|
57
|
+
|
58
|
+
@property
|
59
|
+
@pulumi.getter
|
60
|
+
def address(self) -> Optional[str]:
|
61
|
+
"""
|
62
|
+
The address of the IPv6.
|
63
|
+
"""
|
64
|
+
return pulumi.get(self, "address")
|
65
|
+
|
66
|
+
@property
|
67
|
+
@pulumi.getter
|
68
|
+
def id(self) -> Optional[str]:
|
69
|
+
"""
|
70
|
+
The ID of the IPv6.
|
71
|
+
"""
|
72
|
+
return pulumi.get(self, "id")
|
73
|
+
|
74
|
+
@property
|
75
|
+
@pulumi.getter
|
76
|
+
def reverse(self) -> Optional[str]:
|
77
|
+
"""
|
78
|
+
The reverse of the IPv6.
|
79
|
+
"""
|
80
|
+
return pulumi.get(self, "reverse")
|
81
|
+
|
82
|
+
@property
|
83
|
+
@pulumi.getter
|
84
|
+
def version(self) -> Optional[str]:
|
85
|
+
"""
|
86
|
+
The type of the IPv6.
|
87
|
+
"""
|
88
|
+
return pulumi.get(self, "version")
|
89
|
+
|
90
|
+
|
91
|
+
@pulumi.output_type
|
92
|
+
class ServerIpv4(dict):
|
93
|
+
def __init__(__self__, *,
|
94
|
+
address: Optional[str] = None,
|
95
|
+
id: Optional[str] = None,
|
96
|
+
reverse: Optional[str] = None,
|
97
|
+
version: Optional[str] = None):
|
98
|
+
"""
|
99
|
+
:param str address: The address of the IPv6.
|
100
|
+
:param str id: The ID of the IPv6.
|
101
|
+
:param str reverse: The reverse of the IPv6.
|
102
|
+
:param str version: The type of the IPv6.
|
103
|
+
"""
|
104
|
+
if address is not None:
|
105
|
+
pulumi.set(__self__, "address", address)
|
106
|
+
if id is not None:
|
107
|
+
pulumi.set(__self__, "id", id)
|
108
|
+
if reverse is not None:
|
109
|
+
pulumi.set(__self__, "reverse", reverse)
|
110
|
+
if version is not None:
|
111
|
+
pulumi.set(__self__, "version", version)
|
112
|
+
|
113
|
+
@property
|
114
|
+
@pulumi.getter
|
115
|
+
def address(self) -> Optional[str]:
|
116
|
+
"""
|
117
|
+
The address of the IPv6.
|
118
|
+
"""
|
119
|
+
return pulumi.get(self, "address")
|
120
|
+
|
121
|
+
@property
|
122
|
+
@pulumi.getter
|
123
|
+
def id(self) -> Optional[str]:
|
124
|
+
"""
|
125
|
+
The ID of the IPv6.
|
126
|
+
"""
|
127
|
+
return pulumi.get(self, "id")
|
128
|
+
|
129
|
+
@property
|
130
|
+
@pulumi.getter
|
131
|
+
def reverse(self) -> Optional[str]:
|
132
|
+
"""
|
133
|
+
The reverse of the IPv6.
|
134
|
+
"""
|
135
|
+
return pulumi.get(self, "reverse")
|
136
|
+
|
137
|
+
@property
|
138
|
+
@pulumi.getter
|
139
|
+
def version(self) -> Optional[str]:
|
140
|
+
"""
|
141
|
+
The type of the IPv6.
|
142
|
+
"""
|
143
|
+
return pulumi.get(self, "version")
|
144
|
+
|
145
|
+
|
146
|
+
@pulumi.output_type
|
147
|
+
class ServerIpv6(dict):
|
148
|
+
def __init__(__self__, *,
|
149
|
+
address: Optional[str] = None,
|
150
|
+
id: Optional[str] = None,
|
151
|
+
reverse: Optional[str] = None,
|
152
|
+
version: Optional[str] = None):
|
153
|
+
"""
|
154
|
+
:param str address: The address of the IPv6.
|
155
|
+
:param str id: The ID of the IPv6.
|
156
|
+
:param str reverse: The reverse of the IPv6.
|
157
|
+
:param str version: The type of the IPv6.
|
158
|
+
"""
|
159
|
+
if address is not None:
|
160
|
+
pulumi.set(__self__, "address", address)
|
161
|
+
if id is not None:
|
162
|
+
pulumi.set(__self__, "id", id)
|
163
|
+
if reverse is not None:
|
164
|
+
pulumi.set(__self__, "reverse", reverse)
|
165
|
+
if version is not None:
|
166
|
+
pulumi.set(__self__, "version", version)
|
167
|
+
|
168
|
+
@property
|
169
|
+
@pulumi.getter
|
170
|
+
def address(self) -> Optional[str]:
|
171
|
+
"""
|
172
|
+
The address of the IPv6.
|
173
|
+
"""
|
174
|
+
return pulumi.get(self, "address")
|
175
|
+
|
176
|
+
@property
|
177
|
+
@pulumi.getter
|
178
|
+
def id(self) -> Optional[str]:
|
179
|
+
"""
|
180
|
+
The ID of the IPv6.
|
181
|
+
"""
|
182
|
+
return pulumi.get(self, "id")
|
183
|
+
|
184
|
+
@property
|
185
|
+
@pulumi.getter
|
186
|
+
def reverse(self) -> Optional[str]:
|
187
|
+
"""
|
188
|
+
The reverse of the IPv6.
|
189
|
+
"""
|
190
|
+
return pulumi.get(self, "reverse")
|
191
|
+
|
192
|
+
@property
|
193
|
+
@pulumi.getter
|
194
|
+
def version(self) -> Optional[str]:
|
195
|
+
"""
|
196
|
+
The type of the IPv6.
|
197
|
+
"""
|
198
|
+
return pulumi.get(self, "version")
|
199
|
+
|
200
|
+
|
201
|
+
@pulumi.output_type
|
202
|
+
class ServerOption(dict):
|
203
|
+
@staticmethod
|
204
|
+
def __key_warning(key: str):
|
205
|
+
suggest = None
|
206
|
+
if key == "expiresAt":
|
207
|
+
suggest = "expires_at"
|
208
|
+
|
209
|
+
if suggest:
|
210
|
+
pulumi.log.warn(f"Key '{key}' not found in ServerOption. Access the value via the '{suggest}' property getter instead.")
|
211
|
+
|
212
|
+
def __getitem__(self, key: str) -> Any:
|
213
|
+
ServerOption.__key_warning(key)
|
214
|
+
return super().__getitem__(key)
|
215
|
+
|
216
|
+
def get(self, key: str, default = None) -> Any:
|
217
|
+
ServerOption.__key_warning(key)
|
218
|
+
return super().get(key, default)
|
219
|
+
|
220
|
+
def __init__(__self__, *,
|
221
|
+
id: str,
|
222
|
+
expires_at: Optional[str] = None,
|
223
|
+
name: Optional[str] = None):
|
224
|
+
"""
|
225
|
+
:param str id: The id of the option to enable. Use [this endpoint](https://www.scaleway.com/en/developers/api/elastic-metal/#path-options-list-options) to find the available options IDs.
|
226
|
+
:param str expires_at: The auto expiration date for compatible options
|
227
|
+
:param str name: The name of the server.
|
228
|
+
"""
|
229
|
+
pulumi.set(__self__, "id", id)
|
230
|
+
if expires_at is not None:
|
231
|
+
pulumi.set(__self__, "expires_at", expires_at)
|
232
|
+
if name is not None:
|
233
|
+
pulumi.set(__self__, "name", name)
|
234
|
+
|
235
|
+
@property
|
236
|
+
@pulumi.getter
|
237
|
+
def id(self) -> str:
|
238
|
+
"""
|
239
|
+
The id of the option to enable. Use [this endpoint](https://www.scaleway.com/en/developers/api/elastic-metal/#path-options-list-options) to find the available options IDs.
|
240
|
+
"""
|
241
|
+
return pulumi.get(self, "id")
|
242
|
+
|
243
|
+
@property
|
244
|
+
@pulumi.getter(name="expiresAt")
|
245
|
+
def expires_at(self) -> Optional[str]:
|
246
|
+
"""
|
247
|
+
The auto expiration date for compatible options
|
248
|
+
"""
|
249
|
+
return pulumi.get(self, "expires_at")
|
250
|
+
|
251
|
+
@property
|
252
|
+
@pulumi.getter
|
253
|
+
def name(self) -> Optional[str]:
|
254
|
+
"""
|
255
|
+
The name of the server.
|
256
|
+
"""
|
257
|
+
return pulumi.get(self, "name")
|
258
|
+
|
259
|
+
|
260
|
+
@pulumi.output_type
|
261
|
+
class ServerPrivateNetwork(dict):
|
262
|
+
@staticmethod
|
263
|
+
def __key_warning(key: str):
|
264
|
+
suggest = None
|
265
|
+
if key == "createdAt":
|
266
|
+
suggest = "created_at"
|
267
|
+
elif key == "ipamIpIds":
|
268
|
+
suggest = "ipam_ip_ids"
|
269
|
+
elif key == "updatedAt":
|
270
|
+
suggest = "updated_at"
|
271
|
+
|
272
|
+
if suggest:
|
273
|
+
pulumi.log.warn(f"Key '{key}' not found in ServerPrivateNetwork. Access the value via the '{suggest}' property getter instead.")
|
274
|
+
|
275
|
+
def __getitem__(self, key: str) -> Any:
|
276
|
+
ServerPrivateNetwork.__key_warning(key)
|
277
|
+
return super().__getitem__(key)
|
278
|
+
|
279
|
+
def get(self, key: str, default = None) -> Any:
|
280
|
+
ServerPrivateNetwork.__key_warning(key)
|
281
|
+
return super().get(key, default)
|
282
|
+
|
283
|
+
def __init__(__self__, *,
|
284
|
+
id: str,
|
285
|
+
created_at: Optional[str] = None,
|
286
|
+
ipam_ip_ids: Optional[Sequence[str]] = None,
|
287
|
+
status: Optional[str] = None,
|
288
|
+
updated_at: Optional[str] = None,
|
289
|
+
vlan: Optional[int] = None):
|
290
|
+
"""
|
291
|
+
:param str id: The id of the private network to attach.
|
292
|
+
:param str created_at: The date and time of the creation of the private network.
|
293
|
+
:param Sequence[str] ipam_ip_ids: List of IPAM IP IDs to assign to the server in the requested private network.
|
294
|
+
:param str status: The private network status.
|
295
|
+
:param str updated_at: The date and time of the last update of the private network.
|
296
|
+
:param int vlan: The VLAN ID associated to the private network.
|
297
|
+
"""
|
298
|
+
pulumi.set(__self__, "id", id)
|
299
|
+
if created_at is not None:
|
300
|
+
pulumi.set(__self__, "created_at", created_at)
|
301
|
+
if ipam_ip_ids is not None:
|
302
|
+
pulumi.set(__self__, "ipam_ip_ids", ipam_ip_ids)
|
303
|
+
if status is not None:
|
304
|
+
pulumi.set(__self__, "status", status)
|
305
|
+
if updated_at is not None:
|
306
|
+
pulumi.set(__self__, "updated_at", updated_at)
|
307
|
+
if vlan is not None:
|
308
|
+
pulumi.set(__self__, "vlan", vlan)
|
309
|
+
|
310
|
+
@property
|
311
|
+
@pulumi.getter
|
312
|
+
def id(self) -> str:
|
313
|
+
"""
|
314
|
+
The id of the private network to attach.
|
315
|
+
"""
|
316
|
+
return pulumi.get(self, "id")
|
317
|
+
|
318
|
+
@property
|
319
|
+
@pulumi.getter(name="createdAt")
|
320
|
+
def created_at(self) -> Optional[str]:
|
321
|
+
"""
|
322
|
+
The date and time of the creation of the private network.
|
323
|
+
"""
|
324
|
+
return pulumi.get(self, "created_at")
|
325
|
+
|
326
|
+
@property
|
327
|
+
@pulumi.getter(name="ipamIpIds")
|
328
|
+
def ipam_ip_ids(self) -> Optional[Sequence[str]]:
|
329
|
+
"""
|
330
|
+
List of IPAM IP IDs to assign to the server in the requested private network.
|
331
|
+
"""
|
332
|
+
return pulumi.get(self, "ipam_ip_ids")
|
333
|
+
|
334
|
+
@property
|
335
|
+
@pulumi.getter
|
336
|
+
def status(self) -> Optional[str]:
|
337
|
+
"""
|
338
|
+
The private network status.
|
339
|
+
"""
|
340
|
+
return pulumi.get(self, "status")
|
341
|
+
|
342
|
+
@property
|
343
|
+
@pulumi.getter(name="updatedAt")
|
344
|
+
def updated_at(self) -> Optional[str]:
|
345
|
+
"""
|
346
|
+
The date and time of the last update of the private network.
|
347
|
+
"""
|
348
|
+
return pulumi.get(self, "updated_at")
|
349
|
+
|
350
|
+
@property
|
351
|
+
@pulumi.getter
|
352
|
+
def vlan(self) -> Optional[int]:
|
353
|
+
"""
|
354
|
+
The VLAN ID associated to the private network.
|
355
|
+
"""
|
356
|
+
return pulumi.get(self, "vlan")
|
357
|
+
|
358
|
+
|
359
|
+
@pulumi.output_type
|
360
|
+
class GetIpsIpResult(dict):
|
361
|
+
def __init__(__self__, *,
|
362
|
+
created_at: str,
|
363
|
+
description: str,
|
364
|
+
id: str,
|
365
|
+
ip_address: str,
|
366
|
+
mac_addresses: Sequence['outputs.GetIpsIpMacAddressResult'],
|
367
|
+
organization_id: str,
|
368
|
+
project_id: str,
|
369
|
+
reverse: str,
|
370
|
+
status: str,
|
371
|
+
tags: Sequence[str],
|
372
|
+
updated_at: str,
|
373
|
+
zone: str):
|
374
|
+
"""
|
375
|
+
:param str created_at: The date on which the flexible IP was created (RFC 3339 format).
|
376
|
+
:param str description: The description of the flexible IP.
|
377
|
+
:param str id: The MAC address ID.
|
378
|
+
:param Sequence['GetIpsIpMacAddressArgs'] mac_addresses: The MAC address of the Virtual MAC.
|
379
|
+
:param str organization_id: (Defaults to provider `organization_id`) The ID of the organization the IP is in.
|
380
|
+
:param str project_id: (Defaults to provider `project_id`) The ID of the project the IP is in.
|
381
|
+
:param str reverse: The reverse domain associated with this IP.
|
382
|
+
:param str status: The status of virtual MAC.
|
383
|
+
:param Sequence[str] tags: List of tags used as filter. IPs with these exact tags are listed.
|
384
|
+
:param str updated_at: The date on which the flexible IP was last updated (RFC 3339 format).
|
385
|
+
:param str zone: `zone`) The zone in which IPs exist.
|
386
|
+
"""
|
387
|
+
pulumi.set(__self__, "created_at", created_at)
|
388
|
+
pulumi.set(__self__, "description", description)
|
389
|
+
pulumi.set(__self__, "id", id)
|
390
|
+
pulumi.set(__self__, "ip_address", ip_address)
|
391
|
+
pulumi.set(__self__, "mac_addresses", mac_addresses)
|
392
|
+
pulumi.set(__self__, "organization_id", organization_id)
|
393
|
+
pulumi.set(__self__, "project_id", project_id)
|
394
|
+
pulumi.set(__self__, "reverse", reverse)
|
395
|
+
pulumi.set(__self__, "status", status)
|
396
|
+
pulumi.set(__self__, "tags", tags)
|
397
|
+
pulumi.set(__self__, "updated_at", updated_at)
|
398
|
+
pulumi.set(__self__, "zone", zone)
|
399
|
+
|
400
|
+
@property
|
401
|
+
@pulumi.getter(name="createdAt")
|
402
|
+
def created_at(self) -> str:
|
403
|
+
"""
|
404
|
+
The date on which the flexible IP was created (RFC 3339 format).
|
405
|
+
"""
|
406
|
+
return pulumi.get(self, "created_at")
|
407
|
+
|
408
|
+
@property
|
409
|
+
@pulumi.getter
|
410
|
+
def description(self) -> str:
|
411
|
+
"""
|
412
|
+
The description of the flexible IP.
|
413
|
+
"""
|
414
|
+
return pulumi.get(self, "description")
|
415
|
+
|
416
|
+
@property
|
417
|
+
@pulumi.getter
|
418
|
+
def id(self) -> str:
|
419
|
+
"""
|
420
|
+
The MAC address ID.
|
421
|
+
"""
|
422
|
+
return pulumi.get(self, "id")
|
423
|
+
|
424
|
+
@property
|
425
|
+
@pulumi.getter(name="ipAddress")
|
426
|
+
def ip_address(self) -> str:
|
427
|
+
return pulumi.get(self, "ip_address")
|
428
|
+
|
429
|
+
@property
|
430
|
+
@pulumi.getter(name="macAddresses")
|
431
|
+
def mac_addresses(self) -> Sequence['outputs.GetIpsIpMacAddressResult']:
|
432
|
+
"""
|
433
|
+
The MAC address of the Virtual MAC.
|
434
|
+
"""
|
435
|
+
return pulumi.get(self, "mac_addresses")
|
436
|
+
|
437
|
+
@property
|
438
|
+
@pulumi.getter(name="organizationId")
|
439
|
+
def organization_id(self) -> str:
|
440
|
+
"""
|
441
|
+
(Defaults to provider `organization_id`) The ID of the organization the IP is in.
|
442
|
+
"""
|
443
|
+
return pulumi.get(self, "organization_id")
|
444
|
+
|
445
|
+
@property
|
446
|
+
@pulumi.getter(name="projectId")
|
447
|
+
def project_id(self) -> str:
|
448
|
+
"""
|
449
|
+
(Defaults to provider `project_id`) The ID of the project the IP is in.
|
450
|
+
"""
|
451
|
+
return pulumi.get(self, "project_id")
|
452
|
+
|
453
|
+
@property
|
454
|
+
@pulumi.getter
|
455
|
+
def reverse(self) -> str:
|
456
|
+
"""
|
457
|
+
The reverse domain associated with this IP.
|
458
|
+
"""
|
459
|
+
return pulumi.get(self, "reverse")
|
460
|
+
|
461
|
+
@property
|
462
|
+
@pulumi.getter
|
463
|
+
def status(self) -> str:
|
464
|
+
"""
|
465
|
+
The status of virtual MAC.
|
466
|
+
"""
|
467
|
+
return pulumi.get(self, "status")
|
468
|
+
|
469
|
+
@property
|
470
|
+
@pulumi.getter
|
471
|
+
def tags(self) -> Sequence[str]:
|
472
|
+
"""
|
473
|
+
List of tags used as filter. IPs with these exact tags are listed.
|
474
|
+
"""
|
475
|
+
return pulumi.get(self, "tags")
|
476
|
+
|
477
|
+
@property
|
478
|
+
@pulumi.getter(name="updatedAt")
|
479
|
+
def updated_at(self) -> str:
|
480
|
+
"""
|
481
|
+
The date on which the flexible IP was last updated (RFC 3339 format).
|
482
|
+
"""
|
483
|
+
return pulumi.get(self, "updated_at")
|
484
|
+
|
485
|
+
@property
|
486
|
+
@pulumi.getter
|
487
|
+
def zone(self) -> str:
|
488
|
+
"""
|
489
|
+
`zone`) The zone in which IPs exist.
|
490
|
+
"""
|
491
|
+
return pulumi.get(self, "zone")
|
492
|
+
|
493
|
+
|
494
|
+
@pulumi.output_type
|
495
|
+
class GetIpsIpMacAddressResult(dict):
|
496
|
+
def __init__(__self__, *,
|
497
|
+
created_at: str,
|
498
|
+
id: str,
|
499
|
+
mac_address: str,
|
500
|
+
mac_type: str,
|
501
|
+
status: str,
|
502
|
+
updated_at: str,
|
503
|
+
zone: str):
|
504
|
+
"""
|
505
|
+
:param str created_at: The date on which the flexible IP was created (RFC 3339 format).
|
506
|
+
:param str id: The MAC address ID.
|
507
|
+
:param str mac_address: The MAC address of the Virtual MAC.
|
508
|
+
:param str mac_type: The type of virtual MAC.
|
509
|
+
:param str status: The status of virtual MAC.
|
510
|
+
:param str updated_at: The date on which the flexible IP was last updated (RFC 3339 format).
|
511
|
+
:param str zone: `zone`) The zone in which IPs exist.
|
512
|
+
"""
|
513
|
+
pulumi.set(__self__, "created_at", created_at)
|
514
|
+
pulumi.set(__self__, "id", id)
|
515
|
+
pulumi.set(__self__, "mac_address", mac_address)
|
516
|
+
pulumi.set(__self__, "mac_type", mac_type)
|
517
|
+
pulumi.set(__self__, "status", status)
|
518
|
+
pulumi.set(__self__, "updated_at", updated_at)
|
519
|
+
pulumi.set(__self__, "zone", zone)
|
520
|
+
|
521
|
+
@property
|
522
|
+
@pulumi.getter(name="createdAt")
|
523
|
+
def created_at(self) -> str:
|
524
|
+
"""
|
525
|
+
The date on which the flexible IP was created (RFC 3339 format).
|
526
|
+
"""
|
527
|
+
return pulumi.get(self, "created_at")
|
528
|
+
|
529
|
+
@property
|
530
|
+
@pulumi.getter
|
531
|
+
def id(self) -> str:
|
532
|
+
"""
|
533
|
+
The MAC address ID.
|
534
|
+
"""
|
535
|
+
return pulumi.get(self, "id")
|
536
|
+
|
537
|
+
@property
|
538
|
+
@pulumi.getter(name="macAddress")
|
539
|
+
def mac_address(self) -> str:
|
540
|
+
"""
|
541
|
+
The MAC address of the Virtual MAC.
|
542
|
+
"""
|
543
|
+
return pulumi.get(self, "mac_address")
|
544
|
+
|
545
|
+
@property
|
546
|
+
@pulumi.getter(name="macType")
|
547
|
+
def mac_type(self) -> str:
|
548
|
+
"""
|
549
|
+
The type of virtual MAC.
|
550
|
+
"""
|
551
|
+
return pulumi.get(self, "mac_type")
|
552
|
+
|
553
|
+
@property
|
554
|
+
@pulumi.getter
|
555
|
+
def status(self) -> str:
|
556
|
+
"""
|
557
|
+
The status of virtual MAC.
|
558
|
+
"""
|
559
|
+
return pulumi.get(self, "status")
|
560
|
+
|
561
|
+
@property
|
562
|
+
@pulumi.getter(name="updatedAt")
|
563
|
+
def updated_at(self) -> str:
|
564
|
+
"""
|
565
|
+
The date on which the flexible IP was last updated (RFC 3339 format).
|
566
|
+
"""
|
567
|
+
return pulumi.get(self, "updated_at")
|
568
|
+
|
569
|
+
@property
|
570
|
+
@pulumi.getter
|
571
|
+
def zone(self) -> str:
|
572
|
+
"""
|
573
|
+
`zone`) The zone in which IPs exist.
|
574
|
+
"""
|
575
|
+
return pulumi.get(self, "zone")
|
576
|
+
|
577
|
+
|
578
|
+
@pulumi.output_type
|
579
|
+
class GetOfferCpuResult(dict):
|
580
|
+
def __init__(__self__, *,
|
581
|
+
core_count: int,
|
582
|
+
frequency: int,
|
583
|
+
name: str,
|
584
|
+
thread_count: int):
|
585
|
+
"""
|
586
|
+
:param int core_count: Number of core on this CPU.
|
587
|
+
:param int frequency: Frequency of the memory in MHz.
|
588
|
+
:param str name: The offer name. Only one of `name` and `offer_id` should be specified.
|
589
|
+
:param int thread_count: Number of thread on this CPU.
|
590
|
+
"""
|
591
|
+
pulumi.set(__self__, "core_count", core_count)
|
592
|
+
pulumi.set(__self__, "frequency", frequency)
|
593
|
+
pulumi.set(__self__, "name", name)
|
594
|
+
pulumi.set(__self__, "thread_count", thread_count)
|
595
|
+
|
596
|
+
@property
|
597
|
+
@pulumi.getter(name="coreCount")
|
598
|
+
def core_count(self) -> int:
|
599
|
+
"""
|
600
|
+
Number of core on this CPU.
|
601
|
+
"""
|
602
|
+
return pulumi.get(self, "core_count")
|
603
|
+
|
604
|
+
@property
|
605
|
+
@pulumi.getter
|
606
|
+
def frequency(self) -> int:
|
607
|
+
"""
|
608
|
+
Frequency of the memory in MHz.
|
609
|
+
"""
|
610
|
+
return pulumi.get(self, "frequency")
|
611
|
+
|
612
|
+
@property
|
613
|
+
@pulumi.getter
|
614
|
+
def name(self) -> str:
|
615
|
+
"""
|
616
|
+
The offer name. Only one of `name` and `offer_id` should be specified.
|
617
|
+
"""
|
618
|
+
return pulumi.get(self, "name")
|
619
|
+
|
620
|
+
@property
|
621
|
+
@pulumi.getter(name="threadCount")
|
622
|
+
def thread_count(self) -> int:
|
623
|
+
"""
|
624
|
+
Number of thread on this CPU.
|
625
|
+
"""
|
626
|
+
return pulumi.get(self, "thread_count")
|
627
|
+
|
628
|
+
|
629
|
+
@pulumi.output_type
|
630
|
+
class GetOfferDiskResult(dict):
|
631
|
+
def __init__(__self__, *,
|
632
|
+
capacity: int,
|
633
|
+
type: str):
|
634
|
+
"""
|
635
|
+
:param int capacity: Capacity of the memory in GB.
|
636
|
+
:param str type: Type of memory.
|
637
|
+
"""
|
638
|
+
pulumi.set(__self__, "capacity", capacity)
|
639
|
+
pulumi.set(__self__, "type", type)
|
640
|
+
|
641
|
+
@property
|
642
|
+
@pulumi.getter
|
643
|
+
def capacity(self) -> int:
|
644
|
+
"""
|
645
|
+
Capacity of the memory in GB.
|
646
|
+
"""
|
647
|
+
return pulumi.get(self, "capacity")
|
648
|
+
|
649
|
+
@property
|
650
|
+
@pulumi.getter
|
651
|
+
def type(self) -> str:
|
652
|
+
"""
|
653
|
+
Type of memory.
|
654
|
+
"""
|
655
|
+
return pulumi.get(self, "type")
|
656
|
+
|
657
|
+
|
658
|
+
@pulumi.output_type
|
659
|
+
class GetOfferMemoryResult(dict):
|
660
|
+
def __init__(__self__, *,
|
661
|
+
capacity: int,
|
662
|
+
frequency: int,
|
663
|
+
is_ecc: bool,
|
664
|
+
type: str):
|
665
|
+
"""
|
666
|
+
:param int capacity: Capacity of the memory in GB.
|
667
|
+
:param int frequency: Frequency of the memory in MHz.
|
668
|
+
:param bool is_ecc: True if error-correcting code is available on this memory.
|
669
|
+
:param str type: Type of memory.
|
670
|
+
"""
|
671
|
+
pulumi.set(__self__, "capacity", capacity)
|
672
|
+
pulumi.set(__self__, "frequency", frequency)
|
673
|
+
pulumi.set(__self__, "is_ecc", is_ecc)
|
674
|
+
pulumi.set(__self__, "type", type)
|
675
|
+
|
676
|
+
@property
|
677
|
+
@pulumi.getter
|
678
|
+
def capacity(self) -> int:
|
679
|
+
"""
|
680
|
+
Capacity of the memory in GB.
|
681
|
+
"""
|
682
|
+
return pulumi.get(self, "capacity")
|
683
|
+
|
684
|
+
@property
|
685
|
+
@pulumi.getter
|
686
|
+
def frequency(self) -> int:
|
687
|
+
"""
|
688
|
+
Frequency of the memory in MHz.
|
689
|
+
"""
|
690
|
+
return pulumi.get(self, "frequency")
|
691
|
+
|
692
|
+
@property
|
693
|
+
@pulumi.getter(name="isEcc")
|
694
|
+
def is_ecc(self) -> bool:
|
695
|
+
"""
|
696
|
+
True if error-correcting code is available on this memory.
|
697
|
+
"""
|
698
|
+
return pulumi.get(self, "is_ecc")
|
699
|
+
|
700
|
+
@property
|
701
|
+
@pulumi.getter
|
702
|
+
def type(self) -> str:
|
703
|
+
"""
|
704
|
+
Type of memory.
|
705
|
+
"""
|
706
|
+
return pulumi.get(self, "type")
|
707
|
+
|
708
|
+
|
709
|
+
@pulumi.output_type
|
710
|
+
class GetServerIpResult(dict):
|
711
|
+
def __init__(__self__, *,
|
712
|
+
address: str,
|
713
|
+
id: str,
|
714
|
+
reverse: str,
|
715
|
+
version: str):
|
716
|
+
"""
|
717
|
+
:param str address: The IPv6 address
|
718
|
+
:param str id: The ID of the server.
|
719
|
+
:param str reverse: The Reverse of the IPv6
|
720
|
+
:param str version: The version of the IPv6
|
721
|
+
"""
|
722
|
+
pulumi.set(__self__, "address", address)
|
723
|
+
pulumi.set(__self__, "id", id)
|
724
|
+
pulumi.set(__self__, "reverse", reverse)
|
725
|
+
pulumi.set(__self__, "version", version)
|
726
|
+
|
727
|
+
@property
|
728
|
+
@pulumi.getter
|
729
|
+
def address(self) -> str:
|
730
|
+
"""
|
731
|
+
The IPv6 address
|
732
|
+
"""
|
733
|
+
return pulumi.get(self, "address")
|
734
|
+
|
735
|
+
@property
|
736
|
+
@pulumi.getter
|
737
|
+
def id(self) -> str:
|
738
|
+
"""
|
739
|
+
The ID of the server.
|
740
|
+
"""
|
741
|
+
return pulumi.get(self, "id")
|
742
|
+
|
743
|
+
@property
|
744
|
+
@pulumi.getter
|
745
|
+
def reverse(self) -> str:
|
746
|
+
"""
|
747
|
+
The Reverse of the IPv6
|
748
|
+
"""
|
749
|
+
return pulumi.get(self, "reverse")
|
750
|
+
|
751
|
+
@property
|
752
|
+
@pulumi.getter
|
753
|
+
def version(self) -> str:
|
754
|
+
"""
|
755
|
+
The version of the IPv6
|
756
|
+
"""
|
757
|
+
return pulumi.get(self, "version")
|
758
|
+
|
759
|
+
|
760
|
+
@pulumi.output_type
|
761
|
+
class GetServerIpv4Result(dict):
|
762
|
+
def __init__(__self__, *,
|
763
|
+
address: str,
|
764
|
+
id: str,
|
765
|
+
reverse: str,
|
766
|
+
version: str):
|
767
|
+
"""
|
768
|
+
:param str address: The IPv6 address
|
769
|
+
:param str id: The ID of the server.
|
770
|
+
:param str reverse: The Reverse of the IPv6
|
771
|
+
:param str version: The version of the IPv6
|
772
|
+
"""
|
773
|
+
pulumi.set(__self__, "address", address)
|
774
|
+
pulumi.set(__self__, "id", id)
|
775
|
+
pulumi.set(__self__, "reverse", reverse)
|
776
|
+
pulumi.set(__self__, "version", version)
|
777
|
+
|
778
|
+
@property
|
779
|
+
@pulumi.getter
|
780
|
+
def address(self) -> str:
|
781
|
+
"""
|
782
|
+
The IPv6 address
|
783
|
+
"""
|
784
|
+
return pulumi.get(self, "address")
|
785
|
+
|
786
|
+
@property
|
787
|
+
@pulumi.getter
|
788
|
+
def id(self) -> str:
|
789
|
+
"""
|
790
|
+
The ID of the server.
|
791
|
+
"""
|
792
|
+
return pulumi.get(self, "id")
|
793
|
+
|
794
|
+
@property
|
795
|
+
@pulumi.getter
|
796
|
+
def reverse(self) -> str:
|
797
|
+
"""
|
798
|
+
The Reverse of the IPv6
|
799
|
+
"""
|
800
|
+
return pulumi.get(self, "reverse")
|
801
|
+
|
802
|
+
@property
|
803
|
+
@pulumi.getter
|
804
|
+
def version(self) -> str:
|
805
|
+
"""
|
806
|
+
The version of the IPv6
|
807
|
+
"""
|
808
|
+
return pulumi.get(self, "version")
|
809
|
+
|
810
|
+
|
811
|
+
@pulumi.output_type
|
812
|
+
class GetServerIpv6Result(dict):
|
813
|
+
def __init__(__self__, *,
|
814
|
+
address: str,
|
815
|
+
id: str,
|
816
|
+
reverse: str,
|
817
|
+
version: str):
|
818
|
+
"""
|
819
|
+
:param str address: The IPv6 address
|
820
|
+
:param str id: The ID of the server.
|
821
|
+
:param str reverse: The Reverse of the IPv6
|
822
|
+
:param str version: The version of the IPv6
|
823
|
+
"""
|
824
|
+
pulumi.set(__self__, "address", address)
|
825
|
+
pulumi.set(__self__, "id", id)
|
826
|
+
pulumi.set(__self__, "reverse", reverse)
|
827
|
+
pulumi.set(__self__, "version", version)
|
828
|
+
|
829
|
+
@property
|
830
|
+
@pulumi.getter
|
831
|
+
def address(self) -> str:
|
832
|
+
"""
|
833
|
+
The IPv6 address
|
834
|
+
"""
|
835
|
+
return pulumi.get(self, "address")
|
836
|
+
|
837
|
+
@property
|
838
|
+
@pulumi.getter
|
839
|
+
def id(self) -> str:
|
840
|
+
"""
|
841
|
+
The ID of the server.
|
842
|
+
"""
|
843
|
+
return pulumi.get(self, "id")
|
844
|
+
|
845
|
+
@property
|
846
|
+
@pulumi.getter
|
847
|
+
def reverse(self) -> str:
|
848
|
+
"""
|
849
|
+
The Reverse of the IPv6
|
850
|
+
"""
|
851
|
+
return pulumi.get(self, "reverse")
|
852
|
+
|
853
|
+
@property
|
854
|
+
@pulumi.getter
|
855
|
+
def version(self) -> str:
|
856
|
+
"""
|
857
|
+
The version of the IPv6
|
858
|
+
"""
|
859
|
+
return pulumi.get(self, "version")
|
860
|
+
|
861
|
+
|
862
|
+
@pulumi.output_type
|
863
|
+
class GetServerOptionResult(dict):
|
864
|
+
def __init__(__self__, *,
|
865
|
+
expires_at: str,
|
866
|
+
id: str,
|
867
|
+
name: str):
|
868
|
+
"""
|
869
|
+
:param str expires_at: Auto expire the option after this date
|
870
|
+
:param str id: The ID of the server.
|
871
|
+
:param str name: The server name. Only one of `name` and `server_id` should be specified.
|
872
|
+
"""
|
873
|
+
pulumi.set(__self__, "expires_at", expires_at)
|
874
|
+
pulumi.set(__self__, "id", id)
|
875
|
+
pulumi.set(__self__, "name", name)
|
876
|
+
|
877
|
+
@property
|
878
|
+
@pulumi.getter(name="expiresAt")
|
879
|
+
def expires_at(self) -> str:
|
880
|
+
"""
|
881
|
+
Auto expire the option after this date
|
882
|
+
"""
|
883
|
+
return pulumi.get(self, "expires_at")
|
884
|
+
|
885
|
+
@property
|
886
|
+
@pulumi.getter
|
887
|
+
def id(self) -> str:
|
888
|
+
"""
|
889
|
+
The ID of the server.
|
890
|
+
"""
|
891
|
+
return pulumi.get(self, "id")
|
892
|
+
|
893
|
+
@property
|
894
|
+
@pulumi.getter
|
895
|
+
def name(self) -> str:
|
896
|
+
"""
|
897
|
+
The server name. Only one of `name` and `server_id` should be specified.
|
898
|
+
"""
|
899
|
+
return pulumi.get(self, "name")
|
900
|
+
|
901
|
+
|
902
|
+
@pulumi.output_type
|
903
|
+
class GetServerPrivateNetworkResult(dict):
|
904
|
+
def __init__(__self__, *,
|
905
|
+
created_at: str,
|
906
|
+
id: str,
|
907
|
+
ipam_ip_ids: Sequence[str],
|
908
|
+
status: str,
|
909
|
+
updated_at: str,
|
910
|
+
vlan: int):
|
911
|
+
"""
|
912
|
+
:param str created_at: The date and time of the creation of the private network
|
913
|
+
:param str id: The ID of the server.
|
914
|
+
:param Sequence[str] ipam_ip_ids: List of IPAM IP IDs to attach to the server
|
915
|
+
:param str status: The private network status
|
916
|
+
:param str updated_at: The date and time of the last update of the private network
|
917
|
+
:param int vlan: The VLAN ID associated to the private network
|
918
|
+
"""
|
919
|
+
pulumi.set(__self__, "created_at", created_at)
|
920
|
+
pulumi.set(__self__, "id", id)
|
921
|
+
pulumi.set(__self__, "ipam_ip_ids", ipam_ip_ids)
|
922
|
+
pulumi.set(__self__, "status", status)
|
923
|
+
pulumi.set(__self__, "updated_at", updated_at)
|
924
|
+
pulumi.set(__self__, "vlan", vlan)
|
925
|
+
|
926
|
+
@property
|
927
|
+
@pulumi.getter(name="createdAt")
|
928
|
+
def created_at(self) -> str:
|
929
|
+
"""
|
930
|
+
The date and time of the creation of the private network
|
931
|
+
"""
|
932
|
+
return pulumi.get(self, "created_at")
|
933
|
+
|
934
|
+
@property
|
935
|
+
@pulumi.getter
|
936
|
+
def id(self) -> str:
|
937
|
+
"""
|
938
|
+
The ID of the server.
|
939
|
+
"""
|
940
|
+
return pulumi.get(self, "id")
|
941
|
+
|
942
|
+
@property
|
943
|
+
@pulumi.getter(name="ipamIpIds")
|
944
|
+
def ipam_ip_ids(self) -> Sequence[str]:
|
945
|
+
"""
|
946
|
+
List of IPAM IP IDs to attach to the server
|
947
|
+
"""
|
948
|
+
return pulumi.get(self, "ipam_ip_ids")
|
949
|
+
|
950
|
+
@property
|
951
|
+
@pulumi.getter
|
952
|
+
def status(self) -> str:
|
953
|
+
"""
|
954
|
+
The private network status
|
955
|
+
"""
|
956
|
+
return pulumi.get(self, "status")
|
957
|
+
|
958
|
+
@property
|
959
|
+
@pulumi.getter(name="updatedAt")
|
960
|
+
def updated_at(self) -> str:
|
961
|
+
"""
|
962
|
+
The date and time of the last update of the private network
|
963
|
+
"""
|
964
|
+
return pulumi.get(self, "updated_at")
|
965
|
+
|
966
|
+
@property
|
967
|
+
@pulumi.getter
|
968
|
+
def vlan(self) -> int:
|
969
|
+
"""
|
970
|
+
The VLAN ID associated to the private network
|
971
|
+
"""
|
972
|
+
return pulumi.get(self, "vlan")
|
973
|
+
|
974
|
+
|