pulumiverse-scaleway 1.30.0a1748337252__py3-none-any.whl → 1.30.0a1752168858__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumiverse_scaleway/__init__.py +11 -1
- pulumiverse_scaleway/_inputs.py +2252 -2143
- pulumiverse_scaleway/_utilities.py +1 -1
- pulumiverse_scaleway/account/__init__.py +2 -1
- pulumiverse_scaleway/account/get_availability_zones.py +9 -8
- pulumiverse_scaleway/account/get_project.py +21 -20
- pulumiverse_scaleway/account/get_projects.py +28 -21
- pulumiverse_scaleway/account/get_ssh_key.py +24 -23
- pulumiverse_scaleway/account/outputs.py +20 -19
- pulumiverse_scaleway/account/project.py +59 -57
- pulumiverse_scaleway/account/ssh_key.py +87 -85
- pulumiverse_scaleway/account_project.py +59 -57
- pulumiverse_scaleway/account_ssh_key.py +87 -85
- pulumiverse_scaleway/apple_silicon_server.py +204 -155
- pulumiverse_scaleway/applesilicon/__init__.py +2 -1
- pulumiverse_scaleway/applesilicon/_inputs.py +89 -34
- pulumiverse_scaleway/applesilicon/outputs.py +54 -21
- pulumiverse_scaleway/applesilicon/server.py +204 -155
- pulumiverse_scaleway/baremetal_server.py +262 -260
- pulumiverse_scaleway/billing/__init__.py +2 -1
- pulumiverse_scaleway/billing/get_consumptions.py +10 -9
- pulumiverse_scaleway/billing/get_invoices.py +19 -18
- pulumiverse_scaleway/billing/outputs.py +73 -72
- pulumiverse_scaleway/block/__init__.py +2 -1
- pulumiverse_scaleway/block/_inputs.py +12 -11
- pulumiverse_scaleway/block/get_snapshot.py +29 -28
- pulumiverse_scaleway/block/get_volume.py +28 -27
- pulumiverse_scaleway/block/outputs.py +14 -13
- pulumiverse_scaleway/block/snapshot.py +73 -71
- pulumiverse_scaleway/block/volume.py +115 -113
- pulumiverse_scaleway/block_snapshot.py +73 -71
- pulumiverse_scaleway/block_volume.py +115 -113
- pulumiverse_scaleway/cockpit.py +38 -36
- pulumiverse_scaleway/cockpit_alert_manager.py +52 -50
- pulumiverse_scaleway/cockpit_grafana_user.py +59 -57
- pulumiverse_scaleway/cockpit_source.py +115 -113
- pulumiverse_scaleway/cockpit_token.py +66 -64
- pulumiverse_scaleway/config/__init__.py +2 -1
- pulumiverse_scaleway/config/__init__.pyi +2 -1
- pulumiverse_scaleway/config/vars.py +2 -1
- pulumiverse_scaleway/container.py +573 -343
- pulumiverse_scaleway/container_cron.py +80 -78
- pulumiverse_scaleway/container_domain.py +52 -50
- pulumiverse_scaleway/container_namespace.py +211 -140
- pulumiverse_scaleway/container_token.py +80 -78
- pulumiverse_scaleway/container_trigger.py +59 -57
- pulumiverse_scaleway/containers/__init__.py +2 -1
- pulumiverse_scaleway/containers/_inputs.py +72 -71
- pulumiverse_scaleway/containers/container.py +573 -343
- pulumiverse_scaleway/containers/cron.py +80 -78
- pulumiverse_scaleway/containers/domain.py +52 -50
- pulumiverse_scaleway/containers/get_container.py +87 -42
- pulumiverse_scaleway/containers/get_namespace.py +43 -31
- pulumiverse_scaleway/containers/namespace.py +211 -140
- pulumiverse_scaleway/containers/outputs.py +62 -61
- pulumiverse_scaleway/containers/token.py +80 -78
- pulumiverse_scaleway/containers/trigger.py +59 -57
- pulumiverse_scaleway/database.py +66 -64
- pulumiverse_scaleway/database_acl.py +31 -29
- pulumiverse_scaleway/database_backup.py +101 -99
- pulumiverse_scaleway/database_instance.py +297 -295
- pulumiverse_scaleway/database_privilege.py +73 -71
- pulumiverse_scaleway/database_read_replica.py +45 -43
- pulumiverse_scaleway/database_user.py +73 -71
- pulumiverse_scaleway/databases/__init__.py +2 -1
- pulumiverse_scaleway/databases/_inputs.py +191 -190
- pulumiverse_scaleway/databases/acl.py +31 -29
- pulumiverse_scaleway/databases/database.py +66 -64
- pulumiverse_scaleway/databases/database_backup.py +101 -99
- pulumiverse_scaleway/databases/get_acl.py +13 -12
- pulumiverse_scaleway/databases/get_database.py +19 -18
- pulumiverse_scaleway/databases/get_database_backup.py +34 -33
- pulumiverse_scaleway/databases/get_instance.py +43 -42
- pulumiverse_scaleway/databases/get_privilege.py +24 -23
- pulumiverse_scaleway/databases/instance.py +297 -295
- pulumiverse_scaleway/databases/outputs.py +188 -187
- pulumiverse_scaleway/databases/privilege.py +73 -71
- pulumiverse_scaleway/databases/read_replica.py +45 -43
- pulumiverse_scaleway/databases/serverless_database.py +80 -78
- pulumiverse_scaleway/databases/snapshot.py +101 -99
- pulumiverse_scaleway/databases/user.py +73 -71
- pulumiverse_scaleway/domain/__init__.py +2 -1
- pulumiverse_scaleway/domain/_inputs.py +531 -530
- pulumiverse_scaleway/domain/get_record.py +38 -37
- pulumiverse_scaleway/domain/get_zone.py +24 -23
- pulumiverse_scaleway/domain/outputs.py +358 -357
- pulumiverse_scaleway/domain/record.py +129 -127
- pulumiverse_scaleway/domain/registration.py +94 -92
- pulumiverse_scaleway/domain/zone.py +87 -85
- pulumiverse_scaleway/domain_record.py +129 -127
- pulumiverse_scaleway/domain_zone.py +87 -85
- pulumiverse_scaleway/edge_services_backend_stage.py +45 -43
- pulumiverse_scaleway/edge_services_cache_stage.py +115 -113
- pulumiverse_scaleway/edge_services_dns_stage.py +108 -106
- pulumiverse_scaleway/edge_services_head_stage.py +31 -29
- pulumiverse_scaleway/edge_services_pipeline.py +66 -64
- pulumiverse_scaleway/edge_services_plan.py +31 -29
- pulumiverse_scaleway/edge_services_route_stage.py +59 -57
- pulumiverse_scaleway/edge_services_tls_stage.py +122 -120
- pulumiverse_scaleway/edge_services_waf_stage.py +87 -85
- pulumiverse_scaleway/elasticmetal/__init__.py +2 -1
- pulumiverse_scaleway/elasticmetal/_inputs.py +123 -122
- pulumiverse_scaleway/elasticmetal/get_ip.py +56 -39
- pulumiverse_scaleway/elasticmetal/get_ips.py +24 -23
- pulumiverse_scaleway/elasticmetal/get_offer.py +29 -28
- pulumiverse_scaleway/elasticmetal/get_option.py +19 -18
- pulumiverse_scaleway/elasticmetal/get_os.py +23 -22
- pulumiverse_scaleway/elasticmetal/get_partition_schema.py +29 -28
- pulumiverse_scaleway/elasticmetal/get_server.py +39 -38
- pulumiverse_scaleway/elasticmetal/ip.py +139 -137
- pulumiverse_scaleway/elasticmetal/ip_mac_address.py +87 -85
- pulumiverse_scaleway/elasticmetal/outputs.py +233 -232
- pulumiverse_scaleway/elasticmetal/server.py +262 -260
- pulumiverse_scaleway/file_filesystem.py +552 -0
- pulumiverse_scaleway/flexible_ip.py +139 -137
- pulumiverse_scaleway/flexible_ip_mac_address.py +87 -85
- pulumiverse_scaleway/function.py +394 -284
- pulumiverse_scaleway/function_cron.py +80 -78
- pulumiverse_scaleway/function_domain.py +52 -50
- pulumiverse_scaleway/function_namespace.py +197 -126
- pulumiverse_scaleway/function_token.py +80 -78
- pulumiverse_scaleway/function_trigger.py +59 -57
- pulumiverse_scaleway/functions/__init__.py +2 -1
- pulumiverse_scaleway/functions/_inputs.py +42 -41
- pulumiverse_scaleway/functions/cron.py +80 -78
- pulumiverse_scaleway/functions/domain.py +52 -50
- pulumiverse_scaleway/functions/function.py +394 -284
- pulumiverse_scaleway/functions/get_function.py +69 -46
- pulumiverse_scaleway/functions/get_namespace.py +42 -30
- pulumiverse_scaleway/functions/namespace.py +197 -126
- pulumiverse_scaleway/functions/outputs.py +26 -25
- pulumiverse_scaleway/functions/token.py +80 -78
- pulumiverse_scaleway/functions/trigger.py +59 -57
- pulumiverse_scaleway/get_account_project.py +21 -20
- pulumiverse_scaleway/get_account_ssh_key.py +24 -23
- pulumiverse_scaleway/get_availability_zones.py +9 -8
- pulumiverse_scaleway/get_baremetal_offer.py +29 -28
- pulumiverse_scaleway/get_baremetal_option.py +19 -18
- pulumiverse_scaleway/get_baremetal_os.py +23 -22
- pulumiverse_scaleway/get_baremetal_server.py +39 -38
- pulumiverse_scaleway/get_billing_consumptions.py +10 -9
- pulumiverse_scaleway/get_billing_invoices.py +19 -18
- pulumiverse_scaleway/get_block_snapshot.py +29 -28
- pulumiverse_scaleway/get_block_volume.py +28 -27
- pulumiverse_scaleway/get_cockpit.py +10 -9
- pulumiverse_scaleway/get_cockpit_source.py +33 -32
- pulumiverse_scaleway/get_config.py +13 -12
- pulumiverse_scaleway/get_container.py +87 -42
- pulumiverse_scaleway/get_container_namespace.py +43 -31
- pulumiverse_scaleway/get_database.py +19 -18
- pulumiverse_scaleway/get_database_acl.py +13 -12
- pulumiverse_scaleway/get_database_backup.py +34 -33
- pulumiverse_scaleway/get_database_instance.py +43 -42
- pulumiverse_scaleway/get_database_privilege.py +24 -23
- pulumiverse_scaleway/get_domain_record.py +38 -37
- pulumiverse_scaleway/get_domain_zone.py +24 -23
- pulumiverse_scaleway/get_flexible_ip.py +56 -39
- pulumiverse_scaleway/get_flexible_ips.py +24 -23
- pulumiverse_scaleway/get_function.py +69 -46
- pulumiverse_scaleway/get_function_namespace.py +42 -30
- pulumiverse_scaleway/get_iam_api_key.py +17 -16
- pulumiverse_scaleway/get_iam_application.py +23 -22
- pulumiverse_scaleway/get_iam_group.py +25 -24
- pulumiverse_scaleway/get_iam_ssh_key.py +24 -23
- pulumiverse_scaleway/get_iam_user.py +23 -22
- pulumiverse_scaleway/get_instance_image.py +42 -41
- pulumiverse_scaleway/get_instance_ip.py +20 -19
- pulumiverse_scaleway/get_instance_placement_group.py +28 -27
- pulumiverse_scaleway/get_instance_private_nic.py +31 -30
- pulumiverse_scaleway/get_instance_security_group.py +31 -30
- pulumiverse_scaleway/get_instance_server.py +59 -47
- pulumiverse_scaleway/get_instance_servers.py +24 -23
- pulumiverse_scaleway/get_instance_snapshot.py +29 -28
- pulumiverse_scaleway/get_instance_volume.py +30 -29
- pulumiverse_scaleway/get_iot_device.py +31 -30
- pulumiverse_scaleway/get_iot_hub.py +39 -38
- pulumiverse_scaleway/get_ipam_ip.py +51 -50
- pulumiverse_scaleway/get_ipam_ips.py +44 -43
- pulumiverse_scaleway/get_k8s_version.py +16 -15
- pulumiverse_scaleway/get_kubernetes_cluster.py +39 -38
- pulumiverse_scaleway/get_kubernetes_node_pool.py +47 -46
- pulumiverse_scaleway/get_lb_acls.py +22 -21
- pulumiverse_scaleway/get_lb_backend.py +43 -42
- pulumiverse_scaleway/get_lb_backends.py +22 -21
- pulumiverse_scaleway/get_lb_frontend.py +26 -25
- pulumiverse_scaleway/get_lb_frontends.py +22 -21
- pulumiverse_scaleway/get_lb_ips.py +29 -28
- pulumiverse_scaleway/get_lb_route.py +16 -15
- pulumiverse_scaleway/get_lb_routes.py +17 -16
- pulumiverse_scaleway/get_lbs.py +24 -23
- pulumiverse_scaleway/get_loadbalancer.py +36 -35
- pulumiverse_scaleway/get_loadbalancer_certificate.py +24 -23
- pulumiverse_scaleway/get_loadbalancer_ip.py +29 -28
- pulumiverse_scaleway/get_marketplace_image.py +23 -22
- pulumiverse_scaleway/get_mnq_sns.py +14 -13
- pulumiverse_scaleway/get_mnq_sqs.py +14 -13
- pulumiverse_scaleway/get_mongo_db_instance.py +35 -34
- pulumiverse_scaleway/get_object_bucket.py +22 -21
- pulumiverse_scaleway/get_object_bucket_policy.py +17 -16
- pulumiverse_scaleway/get_redis_cluster.py +34 -33
- pulumiverse_scaleway/get_registry_image.py +37 -36
- pulumiverse_scaleway/get_registry_image_tag.py +33 -32
- pulumiverse_scaleway/get_registry_namespace.py +27 -26
- pulumiverse_scaleway/get_secret.py +41 -40
- pulumiverse_scaleway/get_secret_version.py +34 -33
- pulumiverse_scaleway/get_tem_domain.py +43 -42
- pulumiverse_scaleway/get_vpc.py +35 -34
- pulumiverse_scaleway/get_vpc_gateway_network.py +28 -27
- pulumiverse_scaleway/get_vpc_private_network.py +32 -31
- pulumiverse_scaleway/get_vpc_public_gateway.py +36 -35
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +24 -23
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +33 -32
- pulumiverse_scaleway/get_vpc_public_gateway_ip.py +14 -13
- pulumiverse_scaleway/get_vpc_public_pat_rule.py +21 -20
- pulumiverse_scaleway/get_vpc_routes.py +38 -37
- pulumiverse_scaleway/get_vpcs.py +24 -23
- pulumiverse_scaleway/get_web_host_offer.py +25 -24
- pulumiverse_scaleway/get_webhosting.py +36 -35
- pulumiverse_scaleway/hosting/__init__.py +2 -1
- pulumiverse_scaleway/hosting/_inputs.py +61 -60
- pulumiverse_scaleway/hosting/get_hosting.py +36 -35
- pulumiverse_scaleway/hosting/get_offer.py +25 -24
- pulumiverse_scaleway/hosting/hosting.py +164 -162
- pulumiverse_scaleway/hosting/outputs.py +139 -138
- pulumiverse_scaleway/iam/__init__.py +2 -1
- pulumiverse_scaleway/iam/_inputs.py +22 -21
- pulumiverse_scaleway/iam/api_key.py +115 -113
- pulumiverse_scaleway/iam/application.py +80 -78
- pulumiverse_scaleway/iam/get_api_key.py +17 -16
- pulumiverse_scaleway/iam/get_application.py +23 -22
- pulumiverse_scaleway/iam/get_group.py +25 -24
- pulumiverse_scaleway/iam/get_ssh_key.py +24 -23
- pulumiverse_scaleway/iam/get_user.py +23 -22
- pulumiverse_scaleway/iam/group.py +115 -113
- pulumiverse_scaleway/iam/group_membership.py +45 -43
- pulumiverse_scaleway/iam/outputs.py +14 -13
- pulumiverse_scaleway/iam/policy.py +136 -134
- pulumiverse_scaleway/iam/ssh_key.py +87 -85
- pulumiverse_scaleway/iam/user.py +284 -273
- pulumiverse_scaleway/iam_api_key.py +115 -113
- pulumiverse_scaleway/iam_application.py +80 -78
- pulumiverse_scaleway/iam_group.py +115 -113
- pulumiverse_scaleway/iam_group_membership.py +45 -43
- pulumiverse_scaleway/iam_policy.py +136 -134
- pulumiverse_scaleway/iam_ssh_key.py +87 -85
- pulumiverse_scaleway/iam_user.py +284 -273
- pulumiverse_scaleway/inference/__init__.py +2 -1
- pulumiverse_scaleway/inference/_inputs.py +116 -61
- pulumiverse_scaleway/inference/deployment.py +225 -176
- pulumiverse_scaleway/inference/get_model.py +27 -26
- pulumiverse_scaleway/inference/model.py +129 -127
- pulumiverse_scaleway/inference/outputs.py +82 -49
- pulumiverse_scaleway/inference_deployment.py +225 -176
- pulumiverse_scaleway/instance/__init__.py +2 -1
- pulumiverse_scaleway/instance/_inputs.py +296 -295
- pulumiverse_scaleway/instance/get_image.py +42 -41
- pulumiverse_scaleway/instance/get_ip.py +20 -19
- pulumiverse_scaleway/instance/get_placement_group.py +28 -27
- pulumiverse_scaleway/instance/get_private_nic.py +31 -30
- pulumiverse_scaleway/instance/get_security_group.py +31 -30
- pulumiverse_scaleway/instance/get_server.py +59 -47
- pulumiverse_scaleway/instance/get_servers.py +24 -23
- pulumiverse_scaleway/instance/get_snapshot.py +29 -28
- pulumiverse_scaleway/instance/get_volume.py +30 -29
- pulumiverse_scaleway/instance/image.py +150 -148
- pulumiverse_scaleway/instance/ip.py +94 -92
- pulumiverse_scaleway/instance/ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/instance/outputs.py +349 -348
- pulumiverse_scaleway/instance/placement_group.py +101 -99
- pulumiverse_scaleway/instance/private_nic.py +94 -92
- pulumiverse_scaleway/instance/security_group.py +150 -148
- pulumiverse_scaleway/instance/security_group_rules.py +17 -15
- pulumiverse_scaleway/instance/server.py +393 -330
- pulumiverse_scaleway/instance/snapshot.py +108 -106
- pulumiverse_scaleway/instance/user_data.py +59 -57
- pulumiverse_scaleway/instance/volume.py +129 -127
- pulumiverse_scaleway/instance_image.py +150 -148
- pulumiverse_scaleway/instance_ip.py +94 -92
- pulumiverse_scaleway/instance_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/instance_placement_group.py +101 -99
- pulumiverse_scaleway/instance_private_nic.py +94 -92
- pulumiverse_scaleway/instance_security_group.py +150 -148
- pulumiverse_scaleway/instance_security_group_rules.py +17 -15
- pulumiverse_scaleway/instance_server.py +393 -330
- pulumiverse_scaleway/instance_snapshot.py +108 -106
- pulumiverse_scaleway/instance_user_data.py +59 -57
- pulumiverse_scaleway/instance_volume.py +129 -127
- pulumiverse_scaleway/iot/__init__.py +2 -1
- pulumiverse_scaleway/iot/_inputs.py +98 -97
- pulumiverse_scaleway/iot/device.py +122 -120
- pulumiverse_scaleway/iot/get_device.py +31 -30
- pulumiverse_scaleway/iot/get_hub.py +39 -38
- pulumiverse_scaleway/iot/hub.py +206 -204
- pulumiverse_scaleway/iot/network.py +94 -92
- pulumiverse_scaleway/iot/outputs.py +78 -77
- pulumiverse_scaleway/iot/route.py +66 -64
- pulumiverse_scaleway/iot_device.py +122 -120
- pulumiverse_scaleway/iot_hub.py +206 -204
- pulumiverse_scaleway/iot_network.py +94 -92
- pulumiverse_scaleway/iot_route.py +66 -64
- pulumiverse_scaleway/ipam/__init__.py +2 -1
- pulumiverse_scaleway/ipam/_inputs.py +87 -86
- pulumiverse_scaleway/ipam/get_ip.py +51 -50
- pulumiverse_scaleway/ipam/get_ips.py +44 -43
- pulumiverse_scaleway/ipam/ip.py +94 -92
- pulumiverse_scaleway/ipam/ip_reverse_dns.py +59 -57
- pulumiverse_scaleway/ipam/outputs.py +90 -89
- pulumiverse_scaleway/ipam_ip.py +94 -92
- pulumiverse_scaleway/ipam_ip_reverse_dns.py +59 -57
- pulumiverse_scaleway/job/__init__.py +2 -1
- pulumiverse_scaleway/job/_inputs.py +38 -37
- pulumiverse_scaleway/job/definition.py +143 -141
- pulumiverse_scaleway/job/outputs.py +24 -23
- pulumiverse_scaleway/job_definition.py +143 -141
- pulumiverse_scaleway/kubernetes/__init__.py +2 -1
- pulumiverse_scaleway/kubernetes/_inputs.py +190 -189
- pulumiverse_scaleway/kubernetes/acl.py +45 -43
- pulumiverse_scaleway/kubernetes/cluster.py +234 -232
- pulumiverse_scaleway/kubernetes/get_cluster.py +39 -38
- pulumiverse_scaleway/kubernetes/get_pool.py +47 -46
- pulumiverse_scaleway/kubernetes/get_version.py +16 -15
- pulumiverse_scaleway/kubernetes/outputs.py +217 -216
- pulumiverse_scaleway/kubernetes/pool.py +290 -288
- pulumiverse_scaleway/kubernetes_cluster.py +234 -232
- pulumiverse_scaleway/kubernetes_node_pool.py +290 -288
- pulumiverse_scaleway/loadbalancer.py +199 -197
- pulumiverse_scaleway/loadbalancer_acl.py +73 -71
- pulumiverse_scaleway/loadbalancer_backend.py +381 -379
- pulumiverse_scaleway/loadbalancer_certificate.py +73 -71
- pulumiverse_scaleway/loadbalancer_frontend.py +136 -134
- pulumiverse_scaleway/loadbalancer_ip.py +101 -99
- pulumiverse_scaleway/loadbalancer_route.py +101 -99
- pulumiverse_scaleway/loadbalancers/__init__.py +2 -1
- pulumiverse_scaleway/loadbalancers/_inputs.py +214 -213
- pulumiverse_scaleway/loadbalancers/acl.py +73 -71
- pulumiverse_scaleway/loadbalancers/backend.py +381 -379
- pulumiverse_scaleway/loadbalancers/certificate.py +73 -71
- pulumiverse_scaleway/loadbalancers/frontend.py +136 -134
- pulumiverse_scaleway/loadbalancers/get_acls.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_backend.py +43 -42
- pulumiverse_scaleway/loadbalancers/get_backends.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_certificate.py +24 -23
- pulumiverse_scaleway/loadbalancers/get_frontend.py +26 -25
- pulumiverse_scaleway/loadbalancers/get_frontends.py +22 -21
- pulumiverse_scaleway/loadbalancers/get_ip.py +29 -28
- pulumiverse_scaleway/loadbalancers/get_ips.py +29 -28
- pulumiverse_scaleway/loadbalancers/get_load_balancer.py +36 -35
- pulumiverse_scaleway/loadbalancers/get_load_balancers.py +24 -23
- pulumiverse_scaleway/loadbalancers/get_route.py +16 -15
- pulumiverse_scaleway/loadbalancers/get_routes.py +17 -16
- pulumiverse_scaleway/loadbalancers/ip.py +101 -99
- pulumiverse_scaleway/loadbalancers/load_balancer.py +199 -197
- pulumiverse_scaleway/loadbalancers/outputs.py +525 -524
- pulumiverse_scaleway/loadbalancers/route.py +101 -99
- pulumiverse_scaleway/mnq/__init__.py +2 -1
- pulumiverse_scaleway/mnq/_inputs.py +32 -31
- pulumiverse_scaleway/mnq/get_sns.py +14 -13
- pulumiverse_scaleway/mnq/get_sqs.py +14 -13
- pulumiverse_scaleway/mnq/nats_account.py +52 -50
- pulumiverse_scaleway/mnq/nats_credentials.py +52 -50
- pulumiverse_scaleway/mnq/outputs.py +20 -19
- pulumiverse_scaleway/mnq/sns.py +38 -36
- pulumiverse_scaleway/mnq/sns_credentials.py +59 -57
- pulumiverse_scaleway/mnq/sns_topic.py +143 -141
- pulumiverse_scaleway/mnq/sns_topic_subscription.py +150 -148
- pulumiverse_scaleway/mnq/sqs.py +38 -36
- pulumiverse_scaleway/mnq/sqs_credentials.py +59 -57
- pulumiverse_scaleway/mnq/sqs_queue.py +192 -190
- pulumiverse_scaleway/mnq_nats_account.py +52 -50
- pulumiverse_scaleway/mnq_nats_credentials.py +52 -50
- pulumiverse_scaleway/mnq_sns.py +38 -36
- pulumiverse_scaleway/mnq_sns_credentials.py +59 -57
- pulumiverse_scaleway/mnq_sns_topic.py +143 -141
- pulumiverse_scaleway/mnq_sns_topic_subscription.py +150 -148
- pulumiverse_scaleway/mnq_sqs.py +38 -36
- pulumiverse_scaleway/mnq_sqs_credentials.py +59 -57
- pulumiverse_scaleway/mnq_sqs_queue.py +192 -190
- pulumiverse_scaleway/mongo_db_instance.py +199 -197
- pulumiverse_scaleway/mongo_db_snapshot.py +101 -99
- pulumiverse_scaleway/mongodb/__init__.py +2 -1
- pulumiverse_scaleway/mongodb/_inputs.py +53 -52
- pulumiverse_scaleway/mongodb/get_instance.py +35 -34
- pulumiverse_scaleway/mongodb/instance.py +199 -197
- pulumiverse_scaleway/mongodb/outputs.py +64 -63
- pulumiverse_scaleway/mongodb/snapshot.py +101 -99
- pulumiverse_scaleway/network/__init__.py +2 -1
- pulumiverse_scaleway/network/_inputs.py +140 -139
- pulumiverse_scaleway/network/acl.py +59 -57
- pulumiverse_scaleway/network/gateway_network.py +143 -141
- pulumiverse_scaleway/network/get_gateway_network.py +28 -27
- pulumiverse_scaleway/network/get_private_network.py +32 -31
- pulumiverse_scaleway/network/get_public_gateway.py +36 -35
- pulumiverse_scaleway/network/get_public_gateway_dhcp.py +24 -23
- pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +33 -32
- pulumiverse_scaleway/network/get_public_gateway_ip.py +14 -13
- pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +21 -20
- pulumiverse_scaleway/network/get_routes.py +38 -37
- pulumiverse_scaleway/network/get_vpc.py +35 -34
- pulumiverse_scaleway/network/get_vpcs.py +24 -23
- pulumiverse_scaleway/network/outputs.py +206 -205
- pulumiverse_scaleway/network/private_network.py +122 -120
- pulumiverse_scaleway/network/public_gateway.py +213 -211
- pulumiverse_scaleway/network/public_gateway_dhcp.py +234 -232
- pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +87 -85
- pulumiverse_scaleway/network/public_gateway_ip.py +87 -85
- pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/network/public_gateway_pat_rule.py +108 -106
- pulumiverse_scaleway/network/route.py +115 -113
- pulumiverse_scaleway/network/vpc.py +101 -99
- pulumiverse_scaleway/object/__init__.py +2 -1
- pulumiverse_scaleway/object/_inputs.py +127 -126
- pulumiverse_scaleway/object/bucket.py +115 -113
- pulumiverse_scaleway/object/bucket_acl.py +73 -71
- pulumiverse_scaleway/object/bucket_lock_configuration.py +45 -43
- pulumiverse_scaleway/object/bucket_policy.py +59 -57
- pulumiverse_scaleway/object/bucket_website_configuration.py +85 -65
- pulumiverse_scaleway/object/get_bucket.py +22 -21
- pulumiverse_scaleway/object/get_bucket_policy.py +17 -16
- pulumiverse_scaleway/object/item.py +232 -183
- pulumiverse_scaleway/object/outputs.py +114 -113
- pulumiverse_scaleway/object_bucket.py +115 -113
- pulumiverse_scaleway/object_bucket_acl.py +73 -71
- pulumiverse_scaleway/object_bucket_lock_configuration.py +45 -43
- pulumiverse_scaleway/object_bucket_policy.py +59 -57
- pulumiverse_scaleway/object_bucket_website_configuration.py +85 -65
- pulumiverse_scaleway/object_item.py +232 -183
- pulumiverse_scaleway/observability/__init__.py +2 -1
- pulumiverse_scaleway/observability/_inputs.py +89 -88
- pulumiverse_scaleway/observability/alert_manager.py +52 -50
- pulumiverse_scaleway/observability/cockpit.py +38 -36
- pulumiverse_scaleway/observability/get_instance.py +10 -9
- pulumiverse_scaleway/observability/get_source.py +33 -32
- pulumiverse_scaleway/observability/grafana_user.py +59 -57
- pulumiverse_scaleway/observability/outputs.py +77 -76
- pulumiverse_scaleway/observability/source.py +115 -113
- pulumiverse_scaleway/observability/token.py +66 -64
- pulumiverse_scaleway/outputs.py +2797 -2732
- pulumiverse_scaleway/provider.py +87 -65
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/rdb_snapshot.py +101 -99
- pulumiverse_scaleway/redis/__init__.py +2 -1
- pulumiverse_scaleway/redis/_inputs.py +63 -62
- pulumiverse_scaleway/redis/cluster.py +178 -176
- pulumiverse_scaleway/redis/get_cluster.py +34 -33
- pulumiverse_scaleway/redis/outputs.py +74 -73
- pulumiverse_scaleway/redis_cluster.py +178 -176
- pulumiverse_scaleway/registry/__init__.py +2 -1
- pulumiverse_scaleway/registry/get_image.py +37 -36
- pulumiverse_scaleway/registry/get_image_tag.py +33 -32
- pulumiverse_scaleway/registry/get_namespace.py +27 -26
- pulumiverse_scaleway/registry/namespace.py +87 -85
- pulumiverse_scaleway/registry_namespace.py +87 -85
- pulumiverse_scaleway/sdb_database.py +80 -78
- pulumiverse_scaleway/secret.py +143 -141
- pulumiverse_scaleway/secret_version.py +87 -85
- pulumiverse_scaleway/secrets/__init__.py +2 -1
- pulumiverse_scaleway/secrets/_inputs.py +53 -52
- pulumiverse_scaleway/secrets/get_secret.py +41 -40
- pulumiverse_scaleway/secrets/get_version.py +34 -33
- pulumiverse_scaleway/secrets/outputs.py +64 -63
- pulumiverse_scaleway/secrets/secret.py +143 -141
- pulumiverse_scaleway/secrets/version.py +87 -85
- pulumiverse_scaleway/tem/__init__.py +2 -1
- pulumiverse_scaleway/tem/_inputs.py +28 -27
- pulumiverse_scaleway/tem/blocked_list.py +87 -85
- pulumiverse_scaleway/tem/domain.py +199 -197
- pulumiverse_scaleway/tem/domain_validation.py +52 -50
- pulumiverse_scaleway/tem/get_domain.py +43 -42
- pulumiverse_scaleway/tem/get_offer_subscription.py +22 -21
- pulumiverse_scaleway/tem/outputs.py +34 -33
- pulumiverse_scaleway/tem/webhook.py +108 -106
- pulumiverse_scaleway/tem_domain.py +199 -197
- pulumiverse_scaleway/tem_domain_validation.py +52 -50
- pulumiverse_scaleway/tem_webhook.py +108 -106
- pulumiverse_scaleway/vpc.py +101 -99
- pulumiverse_scaleway/vpc_gateway_network.py +143 -141
- pulumiverse_scaleway/vpc_private_network.py +122 -120
- pulumiverse_scaleway/vpc_public_gateway.py +213 -211
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +234 -232
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +87 -85
- pulumiverse_scaleway/vpc_public_gateway_ip.py +87 -85
- pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +45 -43
- pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +108 -106
- pulumiverse_scaleway/vpc_route.py +115 -113
- pulumiverse_scaleway/webhosting.py +164 -162
- {pulumiverse_scaleway-1.30.0a1748337252.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/METADATA +2 -2
- pulumiverse_scaleway-1.30.0a1752168858.dist-info/RECORD +493 -0
- pulumiverse_scaleway-1.30.0a1748337252.dist-info/RECORD +0 -492
- {pulumiverse_scaleway-1.30.0a1748337252.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.30.0a1748337252.dist-info → pulumiverse_scaleway-1.30.0a1752168858.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,8 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -19,16 +20,16 @@ __all__ = ['PublicGatewayIpArgs', 'PublicGatewayIp']
|
|
19
20
|
@pulumi.input_type
|
20
21
|
class PublicGatewayIpArgs:
|
21
22
|
def __init__(__self__, *,
|
22
|
-
project_id: Optional[pulumi.Input[str]] = None,
|
23
|
-
reverse: Optional[pulumi.Input[str]] = None,
|
24
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
25
|
-
zone: Optional[pulumi.Input[str]] = None):
|
23
|
+
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
24
|
+
reverse: Optional[pulumi.Input[builtins.str]] = None,
|
25
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
26
|
+
zone: Optional[pulumi.Input[builtins.str]] = None):
|
26
27
|
"""
|
27
28
|
The set of arguments for constructing a PublicGatewayIp resource.
|
28
|
-
:param pulumi.Input[str] project_id: `project_id`) The ID of the Project the Public Gateway IP is associated with.
|
29
|
-
:param pulumi.Input[str] reverse: The reverse domain name for the IP address
|
30
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The tags associated with the Public Gateway IP.
|
31
|
-
:param pulumi.Input[str] zone: `zone`) The zone in which the Public Gateway IP should be created.
|
29
|
+
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the Project the Public Gateway IP is associated with.
|
30
|
+
:param pulumi.Input[builtins.str] reverse: The reverse domain name for the IP address
|
31
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: The tags associated with the Public Gateway IP.
|
32
|
+
:param pulumi.Input[builtins.str] zone: `zone`) The zone in which the Public Gateway IP should be created.
|
32
33
|
"""
|
33
34
|
if project_id is not None:
|
34
35
|
pulumi.set(__self__, "project_id", project_id)
|
@@ -41,74 +42,74 @@ class PublicGatewayIpArgs:
|
|
41
42
|
|
42
43
|
@property
|
43
44
|
@pulumi.getter(name="projectId")
|
44
|
-
def project_id(self) -> Optional[pulumi.Input[str]]:
|
45
|
+
def project_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
45
46
|
"""
|
46
47
|
`project_id`) The ID of the Project the Public Gateway IP is associated with.
|
47
48
|
"""
|
48
49
|
return pulumi.get(self, "project_id")
|
49
50
|
|
50
51
|
@project_id.setter
|
51
|
-
def project_id(self, value: Optional[pulumi.Input[str]]):
|
52
|
+
def project_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
52
53
|
pulumi.set(self, "project_id", value)
|
53
54
|
|
54
55
|
@property
|
55
56
|
@pulumi.getter
|
56
|
-
def reverse(self) -> Optional[pulumi.Input[str]]:
|
57
|
+
def reverse(self) -> Optional[pulumi.Input[builtins.str]]:
|
57
58
|
"""
|
58
59
|
The reverse domain name for the IP address
|
59
60
|
"""
|
60
61
|
return pulumi.get(self, "reverse")
|
61
62
|
|
62
63
|
@reverse.setter
|
63
|
-
def reverse(self, value: Optional[pulumi.Input[str]]):
|
64
|
+
def reverse(self, value: Optional[pulumi.Input[builtins.str]]):
|
64
65
|
pulumi.set(self, "reverse", value)
|
65
66
|
|
66
67
|
@property
|
67
68
|
@pulumi.getter
|
68
|
-
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
69
|
+
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
69
70
|
"""
|
70
71
|
The tags associated with the Public Gateway IP.
|
71
72
|
"""
|
72
73
|
return pulumi.get(self, "tags")
|
73
74
|
|
74
75
|
@tags.setter
|
75
|
-
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
76
|
+
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
76
77
|
pulumi.set(self, "tags", value)
|
77
78
|
|
78
79
|
@property
|
79
80
|
@pulumi.getter
|
80
|
-
def zone(self) -> Optional[pulumi.Input[str]]:
|
81
|
+
def zone(self) -> Optional[pulumi.Input[builtins.str]]:
|
81
82
|
"""
|
82
83
|
`zone`) The zone in which the Public Gateway IP should be created.
|
83
84
|
"""
|
84
85
|
return pulumi.get(self, "zone")
|
85
86
|
|
86
87
|
@zone.setter
|
87
|
-
def zone(self, value: Optional[pulumi.Input[str]]):
|
88
|
+
def zone(self, value: Optional[pulumi.Input[builtins.str]]):
|
88
89
|
pulumi.set(self, "zone", value)
|
89
90
|
|
90
91
|
|
91
92
|
@pulumi.input_type
|
92
93
|
class _PublicGatewayIpState:
|
93
94
|
def __init__(__self__, *,
|
94
|
-
address: Optional[pulumi.Input[str]] = None,
|
95
|
-
created_at: Optional[pulumi.Input[str]] = None,
|
96
|
-
organization_id: Optional[pulumi.Input[str]] = None,
|
97
|
-
project_id: Optional[pulumi.Input[str]] = None,
|
98
|
-
reverse: Optional[pulumi.Input[str]] = None,
|
99
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
100
|
-
updated_at: Optional[pulumi.Input[str]] = None,
|
101
|
-
zone: Optional[pulumi.Input[str]] = None):
|
95
|
+
address: Optional[pulumi.Input[builtins.str]] = None,
|
96
|
+
created_at: Optional[pulumi.Input[builtins.str]] = None,
|
97
|
+
organization_id: Optional[pulumi.Input[builtins.str]] = None,
|
98
|
+
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
99
|
+
reverse: Optional[pulumi.Input[builtins.str]] = None,
|
100
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
101
|
+
updated_at: Optional[pulumi.Input[builtins.str]] = None,
|
102
|
+
zone: Optional[pulumi.Input[builtins.str]] = None):
|
102
103
|
"""
|
103
104
|
Input properties used for looking up and filtering PublicGatewayIp resources.
|
104
|
-
:param pulumi.Input[str] address: The IP address itself.
|
105
|
-
:param pulumi.Input[str] created_at: The date and time of the creation of the Public Gateway IP.
|
106
|
-
:param pulumi.Input[str] organization_id: The Organization ID the Public Gateway IP is associated with.
|
107
|
-
:param pulumi.Input[str] project_id: `project_id`) The ID of the Project the Public Gateway IP is associated with.
|
108
|
-
:param pulumi.Input[str] reverse: The reverse domain name for the IP address
|
109
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The tags associated with the Public Gateway IP.
|
110
|
-
:param pulumi.Input[str] updated_at: The date and time of the last update of the Public Gateway IP.
|
111
|
-
:param pulumi.Input[str] zone: `zone`) The zone in which the Public Gateway IP should be created.
|
105
|
+
:param pulumi.Input[builtins.str] address: The IP address itself.
|
106
|
+
:param pulumi.Input[builtins.str] created_at: The date and time of the creation of the Public Gateway IP.
|
107
|
+
:param pulumi.Input[builtins.str] organization_id: The Organization ID the Public Gateway IP is associated with.
|
108
|
+
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the Project the Public Gateway IP is associated with.
|
109
|
+
:param pulumi.Input[builtins.str] reverse: The reverse domain name for the IP address
|
110
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: The tags associated with the Public Gateway IP.
|
111
|
+
:param pulumi.Input[builtins.str] updated_at: The date and time of the last update of the Public Gateway IP.
|
112
|
+
:param pulumi.Input[builtins.str] zone: `zone`) The zone in which the Public Gateway IP should be created.
|
112
113
|
"""
|
113
114
|
if address is not None:
|
114
115
|
pulumi.set(__self__, "address", address)
|
@@ -129,110 +130,111 @@ class _PublicGatewayIpState:
|
|
129
130
|
|
130
131
|
@property
|
131
132
|
@pulumi.getter
|
132
|
-
def address(self) -> Optional[pulumi.Input[str]]:
|
133
|
+
def address(self) -> Optional[pulumi.Input[builtins.str]]:
|
133
134
|
"""
|
134
135
|
The IP address itself.
|
135
136
|
"""
|
136
137
|
return pulumi.get(self, "address")
|
137
138
|
|
138
139
|
@address.setter
|
139
|
-
def address(self, value: Optional[pulumi.Input[str]]):
|
140
|
+
def address(self, value: Optional[pulumi.Input[builtins.str]]):
|
140
141
|
pulumi.set(self, "address", value)
|
141
142
|
|
142
143
|
@property
|
143
144
|
@pulumi.getter(name="createdAt")
|
144
|
-
def created_at(self) -> Optional[pulumi.Input[str]]:
|
145
|
+
def created_at(self) -> Optional[pulumi.Input[builtins.str]]:
|
145
146
|
"""
|
146
147
|
The date and time of the creation of the Public Gateway IP.
|
147
148
|
"""
|
148
149
|
return pulumi.get(self, "created_at")
|
149
150
|
|
150
151
|
@created_at.setter
|
151
|
-
def created_at(self, value: Optional[pulumi.Input[str]]):
|
152
|
+
def created_at(self, value: Optional[pulumi.Input[builtins.str]]):
|
152
153
|
pulumi.set(self, "created_at", value)
|
153
154
|
|
154
155
|
@property
|
155
156
|
@pulumi.getter(name="organizationId")
|
156
|
-
def organization_id(self) -> Optional[pulumi.Input[str]]:
|
157
|
+
def organization_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
157
158
|
"""
|
158
159
|
The Organization ID the Public Gateway IP is associated with.
|
159
160
|
"""
|
160
161
|
return pulumi.get(self, "organization_id")
|
161
162
|
|
162
163
|
@organization_id.setter
|
163
|
-
def organization_id(self, value: Optional[pulumi.Input[str]]):
|
164
|
+
def organization_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
164
165
|
pulumi.set(self, "organization_id", value)
|
165
166
|
|
166
167
|
@property
|
167
168
|
@pulumi.getter(name="projectId")
|
168
|
-
def project_id(self) -> Optional[pulumi.Input[str]]:
|
169
|
+
def project_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
169
170
|
"""
|
170
171
|
`project_id`) The ID of the Project the Public Gateway IP is associated with.
|
171
172
|
"""
|
172
173
|
return pulumi.get(self, "project_id")
|
173
174
|
|
174
175
|
@project_id.setter
|
175
|
-
def project_id(self, value: Optional[pulumi.Input[str]]):
|
176
|
+
def project_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
176
177
|
pulumi.set(self, "project_id", value)
|
177
178
|
|
178
179
|
@property
|
179
180
|
@pulumi.getter
|
180
|
-
def reverse(self) -> Optional[pulumi.Input[str]]:
|
181
|
+
def reverse(self) -> Optional[pulumi.Input[builtins.str]]:
|
181
182
|
"""
|
182
183
|
The reverse domain name for the IP address
|
183
184
|
"""
|
184
185
|
return pulumi.get(self, "reverse")
|
185
186
|
|
186
187
|
@reverse.setter
|
187
|
-
def reverse(self, value: Optional[pulumi.Input[str]]):
|
188
|
+
def reverse(self, value: Optional[pulumi.Input[builtins.str]]):
|
188
189
|
pulumi.set(self, "reverse", value)
|
189
190
|
|
190
191
|
@property
|
191
192
|
@pulumi.getter
|
192
|
-
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
193
|
+
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
193
194
|
"""
|
194
195
|
The tags associated with the Public Gateway IP.
|
195
196
|
"""
|
196
197
|
return pulumi.get(self, "tags")
|
197
198
|
|
198
199
|
@tags.setter
|
199
|
-
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
200
|
+
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
200
201
|
pulumi.set(self, "tags", value)
|
201
202
|
|
202
203
|
@property
|
203
204
|
@pulumi.getter(name="updatedAt")
|
204
|
-
def updated_at(self) -> Optional[pulumi.Input[str]]:
|
205
|
+
def updated_at(self) -> Optional[pulumi.Input[builtins.str]]:
|
205
206
|
"""
|
206
207
|
The date and time of the last update of the Public Gateway IP.
|
207
208
|
"""
|
208
209
|
return pulumi.get(self, "updated_at")
|
209
210
|
|
210
211
|
@updated_at.setter
|
211
|
-
def updated_at(self, value: Optional[pulumi.Input[str]]):
|
212
|
+
def updated_at(self, value: Optional[pulumi.Input[builtins.str]]):
|
212
213
|
pulumi.set(self, "updated_at", value)
|
213
214
|
|
214
215
|
@property
|
215
216
|
@pulumi.getter
|
216
|
-
def zone(self) -> Optional[pulumi.Input[str]]:
|
217
|
+
def zone(self) -> Optional[pulumi.Input[builtins.str]]:
|
217
218
|
"""
|
218
219
|
`zone`) The zone in which the Public Gateway IP should be created.
|
219
220
|
"""
|
220
221
|
return pulumi.get(self, "zone")
|
221
222
|
|
222
223
|
@zone.setter
|
223
|
-
def zone(self, value: Optional[pulumi.Input[str]]):
|
224
|
+
def zone(self, value: Optional[pulumi.Input[builtins.str]]):
|
224
225
|
pulumi.set(self, "zone", value)
|
225
226
|
|
226
227
|
|
228
|
+
@pulumi.type_token("scaleway:network/publicGatewayIp:PublicGatewayIp")
|
227
229
|
class PublicGatewayIp(pulumi.CustomResource):
|
228
230
|
@overload
|
229
231
|
def __init__(__self__,
|
230
232
|
resource_name: str,
|
231
233
|
opts: Optional[pulumi.ResourceOptions] = None,
|
232
|
-
project_id: Optional[pulumi.Input[str]] = None,
|
233
|
-
reverse: Optional[pulumi.Input[str]] = None,
|
234
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
235
|
-
zone: Optional[pulumi.Input[str]] = None,
|
234
|
+
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
235
|
+
reverse: Optional[pulumi.Input[builtins.str]] = None,
|
236
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
237
|
+
zone: Optional[pulumi.Input[builtins.str]] = None,
|
236
238
|
__props__=None):
|
237
239
|
"""
|
238
240
|
Creates and manages Scaleway VPC Public Gateway public (flexible) IP addresses.
|
@@ -266,10 +268,10 @@ class PublicGatewayIp(pulumi.CustomResource):
|
|
266
268
|
|
267
269
|
:param str resource_name: The name of the resource.
|
268
270
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
269
|
-
:param pulumi.Input[str] project_id: `project_id`) The ID of the Project the Public Gateway IP is associated with.
|
270
|
-
:param pulumi.Input[str] reverse: The reverse domain name for the IP address
|
271
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The tags associated with the Public Gateway IP.
|
272
|
-
:param pulumi.Input[str] zone: `zone`) The zone in which the Public Gateway IP should be created.
|
271
|
+
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the Project the Public Gateway IP is associated with.
|
272
|
+
:param pulumi.Input[builtins.str] reverse: The reverse domain name for the IP address
|
273
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: The tags associated with the Public Gateway IP.
|
274
|
+
:param pulumi.Input[builtins.str] zone: `zone`) The zone in which the Public Gateway IP should be created.
|
273
275
|
"""
|
274
276
|
...
|
275
277
|
@overload
|
@@ -322,10 +324,10 @@ class PublicGatewayIp(pulumi.CustomResource):
|
|
322
324
|
def _internal_init(__self__,
|
323
325
|
resource_name: str,
|
324
326
|
opts: Optional[pulumi.ResourceOptions] = None,
|
325
|
-
project_id: Optional[pulumi.Input[str]] = None,
|
326
|
-
reverse: Optional[pulumi.Input[str]] = None,
|
327
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
328
|
-
zone: Optional[pulumi.Input[str]] = None,
|
327
|
+
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
328
|
+
reverse: Optional[pulumi.Input[builtins.str]] = None,
|
329
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
330
|
+
zone: Optional[pulumi.Input[builtins.str]] = None,
|
329
331
|
__props__=None):
|
330
332
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
331
333
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -355,14 +357,14 @@ class PublicGatewayIp(pulumi.CustomResource):
|
|
355
357
|
def get(resource_name: str,
|
356
358
|
id: pulumi.Input[str],
|
357
359
|
opts: Optional[pulumi.ResourceOptions] = None,
|
358
|
-
address: Optional[pulumi.Input[str]] = None,
|
359
|
-
created_at: Optional[pulumi.Input[str]] = None,
|
360
|
-
organization_id: Optional[pulumi.Input[str]] = None,
|
361
|
-
project_id: Optional[pulumi.Input[str]] = None,
|
362
|
-
reverse: Optional[pulumi.Input[str]] = None,
|
363
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
364
|
-
updated_at: Optional[pulumi.Input[str]] = None,
|
365
|
-
zone: Optional[pulumi.Input[str]] = None) -> 'PublicGatewayIp':
|
360
|
+
address: Optional[pulumi.Input[builtins.str]] = None,
|
361
|
+
created_at: Optional[pulumi.Input[builtins.str]] = None,
|
362
|
+
organization_id: Optional[pulumi.Input[builtins.str]] = None,
|
363
|
+
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
364
|
+
reverse: Optional[pulumi.Input[builtins.str]] = None,
|
365
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
366
|
+
updated_at: Optional[pulumi.Input[builtins.str]] = None,
|
367
|
+
zone: Optional[pulumi.Input[builtins.str]] = None) -> 'PublicGatewayIp':
|
366
368
|
"""
|
367
369
|
Get an existing PublicGatewayIp resource's state with the given name, id, and optional extra
|
368
370
|
properties used to qualify the lookup.
|
@@ -370,14 +372,14 @@ class PublicGatewayIp(pulumi.CustomResource):
|
|
370
372
|
:param str resource_name: The unique name of the resulting resource.
|
371
373
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
372
374
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
373
|
-
:param pulumi.Input[str] address: The IP address itself.
|
374
|
-
:param pulumi.Input[str] created_at: The date and time of the creation of the Public Gateway IP.
|
375
|
-
:param pulumi.Input[str] organization_id: The Organization ID the Public Gateway IP is associated with.
|
376
|
-
:param pulumi.Input[str] project_id: `project_id`) The ID of the Project the Public Gateway IP is associated with.
|
377
|
-
:param pulumi.Input[str] reverse: The reverse domain name for the IP address
|
378
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The tags associated with the Public Gateway IP.
|
379
|
-
:param pulumi.Input[str] updated_at: The date and time of the last update of the Public Gateway IP.
|
380
|
-
:param pulumi.Input[str] zone: `zone`) The zone in which the Public Gateway IP should be created.
|
375
|
+
:param pulumi.Input[builtins.str] address: The IP address itself.
|
376
|
+
:param pulumi.Input[builtins.str] created_at: The date and time of the creation of the Public Gateway IP.
|
377
|
+
:param pulumi.Input[builtins.str] organization_id: The Organization ID the Public Gateway IP is associated with.
|
378
|
+
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the Project the Public Gateway IP is associated with.
|
379
|
+
:param pulumi.Input[builtins.str] reverse: The reverse domain name for the IP address
|
380
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: The tags associated with the Public Gateway IP.
|
381
|
+
:param pulumi.Input[builtins.str] updated_at: The date and time of the last update of the Public Gateway IP.
|
382
|
+
:param pulumi.Input[builtins.str] zone: `zone`) The zone in which the Public Gateway IP should be created.
|
381
383
|
"""
|
382
384
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
383
385
|
|
@@ -395,7 +397,7 @@ class PublicGatewayIp(pulumi.CustomResource):
|
|
395
397
|
|
396
398
|
@property
|
397
399
|
@pulumi.getter
|
398
|
-
def address(self) -> pulumi.Output[str]:
|
400
|
+
def address(self) -> pulumi.Output[builtins.str]:
|
399
401
|
"""
|
400
402
|
The IP address itself.
|
401
403
|
"""
|
@@ -403,7 +405,7 @@ class PublicGatewayIp(pulumi.CustomResource):
|
|
403
405
|
|
404
406
|
@property
|
405
407
|
@pulumi.getter(name="createdAt")
|
406
|
-
def created_at(self) -> pulumi.Output[str]:
|
408
|
+
def created_at(self) -> pulumi.Output[builtins.str]:
|
407
409
|
"""
|
408
410
|
The date and time of the creation of the Public Gateway IP.
|
409
411
|
"""
|
@@ -411,7 +413,7 @@ class PublicGatewayIp(pulumi.CustomResource):
|
|
411
413
|
|
412
414
|
@property
|
413
415
|
@pulumi.getter(name="organizationId")
|
414
|
-
def organization_id(self) -> pulumi.Output[str]:
|
416
|
+
def organization_id(self) -> pulumi.Output[builtins.str]:
|
415
417
|
"""
|
416
418
|
The Organization ID the Public Gateway IP is associated with.
|
417
419
|
"""
|
@@ -419,7 +421,7 @@ class PublicGatewayIp(pulumi.CustomResource):
|
|
419
421
|
|
420
422
|
@property
|
421
423
|
@pulumi.getter(name="projectId")
|
422
|
-
def project_id(self) -> pulumi.Output[str]:
|
424
|
+
def project_id(self) -> pulumi.Output[builtins.str]:
|
423
425
|
"""
|
424
426
|
`project_id`) The ID of the Project the Public Gateway IP is associated with.
|
425
427
|
"""
|
@@ -427,7 +429,7 @@ class PublicGatewayIp(pulumi.CustomResource):
|
|
427
429
|
|
428
430
|
@property
|
429
431
|
@pulumi.getter
|
430
|
-
def reverse(self) -> pulumi.Output[str]:
|
432
|
+
def reverse(self) -> pulumi.Output[builtins.str]:
|
431
433
|
"""
|
432
434
|
The reverse domain name for the IP address
|
433
435
|
"""
|
@@ -435,7 +437,7 @@ class PublicGatewayIp(pulumi.CustomResource):
|
|
435
437
|
|
436
438
|
@property
|
437
439
|
@pulumi.getter
|
438
|
-
def tags(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
440
|
+
def tags(self) -> pulumi.Output[Optional[Sequence[builtins.str]]]:
|
439
441
|
"""
|
440
442
|
The tags associated with the Public Gateway IP.
|
441
443
|
"""
|
@@ -443,7 +445,7 @@ class PublicGatewayIp(pulumi.CustomResource):
|
|
443
445
|
|
444
446
|
@property
|
445
447
|
@pulumi.getter(name="updatedAt")
|
446
|
-
def updated_at(self) -> pulumi.Output[str]:
|
448
|
+
def updated_at(self) -> pulumi.Output[builtins.str]:
|
447
449
|
"""
|
448
450
|
The date and time of the last update of the Public Gateway IP.
|
449
451
|
"""
|
@@ -451,7 +453,7 @@ class PublicGatewayIp(pulumi.CustomResource):
|
|
451
453
|
|
452
454
|
@property
|
453
455
|
@pulumi.getter
|
454
|
-
def zone(self) -> pulumi.Output[str]:
|
456
|
+
def zone(self) -> pulumi.Output[builtins.str]:
|
455
457
|
"""
|
456
458
|
`zone`) The zone in which the Public Gateway IP should be created.
|
457
459
|
"""
|
@@ -1,7 +1,8 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -19,14 +20,14 @@ __all__ = ['PublicGatewayIpReverseDnsArgs', 'PublicGatewayIpReverseDns']
|
|
19
20
|
@pulumi.input_type
|
20
21
|
class PublicGatewayIpReverseDnsArgs:
|
21
22
|
def __init__(__self__, *,
|
22
|
-
gateway_ip_id: pulumi.Input[str],
|
23
|
-
reverse: pulumi.Input[str],
|
24
|
-
zone: Optional[pulumi.Input[str]] = None):
|
23
|
+
gateway_ip_id: pulumi.Input[builtins.str],
|
24
|
+
reverse: pulumi.Input[builtins.str],
|
25
|
+
zone: Optional[pulumi.Input[builtins.str]] = None):
|
25
26
|
"""
|
26
27
|
The set of arguments for constructing a PublicGatewayIpReverseDns resource.
|
27
|
-
:param pulumi.Input[str] gateway_ip_id: The Public Gateway IP ID
|
28
|
-
:param pulumi.Input[str] reverse: The reverse domain name for this IP address
|
29
|
-
:param pulumi.Input[str] zone: `zone`) The zone in which the IP should be reserved.
|
28
|
+
:param pulumi.Input[builtins.str] gateway_ip_id: The Public Gateway IP ID
|
29
|
+
:param pulumi.Input[builtins.str] reverse: The reverse domain name for this IP address
|
30
|
+
:param pulumi.Input[builtins.str] zone: `zone`) The zone in which the IP should be reserved.
|
30
31
|
"""
|
31
32
|
pulumi.set(__self__, "gateway_ip_id", gateway_ip_id)
|
32
33
|
pulumi.set(__self__, "reverse", reverse)
|
@@ -35,52 +36,52 @@ class PublicGatewayIpReverseDnsArgs:
|
|
35
36
|
|
36
37
|
@property
|
37
38
|
@pulumi.getter(name="gatewayIpId")
|
38
|
-
def gateway_ip_id(self) -> pulumi.Input[str]:
|
39
|
+
def gateway_ip_id(self) -> pulumi.Input[builtins.str]:
|
39
40
|
"""
|
40
41
|
The Public Gateway IP ID
|
41
42
|
"""
|
42
43
|
return pulumi.get(self, "gateway_ip_id")
|
43
44
|
|
44
45
|
@gateway_ip_id.setter
|
45
|
-
def gateway_ip_id(self, value: pulumi.Input[str]):
|
46
|
+
def gateway_ip_id(self, value: pulumi.Input[builtins.str]):
|
46
47
|
pulumi.set(self, "gateway_ip_id", value)
|
47
48
|
|
48
49
|
@property
|
49
50
|
@pulumi.getter
|
50
|
-
def reverse(self) -> pulumi.Input[str]:
|
51
|
+
def reverse(self) -> pulumi.Input[builtins.str]:
|
51
52
|
"""
|
52
53
|
The reverse domain name for this IP address
|
53
54
|
"""
|
54
55
|
return pulumi.get(self, "reverse")
|
55
56
|
|
56
57
|
@reverse.setter
|
57
|
-
def reverse(self, value: pulumi.Input[str]):
|
58
|
+
def reverse(self, value: pulumi.Input[builtins.str]):
|
58
59
|
pulumi.set(self, "reverse", value)
|
59
60
|
|
60
61
|
@property
|
61
62
|
@pulumi.getter
|
62
|
-
def zone(self) -> Optional[pulumi.Input[str]]:
|
63
|
+
def zone(self) -> Optional[pulumi.Input[builtins.str]]:
|
63
64
|
"""
|
64
65
|
`zone`) The zone in which the IP should be reserved.
|
65
66
|
"""
|
66
67
|
return pulumi.get(self, "zone")
|
67
68
|
|
68
69
|
@zone.setter
|
69
|
-
def zone(self, value: Optional[pulumi.Input[str]]):
|
70
|
+
def zone(self, value: Optional[pulumi.Input[builtins.str]]):
|
70
71
|
pulumi.set(self, "zone", value)
|
71
72
|
|
72
73
|
|
73
74
|
@pulumi.input_type
|
74
75
|
class _PublicGatewayIpReverseDnsState:
|
75
76
|
def __init__(__self__, *,
|
76
|
-
gateway_ip_id: Optional[pulumi.Input[str]] = None,
|
77
|
-
reverse: Optional[pulumi.Input[str]] = None,
|
78
|
-
zone: Optional[pulumi.Input[str]] = None):
|
77
|
+
gateway_ip_id: Optional[pulumi.Input[builtins.str]] = None,
|
78
|
+
reverse: Optional[pulumi.Input[builtins.str]] = None,
|
79
|
+
zone: Optional[pulumi.Input[builtins.str]] = None):
|
79
80
|
"""
|
80
81
|
Input properties used for looking up and filtering PublicGatewayIpReverseDns resources.
|
81
|
-
:param pulumi.Input[str] gateway_ip_id: The Public Gateway IP ID
|
82
|
-
:param pulumi.Input[str] reverse: The reverse domain name for this IP address
|
83
|
-
:param pulumi.Input[str] zone: `zone`) The zone in which the IP should be reserved.
|
82
|
+
:param pulumi.Input[builtins.str] gateway_ip_id: The Public Gateway IP ID
|
83
|
+
:param pulumi.Input[builtins.str] reverse: The reverse domain name for this IP address
|
84
|
+
:param pulumi.Input[builtins.str] zone: `zone`) The zone in which the IP should be reserved.
|
84
85
|
"""
|
85
86
|
if gateway_ip_id is not None:
|
86
87
|
pulumi.set(__self__, "gateway_ip_id", gateway_ip_id)
|
@@ -91,49 +92,50 @@ class _PublicGatewayIpReverseDnsState:
|
|
91
92
|
|
92
93
|
@property
|
93
94
|
@pulumi.getter(name="gatewayIpId")
|
94
|
-
def gateway_ip_id(self) -> Optional[pulumi.Input[str]]:
|
95
|
+
def gateway_ip_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
95
96
|
"""
|
96
97
|
The Public Gateway IP ID
|
97
98
|
"""
|
98
99
|
return pulumi.get(self, "gateway_ip_id")
|
99
100
|
|
100
101
|
@gateway_ip_id.setter
|
101
|
-
def gateway_ip_id(self, value: Optional[pulumi.Input[str]]):
|
102
|
+
def gateway_ip_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
102
103
|
pulumi.set(self, "gateway_ip_id", value)
|
103
104
|
|
104
105
|
@property
|
105
106
|
@pulumi.getter
|
106
|
-
def reverse(self) -> Optional[pulumi.Input[str]]:
|
107
|
+
def reverse(self) -> Optional[pulumi.Input[builtins.str]]:
|
107
108
|
"""
|
108
109
|
The reverse domain name for this IP address
|
109
110
|
"""
|
110
111
|
return pulumi.get(self, "reverse")
|
111
112
|
|
112
113
|
@reverse.setter
|
113
|
-
def reverse(self, value: Optional[pulumi.Input[str]]):
|
114
|
+
def reverse(self, value: Optional[pulumi.Input[builtins.str]]):
|
114
115
|
pulumi.set(self, "reverse", value)
|
115
116
|
|
116
117
|
@property
|
117
118
|
@pulumi.getter
|
118
|
-
def zone(self) -> Optional[pulumi.Input[str]]:
|
119
|
+
def zone(self) -> Optional[pulumi.Input[builtins.str]]:
|
119
120
|
"""
|
120
121
|
`zone`) The zone in which the IP should be reserved.
|
121
122
|
"""
|
122
123
|
return pulumi.get(self, "zone")
|
123
124
|
|
124
125
|
@zone.setter
|
125
|
-
def zone(self, value: Optional[pulumi.Input[str]]):
|
126
|
+
def zone(self, value: Optional[pulumi.Input[builtins.str]]):
|
126
127
|
pulumi.set(self, "zone", value)
|
127
128
|
|
128
129
|
|
130
|
+
@pulumi.type_token("scaleway:network/publicGatewayIpReverseDns:PublicGatewayIpReverseDns")
|
129
131
|
class PublicGatewayIpReverseDns(pulumi.CustomResource):
|
130
132
|
@overload
|
131
133
|
def __init__(__self__,
|
132
134
|
resource_name: str,
|
133
135
|
opts: Optional[pulumi.ResourceOptions] = None,
|
134
|
-
gateway_ip_id: Optional[pulumi.Input[str]] = None,
|
135
|
-
reverse: Optional[pulumi.Input[str]] = None,
|
136
|
-
zone: Optional[pulumi.Input[str]] = None,
|
136
|
+
gateway_ip_id: Optional[pulumi.Input[builtins.str]] = None,
|
137
|
+
reverse: Optional[pulumi.Input[builtins.str]] = None,
|
138
|
+
zone: Optional[pulumi.Input[builtins.str]] = None,
|
137
139
|
__props__=None):
|
138
140
|
"""
|
139
141
|
Manages Scaleway Public Gateway public (flexible) IPs' reverse DNS.
|
@@ -170,9 +172,9 @@ class PublicGatewayIpReverseDns(pulumi.CustomResource):
|
|
170
172
|
|
171
173
|
:param str resource_name: The name of the resource.
|
172
174
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
173
|
-
:param pulumi.Input[str] gateway_ip_id: The Public Gateway IP ID
|
174
|
-
:param pulumi.Input[str] reverse: The reverse domain name for this IP address
|
175
|
-
:param pulumi.Input[str] zone: `zone`) The zone in which the IP should be reserved.
|
175
|
+
:param pulumi.Input[builtins.str] gateway_ip_id: The Public Gateway IP ID
|
176
|
+
:param pulumi.Input[builtins.str] reverse: The reverse domain name for this IP address
|
177
|
+
:param pulumi.Input[builtins.str] zone: `zone`) The zone in which the IP should be reserved.
|
176
178
|
"""
|
177
179
|
...
|
178
180
|
@overload
|
@@ -228,9 +230,9 @@ class PublicGatewayIpReverseDns(pulumi.CustomResource):
|
|
228
230
|
def _internal_init(__self__,
|
229
231
|
resource_name: str,
|
230
232
|
opts: Optional[pulumi.ResourceOptions] = None,
|
231
|
-
gateway_ip_id: Optional[pulumi.Input[str]] = None,
|
232
|
-
reverse: Optional[pulumi.Input[str]] = None,
|
233
|
-
zone: Optional[pulumi.Input[str]] = None,
|
233
|
+
gateway_ip_id: Optional[pulumi.Input[builtins.str]] = None,
|
234
|
+
reverse: Optional[pulumi.Input[builtins.str]] = None,
|
235
|
+
zone: Optional[pulumi.Input[builtins.str]] = None,
|
234
236
|
__props__=None):
|
235
237
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
236
238
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -259,9 +261,9 @@ class PublicGatewayIpReverseDns(pulumi.CustomResource):
|
|
259
261
|
def get(resource_name: str,
|
260
262
|
id: pulumi.Input[str],
|
261
263
|
opts: Optional[pulumi.ResourceOptions] = None,
|
262
|
-
gateway_ip_id: Optional[pulumi.Input[str]] = None,
|
263
|
-
reverse: Optional[pulumi.Input[str]] = None,
|
264
|
-
zone: Optional[pulumi.Input[str]] = None) -> 'PublicGatewayIpReverseDns':
|
264
|
+
gateway_ip_id: Optional[pulumi.Input[builtins.str]] = None,
|
265
|
+
reverse: Optional[pulumi.Input[builtins.str]] = None,
|
266
|
+
zone: Optional[pulumi.Input[builtins.str]] = None) -> 'PublicGatewayIpReverseDns':
|
265
267
|
"""
|
266
268
|
Get an existing PublicGatewayIpReverseDns resource's state with the given name, id, and optional extra
|
267
269
|
properties used to qualify the lookup.
|
@@ -269,9 +271,9 @@ class PublicGatewayIpReverseDns(pulumi.CustomResource):
|
|
269
271
|
:param str resource_name: The unique name of the resulting resource.
|
270
272
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
271
273
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
272
|
-
:param pulumi.Input[str] gateway_ip_id: The Public Gateway IP ID
|
273
|
-
:param pulumi.Input[str] reverse: The reverse domain name for this IP address
|
274
|
-
:param pulumi.Input[str] zone: `zone`) The zone in which the IP should be reserved.
|
274
|
+
:param pulumi.Input[builtins.str] gateway_ip_id: The Public Gateway IP ID
|
275
|
+
:param pulumi.Input[builtins.str] reverse: The reverse domain name for this IP address
|
276
|
+
:param pulumi.Input[builtins.str] zone: `zone`) The zone in which the IP should be reserved.
|
275
277
|
"""
|
276
278
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
277
279
|
|
@@ -284,7 +286,7 @@ class PublicGatewayIpReverseDns(pulumi.CustomResource):
|
|
284
286
|
|
285
287
|
@property
|
286
288
|
@pulumi.getter(name="gatewayIpId")
|
287
|
-
def gateway_ip_id(self) -> pulumi.Output[str]:
|
289
|
+
def gateway_ip_id(self) -> pulumi.Output[builtins.str]:
|
288
290
|
"""
|
289
291
|
The Public Gateway IP ID
|
290
292
|
"""
|
@@ -292,7 +294,7 @@ class PublicGatewayIpReverseDns(pulumi.CustomResource):
|
|
292
294
|
|
293
295
|
@property
|
294
296
|
@pulumi.getter
|
295
|
-
def reverse(self) -> pulumi.Output[str]:
|
297
|
+
def reverse(self) -> pulumi.Output[builtins.str]:
|
296
298
|
"""
|
297
299
|
The reverse domain name for this IP address
|
298
300
|
"""
|
@@ -300,7 +302,7 @@ class PublicGatewayIpReverseDns(pulumi.CustomResource):
|
|
300
302
|
|
301
303
|
@property
|
302
304
|
@pulumi.getter
|
303
|
-
def zone(self) -> pulumi.Output[str]:
|
305
|
+
def zone(self) -> pulumi.Output[builtins.str]:
|
304
306
|
"""
|
305
307
|
`zone`) The zone in which the IP should be reserved.
|
306
308
|
"""
|