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
|
@@ -34,11 +35,11 @@ __all__ = [
|
|
34
35
|
@pulumi.output_type
|
35
36
|
class AclAclRule(dict):
|
36
37
|
def __init__(__self__, *,
|
37
|
-
ip: str,
|
38
|
-
description: Optional[str] = None):
|
38
|
+
ip: builtins.str,
|
39
|
+
description: Optional[builtins.str] = None):
|
39
40
|
"""
|
40
|
-
:param str ip: The IP range to whitelist in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation)
|
41
|
-
:param str description: A text describing this rule. Default description: `IP allowed`
|
41
|
+
:param builtins.str ip: The IP range to whitelist in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation)
|
42
|
+
:param builtins.str description: A text describing this rule. Default description: `IP allowed`
|
42
43
|
"""
|
43
44
|
pulumi.set(__self__, "ip", ip)
|
44
45
|
if description is not None:
|
@@ -46,7 +47,7 @@ class AclAclRule(dict):
|
|
46
47
|
|
47
48
|
@property
|
48
49
|
@pulumi.getter
|
49
|
-
def ip(self) -> str:
|
50
|
+
def ip(self) -> builtins.str:
|
50
51
|
"""
|
51
52
|
The IP range to whitelist in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation)
|
52
53
|
"""
|
@@ -54,7 +55,7 @@ class AclAclRule(dict):
|
|
54
55
|
|
55
56
|
@property
|
56
57
|
@pulumi.getter
|
57
|
-
def description(self) -> Optional[str]:
|
58
|
+
def description(self) -> Optional[builtins.str]:
|
58
59
|
"""
|
59
60
|
A text describing this rule. Default description: `IP allowed`
|
60
61
|
"""
|
@@ -81,17 +82,17 @@ class InstanceLoadBalancer(dict):
|
|
81
82
|
return super().get(key, default)
|
82
83
|
|
83
84
|
def __init__(__self__, *,
|
84
|
-
endpoint_id: Optional[str] = None,
|
85
|
-
hostname: Optional[str] = None,
|
86
|
-
ip: Optional[str] = None,
|
87
|
-
name: Optional[str] = None,
|
88
|
-
port: Optional[int] = None):
|
89
|
-
"""
|
90
|
-
:param str endpoint_id: The ID of the endpoint.
|
91
|
-
:param str hostname: Hostname of the endpoint.
|
92
|
-
:param str ip: IPv4 address on the network.
|
93
|
-
:param str name: The name of the Database Instance.
|
94
|
-
:param int port: Port in the Private Network.
|
85
|
+
endpoint_id: Optional[builtins.str] = None,
|
86
|
+
hostname: Optional[builtins.str] = None,
|
87
|
+
ip: Optional[builtins.str] = None,
|
88
|
+
name: Optional[builtins.str] = None,
|
89
|
+
port: Optional[builtins.int] = None):
|
90
|
+
"""
|
91
|
+
:param builtins.str endpoint_id: The ID of the endpoint.
|
92
|
+
:param builtins.str hostname: Hostname of the endpoint.
|
93
|
+
:param builtins.str ip: IPv4 address on the network.
|
94
|
+
:param builtins.str name: The name of the Database Instance.
|
95
|
+
:param builtins.int port: Port in the Private Network.
|
95
96
|
"""
|
96
97
|
if endpoint_id is not None:
|
97
98
|
pulumi.set(__self__, "endpoint_id", endpoint_id)
|
@@ -106,7 +107,7 @@ class InstanceLoadBalancer(dict):
|
|
106
107
|
|
107
108
|
@property
|
108
109
|
@pulumi.getter(name="endpointId")
|
109
|
-
def endpoint_id(self) -> Optional[str]:
|
110
|
+
def endpoint_id(self) -> Optional[builtins.str]:
|
110
111
|
"""
|
111
112
|
The ID of the endpoint.
|
112
113
|
"""
|
@@ -114,7 +115,7 @@ class InstanceLoadBalancer(dict):
|
|
114
115
|
|
115
116
|
@property
|
116
117
|
@pulumi.getter
|
117
|
-
def hostname(self) -> Optional[str]:
|
118
|
+
def hostname(self) -> Optional[builtins.str]:
|
118
119
|
"""
|
119
120
|
Hostname of the endpoint.
|
120
121
|
"""
|
@@ -122,7 +123,7 @@ class InstanceLoadBalancer(dict):
|
|
122
123
|
|
123
124
|
@property
|
124
125
|
@pulumi.getter
|
125
|
-
def ip(self) -> Optional[str]:
|
126
|
+
def ip(self) -> Optional[builtins.str]:
|
126
127
|
"""
|
127
128
|
IPv4 address on the network.
|
128
129
|
"""
|
@@ -130,7 +131,7 @@ class InstanceLoadBalancer(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 Database Instance.
|
136
137
|
"""
|
@@ -138,7 +139,7 @@ class InstanceLoadBalancer(dict):
|
|
138
139
|
|
139
140
|
@property
|
140
141
|
@pulumi.getter
|
141
|
-
def port(self) -> Optional[int]:
|
142
|
+
def port(self) -> Optional[builtins.int]:
|
142
143
|
"""
|
143
144
|
Port in the Private Network.
|
144
145
|
"""
|
@@ -167,11 +168,11 @@ class InstanceLogsPolicy(dict):
|
|
167
168
|
return super().get(key, default)
|
168
169
|
|
169
170
|
def __init__(__self__, *,
|
170
|
-
max_age_retention: Optional[int] = None,
|
171
|
-
total_disk_retention: Optional[int] = None):
|
171
|
+
max_age_retention: Optional[builtins.int] = None,
|
172
|
+
total_disk_retention: Optional[builtins.int] = None):
|
172
173
|
"""
|
173
|
-
:param int max_age_retention: The max age (in days) of remote logs to keep on the Database Instance
|
174
|
-
:param int total_disk_retention: The max disk size of remote logs to keep on the Database Instance.
|
174
|
+
:param builtins.int max_age_retention: The max age (in days) of remote logs to keep on the Database Instance
|
175
|
+
:param builtins.int total_disk_retention: The max disk size of remote logs to keep on the Database Instance.
|
175
176
|
"""
|
176
177
|
if max_age_retention is not None:
|
177
178
|
pulumi.set(__self__, "max_age_retention", max_age_retention)
|
@@ -180,7 +181,7 @@ class InstanceLogsPolicy(dict):
|
|
180
181
|
|
181
182
|
@property
|
182
183
|
@pulumi.getter(name="maxAgeRetention")
|
183
|
-
def max_age_retention(self) -> Optional[int]:
|
184
|
+
def max_age_retention(self) -> Optional[builtins.int]:
|
184
185
|
"""
|
185
186
|
The max age (in days) of remote logs to keep on the Database Instance
|
186
187
|
"""
|
@@ -188,7 +189,7 @@ class InstanceLogsPolicy(dict):
|
|
188
189
|
|
189
190
|
@property
|
190
191
|
@pulumi.getter(name="totalDiskRetention")
|
191
|
-
def total_disk_retention(self) -> Optional[int]:
|
192
|
+
def total_disk_retention(self) -> Optional[builtins.int]:
|
192
193
|
"""
|
193
194
|
The max disk size of remote logs to keep on the Database Instance.
|
194
195
|
"""
|
@@ -198,11 +199,11 @@ class InstanceLogsPolicy(dict):
|
|
198
199
|
@pulumi.output_type
|
199
200
|
class InstancePrivateIp(dict):
|
200
201
|
def __init__(__self__, *,
|
201
|
-
address: Optional[str] = None,
|
202
|
-
id: Optional[str] = None):
|
202
|
+
address: Optional[builtins.str] = None,
|
203
|
+
id: Optional[builtins.str] = None):
|
203
204
|
"""
|
204
|
-
:param str address: The private IPv4 address.
|
205
|
-
:param str id: The ID of the IPv4 address resource.
|
205
|
+
:param builtins.str address: The private IPv4 address.
|
206
|
+
:param builtins.str id: The ID of the IPv4 address resource.
|
206
207
|
"""
|
207
208
|
if address is not None:
|
208
209
|
pulumi.set(__self__, "address", address)
|
@@ -211,7 +212,7 @@ class InstancePrivateIp(dict):
|
|
211
212
|
|
212
213
|
@property
|
213
214
|
@pulumi.getter
|
214
|
-
def address(self) -> Optional[str]:
|
215
|
+
def address(self) -> Optional[builtins.str]:
|
215
216
|
"""
|
216
217
|
The private IPv4 address.
|
217
218
|
"""
|
@@ -219,7 +220,7 @@ class InstancePrivateIp(dict):
|
|
219
220
|
|
220
221
|
@property
|
221
222
|
@pulumi.getter
|
222
|
-
def id(self) -> Optional[str]:
|
223
|
+
def id(self) -> Optional[builtins.str]:
|
223
224
|
"""
|
224
225
|
The ID of the IPv4 address resource.
|
225
226
|
"""
|
@@ -252,25 +253,25 @@ class InstancePrivateNetwork(dict):
|
|
252
253
|
return super().get(key, default)
|
253
254
|
|
254
255
|
def __init__(__self__, *,
|
255
|
-
pn_id: str,
|
256
|
-
enable_ipam: Optional[bool] = None,
|
257
|
-
endpoint_id: Optional[str] = None,
|
258
|
-
hostname: Optional[str] = None,
|
259
|
-
ip: Optional[str] = None,
|
260
|
-
ip_net: Optional[str] = None,
|
261
|
-
name: Optional[str] = None,
|
262
|
-
port: Optional[int] = None,
|
263
|
-
zone: Optional[str] = None):
|
264
|
-
"""
|
265
|
-
:param str pn_id: The private network ID
|
266
|
-
:param bool enable_ipam: Whether or not the private network endpoint should be configured with IPAM
|
267
|
-
:param str endpoint_id: The ID of the endpoint.
|
268
|
-
:param str hostname: Hostname of the endpoint.
|
269
|
-
:param str ip: IPv4 address on the network.
|
270
|
-
:param str ip_net: The IP with the given mask within the private subnet
|
271
|
-
:param str name: The name of the Database Instance.
|
272
|
-
:param int port: Port in the Private Network.
|
273
|
-
:param str zone: The zone you want to attach the resource to
|
256
|
+
pn_id: builtins.str,
|
257
|
+
enable_ipam: Optional[builtins.bool] = None,
|
258
|
+
endpoint_id: Optional[builtins.str] = None,
|
259
|
+
hostname: Optional[builtins.str] = None,
|
260
|
+
ip: Optional[builtins.str] = None,
|
261
|
+
ip_net: Optional[builtins.str] = None,
|
262
|
+
name: Optional[builtins.str] = None,
|
263
|
+
port: Optional[builtins.int] = None,
|
264
|
+
zone: Optional[builtins.str] = None):
|
265
|
+
"""
|
266
|
+
:param builtins.str pn_id: The private network ID
|
267
|
+
:param builtins.bool enable_ipam: Whether or not the private network endpoint should be configured with IPAM
|
268
|
+
:param builtins.str endpoint_id: The ID of the endpoint.
|
269
|
+
:param builtins.str hostname: Hostname of the endpoint.
|
270
|
+
:param builtins.str ip: IPv4 address on the network.
|
271
|
+
:param builtins.str ip_net: The IP with the given mask within the private subnet
|
272
|
+
:param builtins.str name: The name of the Database Instance.
|
273
|
+
:param builtins.int port: Port in the Private Network.
|
274
|
+
:param builtins.str zone: The zone you want to attach the resource to
|
274
275
|
"""
|
275
276
|
pulumi.set(__self__, "pn_id", pn_id)
|
276
277
|
if enable_ipam is not None:
|
@@ -292,7 +293,7 @@ class InstancePrivateNetwork(dict):
|
|
292
293
|
|
293
294
|
@property
|
294
295
|
@pulumi.getter(name="pnId")
|
295
|
-
def pn_id(self) -> str:
|
296
|
+
def pn_id(self) -> builtins.str:
|
296
297
|
"""
|
297
298
|
The private network ID
|
298
299
|
"""
|
@@ -300,7 +301,7 @@ class InstancePrivateNetwork(dict):
|
|
300
301
|
|
301
302
|
@property
|
302
303
|
@pulumi.getter(name="enableIpam")
|
303
|
-
def enable_ipam(self) -> Optional[bool]:
|
304
|
+
def enable_ipam(self) -> Optional[builtins.bool]:
|
304
305
|
"""
|
305
306
|
Whether or not the private network endpoint should be configured with IPAM
|
306
307
|
"""
|
@@ -308,7 +309,7 @@ class InstancePrivateNetwork(dict):
|
|
308
309
|
|
309
310
|
@property
|
310
311
|
@pulumi.getter(name="endpointId")
|
311
|
-
def endpoint_id(self) -> Optional[str]:
|
312
|
+
def endpoint_id(self) -> Optional[builtins.str]:
|
312
313
|
"""
|
313
314
|
The ID of the endpoint.
|
314
315
|
"""
|
@@ -316,7 +317,7 @@ class InstancePrivateNetwork(dict):
|
|
316
317
|
|
317
318
|
@property
|
318
319
|
@pulumi.getter
|
319
|
-
def hostname(self) -> Optional[str]:
|
320
|
+
def hostname(self) -> Optional[builtins.str]:
|
320
321
|
"""
|
321
322
|
Hostname of the endpoint.
|
322
323
|
"""
|
@@ -324,7 +325,7 @@ class InstancePrivateNetwork(dict):
|
|
324
325
|
|
325
326
|
@property
|
326
327
|
@pulumi.getter
|
327
|
-
def ip(self) -> Optional[str]:
|
328
|
+
def ip(self) -> Optional[builtins.str]:
|
328
329
|
"""
|
329
330
|
IPv4 address on the network.
|
330
331
|
"""
|
@@ -332,7 +333,7 @@ class InstancePrivateNetwork(dict):
|
|
332
333
|
|
333
334
|
@property
|
334
335
|
@pulumi.getter(name="ipNet")
|
335
|
-
def ip_net(self) -> Optional[str]:
|
336
|
+
def ip_net(self) -> Optional[builtins.str]:
|
336
337
|
"""
|
337
338
|
The IP with the given mask within the private subnet
|
338
339
|
"""
|
@@ -340,7 +341,7 @@ class InstancePrivateNetwork(dict):
|
|
340
341
|
|
341
342
|
@property
|
342
343
|
@pulumi.getter
|
343
|
-
def name(self) -> Optional[str]:
|
344
|
+
def name(self) -> Optional[builtins.str]:
|
344
345
|
"""
|
345
346
|
The name of the Database Instance.
|
346
347
|
"""
|
@@ -348,7 +349,7 @@ class InstancePrivateNetwork(dict):
|
|
348
349
|
|
349
350
|
@property
|
350
351
|
@pulumi.getter
|
351
|
-
def port(self) -> Optional[int]:
|
352
|
+
def port(self) -> Optional[builtins.int]:
|
352
353
|
"""
|
353
354
|
Port in the Private Network.
|
354
355
|
"""
|
@@ -356,7 +357,7 @@ class InstancePrivateNetwork(dict):
|
|
356
357
|
|
357
358
|
@property
|
358
359
|
@pulumi.getter
|
359
|
-
def zone(self) -> Optional[str]:
|
360
|
+
def zone(self) -> Optional[builtins.str]:
|
360
361
|
"""
|
361
362
|
The zone you want to attach the resource to
|
362
363
|
"""
|
@@ -366,13 +367,13 @@ class InstancePrivateNetwork(dict):
|
|
366
367
|
@pulumi.output_type
|
367
368
|
class InstanceReadReplica(dict):
|
368
369
|
def __init__(__self__, *,
|
369
|
-
ip: Optional[str] = None,
|
370
|
-
name: Optional[str] = None,
|
371
|
-
port: Optional[int] = None):
|
370
|
+
ip: Optional[builtins.str] = None,
|
371
|
+
name: Optional[builtins.str] = None,
|
372
|
+
port: Optional[builtins.int] = None):
|
372
373
|
"""
|
373
|
-
:param str ip: IPv4 address on the network.
|
374
|
-
:param str name: The name of the Database Instance.
|
375
|
-
:param int port: Port in the Private Network.
|
374
|
+
:param builtins.str ip: IPv4 address on the network.
|
375
|
+
:param builtins.str name: The name of the Database Instance.
|
376
|
+
:param builtins.int port: Port in the Private Network.
|
376
377
|
"""
|
377
378
|
if ip is not None:
|
378
379
|
pulumi.set(__self__, "ip", ip)
|
@@ -383,7 +384,7 @@ class InstanceReadReplica(dict):
|
|
383
384
|
|
384
385
|
@property
|
385
386
|
@pulumi.getter
|
386
|
-
def ip(self) -> Optional[str]:
|
387
|
+
def ip(self) -> Optional[builtins.str]:
|
387
388
|
"""
|
388
389
|
IPv4 address on the network.
|
389
390
|
"""
|
@@ -391,7 +392,7 @@ class InstanceReadReplica(dict):
|
|
391
392
|
|
392
393
|
@property
|
393
394
|
@pulumi.getter
|
394
|
-
def name(self) -> Optional[str]:
|
395
|
+
def name(self) -> Optional[builtins.str]:
|
395
396
|
"""
|
396
397
|
The name of the Database Instance.
|
397
398
|
"""
|
@@ -399,7 +400,7 @@ class InstanceReadReplica(dict):
|
|
399
400
|
|
400
401
|
@property
|
401
402
|
@pulumi.getter
|
402
|
-
def port(self) -> Optional[int]:
|
403
|
+
def port(self) -> Optional[builtins.int]:
|
403
404
|
"""
|
404
405
|
Port in the Private Network.
|
405
406
|
"""
|
@@ -426,17 +427,17 @@ class ReadReplicaDirectAccess(dict):
|
|
426
427
|
return super().get(key, default)
|
427
428
|
|
428
429
|
def __init__(__self__, *,
|
429
|
-
endpoint_id: Optional[str] = None,
|
430
|
-
hostname: Optional[str] = None,
|
431
|
-
ip: Optional[str] = None,
|
432
|
-
name: Optional[str] = None,
|
433
|
-
port: Optional[int] = None):
|
434
|
-
"""
|
435
|
-
:param str endpoint_id: The ID of the endpoint of the Read Replica.
|
436
|
-
:param str hostname: Hostname of the endpoint. Only one of IP and hostname may be set.
|
437
|
-
:param str ip: IPv4 address of the endpoint (IP address). Only one of IP and hostname may be set.
|
438
|
-
:param str name: Name of the endpoint.
|
439
|
-
:param int port: TCP port of the endpoint.
|
430
|
+
endpoint_id: Optional[builtins.str] = None,
|
431
|
+
hostname: Optional[builtins.str] = None,
|
432
|
+
ip: Optional[builtins.str] = None,
|
433
|
+
name: Optional[builtins.str] = None,
|
434
|
+
port: Optional[builtins.int] = None):
|
435
|
+
"""
|
436
|
+
:param builtins.str endpoint_id: The ID of the endpoint of the Read Replica.
|
437
|
+
:param builtins.str hostname: Hostname of the endpoint. Only one of IP and hostname may be set.
|
438
|
+
:param builtins.str ip: IPv4 address of the endpoint (IP address). Only one of IP and hostname may be set.
|
439
|
+
:param builtins.str name: Name of the endpoint.
|
440
|
+
:param builtins.int port: TCP port of the endpoint.
|
440
441
|
"""
|
441
442
|
if endpoint_id is not None:
|
442
443
|
pulumi.set(__self__, "endpoint_id", endpoint_id)
|
@@ -451,7 +452,7 @@ class ReadReplicaDirectAccess(dict):
|
|
451
452
|
|
452
453
|
@property
|
453
454
|
@pulumi.getter(name="endpointId")
|
454
|
-
def endpoint_id(self) -> Optional[str]:
|
455
|
+
def endpoint_id(self) -> Optional[builtins.str]:
|
455
456
|
"""
|
456
457
|
The ID of the endpoint of the Read Replica.
|
457
458
|
"""
|
@@ -459,7 +460,7 @@ class ReadReplicaDirectAccess(dict):
|
|
459
460
|
|
460
461
|
@property
|
461
462
|
@pulumi.getter
|
462
|
-
def hostname(self) -> Optional[str]:
|
463
|
+
def hostname(self) -> Optional[builtins.str]:
|
463
464
|
"""
|
464
465
|
Hostname of the endpoint. Only one of IP and hostname may be set.
|
465
466
|
"""
|
@@ -467,7 +468,7 @@ class ReadReplicaDirectAccess(dict):
|
|
467
468
|
|
468
469
|
@property
|
469
470
|
@pulumi.getter
|
470
|
-
def ip(self) -> Optional[str]:
|
471
|
+
def ip(self) -> Optional[builtins.str]:
|
471
472
|
"""
|
472
473
|
IPv4 address of the endpoint (IP address). Only one of IP and hostname may be set.
|
473
474
|
"""
|
@@ -475,7 +476,7 @@ class ReadReplicaDirectAccess(dict):
|
|
475
476
|
|
476
477
|
@property
|
477
478
|
@pulumi.getter
|
478
|
-
def name(self) -> Optional[str]:
|
479
|
+
def name(self) -> Optional[builtins.str]:
|
479
480
|
"""
|
480
481
|
Name of the endpoint.
|
481
482
|
"""
|
@@ -483,7 +484,7 @@ class ReadReplicaDirectAccess(dict):
|
|
483
484
|
|
484
485
|
@property
|
485
486
|
@pulumi.getter
|
486
|
-
def port(self) -> Optional[int]:
|
487
|
+
def port(self) -> Optional[builtins.int]:
|
487
488
|
"""
|
488
489
|
TCP port of the endpoint.
|
489
490
|
"""
|
@@ -516,27 +517,27 @@ class ReadReplicaPrivateNetwork(dict):
|
|
516
517
|
return super().get(key, default)
|
517
518
|
|
518
519
|
def __init__(__self__, *,
|
519
|
-
private_network_id: str,
|
520
|
-
enable_ipam: Optional[bool] = None,
|
521
|
-
endpoint_id: Optional[str] = None,
|
522
|
-
hostname: Optional[str] = None,
|
523
|
-
ip: Optional[str] = None,
|
524
|
-
name: Optional[str] = None,
|
525
|
-
port: Optional[int] = None,
|
526
|
-
service_ip: Optional[str] = None,
|
527
|
-
zone: Optional[str] = None):
|
528
|
-
"""
|
529
|
-
:param str private_network_id: UUID of the Private Netork to be connected to the Read Replica.
|
530
|
-
:param bool enable_ipam: If true, the IP network address within the private subnet is determined by the IP Address Management (IPAM) service.
|
520
|
+
private_network_id: builtins.str,
|
521
|
+
enable_ipam: Optional[builtins.bool] = None,
|
522
|
+
endpoint_id: Optional[builtins.str] = None,
|
523
|
+
hostname: Optional[builtins.str] = None,
|
524
|
+
ip: Optional[builtins.str] = None,
|
525
|
+
name: Optional[builtins.str] = None,
|
526
|
+
port: Optional[builtins.int] = None,
|
527
|
+
service_ip: Optional[builtins.str] = None,
|
528
|
+
zone: Optional[builtins.str] = None):
|
529
|
+
"""
|
530
|
+
:param builtins.str private_network_id: UUID of the Private Netork to be connected to the Read Replica.
|
531
|
+
:param builtins.bool enable_ipam: If true, the IP network address within the private subnet is determined by the IP Address Management (IPAM) service.
|
531
532
|
|
532
533
|
> **Important:** One of `service_ip` or `enable_ipam=true` must be set.
|
533
|
-
:param str endpoint_id: The ID of the endpoint of the Read Replica.
|
534
|
-
:param str hostname: Hostname of the endpoint. Only one of IP and hostname may be set.
|
535
|
-
:param str ip: IPv4 address of the endpoint (IP address). Only one of IP and hostname may be set.
|
536
|
-
:param str name: Name of the endpoint.
|
537
|
-
:param int port: TCP port of the endpoint.
|
538
|
-
:param str service_ip: The IP network address within the private subnet. This must be an IPv4 address with a CIDR notation. If not set, The IP network address within the private subnet is determined by the IP Address Management (IPAM) service.
|
539
|
-
:param str zone: Private network zone
|
534
|
+
:param builtins.str endpoint_id: The ID of the endpoint of the Read Replica.
|
535
|
+
:param builtins.str hostname: Hostname of the endpoint. Only one of IP and hostname may be set.
|
536
|
+
:param builtins.str ip: IPv4 address of the endpoint (IP address). Only one of IP and hostname may be set.
|
537
|
+
:param builtins.str name: Name of the endpoint.
|
538
|
+
:param builtins.int port: TCP port of the endpoint.
|
539
|
+
:param builtins.str service_ip: The IP network address within the private subnet. This must be an IPv4 address with a CIDR notation. If not set, The IP network address within the private subnet is determined by the IP Address Management (IPAM) service.
|
540
|
+
:param builtins.str zone: Private network zone
|
540
541
|
"""
|
541
542
|
pulumi.set(__self__, "private_network_id", private_network_id)
|
542
543
|
if enable_ipam is not None:
|
@@ -558,7 +559,7 @@ class ReadReplicaPrivateNetwork(dict):
|
|
558
559
|
|
559
560
|
@property
|
560
561
|
@pulumi.getter(name="privateNetworkId")
|
561
|
-
def private_network_id(self) -> str:
|
562
|
+
def private_network_id(self) -> builtins.str:
|
562
563
|
"""
|
563
564
|
UUID of the Private Netork to be connected to the Read Replica.
|
564
565
|
"""
|
@@ -566,7 +567,7 @@ class ReadReplicaPrivateNetwork(dict):
|
|
566
567
|
|
567
568
|
@property
|
568
569
|
@pulumi.getter(name="enableIpam")
|
569
|
-
def enable_ipam(self) -> Optional[bool]:
|
570
|
+
def enable_ipam(self) -> Optional[builtins.bool]:
|
570
571
|
"""
|
571
572
|
If true, the IP network address within the private subnet is determined by the IP Address Management (IPAM) service.
|
572
573
|
|
@@ -576,7 +577,7 @@ class ReadReplicaPrivateNetwork(dict):
|
|
576
577
|
|
577
578
|
@property
|
578
579
|
@pulumi.getter(name="endpointId")
|
579
|
-
def endpoint_id(self) -> Optional[str]:
|
580
|
+
def endpoint_id(self) -> Optional[builtins.str]:
|
580
581
|
"""
|
581
582
|
The ID of the endpoint of the Read Replica.
|
582
583
|
"""
|
@@ -584,7 +585,7 @@ class ReadReplicaPrivateNetwork(dict):
|
|
584
585
|
|
585
586
|
@property
|
586
587
|
@pulumi.getter
|
587
|
-
def hostname(self) -> Optional[str]:
|
588
|
+
def hostname(self) -> Optional[builtins.str]:
|
588
589
|
"""
|
589
590
|
Hostname of the endpoint. Only one of IP and hostname may be set.
|
590
591
|
"""
|
@@ -592,7 +593,7 @@ class ReadReplicaPrivateNetwork(dict):
|
|
592
593
|
|
593
594
|
@property
|
594
595
|
@pulumi.getter
|
595
|
-
def ip(self) -> Optional[str]:
|
596
|
+
def ip(self) -> Optional[builtins.str]:
|
596
597
|
"""
|
597
598
|
IPv4 address of the endpoint (IP address). Only one of IP and hostname may be set.
|
598
599
|
"""
|
@@ -600,7 +601,7 @@ class ReadReplicaPrivateNetwork(dict):
|
|
600
601
|
|
601
602
|
@property
|
602
603
|
@pulumi.getter
|
603
|
-
def name(self) -> Optional[str]:
|
604
|
+
def name(self) -> Optional[builtins.str]:
|
604
605
|
"""
|
605
606
|
Name of the endpoint.
|
606
607
|
"""
|
@@ -608,7 +609,7 @@ class ReadReplicaPrivateNetwork(dict):
|
|
608
609
|
|
609
610
|
@property
|
610
611
|
@pulumi.getter
|
611
|
-
def port(self) -> Optional[int]:
|
612
|
+
def port(self) -> Optional[builtins.int]:
|
612
613
|
"""
|
613
614
|
TCP port of the endpoint.
|
614
615
|
"""
|
@@ -616,7 +617,7 @@ class ReadReplicaPrivateNetwork(dict):
|
|
616
617
|
|
617
618
|
@property
|
618
619
|
@pulumi.getter(name="serviceIp")
|
619
|
-
def service_ip(self) -> Optional[str]:
|
620
|
+
def service_ip(self) -> Optional[builtins.str]:
|
620
621
|
"""
|
621
622
|
The IP network address within the private subnet. This must be an IPv4 address with a CIDR notation. If not set, The IP network address within the private subnet is determined by the IP Address Management (IPAM) service.
|
622
623
|
"""
|
@@ -624,7 +625,7 @@ class ReadReplicaPrivateNetwork(dict):
|
|
624
625
|
|
625
626
|
@property
|
626
627
|
@pulumi.getter
|
627
|
-
def zone(self) -> Optional[str]:
|
628
|
+
def zone(self) -> Optional[builtins.str]:
|
628
629
|
"""
|
629
630
|
Private network zone
|
630
631
|
"""
|
@@ -634,18 +635,18 @@ class ReadReplicaPrivateNetwork(dict):
|
|
634
635
|
@pulumi.output_type
|
635
636
|
class GetAclAclRuleResult(dict):
|
636
637
|
def __init__(__self__, *,
|
637
|
-
description: str,
|
638
|
-
ip: str):
|
638
|
+
description: builtins.str,
|
639
|
+
ip: builtins.str):
|
639
640
|
"""
|
640
|
-
:param str description: A simple text describing this rule
|
641
|
-
:param str ip: The ip range to whitelist in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation)
|
641
|
+
:param builtins.str description: A simple text describing this rule
|
642
|
+
:param builtins.str ip: The ip range to whitelist in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation)
|
642
643
|
"""
|
643
644
|
pulumi.set(__self__, "description", description)
|
644
645
|
pulumi.set(__self__, "ip", ip)
|
645
646
|
|
646
647
|
@property
|
647
648
|
@pulumi.getter
|
648
|
-
def description(self) -> str:
|
649
|
+
def description(self) -> builtins.str:
|
649
650
|
"""
|
650
651
|
A simple text describing this rule
|
651
652
|
"""
|
@@ -653,7 +654,7 @@ class GetAclAclRuleResult(dict):
|
|
653
654
|
|
654
655
|
@property
|
655
656
|
@pulumi.getter
|
656
|
-
def ip(self) -> str:
|
657
|
+
def ip(self) -> builtins.str:
|
657
658
|
"""
|
658
659
|
The ip range to whitelist in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation)
|
659
660
|
"""
|
@@ -663,17 +664,17 @@ class GetAclAclRuleResult(dict):
|
|
663
664
|
@pulumi.output_type
|
664
665
|
class GetInstanceLoadBalancerResult(dict):
|
665
666
|
def __init__(__self__, *,
|
666
|
-
endpoint_id: str,
|
667
|
-
hostname: str,
|
668
|
-
ip: str,
|
669
|
-
name: str,
|
670
|
-
port: int):
|
671
|
-
"""
|
672
|
-
:param str endpoint_id: The endpoint ID
|
673
|
-
:param str hostname: The hostname of your endpoint
|
674
|
-
:param str ip: The IP of your load balancer service
|
675
|
-
:param str name: The name of the RDB instance.
|
676
|
-
:param int port: The port of your load balancer service
|
667
|
+
endpoint_id: builtins.str,
|
668
|
+
hostname: builtins.str,
|
669
|
+
ip: builtins.str,
|
670
|
+
name: builtins.str,
|
671
|
+
port: builtins.int):
|
672
|
+
"""
|
673
|
+
:param builtins.str endpoint_id: The endpoint ID
|
674
|
+
:param builtins.str hostname: The hostname of your endpoint
|
675
|
+
:param builtins.str ip: The IP of your load balancer service
|
676
|
+
:param builtins.str name: The name of the RDB instance.
|
677
|
+
:param builtins.int port: The port of your load balancer service
|
677
678
|
"""
|
678
679
|
pulumi.set(__self__, "endpoint_id", endpoint_id)
|
679
680
|
pulumi.set(__self__, "hostname", hostname)
|
@@ -683,7 +684,7 @@ class GetInstanceLoadBalancerResult(dict):
|
|
683
684
|
|
684
685
|
@property
|
685
686
|
@pulumi.getter(name="endpointId")
|
686
|
-
def endpoint_id(self) -> str:
|
687
|
+
def endpoint_id(self) -> builtins.str:
|
687
688
|
"""
|
688
689
|
The endpoint ID
|
689
690
|
"""
|
@@ -691,7 +692,7 @@ class GetInstanceLoadBalancerResult(dict):
|
|
691
692
|
|
692
693
|
@property
|
693
694
|
@pulumi.getter
|
694
|
-
def hostname(self) -> str:
|
695
|
+
def hostname(self) -> builtins.str:
|
695
696
|
"""
|
696
697
|
The hostname of your endpoint
|
697
698
|
"""
|
@@ -699,7 +700,7 @@ class GetInstanceLoadBalancerResult(dict):
|
|
699
700
|
|
700
701
|
@property
|
701
702
|
@pulumi.getter
|
702
|
-
def ip(self) -> str:
|
703
|
+
def ip(self) -> builtins.str:
|
703
704
|
"""
|
704
705
|
The IP of your load balancer service
|
705
706
|
"""
|
@@ -707,7 +708,7 @@ class GetInstanceLoadBalancerResult(dict):
|
|
707
708
|
|
708
709
|
@property
|
709
710
|
@pulumi.getter
|
710
|
-
def name(self) -> str:
|
711
|
+
def name(self) -> builtins.str:
|
711
712
|
"""
|
712
713
|
The name of the RDB instance.
|
713
714
|
"""
|
@@ -715,7 +716,7 @@ class GetInstanceLoadBalancerResult(dict):
|
|
715
716
|
|
716
717
|
@property
|
717
718
|
@pulumi.getter
|
718
|
-
def port(self) -> int:
|
719
|
+
def port(self) -> builtins.int:
|
719
720
|
"""
|
720
721
|
The port of your load balancer service
|
721
722
|
"""
|
@@ -725,18 +726,18 @@ class GetInstanceLoadBalancerResult(dict):
|
|
725
726
|
@pulumi.output_type
|
726
727
|
class GetInstanceLogsPolicyResult(dict):
|
727
728
|
def __init__(__self__, *,
|
728
|
-
max_age_retention: int,
|
729
|
-
total_disk_retention: int):
|
729
|
+
max_age_retention: builtins.int,
|
730
|
+
total_disk_retention: builtins.int):
|
730
731
|
"""
|
731
|
-
:param int max_age_retention: The max age (in days) of remote logs to keep on the Database Instance
|
732
|
-
:param int total_disk_retention: The max disk size of remote logs to keep on the Database Instance.
|
732
|
+
:param builtins.int max_age_retention: The max age (in days) of remote logs to keep on the Database Instance
|
733
|
+
:param builtins.int total_disk_retention: The max disk size of remote logs to keep on the Database Instance.
|
733
734
|
"""
|
734
735
|
pulumi.set(__self__, "max_age_retention", max_age_retention)
|
735
736
|
pulumi.set(__self__, "total_disk_retention", total_disk_retention)
|
736
737
|
|
737
738
|
@property
|
738
739
|
@pulumi.getter(name="maxAgeRetention")
|
739
|
-
def max_age_retention(self) -> int:
|
740
|
+
def max_age_retention(self) -> builtins.int:
|
740
741
|
"""
|
741
742
|
The max age (in days) of remote logs to keep on the Database Instance
|
742
743
|
"""
|
@@ -744,7 +745,7 @@ class GetInstanceLogsPolicyResult(dict):
|
|
744
745
|
|
745
746
|
@property
|
746
747
|
@pulumi.getter(name="totalDiskRetention")
|
747
|
-
def total_disk_retention(self) -> int:
|
748
|
+
def total_disk_retention(self) -> builtins.int:
|
748
749
|
"""
|
749
750
|
The max disk size of remote logs to keep on the Database Instance.
|
750
751
|
"""
|
@@ -754,18 +755,18 @@ class GetInstanceLogsPolicyResult(dict):
|
|
754
755
|
@pulumi.output_type
|
755
756
|
class GetInstancePrivateIpResult(dict):
|
756
757
|
def __init__(__self__, *,
|
757
|
-
address: str,
|
758
|
-
id: str):
|
758
|
+
address: builtins.str,
|
759
|
+
id: builtins.str):
|
759
760
|
"""
|
760
|
-
:param str address: The private IPv4 address
|
761
|
-
:param str id: The ID of the Database Instance.
|
761
|
+
:param builtins.str address: The private IPv4 address
|
762
|
+
:param builtins.str id: The ID of the Database Instance.
|
762
763
|
"""
|
763
764
|
pulumi.set(__self__, "address", address)
|
764
765
|
pulumi.set(__self__, "id", id)
|
765
766
|
|
766
767
|
@property
|
767
768
|
@pulumi.getter
|
768
|
-
def address(self) -> str:
|
769
|
+
def address(self) -> builtins.str:
|
769
770
|
"""
|
770
771
|
The private IPv4 address
|
771
772
|
"""
|
@@ -773,7 +774,7 @@ class GetInstancePrivateIpResult(dict):
|
|
773
774
|
|
774
775
|
@property
|
775
776
|
@pulumi.getter
|
776
|
-
def id(self) -> str:
|
777
|
+
def id(self) -> builtins.str:
|
777
778
|
"""
|
778
779
|
The ID of the Database Instance.
|
779
780
|
"""
|
@@ -783,25 +784,25 @@ class GetInstancePrivateIpResult(dict):
|
|
783
784
|
@pulumi.output_type
|
784
785
|
class GetInstancePrivateNetworkResult(dict):
|
785
786
|
def __init__(__self__, *,
|
786
|
-
enable_ipam: bool,
|
787
|
-
endpoint_id: str,
|
788
|
-
hostname: str,
|
789
|
-
ip: str,
|
790
|
-
ip_net: str,
|
791
|
-
name: str,
|
792
|
-
pn_id: str,
|
793
|
-
port: int,
|
794
|
-
zone: str):
|
795
|
-
"""
|
796
|
-
:param bool enable_ipam: Whether or not the private network endpoint should be configured with IPAM
|
797
|
-
:param str endpoint_id: The endpoint ID
|
798
|
-
:param str hostname: The hostname of your endpoint
|
799
|
-
:param str ip: The IP of your Instance within the private service
|
800
|
-
:param str ip_net: The IP with the given mask within the private subnet
|
801
|
-
:param str name: The name of the RDB instance.
|
802
|
-
:param str pn_id: The private network ID
|
803
|
-
:param int port: The port of your private service
|
804
|
-
:param str zone: The zone you want to attach the resource to
|
787
|
+
enable_ipam: builtins.bool,
|
788
|
+
endpoint_id: builtins.str,
|
789
|
+
hostname: builtins.str,
|
790
|
+
ip: builtins.str,
|
791
|
+
ip_net: builtins.str,
|
792
|
+
name: builtins.str,
|
793
|
+
pn_id: builtins.str,
|
794
|
+
port: builtins.int,
|
795
|
+
zone: builtins.str):
|
796
|
+
"""
|
797
|
+
:param builtins.bool enable_ipam: Whether or not the private network endpoint should be configured with IPAM
|
798
|
+
:param builtins.str endpoint_id: The endpoint ID
|
799
|
+
:param builtins.str hostname: The hostname of your endpoint
|
800
|
+
:param builtins.str ip: The IP of your Instance within the private service
|
801
|
+
:param builtins.str ip_net: The IP with the given mask within the private subnet
|
802
|
+
:param builtins.str name: The name of the RDB instance.
|
803
|
+
:param builtins.str pn_id: The private network ID
|
804
|
+
:param builtins.int port: The port of your private service
|
805
|
+
:param builtins.str zone: The zone you want to attach the resource to
|
805
806
|
"""
|
806
807
|
pulumi.set(__self__, "enable_ipam", enable_ipam)
|
807
808
|
pulumi.set(__self__, "endpoint_id", endpoint_id)
|
@@ -815,7 +816,7 @@ class GetInstancePrivateNetworkResult(dict):
|
|
815
816
|
|
816
817
|
@property
|
817
818
|
@pulumi.getter(name="enableIpam")
|
818
|
-
def enable_ipam(self) -> bool:
|
819
|
+
def enable_ipam(self) -> builtins.bool:
|
819
820
|
"""
|
820
821
|
Whether or not the private network endpoint should be configured with IPAM
|
821
822
|
"""
|
@@ -823,7 +824,7 @@ class GetInstancePrivateNetworkResult(dict):
|
|
823
824
|
|
824
825
|
@property
|
825
826
|
@pulumi.getter(name="endpointId")
|
826
|
-
def endpoint_id(self) -> str:
|
827
|
+
def endpoint_id(self) -> builtins.str:
|
827
828
|
"""
|
828
829
|
The endpoint ID
|
829
830
|
"""
|
@@ -831,7 +832,7 @@ class GetInstancePrivateNetworkResult(dict):
|
|
831
832
|
|
832
833
|
@property
|
833
834
|
@pulumi.getter
|
834
|
-
def hostname(self) -> str:
|
835
|
+
def hostname(self) -> builtins.str:
|
835
836
|
"""
|
836
837
|
The hostname of your endpoint
|
837
838
|
"""
|
@@ -839,7 +840,7 @@ class GetInstancePrivateNetworkResult(dict):
|
|
839
840
|
|
840
841
|
@property
|
841
842
|
@pulumi.getter
|
842
|
-
def ip(self) -> str:
|
843
|
+
def ip(self) -> builtins.str:
|
843
844
|
"""
|
844
845
|
The IP of your Instance within the private service
|
845
846
|
"""
|
@@ -847,7 +848,7 @@ class GetInstancePrivateNetworkResult(dict):
|
|
847
848
|
|
848
849
|
@property
|
849
850
|
@pulumi.getter(name="ipNet")
|
850
|
-
def ip_net(self) -> str:
|
851
|
+
def ip_net(self) -> builtins.str:
|
851
852
|
"""
|
852
853
|
The IP with the given mask within the private subnet
|
853
854
|
"""
|
@@ -855,7 +856,7 @@ class GetInstancePrivateNetworkResult(dict):
|
|
855
856
|
|
856
857
|
@property
|
857
858
|
@pulumi.getter
|
858
|
-
def name(self) -> str:
|
859
|
+
def name(self) -> builtins.str:
|
859
860
|
"""
|
860
861
|
The name of the RDB instance.
|
861
862
|
"""
|
@@ -863,7 +864,7 @@ class GetInstancePrivateNetworkResult(dict):
|
|
863
864
|
|
864
865
|
@property
|
865
866
|
@pulumi.getter(name="pnId")
|
866
|
-
def pn_id(self) -> str:
|
867
|
+
def pn_id(self) -> builtins.str:
|
867
868
|
"""
|
868
869
|
The private network ID
|
869
870
|
"""
|
@@ -871,7 +872,7 @@ class GetInstancePrivateNetworkResult(dict):
|
|
871
872
|
|
872
873
|
@property
|
873
874
|
@pulumi.getter
|
874
|
-
def port(self) -> int:
|
875
|
+
def port(self) -> builtins.int:
|
875
876
|
"""
|
876
877
|
The port of your private service
|
877
878
|
"""
|
@@ -879,7 +880,7 @@ class GetInstancePrivateNetworkResult(dict):
|
|
879
880
|
|
880
881
|
@property
|
881
882
|
@pulumi.getter
|
882
|
-
def zone(self) -> str:
|
883
|
+
def zone(self) -> builtins.str:
|
883
884
|
"""
|
884
885
|
The zone you want to attach the resource to
|
885
886
|
"""
|
@@ -889,13 +890,13 @@ class GetInstancePrivateNetworkResult(dict):
|
|
889
890
|
@pulumi.output_type
|
890
891
|
class GetInstanceReadReplicaResult(dict):
|
891
892
|
def __init__(__self__, *,
|
892
|
-
ip: str,
|
893
|
-
name: str,
|
894
|
-
port: int):
|
893
|
+
ip: builtins.str,
|
894
|
+
name: builtins.str,
|
895
|
+
port: builtins.int):
|
895
896
|
"""
|
896
|
-
:param str ip: IP of the replica
|
897
|
-
:param str name: The name of the RDB instance.
|
898
|
-
:param int port: Port of the replica
|
897
|
+
:param builtins.str ip: IP of the replica
|
898
|
+
:param builtins.str name: The name of the RDB instance.
|
899
|
+
:param builtins.int port: Port of the replica
|
899
900
|
"""
|
900
901
|
pulumi.set(__self__, "ip", ip)
|
901
902
|
pulumi.set(__self__, "name", name)
|
@@ -903,7 +904,7 @@ class GetInstanceReadReplicaResult(dict):
|
|
903
904
|
|
904
905
|
@property
|
905
906
|
@pulumi.getter
|
906
|
-
def ip(self) -> str:
|
907
|
+
def ip(self) -> builtins.str:
|
907
908
|
"""
|
908
909
|
IP of the replica
|
909
910
|
"""
|
@@ -911,7 +912,7 @@ class GetInstanceReadReplicaResult(dict):
|
|
911
912
|
|
912
913
|
@property
|
913
914
|
@pulumi.getter
|
914
|
-
def name(self) -> str:
|
915
|
+
def name(self) -> builtins.str:
|
915
916
|
"""
|
916
917
|
The name of the RDB instance.
|
917
918
|
"""
|
@@ -919,7 +920,7 @@ class GetInstanceReadReplicaResult(dict):
|
|
919
920
|
|
920
921
|
@property
|
921
922
|
@pulumi.getter
|
922
|
-
def port(self) -> int:
|
923
|
+
def port(self) -> builtins.int:
|
923
924
|
"""
|
924
925
|
Port of the replica
|
925
926
|
"""
|