pulumiverse-scaleway 1.30.0a1750140900__py3-none-any.whl → 1.30.0a1752168858__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumiverse_scaleway/__init__.py +11 -1
- pulumiverse_scaleway/_inputs.py +2252 -2143
- pulumiverse_scaleway/_utilities.py +1 -1
- pulumiverse_scaleway/account/__init__.py +2 -1
- pulumiverse_scaleway/account/get_availability_zones.py +9 -8
- pulumiverse_scaleway/account/get_project.py +21 -20
- pulumiverse_scaleway/account/get_projects.py +28 -21
- pulumiverse_scaleway/account/get_ssh_key.py +24 -23
- pulumiverse_scaleway/account/outputs.py +20 -19
- pulumiverse_scaleway/account/project.py +59 -57
- pulumiverse_scaleway/account/ssh_key.py +87 -85
- pulumiverse_scaleway/account_project.py +59 -57
- pulumiverse_scaleway/account_ssh_key.py +87 -85
- pulumiverse_scaleway/apple_silicon_server.py +204 -155
- pulumiverse_scaleway/applesilicon/__init__.py +2 -1
- pulumiverse_scaleway/applesilicon/_inputs.py +89 -34
- pulumiverse_scaleway/applesilicon/outputs.py +54 -21
- pulumiverse_scaleway/applesilicon/server.py +204 -155
- pulumiverse_scaleway/baremetal_server.py +262 -260
- pulumiverse_scaleway/billing/__init__.py +2 -1
- pulumiverse_scaleway/billing/get_consumptions.py +10 -9
- pulumiverse_scaleway/billing/get_invoices.py +19 -18
- pulumiverse_scaleway/billing/outputs.py +73 -72
- pulumiverse_scaleway/block/__init__.py +2 -1
- pulumiverse_scaleway/block/_inputs.py +12 -11
- pulumiverse_scaleway/block/get_snapshot.py +29 -28
- pulumiverse_scaleway/block/get_volume.py +28 -27
- pulumiverse_scaleway/block/outputs.py +14 -13
- pulumiverse_scaleway/block/snapshot.py +73 -71
- pulumiverse_scaleway/block/volume.py +115 -113
- pulumiverse_scaleway/block_snapshot.py +73 -71
- pulumiverse_scaleway/block_volume.py +115 -113
- pulumiverse_scaleway/cockpit.py +38 -36
- pulumiverse_scaleway/cockpit_alert_manager.py +52 -50
- pulumiverse_scaleway/cockpit_grafana_user.py +59 -57
- pulumiverse_scaleway/cockpit_source.py +115 -113
- pulumiverse_scaleway/cockpit_token.py +66 -64
- pulumiverse_scaleway/config/__init__.py +2 -1
- pulumiverse_scaleway/config/__init__.pyi +2 -1
- pulumiverse_scaleway/config/vars.py +2 -1
- pulumiverse_scaleway/container.py +573 -343
- pulumiverse_scaleway/container_cron.py +80 -78
- pulumiverse_scaleway/container_domain.py +52 -50
- pulumiverse_scaleway/container_namespace.py +211 -140
- pulumiverse_scaleway/container_token.py +80 -78
- pulumiverse_scaleway/container_trigger.py +59 -57
- pulumiverse_scaleway/containers/__init__.py +2 -1
- pulumiverse_scaleway/containers/_inputs.py +72 -71
- pulumiverse_scaleway/containers/container.py +573 -343
- pulumiverse_scaleway/containers/cron.py +80 -78
- pulumiverse_scaleway/containers/domain.py +52 -50
- pulumiverse_scaleway/containers/get_container.py +87 -42
- pulumiverse_scaleway/containers/get_namespace.py +43 -31
- pulumiverse_scaleway/containers/namespace.py +211 -140
- pulumiverse_scaleway/containers/outputs.py +62 -61
- pulumiverse_scaleway/containers/token.py +80 -78
- pulumiverse_scaleway/containers/trigger.py +59 -57
- pulumiverse_scaleway/database.py +66 -64
- pulumiverse_scaleway/database_acl.py +31 -29
- pulumiverse_scaleway/database_backup.py +101 -99
- pulumiverse_scaleway/database_instance.py +297 -295
- pulumiverse_scaleway/database_privilege.py +73 -71
- pulumiverse_scaleway/database_read_replica.py +45 -43
- pulumiverse_scaleway/database_user.py +73 -71
- pulumiverse_scaleway/databases/__init__.py +2 -1
- pulumiverse_scaleway/databases/_inputs.py +191 -190
- pulumiverse_scaleway/databases/acl.py +31 -29
- pulumiverse_scaleway/databases/database.py +66 -64
- pulumiverse_scaleway/databases/database_backup.py +101 -99
- pulumiverse_scaleway/databases/get_acl.py +13 -12
- pulumiverse_scaleway/databases/get_database.py +19 -18
- pulumiverse_scaleway/databases/get_database_backup.py +34 -33
- pulumiverse_scaleway/databases/get_instance.py +43 -42
- pulumiverse_scaleway/databases/get_privilege.py +24 -23
- pulumiverse_scaleway/databases/instance.py +297 -295
- pulumiverse_scaleway/databases/outputs.py +188 -187
- pulumiverse_scaleway/databases/privilege.py +73 -71
- pulumiverse_scaleway/databases/read_replica.py +45 -43
- pulumiverse_scaleway/databases/serverless_database.py +80 -78
- pulumiverse_scaleway/databases/snapshot.py +101 -99
- pulumiverse_scaleway/databases/user.py +73 -71
- pulumiverse_scaleway/domain/__init__.py +2 -1
- pulumiverse_scaleway/domain/_inputs.py +531 -530
- pulumiverse_scaleway/domain/get_record.py +38 -37
- pulumiverse_scaleway/domain/get_zone.py +24 -23
- pulumiverse_scaleway/domain/outputs.py +358 -357
- pulumiverse_scaleway/domain/record.py +129 -127
- pulumiverse_scaleway/domain/registration.py +94 -92
- pulumiverse_scaleway/domain/zone.py +87 -85
- pulumiverse_scaleway/domain_record.py +129 -127
- pulumiverse_scaleway/domain_zone.py +87 -85
- pulumiverse_scaleway/edge_services_backend_stage.py +45 -43
- pulumiverse_scaleway/edge_services_cache_stage.py +115 -113
- pulumiverse_scaleway/edge_services_dns_stage.py +108 -106
- pulumiverse_scaleway/edge_services_head_stage.py +31 -29
- pulumiverse_scaleway/edge_services_pipeline.py +66 -64
- pulumiverse_scaleway/edge_services_plan.py +31 -29
- pulumiverse_scaleway/edge_services_route_stage.py +59 -57
- pulumiverse_scaleway/edge_services_tls_stage.py +122 -120
- pulumiverse_scaleway/edge_services_waf_stage.py +87 -85
- pulumiverse_scaleway/elasticmetal/__init__.py +2 -1
- pulumiverse_scaleway/elasticmetal/_inputs.py +123 -122
- pulumiverse_scaleway/elasticmetal/get_ip.py +56 -39
- pulumiverse_scaleway/elasticmetal/get_ips.py +24 -23
- pulumiverse_scaleway/elasticmetal/get_offer.py +29 -28
- pulumiverse_scaleway/elasticmetal/get_option.py +19 -18
- pulumiverse_scaleway/elasticmetal/get_os.py +23 -22
- pulumiverse_scaleway/elasticmetal/get_partition_schema.py +29 -28
- pulumiverse_scaleway/elasticmetal/get_server.py +39 -38
- pulumiverse_scaleway/elasticmetal/ip.py +139 -137
- pulumiverse_scaleway/elasticmetal/ip_mac_address.py +87 -85
- pulumiverse_scaleway/elasticmetal/outputs.py +233 -232
- pulumiverse_scaleway/elasticmetal/server.py +262 -260
- pulumiverse_scaleway/file_filesystem.py +552 -0
- pulumiverse_scaleway/flexible_ip.py +139 -137
- pulumiverse_scaleway/flexible_ip_mac_address.py +87 -85
- pulumiverse_scaleway/function.py +394 -284
- pulumiverse_scaleway/function_cron.py +80 -78
- pulumiverse_scaleway/function_domain.py +52 -50
- pulumiverse_scaleway/function_namespace.py +197 -126
- pulumiverse_scaleway/function_token.py +80 -78
- pulumiverse_scaleway/function_trigger.py +59 -57
- pulumiverse_scaleway/functions/__init__.py +2 -1
- pulumiverse_scaleway/functions/_inputs.py +42 -41
- pulumiverse_scaleway/functions/cron.py +80 -78
- pulumiverse_scaleway/functions/domain.py +52 -50
- pulumiverse_scaleway/functions/function.py +394 -284
- pulumiverse_scaleway/functions/get_function.py +69 -46
- pulumiverse_scaleway/functions/get_namespace.py +42 -30
- pulumiverse_scaleway/functions/namespace.py +197 -126
- pulumiverse_scaleway/functions/outputs.py +26 -25
- pulumiverse_scaleway/functions/token.py +80 -78
- pulumiverse_scaleway/functions/trigger.py +59 -57
- pulumiverse_scaleway/get_account_project.py +21 -20
- pulumiverse_scaleway/get_account_ssh_key.py +24 -23
- pulumiverse_scaleway/get_availability_zones.py +9 -8
- pulumiverse_scaleway/get_baremetal_offer.py +29 -28
- pulumiverse_scaleway/get_baremetal_option.py +19 -18
- pulumiverse_scaleway/get_baremetal_os.py +23 -22
- pulumiverse_scaleway/get_baremetal_server.py +39 -38
- pulumiverse_scaleway/get_billing_consumptions.py +10 -9
- pulumiverse_scaleway/get_billing_invoices.py +19 -18
- pulumiverse_scaleway/get_block_snapshot.py +29 -28
- pulumiverse_scaleway/get_block_volume.py +28 -27
- pulumiverse_scaleway/get_cockpit.py +10 -9
- pulumiverse_scaleway/get_cockpit_source.py +33 -32
- pulumiverse_scaleway/get_config.py +13 -12
- pulumiverse_scaleway/get_container.py +87 -42
- pulumiverse_scaleway/get_container_namespace.py +43 -31
- pulumiverse_scaleway/get_database.py +19 -18
- pulumiverse_scaleway/get_database_acl.py +13 -12
- pulumiverse_scaleway/get_database_backup.py +34 -33
- pulumiverse_scaleway/get_database_instance.py +43 -42
- pulumiverse_scaleway/get_database_privilege.py +24 -23
- pulumiverse_scaleway/get_domain_record.py +38 -37
- pulumiverse_scaleway/get_domain_zone.py +24 -23
- pulumiverse_scaleway/get_flexible_ip.py +56 -39
- pulumiverse_scaleway/get_flexible_ips.py +24 -23
- pulumiverse_scaleway/get_function.py +69 -46
- pulumiverse_scaleway/get_function_namespace.py +42 -30
- pulumiverse_scaleway/get_iam_api_key.py +17 -16
- pulumiverse_scaleway/get_iam_application.py +23 -22
- pulumiverse_scaleway/get_iam_group.py +25 -24
- pulumiverse_scaleway/get_iam_ssh_key.py +24 -23
- pulumiverse_scaleway/get_iam_user.py +23 -22
- pulumiverse_scaleway/get_instance_image.py +42 -41
- pulumiverse_scaleway/get_instance_ip.py +20 -19
- pulumiverse_scaleway/get_instance_placement_group.py +28 -27
- pulumiverse_scaleway/get_instance_private_nic.py +31 -30
- pulumiverse_scaleway/get_instance_security_group.py +31 -30
- pulumiverse_scaleway/get_instance_server.py +59 -47
- pulumiverse_scaleway/get_instance_servers.py +24 -23
- pulumiverse_scaleway/get_instance_snapshot.py +29 -28
- pulumiverse_scaleway/get_instance_volume.py +30 -29
- pulumiverse_scaleway/get_iot_device.py +31 -30
- pulumiverse_scaleway/get_iot_hub.py +39 -38
- pulumiverse_scaleway/get_ipam_ip.py +51 -50
- pulumiverse_scaleway/get_ipam_ips.py +44 -43
- pulumiverse_scaleway/get_k8s_version.py +16 -15
- pulumiverse_scaleway/get_kubernetes_cluster.py +39 -38
- pulumiverse_scaleway/get_kubernetes_node_pool.py +47 -46
- pulumiverse_scaleway/get_lb_acls.py +22 -21
- pulumiverse_scaleway/get_lb_backend.py +43 -42
- pulumiverse_scaleway/get_lb_backends.py +22 -21
- pulumiverse_scaleway/get_lb_frontend.py +26 -25
- pulumiverse_scaleway/get_lb_frontends.py +22 -21
- pulumiverse_scaleway/get_lb_ips.py +29 -28
- pulumiverse_scaleway/get_lb_route.py +16 -15
- pulumiverse_scaleway/get_lb_routes.py +17 -16
- pulumiverse_scaleway/get_lbs.py +24 -23
- pulumiverse_scaleway/get_loadbalancer.py +36 -35
- pulumiverse_scaleway/get_loadbalancer_certificate.py +24 -23
- pulumiverse_scaleway/get_loadbalancer_ip.py +29 -28
- pulumiverse_scaleway/get_marketplace_image.py +23 -22
- pulumiverse_scaleway/get_mnq_sns.py +14 -13
- pulumiverse_scaleway/get_mnq_sqs.py +14 -13
- pulumiverse_scaleway/get_mongo_db_instance.py +35 -34
- pulumiverse_scaleway/get_object_bucket.py +22 -21
- pulumiverse_scaleway/get_object_bucket_policy.py +17 -16
- pulumiverse_scaleway/get_redis_cluster.py +34 -33
- pulumiverse_scaleway/get_registry_image.py +37 -36
- pulumiverse_scaleway/get_registry_image_tag.py +33 -32
- pulumiverse_scaleway/get_registry_namespace.py +27 -26
- pulumiverse_scaleway/get_secret.py +41 -40
- pulumiverse_scaleway/get_secret_version.py +34 -33
- pulumiverse_scaleway/get_tem_domain.py +43 -42
- pulumiverse_scaleway/get_vpc.py +35 -34
- pulumiverse_scaleway/get_vpc_gateway_network.py +28 -27
- pulumiverse_scaleway/get_vpc_private_network.py +32 -31
- pulumiverse_scaleway/get_vpc_public_gateway.py +36 -35
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +24 -23
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +33 -32
- pulumiverse_scaleway/get_vpc_public_gateway_ip.py +14 -13
- pulumiverse_scaleway/get_vpc_public_pat_rule.py +21 -20
- pulumiverse_scaleway/get_vpc_routes.py +38 -37
- pulumiverse_scaleway/get_vpcs.py +24 -23
- pulumiverse_scaleway/get_web_host_offer.py +25 -24
- pulumiverse_scaleway/get_webhosting.py +36 -35
- pulumiverse_scaleway/hosting/__init__.py +2 -1
- pulumiverse_scaleway/hosting/_inputs.py +61 -60
- pulumiverse_scaleway/hosting/get_hosting.py +36 -35
- pulumiverse_scaleway/hosting/get_offer.py +25 -24
- pulumiverse_scaleway/hosting/hosting.py +164 -162
- pulumiverse_scaleway/hosting/outputs.py +139 -138
- pulumiverse_scaleway/iam/__init__.py +2 -1
- pulumiverse_scaleway/iam/_inputs.py +22 -21
- pulumiverse_scaleway/iam/api_key.py +115 -113
- pulumiverse_scaleway/iam/application.py +80 -78
- pulumiverse_scaleway/iam/get_api_key.py +17 -16
- pulumiverse_scaleway/iam/get_application.py +23 -22
- pulumiverse_scaleway/iam/get_group.py +25 -24
- pulumiverse_scaleway/iam/get_ssh_key.py +24 -23
- pulumiverse_scaleway/iam/get_user.py +23 -22
- pulumiverse_scaleway/iam/group.py +115 -113
- pulumiverse_scaleway/iam/group_membership.py +45 -43
- pulumiverse_scaleway/iam/outputs.py +14 -13
- pulumiverse_scaleway/iam/policy.py +136 -134
- pulumiverse_scaleway/iam/ssh_key.py +87 -85
- pulumiverse_scaleway/iam/user.py +284 -273
- pulumiverse_scaleway/iam_api_key.py +115 -113
- pulumiverse_scaleway/iam_application.py +80 -78
- pulumiverse_scaleway/iam_group.py +115 -113
- pulumiverse_scaleway/iam_group_membership.py +45 -43
- pulumiverse_scaleway/iam_policy.py +136 -134
- pulumiverse_scaleway/iam_ssh_key.py +87 -85
- pulumiverse_scaleway/iam_user.py +284 -273
- pulumiverse_scaleway/inference/__init__.py +2 -1
- pulumiverse_scaleway/inference/_inputs.py +116 -61
- pulumiverse_scaleway/inference/deployment.py +225 -176
- pulumiverse_scaleway/inference/get_model.py +27 -26
- pulumiverse_scaleway/inference/model.py +129 -127
- pulumiverse_scaleway/inference/outputs.py +82 -49
- pulumiverse_scaleway/inference_deployment.py +225 -176
- pulumiverse_scaleway/instance/__init__.py +2 -1
- pulumiverse_scaleway/instance/_inputs.py +296 -295
- pulumiverse_scaleway/instance/get_image.py +42 -41
- pulumiverse_scaleway/instance/get_ip.py +20 -19
- pulumiverse_scaleway/instance/get_placement_group.py +28 -27
- pulumiverse_scaleway/instance/get_private_nic.py +31 -30
- pulumiverse_scaleway/instance/get_security_group.py +31 -30
- pulumiverse_scaleway/instance/get_server.py +59 -47
- pulumiverse_scaleway/instance/get_servers.py +24 -23
- pulumiverse_scaleway/instance/get_snapshot.py +29 -28
- pulumiverse_scaleway/instance/get_volume.py +30 -29
- pulumiverse_scaleway/instance/image.py +150 -148
- pulumiverse_scaleway/instance/ip.py +94 -92
- pulumiverse_scaleway/instance/ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/instance/outputs.py +349 -348
- pulumiverse_scaleway/instance/placement_group.py +101 -99
- pulumiverse_scaleway/instance/private_nic.py +94 -92
- pulumiverse_scaleway/instance/security_group.py +150 -148
- pulumiverse_scaleway/instance/security_group_rules.py +17 -15
- pulumiverse_scaleway/instance/server.py +393 -330
- pulumiverse_scaleway/instance/snapshot.py +108 -106
- pulumiverse_scaleway/instance/user_data.py +59 -57
- pulumiverse_scaleway/instance/volume.py +129 -127
- pulumiverse_scaleway/instance_image.py +150 -148
- pulumiverse_scaleway/instance_ip.py +94 -92
- pulumiverse_scaleway/instance_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/instance_placement_group.py +101 -99
- pulumiverse_scaleway/instance_private_nic.py +94 -92
- pulumiverse_scaleway/instance_security_group.py +150 -148
- pulumiverse_scaleway/instance_security_group_rules.py +17 -15
- pulumiverse_scaleway/instance_server.py +393 -330
- pulumiverse_scaleway/instance_snapshot.py +108 -106
- pulumiverse_scaleway/instance_user_data.py +59 -57
- pulumiverse_scaleway/instance_volume.py +129 -127
- pulumiverse_scaleway/iot/__init__.py +2 -1
- pulumiverse_scaleway/iot/_inputs.py +98 -97
- pulumiverse_scaleway/iot/device.py +122 -120
- pulumiverse_scaleway/iot/get_device.py +31 -30
- pulumiverse_scaleway/iot/get_hub.py +39 -38
- pulumiverse_scaleway/iot/hub.py +206 -204
- pulumiverse_scaleway/iot/network.py +94 -92
- pulumiverse_scaleway/iot/outputs.py +78 -77
- pulumiverse_scaleway/iot/route.py +66 -64
- pulumiverse_scaleway/iot_device.py +122 -120
- pulumiverse_scaleway/iot_hub.py +206 -204
- pulumiverse_scaleway/iot_network.py +94 -92
- pulumiverse_scaleway/iot_route.py +66 -64
- pulumiverse_scaleway/ipam/__init__.py +2 -1
- pulumiverse_scaleway/ipam/_inputs.py +87 -86
- pulumiverse_scaleway/ipam/get_ip.py +51 -50
- pulumiverse_scaleway/ipam/get_ips.py +44 -43
- pulumiverse_scaleway/ipam/ip.py +94 -92
- pulumiverse_scaleway/ipam/ip_reverse_dns.py +59 -57
- pulumiverse_scaleway/ipam/outputs.py +90 -89
- pulumiverse_scaleway/ipam_ip.py +94 -92
- pulumiverse_scaleway/ipam_ip_reverse_dns.py +59 -57
- pulumiverse_scaleway/job/__init__.py +2 -1
- pulumiverse_scaleway/job/_inputs.py +38 -37
- pulumiverse_scaleway/job/definition.py +143 -141
- pulumiverse_scaleway/job/outputs.py +24 -23
- pulumiverse_scaleway/job_definition.py +143 -141
- pulumiverse_scaleway/kubernetes/__init__.py +2 -1
- pulumiverse_scaleway/kubernetes/_inputs.py +190 -189
- pulumiverse_scaleway/kubernetes/acl.py +45 -43
- pulumiverse_scaleway/kubernetes/cluster.py +234 -232
- pulumiverse_scaleway/kubernetes/get_cluster.py +39 -38
- pulumiverse_scaleway/kubernetes/get_pool.py +47 -46
- pulumiverse_scaleway/kubernetes/get_version.py +16 -15
- pulumiverse_scaleway/kubernetes/outputs.py +217 -216
- pulumiverse_scaleway/kubernetes/pool.py +290 -288
- pulumiverse_scaleway/kubernetes_cluster.py +234 -232
- pulumiverse_scaleway/kubernetes_node_pool.py +290 -288
- pulumiverse_scaleway/loadbalancer.py +199 -197
- pulumiverse_scaleway/loadbalancer_acl.py +73 -71
- pulumiverse_scaleway/loadbalancer_backend.py +381 -379
- pulumiverse_scaleway/loadbalancer_certificate.py +73 -71
- pulumiverse_scaleway/loadbalancer_frontend.py +136 -134
- pulumiverse_scaleway/loadbalancer_ip.py +101 -99
- pulumiverse_scaleway/loadbalancer_route.py +101 -99
- pulumiverse_scaleway/loadbalancers/__init__.py +2 -1
- pulumiverse_scaleway/loadbalancers/_inputs.py +214 -213
- pulumiverse_scaleway/loadbalancers/acl.py +73 -71
- pulumiverse_scaleway/loadbalancers/backend.py +381 -379
- pulumiverse_scaleway/loadbalancers/certificate.py +73 -71
- pulumiverse_scaleway/loadbalancers/frontend.py +136 -134
- pulumiverse_scaleway/loadbalancers/get_acls.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_backend.py +43 -42
- pulumiverse_scaleway/loadbalancers/get_backends.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_certificate.py +24 -23
- pulumiverse_scaleway/loadbalancers/get_frontend.py +26 -25
- pulumiverse_scaleway/loadbalancers/get_frontends.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_ip.py +29 -28
- pulumiverse_scaleway/loadbalancers/get_ips.py +29 -28
- pulumiverse_scaleway/loadbalancers/get_load_balancer.py +36 -35
- pulumiverse_scaleway/loadbalancers/get_load_balancers.py +24 -23
- pulumiverse_scaleway/loadbalancers/get_route.py +16 -15
- pulumiverse_scaleway/loadbalancers/get_routes.py +17 -16
- pulumiverse_scaleway/loadbalancers/ip.py +101 -99
- pulumiverse_scaleway/loadbalancers/load_balancer.py +199 -197
- pulumiverse_scaleway/loadbalancers/outputs.py +525 -524
- pulumiverse_scaleway/loadbalancers/route.py +101 -99
- pulumiverse_scaleway/mnq/__init__.py +2 -1
- pulumiverse_scaleway/mnq/_inputs.py +32 -31
- pulumiverse_scaleway/mnq/get_sns.py +14 -13
- pulumiverse_scaleway/mnq/get_sqs.py +14 -13
- pulumiverse_scaleway/mnq/nats_account.py +52 -50
- pulumiverse_scaleway/mnq/nats_credentials.py +52 -50
- pulumiverse_scaleway/mnq/outputs.py +20 -19
- pulumiverse_scaleway/mnq/sns.py +38 -36
- pulumiverse_scaleway/mnq/sns_credentials.py +59 -57
- pulumiverse_scaleway/mnq/sns_topic.py +143 -141
- pulumiverse_scaleway/mnq/sns_topic_subscription.py +150 -148
- pulumiverse_scaleway/mnq/sqs.py +38 -36
- pulumiverse_scaleway/mnq/sqs_credentials.py +59 -57
- pulumiverse_scaleway/mnq/sqs_queue.py +192 -190
- pulumiverse_scaleway/mnq_nats_account.py +52 -50
- pulumiverse_scaleway/mnq_nats_credentials.py +52 -50
- pulumiverse_scaleway/mnq_sns.py +38 -36
- pulumiverse_scaleway/mnq_sns_credentials.py +59 -57
- pulumiverse_scaleway/mnq_sns_topic.py +143 -141
- pulumiverse_scaleway/mnq_sns_topic_subscription.py +150 -148
- pulumiverse_scaleway/mnq_sqs.py +38 -36
- pulumiverse_scaleway/mnq_sqs_credentials.py +59 -57
- pulumiverse_scaleway/mnq_sqs_queue.py +192 -190
- pulumiverse_scaleway/mongo_db_instance.py +199 -197
- pulumiverse_scaleway/mongo_db_snapshot.py +101 -99
- pulumiverse_scaleway/mongodb/__init__.py +2 -1
- pulumiverse_scaleway/mongodb/_inputs.py +53 -52
- pulumiverse_scaleway/mongodb/get_instance.py +35 -34
- pulumiverse_scaleway/mongodb/instance.py +199 -197
- pulumiverse_scaleway/mongodb/outputs.py +64 -63
- pulumiverse_scaleway/mongodb/snapshot.py +101 -99
- pulumiverse_scaleway/network/__init__.py +2 -1
- pulumiverse_scaleway/network/_inputs.py +140 -139
- pulumiverse_scaleway/network/acl.py +59 -57
- pulumiverse_scaleway/network/gateway_network.py +143 -141
- pulumiverse_scaleway/network/get_gateway_network.py +28 -27
- pulumiverse_scaleway/network/get_private_network.py +32 -31
- pulumiverse_scaleway/network/get_public_gateway.py +36 -35
- pulumiverse_scaleway/network/get_public_gateway_dhcp.py +24 -23
- pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +33 -32
- pulumiverse_scaleway/network/get_public_gateway_ip.py +14 -13
- pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +21 -20
- pulumiverse_scaleway/network/get_routes.py +38 -37
- pulumiverse_scaleway/network/get_vpc.py +35 -34
- pulumiverse_scaleway/network/get_vpcs.py +24 -23
- pulumiverse_scaleway/network/outputs.py +206 -205
- pulumiverse_scaleway/network/private_network.py +122 -120
- pulumiverse_scaleway/network/public_gateway.py +213 -211
- pulumiverse_scaleway/network/public_gateway_dhcp.py +234 -232
- pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +87 -85
- pulumiverse_scaleway/network/public_gateway_ip.py +87 -85
- pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/network/public_gateway_pat_rule.py +108 -106
- pulumiverse_scaleway/network/route.py +115 -113
- pulumiverse_scaleway/network/vpc.py +101 -99
- pulumiverse_scaleway/object/__init__.py +2 -1
- pulumiverse_scaleway/object/_inputs.py +127 -126
- pulumiverse_scaleway/object/bucket.py +115 -113
- pulumiverse_scaleway/object/bucket_acl.py +73 -71
- pulumiverse_scaleway/object/bucket_lock_configuration.py +45 -43
- pulumiverse_scaleway/object/bucket_policy.py +59 -57
- pulumiverse_scaleway/object/bucket_website_configuration.py +85 -65
- pulumiverse_scaleway/object/get_bucket.py +22 -21
- pulumiverse_scaleway/object/get_bucket_policy.py +17 -16
- pulumiverse_scaleway/object/item.py +232 -183
- pulumiverse_scaleway/object/outputs.py +114 -113
- pulumiverse_scaleway/object_bucket.py +115 -113
- pulumiverse_scaleway/object_bucket_acl.py +73 -71
- pulumiverse_scaleway/object_bucket_lock_configuration.py +45 -43
- pulumiverse_scaleway/object_bucket_policy.py +59 -57
- pulumiverse_scaleway/object_bucket_website_configuration.py +85 -65
- pulumiverse_scaleway/object_item.py +232 -183
- pulumiverse_scaleway/observability/__init__.py +2 -1
- pulumiverse_scaleway/observability/_inputs.py +89 -88
- pulumiverse_scaleway/observability/alert_manager.py +52 -50
- pulumiverse_scaleway/observability/cockpit.py +38 -36
- pulumiverse_scaleway/observability/get_instance.py +10 -9
- pulumiverse_scaleway/observability/get_source.py +33 -32
- pulumiverse_scaleway/observability/grafana_user.py +59 -57
- pulumiverse_scaleway/observability/outputs.py +77 -76
- pulumiverse_scaleway/observability/source.py +115 -113
- pulumiverse_scaleway/observability/token.py +66 -64
- pulumiverse_scaleway/outputs.py +2797 -2732
- pulumiverse_scaleway/provider.py +87 -65
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/rdb_snapshot.py +101 -99
- pulumiverse_scaleway/redis/__init__.py +2 -1
- pulumiverse_scaleway/redis/_inputs.py +63 -62
- pulumiverse_scaleway/redis/cluster.py +178 -176
- pulumiverse_scaleway/redis/get_cluster.py +34 -33
- pulumiverse_scaleway/redis/outputs.py +74 -73
- pulumiverse_scaleway/redis_cluster.py +178 -176
- pulumiverse_scaleway/registry/__init__.py +2 -1
- pulumiverse_scaleway/registry/get_image.py +37 -36
- pulumiverse_scaleway/registry/get_image_tag.py +33 -32
- pulumiverse_scaleway/registry/get_namespace.py +27 -26
- pulumiverse_scaleway/registry/namespace.py +87 -85
- pulumiverse_scaleway/registry_namespace.py +87 -85
- pulumiverse_scaleway/sdb_database.py +80 -78
- pulumiverse_scaleway/secret.py +143 -141
- pulumiverse_scaleway/secret_version.py +87 -85
- pulumiverse_scaleway/secrets/__init__.py +2 -1
- pulumiverse_scaleway/secrets/_inputs.py +53 -52
- pulumiverse_scaleway/secrets/get_secret.py +41 -40
- pulumiverse_scaleway/secrets/get_version.py +34 -33
- pulumiverse_scaleway/secrets/outputs.py +64 -63
- pulumiverse_scaleway/secrets/secret.py +143 -141
- pulumiverse_scaleway/secrets/version.py +87 -85
- pulumiverse_scaleway/tem/__init__.py +2 -1
- pulumiverse_scaleway/tem/_inputs.py +28 -27
- pulumiverse_scaleway/tem/blocked_list.py +87 -85
- pulumiverse_scaleway/tem/domain.py +199 -197
- pulumiverse_scaleway/tem/domain_validation.py +52 -50
- pulumiverse_scaleway/tem/get_domain.py +43 -42
- pulumiverse_scaleway/tem/get_offer_subscription.py +22 -21
- pulumiverse_scaleway/tem/outputs.py +34 -33
- pulumiverse_scaleway/tem/webhook.py +108 -106
- pulumiverse_scaleway/tem_domain.py +199 -197
- pulumiverse_scaleway/tem_domain_validation.py +52 -50
- pulumiverse_scaleway/tem_webhook.py +108 -106
- pulumiverse_scaleway/vpc.py +101 -99
- pulumiverse_scaleway/vpc_gateway_network.py +143 -141
- pulumiverse_scaleway/vpc_private_network.py +122 -120
- pulumiverse_scaleway/vpc_public_gateway.py +213 -211
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +234 -232
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +87 -85
- pulumiverse_scaleway/vpc_public_gateway_ip.py +87 -85
- pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +108 -106
- pulumiverse_scaleway/vpc_route.py +115 -113
- pulumiverse_scaleway/webhosting.py +164 -162
- {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/METADATA +2 -2
- pulumiverse_scaleway-1.30.0a1752168858.dist-info/RECORD +493 -0
- pulumiverse_scaleway-1.30.0a1750140900.dist-info/RECORD +0 -492
- {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.30.0a1750140900.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,8 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -46,11 +47,11 @@ class IpCustomResource(dict):
|
|
46
47
|
return super().get(key, default)
|
47
48
|
|
48
49
|
def __init__(__self__, *,
|
49
|
-
mac_address: str,
|
50
|
-
name: Optional[str] = None):
|
50
|
+
mac_address: builtins.str,
|
51
|
+
name: Optional[builtins.str] = None):
|
51
52
|
"""
|
52
|
-
:param str mac_address: The MAC address of the resource the IP is attached to.
|
53
|
-
:param str name: The name of the resource the IP is attached to.
|
53
|
+
:param builtins.str mac_address: The MAC address of the resource the IP is attached to.
|
54
|
+
:param builtins.str name: The name of the resource the IP is attached to.
|
54
55
|
"""
|
55
56
|
pulumi.set(__self__, "mac_address", mac_address)
|
56
57
|
if name is not None:
|
@@ -58,7 +59,7 @@ class IpCustomResource(dict):
|
|
58
59
|
|
59
60
|
@property
|
60
61
|
@pulumi.getter(name="macAddress")
|
61
|
-
def mac_address(self) -> str:
|
62
|
+
def mac_address(self) -> builtins.str:
|
62
63
|
"""
|
63
64
|
The MAC address of the resource the IP is attached to.
|
64
65
|
"""
|
@@ -66,7 +67,7 @@ class IpCustomResource(dict):
|
|
66
67
|
|
67
68
|
@property
|
68
69
|
@pulumi.getter
|
69
|
-
def name(self) -> Optional[str]:
|
70
|
+
def name(self) -> Optional[builtins.str]:
|
70
71
|
"""
|
71
72
|
The name of the resource the IP is attached to.
|
72
73
|
"""
|
@@ -93,15 +94,15 @@ class IpResource(dict):
|
|
93
94
|
return super().get(key, default)
|
94
95
|
|
95
96
|
def __init__(__self__, *,
|
96
|
-
id: Optional[str] = None,
|
97
|
-
mac_address: Optional[str] = None,
|
98
|
-
name: Optional[str] = None,
|
99
|
-
type: Optional[str] = None):
|
97
|
+
id: Optional[builtins.str] = None,
|
98
|
+
mac_address: Optional[builtins.str] = None,
|
99
|
+
name: Optional[builtins.str] = None,
|
100
|
+
type: Optional[builtins.str] = None):
|
100
101
|
"""
|
101
|
-
:param str id: The ID of the resource that the IP is attached to.
|
102
|
-
:param str mac_address: The MAC address of the resource the IP is attached to.
|
103
|
-
:param str name: The name of the resource the IP is attached to.
|
104
|
-
:param str type: The type of resource the IP is attached to.
|
102
|
+
:param builtins.str id: The ID of the resource that the IP is attached to.
|
103
|
+
:param builtins.str mac_address: The MAC address of the resource the IP is attached to.
|
104
|
+
:param builtins.str name: The name of the resource the IP is attached to.
|
105
|
+
:param builtins.str type: The type of resource the IP is attached to.
|
105
106
|
"""
|
106
107
|
if id is not None:
|
107
108
|
pulumi.set(__self__, "id", id)
|
@@ -114,7 +115,7 @@ class IpResource(dict):
|
|
114
115
|
|
115
116
|
@property
|
116
117
|
@pulumi.getter
|
117
|
-
def id(self) -> Optional[str]:
|
118
|
+
def id(self) -> Optional[builtins.str]:
|
118
119
|
"""
|
119
120
|
The ID of the resource that the IP is attached to.
|
120
121
|
"""
|
@@ -122,7 +123,7 @@ class IpResource(dict):
|
|
122
123
|
|
123
124
|
@property
|
124
125
|
@pulumi.getter(name="macAddress")
|
125
|
-
def mac_address(self) -> Optional[str]:
|
126
|
+
def mac_address(self) -> Optional[builtins.str]:
|
126
127
|
"""
|
127
128
|
The MAC address of the resource the IP is attached to.
|
128
129
|
"""
|
@@ -130,7 +131,7 @@ class IpResource(dict):
|
|
130
131
|
|
131
132
|
@property
|
132
133
|
@pulumi.getter
|
133
|
-
def name(self) -> Optional[str]:
|
134
|
+
def name(self) -> Optional[builtins.str]:
|
134
135
|
"""
|
135
136
|
The name of the resource the IP is attached to.
|
136
137
|
"""
|
@@ -138,7 +139,7 @@ class IpResource(dict):
|
|
138
139
|
|
139
140
|
@property
|
140
141
|
@pulumi.getter
|
141
|
-
def type(self) -> Optional[str]:
|
142
|
+
def type(self) -> Optional[builtins.str]:
|
142
143
|
"""
|
143
144
|
The type of resource the IP is attached to.
|
144
145
|
"""
|
@@ -148,11 +149,11 @@ class IpResource(dict):
|
|
148
149
|
@pulumi.output_type
|
149
150
|
class IpReverse(dict):
|
150
151
|
def __init__(__self__, *,
|
151
|
-
address: Optional[str] = None,
|
152
|
-
hostname: Optional[str] = None):
|
152
|
+
address: Optional[builtins.str] = None,
|
153
|
+
hostname: Optional[builtins.str] = None):
|
153
154
|
"""
|
154
|
-
:param str address: The IP corresponding to the hostname
|
155
|
-
:param str hostname: The reverse domain name.
|
155
|
+
:param builtins.str address: The IP corresponding to the hostname
|
156
|
+
:param builtins.str hostname: The reverse domain name.
|
156
157
|
"""
|
157
158
|
if address is not None:
|
158
159
|
pulumi.set(__self__, "address", address)
|
@@ -161,7 +162,7 @@ class IpReverse(dict):
|
|
161
162
|
|
162
163
|
@property
|
163
164
|
@pulumi.getter
|
164
|
-
def address(self) -> Optional[str]:
|
165
|
+
def address(self) -> Optional[builtins.str]:
|
165
166
|
"""
|
166
167
|
The IP corresponding to the hostname
|
167
168
|
"""
|
@@ -169,7 +170,7 @@ class IpReverse(dict):
|
|
169
170
|
|
170
171
|
@property
|
171
172
|
@pulumi.getter
|
172
|
-
def hostname(self) -> Optional[str]:
|
173
|
+
def hostname(self) -> Optional[builtins.str]:
|
173
174
|
"""
|
174
175
|
The reverse domain name.
|
175
176
|
"""
|
@@ -198,13 +199,13 @@ class IpSource(dict):
|
|
198
199
|
return super().get(key, default)
|
199
200
|
|
200
201
|
def __init__(__self__, *,
|
201
|
-
private_network_id: Optional[str] = None,
|
202
|
-
subnet_id: Optional[str] = None,
|
203
|
-
zonal: Optional[str] = None):
|
202
|
+
private_network_id: Optional[builtins.str] = None,
|
203
|
+
subnet_id: Optional[builtins.str] = None,
|
204
|
+
zonal: Optional[builtins.str] = None):
|
204
205
|
"""
|
205
|
-
:param str private_network_id: The Private Network of the IP (if the IP is a private IP).
|
206
|
-
:param str subnet_id: The Private Network subnet of the IP (if the IP is a private IP).
|
207
|
-
:param str zonal: The zone of the IP (if the IP is public and zoned, rather than private and/or regional)
|
206
|
+
:param builtins.str private_network_id: The Private Network of the IP (if the IP is a private IP).
|
207
|
+
:param builtins.str subnet_id: The Private Network subnet of the IP (if the IP is a private IP).
|
208
|
+
:param builtins.str zonal: The zone of the IP (if the IP is public and zoned, rather than private and/or regional)
|
208
209
|
"""
|
209
210
|
if private_network_id is not None:
|
210
211
|
pulumi.set(__self__, "private_network_id", private_network_id)
|
@@ -215,7 +216,7 @@ class IpSource(dict):
|
|
215
216
|
|
216
217
|
@property
|
217
218
|
@pulumi.getter(name="privateNetworkId")
|
218
|
-
def private_network_id(self) -> Optional[str]:
|
219
|
+
def private_network_id(self) -> Optional[builtins.str]:
|
219
220
|
"""
|
220
221
|
The Private Network of the IP (if the IP is a private IP).
|
221
222
|
"""
|
@@ -223,7 +224,7 @@ class IpSource(dict):
|
|
223
224
|
|
224
225
|
@property
|
225
226
|
@pulumi.getter(name="subnetId")
|
226
|
-
def subnet_id(self) -> Optional[str]:
|
227
|
+
def subnet_id(self) -> Optional[builtins.str]:
|
227
228
|
"""
|
228
229
|
The Private Network subnet of the IP (if the IP is a private IP).
|
229
230
|
"""
|
@@ -231,7 +232,7 @@ class IpSource(dict):
|
|
231
232
|
|
232
233
|
@property
|
233
234
|
@pulumi.getter
|
234
|
-
def zonal(self) -> Optional[str]:
|
235
|
+
def zonal(self) -> Optional[builtins.str]:
|
235
236
|
"""
|
236
237
|
The zone of the IP (if the IP is public and zoned, rather than private and/or regional)
|
237
238
|
"""
|
@@ -241,13 +242,13 @@ class IpSource(dict):
|
|
241
242
|
@pulumi.output_type
|
242
243
|
class GetIpResourceResult(dict):
|
243
244
|
def __init__(__self__, *,
|
244
|
-
type: str,
|
245
|
-
id: Optional[str] = None,
|
246
|
-
name: Optional[str] = None):
|
245
|
+
type: builtins.str,
|
246
|
+
id: Optional[builtins.str] = None,
|
247
|
+
name: Optional[builtins.str] = None):
|
247
248
|
"""
|
248
|
-
:param str type: The type of the resource the IP is attached to. [Documentation](https://pkg.go.dev/github.com/scaleway/scaleway-sdk-go@master/api/ipam/v1#pkg-constants) with type list.
|
249
|
-
:param str id: The ID of the resource that the IP is attached to.
|
250
|
-
:param str name: The name of the resource the IP is attached to.
|
249
|
+
:param builtins.str type: The type of the resource the IP is attached to. [Documentation](https://pkg.go.dev/github.com/scaleway/scaleway-sdk-go@master/api/ipam/v1#pkg-constants) with type list.
|
250
|
+
:param builtins.str id: The ID of the resource that the IP is attached to.
|
251
|
+
:param builtins.str name: The name of the resource the IP is attached to.
|
251
252
|
"""
|
252
253
|
pulumi.set(__self__, "type", type)
|
253
254
|
if id is not None:
|
@@ -257,7 +258,7 @@ class GetIpResourceResult(dict):
|
|
257
258
|
|
258
259
|
@property
|
259
260
|
@pulumi.getter
|
260
|
-
def type(self) -> str:
|
261
|
+
def type(self) -> builtins.str:
|
261
262
|
"""
|
262
263
|
The type of the resource the IP is attached to. [Documentation](https://pkg.go.dev/github.com/scaleway/scaleway-sdk-go@master/api/ipam/v1#pkg-constants) with type list.
|
263
264
|
"""
|
@@ -265,7 +266,7 @@ class GetIpResourceResult(dict):
|
|
265
266
|
|
266
267
|
@property
|
267
268
|
@pulumi.getter
|
268
|
-
def id(self) -> Optional[str]:
|
269
|
+
def id(self) -> Optional[builtins.str]:
|
269
270
|
"""
|
270
271
|
The ID of the resource that the IP is attached to.
|
271
272
|
"""
|
@@ -273,7 +274,7 @@ class GetIpResourceResult(dict):
|
|
273
274
|
|
274
275
|
@property
|
275
276
|
@pulumi.getter
|
276
|
-
def name(self) -> Optional[str]:
|
277
|
+
def name(self) -> Optional[builtins.str]:
|
277
278
|
"""
|
278
279
|
The name of the resource the IP is attached to.
|
279
280
|
"""
|
@@ -283,25 +284,25 @@ class GetIpResourceResult(dict):
|
|
283
284
|
@pulumi.output_type
|
284
285
|
class GetIpsIpResult(dict):
|
285
286
|
def __init__(__self__, *,
|
286
|
-
address: str,
|
287
|
-
created_at: str,
|
288
|
-
id: str,
|
289
|
-
project_id: str,
|
290
|
-
region: str,
|
287
|
+
address: builtins.str,
|
288
|
+
created_at: builtins.str,
|
289
|
+
id: builtins.str,
|
290
|
+
project_id: builtins.str,
|
291
|
+
region: builtins.str,
|
291
292
|
resources: Sequence['outputs.GetIpsIpResourceResult'],
|
292
|
-
tags: Sequence[str],
|
293
|
-
updated_at: str,
|
294
|
-
zone: str):
|
295
|
-
"""
|
296
|
-
:param str address: The Scaleway internal IP address of the resource.
|
297
|
-
:param str created_at: The date and time of the creation of the IP.
|
298
|
-
:param str id: The ID of the resource.
|
299
|
-
:param str project_id: The ID of the Project to filter for.
|
300
|
-
:param str region: The region to filter for.
|
293
|
+
tags: Sequence[builtins.str],
|
294
|
+
updated_at: builtins.str,
|
295
|
+
zone: builtins.str):
|
296
|
+
"""
|
297
|
+
:param builtins.str address: The Scaleway internal IP address of the resource.
|
298
|
+
:param builtins.str created_at: The date and time of the creation of the IP.
|
299
|
+
:param builtins.str id: The ID of the resource.
|
300
|
+
:param builtins.str project_id: The ID of the Project to filter for.
|
301
|
+
:param builtins.str region: The region to filter for.
|
301
302
|
:param Sequence['GetIpsIpResourceArgs'] resources: Filter for a resource attached to the IP, using resource ID, type or name.
|
302
|
-
:param Sequence[str] tags: The IP tags to filter for.
|
303
|
-
:param str updated_at: The date and time of the last update of the IP.
|
304
|
-
:param str zone: The zone of the IP.
|
303
|
+
:param Sequence[builtins.str] tags: The IP tags to filter for.
|
304
|
+
:param builtins.str updated_at: The date and time of the last update of the IP.
|
305
|
+
:param builtins.str zone: The zone of the IP.
|
305
306
|
"""
|
306
307
|
pulumi.set(__self__, "address", address)
|
307
308
|
pulumi.set(__self__, "created_at", created_at)
|
@@ -315,7 +316,7 @@ class GetIpsIpResult(dict):
|
|
315
316
|
|
316
317
|
@property
|
317
318
|
@pulumi.getter
|
318
|
-
def address(self) -> str:
|
319
|
+
def address(self) -> builtins.str:
|
319
320
|
"""
|
320
321
|
The Scaleway internal IP address of the resource.
|
321
322
|
"""
|
@@ -323,7 +324,7 @@ class GetIpsIpResult(dict):
|
|
323
324
|
|
324
325
|
@property
|
325
326
|
@pulumi.getter(name="createdAt")
|
326
|
-
def created_at(self) -> str:
|
327
|
+
def created_at(self) -> builtins.str:
|
327
328
|
"""
|
328
329
|
The date and time of the creation of the IP.
|
329
330
|
"""
|
@@ -331,7 +332,7 @@ class GetIpsIpResult(dict):
|
|
331
332
|
|
332
333
|
@property
|
333
334
|
@pulumi.getter
|
334
|
-
def id(self) -> str:
|
335
|
+
def id(self) -> builtins.str:
|
335
336
|
"""
|
336
337
|
The ID of the resource.
|
337
338
|
"""
|
@@ -339,7 +340,7 @@ class GetIpsIpResult(dict):
|
|
339
340
|
|
340
341
|
@property
|
341
342
|
@pulumi.getter(name="projectId")
|
342
|
-
def project_id(self) -> str:
|
343
|
+
def project_id(self) -> builtins.str:
|
343
344
|
"""
|
344
345
|
The ID of the Project to filter for.
|
345
346
|
"""
|
@@ -347,7 +348,7 @@ class GetIpsIpResult(dict):
|
|
347
348
|
|
348
349
|
@property
|
349
350
|
@pulumi.getter
|
350
|
-
def region(self) -> str:
|
351
|
+
def region(self) -> builtins.str:
|
351
352
|
"""
|
352
353
|
The region to filter for.
|
353
354
|
"""
|
@@ -363,7 +364,7 @@ class GetIpsIpResult(dict):
|
|
363
364
|
|
364
365
|
@property
|
365
366
|
@pulumi.getter
|
366
|
-
def tags(self) -> Sequence[str]:
|
367
|
+
def tags(self) -> Sequence[builtins.str]:
|
367
368
|
"""
|
368
369
|
The IP tags to filter for.
|
369
370
|
"""
|
@@ -371,7 +372,7 @@ class GetIpsIpResult(dict):
|
|
371
372
|
|
372
373
|
@property
|
373
374
|
@pulumi.getter(name="updatedAt")
|
374
|
-
def updated_at(self) -> str:
|
375
|
+
def updated_at(self) -> builtins.str:
|
375
376
|
"""
|
376
377
|
The date and time of the last update of the IP.
|
377
378
|
"""
|
@@ -379,7 +380,7 @@ class GetIpsIpResult(dict):
|
|
379
380
|
|
380
381
|
@property
|
381
382
|
@pulumi.getter
|
382
|
-
def zone(self) -> str:
|
383
|
+
def zone(self) -> builtins.str:
|
383
384
|
"""
|
384
385
|
The zone of the IP.
|
385
386
|
"""
|
@@ -389,15 +390,15 @@ class GetIpsIpResult(dict):
|
|
389
390
|
@pulumi.output_type
|
390
391
|
class GetIpsIpResourceResult(dict):
|
391
392
|
def __init__(__self__, *,
|
392
|
-
id: str,
|
393
|
-
mac_address: str,
|
394
|
-
name: str,
|
395
|
-
type: str):
|
393
|
+
id: builtins.str,
|
394
|
+
mac_address: builtins.str,
|
395
|
+
name: builtins.str,
|
396
|
+
type: builtins.str):
|
396
397
|
"""
|
397
|
-
:param str id: The ID of the attached resource.
|
398
|
-
:param str mac_address: The linked MAC address to filter for.
|
399
|
-
:param str name: The name of the attached resource.
|
400
|
-
:param str type: The type of the attached resource. [Documentation](https://pkg.go.dev/github.com/scaleway/scaleway-sdk-go@master/api/ipam/v1#pkg-constants) with type list.
|
398
|
+
:param builtins.str id: The ID of the attached resource.
|
399
|
+
:param builtins.str mac_address: The linked MAC address to filter for.
|
400
|
+
:param builtins.str name: The name of the attached resource.
|
401
|
+
:param builtins.str type: The type of the attached resource. [Documentation](https://pkg.go.dev/github.com/scaleway/scaleway-sdk-go@master/api/ipam/v1#pkg-constants) with type list.
|
401
402
|
"""
|
402
403
|
pulumi.set(__self__, "id", id)
|
403
404
|
pulumi.set(__self__, "mac_address", mac_address)
|
@@ -406,7 +407,7 @@ class GetIpsIpResourceResult(dict):
|
|
406
407
|
|
407
408
|
@property
|
408
409
|
@pulumi.getter
|
409
|
-
def id(self) -> str:
|
410
|
+
def id(self) -> builtins.str:
|
410
411
|
"""
|
411
412
|
The ID of the attached resource.
|
412
413
|
"""
|
@@ -414,7 +415,7 @@ class GetIpsIpResourceResult(dict):
|
|
414
415
|
|
415
416
|
@property
|
416
417
|
@pulumi.getter(name="macAddress")
|
417
|
-
def mac_address(self) -> str:
|
418
|
+
def mac_address(self) -> builtins.str:
|
418
419
|
"""
|
419
420
|
The linked MAC address to filter for.
|
420
421
|
"""
|
@@ -422,7 +423,7 @@ class GetIpsIpResourceResult(dict):
|
|
422
423
|
|
423
424
|
@property
|
424
425
|
@pulumi.getter
|
425
|
-
def name(self) -> str:
|
426
|
+
def name(self) -> builtins.str:
|
426
427
|
"""
|
427
428
|
The name of the attached resource.
|
428
429
|
"""
|
@@ -430,7 +431,7 @@ class GetIpsIpResourceResult(dict):
|
|
430
431
|
|
431
432
|
@property
|
432
433
|
@pulumi.getter
|
433
|
-
def type(self) -> str:
|
434
|
+
def type(self) -> builtins.str:
|
434
435
|
"""
|
435
436
|
The type of the attached resource. [Documentation](https://pkg.go.dev/github.com/scaleway/scaleway-sdk-go@master/api/ipam/v1#pkg-constants) with type list.
|
436
437
|
"""
|
@@ -440,13 +441,13 @@ class GetIpsIpResourceResult(dict):
|
|
440
441
|
@pulumi.output_type
|
441
442
|
class GetIpsResourceResult(dict):
|
442
443
|
def __init__(__self__, *,
|
443
|
-
type: str,
|
444
|
-
id: Optional[str] = None,
|
445
|
-
name: Optional[str] = None):
|
444
|
+
type: builtins.str,
|
445
|
+
id: Optional[builtins.str] = None,
|
446
|
+
name: Optional[builtins.str] = None):
|
446
447
|
"""
|
447
|
-
:param str type: The type of the attached resource. [Documentation](https://pkg.go.dev/github.com/scaleway/scaleway-sdk-go@master/api/ipam/v1#pkg-constants) with type list.
|
448
|
-
:param str id: The ID of the attached resource.
|
449
|
-
:param str name: The name of the attached resource.
|
448
|
+
:param builtins.str type: The type of the attached resource. [Documentation](https://pkg.go.dev/github.com/scaleway/scaleway-sdk-go@master/api/ipam/v1#pkg-constants) with type list.
|
449
|
+
:param builtins.str id: The ID of the attached resource.
|
450
|
+
:param builtins.str name: The name of the attached resource.
|
450
451
|
"""
|
451
452
|
pulumi.set(__self__, "type", type)
|
452
453
|
if id is not None:
|
@@ -456,7 +457,7 @@ class GetIpsResourceResult(dict):
|
|
456
457
|
|
457
458
|
@property
|
458
459
|
@pulumi.getter
|
459
|
-
def type(self) -> str:
|
460
|
+
def type(self) -> builtins.str:
|
460
461
|
"""
|
461
462
|
The type of the attached resource. [Documentation](https://pkg.go.dev/github.com/scaleway/scaleway-sdk-go@master/api/ipam/v1#pkg-constants) with type list.
|
462
463
|
"""
|
@@ -464,7 +465,7 @@ class GetIpsResourceResult(dict):
|
|
464
465
|
|
465
466
|
@property
|
466
467
|
@pulumi.getter
|
467
|
-
def id(self) -> Optional[str]:
|
468
|
+
def id(self) -> Optional[builtins.str]:
|
468
469
|
"""
|
469
470
|
The ID of the attached resource.
|
470
471
|
"""
|
@@ -472,7 +473,7 @@ class GetIpsResourceResult(dict):
|
|
472
473
|
|
473
474
|
@property
|
474
475
|
@pulumi.getter
|
475
|
-
def name(self) -> Optional[str]:
|
476
|
+
def name(self) -> Optional[builtins.str]:
|
476
477
|
"""
|
477
478
|
The name of the attached resource.
|
478
479
|
"""
|