pulumiverse-scaleway 1.27.0a1744869119__py3-none-any.whl → 1.39.0a1764841480__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 +109 -2
- pulumiverse_scaleway/_inputs.py +3936 -2603
- pulumiverse_scaleway/_utilities.py +1 -1
- pulumiverse_scaleway/account/__init__.py +4 -1
- pulumiverse_scaleway/account/get_availability_zones.py +12 -12
- pulumiverse_scaleway/account/get_project.py +28 -28
- pulumiverse_scaleway/account/get_projects.py +241 -0
- pulumiverse_scaleway/account/get_ssh_key.py +34 -34
- pulumiverse_scaleway/account/outputs.py +95 -0
- pulumiverse_scaleway/account/project.py +72 -71
- pulumiverse_scaleway/account/ssh_key.py +107 -106
- pulumiverse_scaleway/account_project.py +72 -71
- pulumiverse_scaleway/account_ssh_key.py +107 -106
- pulumiverse_scaleway/apple_silicon_server.py +334 -201
- pulumiverse_scaleway/applesilicon/__init__.py +2 -1
- pulumiverse_scaleway/applesilicon/_inputs.py +105 -51
- pulumiverse_scaleway/applesilicon/outputs.py +65 -33
- pulumiverse_scaleway/applesilicon/server.py +334 -201
- pulumiverse_scaleway/audittrail/__init__.py +10 -0
- pulumiverse_scaleway/audittrail/get_event.py +410 -0
- pulumiverse_scaleway/audittrail/outputs.py +234 -0
- pulumiverse_scaleway/autoscaling/__init__.py +13 -0
- pulumiverse_scaleway/autoscaling/_inputs.py +558 -0
- pulumiverse_scaleway/autoscaling/instance_group.py +807 -0
- pulumiverse_scaleway/autoscaling/instance_policy.py +634 -0
- pulumiverse_scaleway/autoscaling/instance_template.py +878 -0
- pulumiverse_scaleway/autoscaling/outputs.py +438 -0
- pulumiverse_scaleway/baremetal_server.py +622 -524
- pulumiverse_scaleway/billing/__init__.py +2 -1
- pulumiverse_scaleway/billing/get_consumptions.py +19 -15
- pulumiverse_scaleway/billing/get_invoices.py +25 -25
- pulumiverse_scaleway/billing/outputs.py +96 -96
- pulumiverse_scaleway/block/__init__.py +4 -1
- pulumiverse_scaleway/block/_inputs.py +125 -0
- pulumiverse_scaleway/block/get_snapshot.py +60 -37
- pulumiverse_scaleway/block/get_volume.py +38 -38
- pulumiverse_scaleway/block/outputs.py +139 -0
- pulumiverse_scaleway/block/snapshot.py +272 -98
- pulumiverse_scaleway/block/volume.py +145 -144
- pulumiverse_scaleway/block_snapshot.py +272 -98
- pulumiverse_scaleway/block_volume.py +145 -144
- pulumiverse_scaleway/cockpit.py +71 -49
- pulumiverse_scaleway/cockpit_alert_manager.py +66 -65
- pulumiverse_scaleway/cockpit_grafana_user.py +72 -113
- pulumiverse_scaleway/cockpit_source.py +142 -141
- pulumiverse_scaleway/cockpit_token.py +84 -83
- pulumiverse_scaleway/config/__init__.py +2 -1
- pulumiverse_scaleway/config/__init__.pyi +2 -2
- pulumiverse_scaleway/config/vars.py +11 -11
- pulumiverse_scaleway/container.py +653 -424
- pulumiverse_scaleway/container_cron.py +97 -96
- pulumiverse_scaleway/container_domain.py +63 -62
- pulumiverse_scaleway/container_namespace.py +251 -172
- pulumiverse_scaleway/container_token.py +97 -96
- pulumiverse_scaleway/container_trigger.py +77 -76
- pulumiverse_scaleway/containers/__init__.py +2 -1
- pulumiverse_scaleway/containers/_inputs.py +87 -87
- pulumiverse_scaleway/containers/container.py +653 -424
- pulumiverse_scaleway/containers/cron.py +97 -96
- pulumiverse_scaleway/containers/domain.py +63 -62
- pulumiverse_scaleway/containers/get_container.py +117 -73
- pulumiverse_scaleway/containers/get_namespace.py +56 -45
- pulumiverse_scaleway/containers/namespace.py +251 -172
- pulumiverse_scaleway/containers/outputs.py +84 -84
- pulumiverse_scaleway/containers/token.py +97 -96
- pulumiverse_scaleway/containers/trigger.py +77 -76
- pulumiverse_scaleway/database.py +81 -80
- pulumiverse_scaleway/database_acl.py +148 -39
- pulumiverse_scaleway/database_backup.py +124 -123
- pulumiverse_scaleway/database_instance.py +531 -436
- pulumiverse_scaleway/database_privilege.py +88 -87
- pulumiverse_scaleway/database_read_replica.py +60 -59
- pulumiverse_scaleway/database_user.py +171 -98
- pulumiverse_scaleway/databases/__init__.py +2 -1
- pulumiverse_scaleway/databases/_inputs.py +364 -216
- pulumiverse_scaleway/databases/acl.py +148 -39
- pulumiverse_scaleway/databases/database.py +81 -80
- pulumiverse_scaleway/databases/database_backup.py +124 -123
- pulumiverse_scaleway/databases/get_acl.py +17 -17
- pulumiverse_scaleway/databases/get_database.py +26 -26
- pulumiverse_scaleway/databases/get_database_backup.py +46 -46
- pulumiverse_scaleway/databases/get_instance.py +95 -73
- pulumiverse_scaleway/databases/get_privilege.py +30 -30
- pulumiverse_scaleway/databases/instance.py +531 -436
- pulumiverse_scaleway/databases/outputs.py +419 -232
- pulumiverse_scaleway/databases/privilege.py +88 -87
- pulumiverse_scaleway/databases/read_replica.py +60 -59
- pulumiverse_scaleway/databases/serverless_database.py +97 -96
- pulumiverse_scaleway/databases/snapshot.py +127 -126
- pulumiverse_scaleway/databases/user.py +171 -98
- pulumiverse_scaleway/datawarehouse/__init__.py +13 -0
- pulumiverse_scaleway/datawarehouse/_inputs.py +149 -0
- pulumiverse_scaleway/datawarehouse/database.py +338 -0
- pulumiverse_scaleway/datawarehouse/deployment.py +821 -0
- pulumiverse_scaleway/datawarehouse/outputs.py +113 -0
- pulumiverse_scaleway/datawarehouse/user.py +451 -0
- pulumiverse_scaleway/domain/__init__.py +2 -1
- pulumiverse_scaleway/domain/_inputs.py +661 -661
- pulumiverse_scaleway/domain/get_record.py +53 -64
- pulumiverse_scaleway/domain/get_zone.py +36 -30
- pulumiverse_scaleway/domain/outputs.py +501 -501
- pulumiverse_scaleway/domain/record.py +156 -202
- pulumiverse_scaleway/domain/registration.py +123 -122
- pulumiverse_scaleway/domain/zone.py +108 -107
- pulumiverse_scaleway/domain_record.py +156 -202
- pulumiverse_scaleway/domain_zone.py +108 -107
- pulumiverse_scaleway/edge_services_backend_stage.py +61 -60
- pulumiverse_scaleway/edge_services_cache_stage.py +283 -111
- pulumiverse_scaleway/edge_services_dns_stage.py +169 -140
- pulumiverse_scaleway/edge_services_head_stage.py +37 -36
- pulumiverse_scaleway/edge_services_pipeline.py +125 -82
- pulumiverse_scaleway/edge_services_plan.py +37 -36
- pulumiverse_scaleway/edge_services_route_stage.py +75 -74
- pulumiverse_scaleway/edge_services_tls_stage.py +219 -124
- pulumiverse_scaleway/edge_services_waf_stage.py +106 -105
- pulumiverse_scaleway/elasticmetal/__init__.py +3 -1
- pulumiverse_scaleway/elasticmetal/_inputs.py +203 -129
- pulumiverse_scaleway/elasticmetal/get_ip.py +70 -54
- pulumiverse_scaleway/elasticmetal/get_ips.py +31 -31
- pulumiverse_scaleway/elasticmetal/get_offer.py +43 -41
- pulumiverse_scaleway/elasticmetal/get_option.py +24 -24
- pulumiverse_scaleway/elasticmetal/get_os.py +28 -28
- pulumiverse_scaleway/elasticmetal/get_partition_schema.py +215 -0
- pulumiverse_scaleway/elasticmetal/get_server.py +101 -68
- pulumiverse_scaleway/elasticmetal/ip.py +170 -169
- pulumiverse_scaleway/elasticmetal/ip_mac_address.py +107 -106
- pulumiverse_scaleway/elasticmetal/outputs.py +379 -287
- pulumiverse_scaleway/elasticmetal/server.py +622 -524
- pulumiverse_scaleway/file_filesystem.py +555 -0
- pulumiverse_scaleway/flexible_ip.py +170 -169
- pulumiverse_scaleway/flexible_ip_mac_address.py +107 -106
- pulumiverse_scaleway/function.py +457 -348
- pulumiverse_scaleway/function_cron.py +97 -96
- pulumiverse_scaleway/function_domain.py +63 -62
- pulumiverse_scaleway/function_namespace.py +234 -155
- pulumiverse_scaleway/function_token.py +97 -96
- pulumiverse_scaleway/function_trigger.py +77 -76
- pulumiverse_scaleway/functions/__init__.py +2 -1
- pulumiverse_scaleway/functions/_inputs.py +50 -50
- pulumiverse_scaleway/functions/cron.py +97 -96
- pulumiverse_scaleway/functions/domain.py +63 -62
- pulumiverse_scaleway/functions/function.py +457 -348
- pulumiverse_scaleway/functions/get_function.py +93 -71
- pulumiverse_scaleway/functions/get_namespace.py +54 -43
- pulumiverse_scaleway/functions/namespace.py +234 -155
- pulumiverse_scaleway/functions/outputs.py +34 -34
- pulumiverse_scaleway/functions/token.py +97 -96
- pulumiverse_scaleway/functions/trigger.py +77 -76
- pulumiverse_scaleway/get_account_project.py +28 -28
- pulumiverse_scaleway/get_account_ssh_key.py +34 -34
- pulumiverse_scaleway/get_availability_zones.py +12 -12
- pulumiverse_scaleway/get_baremetal_offer.py +43 -41
- pulumiverse_scaleway/get_baremetal_option.py +24 -24
- pulumiverse_scaleway/get_baremetal_os.py +28 -28
- pulumiverse_scaleway/get_baremetal_server.py +101 -68
- pulumiverse_scaleway/get_billing_consumptions.py +19 -15
- pulumiverse_scaleway/get_billing_invoices.py +25 -25
- pulumiverse_scaleway/get_block_snapshot.py +60 -37
- pulumiverse_scaleway/get_block_volume.py +38 -38
- pulumiverse_scaleway/get_cockpit.py +16 -16
- pulumiverse_scaleway/get_cockpit_source.py +88 -45
- pulumiverse_scaleway/get_config.py +24 -24
- pulumiverse_scaleway/get_container.py +117 -73
- pulumiverse_scaleway/get_container_namespace.py +56 -45
- pulumiverse_scaleway/get_database.py +26 -26
- pulumiverse_scaleway/get_database_acl.py +17 -17
- pulumiverse_scaleway/get_database_backup.py +46 -46
- pulumiverse_scaleway/get_database_instance.py +95 -73
- pulumiverse_scaleway/get_database_privilege.py +30 -30
- pulumiverse_scaleway/get_domain_record.py +53 -64
- pulumiverse_scaleway/get_domain_zone.py +36 -30
- pulumiverse_scaleway/get_flexible_ip.py +70 -54
- pulumiverse_scaleway/get_flexible_ips.py +31 -31
- pulumiverse_scaleway/get_function.py +93 -71
- pulumiverse_scaleway/get_function_namespace.py +54 -43
- pulumiverse_scaleway/get_iam_api_key.py +28 -28
- pulumiverse_scaleway/get_iam_application.py +32 -32
- pulumiverse_scaleway/get_iam_group.py +36 -36
- pulumiverse_scaleway/get_iam_ssh_key.py +34 -34
- pulumiverse_scaleway/get_iam_user.py +30 -30
- pulumiverse_scaleway/get_instance_image.py +58 -58
- pulumiverse_scaleway/get_instance_ip.py +42 -30
- pulumiverse_scaleway/get_instance_placement_group.py +38 -38
- pulumiverse_scaleway/get_instance_private_nic.py +53 -41
- pulumiverse_scaleway/get_instance_security_group.py +46 -46
- pulumiverse_scaleway/get_instance_server.py +108 -145
- pulumiverse_scaleway/get_instance_servers.py +31 -31
- pulumiverse_scaleway/get_instance_snapshot.py +41 -41
- pulumiverse_scaleway/get_instance_volume.py +42 -42
- pulumiverse_scaleway/get_iot_device.py +46 -46
- pulumiverse_scaleway/get_iot_hub.py +60 -60
- pulumiverse_scaleway/get_ipam_ip.py +65 -65
- pulumiverse_scaleway/get_ipam_ips.py +56 -56
- pulumiverse_scaleway/get_k8s_version.py +34 -23
- pulumiverse_scaleway/get_kubernetes_cluster.py +98 -65
- pulumiverse_scaleway/get_kubernetes_node_pool.py +86 -75
- pulumiverse_scaleway/get_lb_acls.py +29 -29
- pulumiverse_scaleway/get_lb_backend.py +75 -75
- pulumiverse_scaleway/get_lb_backends.py +29 -29
- pulumiverse_scaleway/get_lb_frontend.py +76 -43
- pulumiverse_scaleway/get_lb_frontends.py +29 -29
- pulumiverse_scaleway/get_lb_ips.py +37 -37
- pulumiverse_scaleway/get_lb_route.py +36 -25
- pulumiverse_scaleway/get_lb_routes.py +23 -23
- pulumiverse_scaleway/get_lbs.py +31 -31
- pulumiverse_scaleway/get_loadbalancer.py +78 -56
- pulumiverse_scaleway/get_loadbalancer_certificate.py +96 -36
- pulumiverse_scaleway/get_loadbalancer_ip.py +40 -40
- pulumiverse_scaleway/get_marketplace_image.py +28 -28
- pulumiverse_scaleway/get_mnq_sns.py +18 -18
- pulumiverse_scaleway/get_mnq_sqs.py +18 -18
- pulumiverse_scaleway/get_mongo_db_instance.py +110 -55
- pulumiverse_scaleway/get_object_bucket.py +35 -35
- pulumiverse_scaleway/get_object_bucket_policy.py +22 -22
- pulumiverse_scaleway/get_redis_cluster.py +65 -54
- pulumiverse_scaleway/get_registry_image.py +48 -48
- pulumiverse_scaleway/get_registry_image_tag.py +44 -44
- pulumiverse_scaleway/get_registry_namespace.py +36 -36
- pulumiverse_scaleway/get_secret.py +58 -58
- pulumiverse_scaleway/get_secret_version.py +46 -46
- pulumiverse_scaleway/get_tem_domain.py +103 -70
- pulumiverse_scaleway/get_vpc.py +58 -47
- pulumiverse_scaleway/get_vpc_gateway_network.py +55 -44
- pulumiverse_scaleway/get_vpc_private_network.py +58 -47
- pulumiverse_scaleway/get_vpc_public_gateway.py +56 -56
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp.py +44 -44
- pulumiverse_scaleway/get_vpc_public_gateway_dhcp_reservation.py +44 -44
- pulumiverse_scaleway/get_vpc_public_gateway_ip.py +24 -24
- pulumiverse_scaleway/get_vpc_public_pat_rule.py +32 -32
- pulumiverse_scaleway/get_vpc_routes.py +47 -47
- pulumiverse_scaleway/get_vpcs.py +31 -31
- pulumiverse_scaleway/get_web_host_offer.py +34 -34
- pulumiverse_scaleway/get_webhosting.py +58 -58
- pulumiverse_scaleway/hosting/__init__.py +2 -1
- pulumiverse_scaleway/hosting/_inputs.py +117 -75
- pulumiverse_scaleway/hosting/get_hosting.py +58 -58
- pulumiverse_scaleway/hosting/get_offer.py +34 -34
- pulumiverse_scaleway/hosting/hosting.py +213 -212
- pulumiverse_scaleway/hosting/outputs.py +276 -192
- pulumiverse_scaleway/iam/__init__.py +3 -1
- pulumiverse_scaleway/iam/_inputs.py +26 -26
- pulumiverse_scaleway/iam/api_key.py +142 -141
- pulumiverse_scaleway/iam/application.py +98 -97
- pulumiverse_scaleway/iam/get_api_key.py +28 -28
- pulumiverse_scaleway/iam/get_application.py +32 -32
- pulumiverse_scaleway/iam/get_group.py +36 -36
- pulumiverse_scaleway/iam/get_policy.py +293 -0
- pulumiverse_scaleway/iam/get_ssh_key.py +34 -34
- pulumiverse_scaleway/iam/get_user.py +30 -30
- pulumiverse_scaleway/iam/group.py +140 -139
- pulumiverse_scaleway/iam/group_membership.py +54 -53
- pulumiverse_scaleway/iam/outputs.py +70 -18
- pulumiverse_scaleway/iam/policy.py +169 -168
- pulumiverse_scaleway/iam/ssh_key.py +107 -106
- pulumiverse_scaleway/iam/user.py +598 -134
- pulumiverse_scaleway/iam_api_key.py +142 -141
- pulumiverse_scaleway/iam_application.py +98 -97
- pulumiverse_scaleway/iam_group.py +140 -139
- pulumiverse_scaleway/iam_group_membership.py +54 -53
- pulumiverse_scaleway/iam_policy.py +169 -168
- pulumiverse_scaleway/iam_ssh_key.py +107 -106
- pulumiverse_scaleway/iam_user.py +598 -134
- pulumiverse_scaleway/inference/__init__.py +4 -1
- pulumiverse_scaleway/inference/_inputs.py +232 -50
- pulumiverse_scaleway/inference/deployment.py +319 -220
- pulumiverse_scaleway/inference/get_model.py +299 -0
- pulumiverse_scaleway/inference/model.py +684 -0
- pulumiverse_scaleway/inference/outputs.py +250 -34
- pulumiverse_scaleway/inference_deployment.py +319 -220
- pulumiverse_scaleway/instance/__init__.py +3 -1
- pulumiverse_scaleway/instance/_inputs.py +650 -437
- pulumiverse_scaleway/instance/get_image.py +58 -58
- pulumiverse_scaleway/instance/get_ip.py +42 -30
- pulumiverse_scaleway/instance/get_placement_group.py +38 -38
- pulumiverse_scaleway/instance/get_private_nic.py +53 -41
- pulumiverse_scaleway/instance/get_security_group.py +46 -46
- pulumiverse_scaleway/instance/get_server.py +108 -145
- pulumiverse_scaleway/instance/get_server_type.py +271 -0
- pulumiverse_scaleway/instance/get_servers.py +31 -31
- pulumiverse_scaleway/instance/get_snapshot.py +41 -41
- pulumiverse_scaleway/instance/get_volume.py +42 -42
- pulumiverse_scaleway/instance/image.py +260 -205
- pulumiverse_scaleway/instance/ip.py +116 -115
- pulumiverse_scaleway/instance/ip_reverse_dns.py +54 -53
- pulumiverse_scaleway/instance/outputs.py +981 -548
- pulumiverse_scaleway/instance/placement_group.py +123 -122
- pulumiverse_scaleway/instance/private_nic.py +163 -113
- pulumiverse_scaleway/instance/security_group.py +188 -187
- pulumiverse_scaleway/instance/security_group_rules.py +42 -41
- pulumiverse_scaleway/instance/server.py +590 -562
- pulumiverse_scaleway/instance/snapshot.py +150 -157
- pulumiverse_scaleway/instance/user_data.py +75 -74
- pulumiverse_scaleway/instance/volume.py +174 -159
- pulumiverse_scaleway/instance_image.py +260 -205
- pulumiverse_scaleway/instance_ip.py +116 -115
- pulumiverse_scaleway/instance_ip_reverse_dns.py +54 -53
- pulumiverse_scaleway/instance_placement_group.py +123 -122
- pulumiverse_scaleway/instance_private_nic.py +163 -113
- pulumiverse_scaleway/instance_security_group.py +188 -187
- pulumiverse_scaleway/instance_security_group_rules.py +42 -41
- pulumiverse_scaleway/instance_server.py +590 -562
- pulumiverse_scaleway/instance_snapshot.py +150 -157
- pulumiverse_scaleway/instance_user_data.py +75 -74
- pulumiverse_scaleway/instance_volume.py +174 -159
- pulumiverse_scaleway/iot/__init__.py +2 -1
- pulumiverse_scaleway/iot/_inputs.py +119 -119
- pulumiverse_scaleway/iot/device.py +156 -193
- pulumiverse_scaleway/iot/get_device.py +46 -46
- pulumiverse_scaleway/iot/get_hub.py +60 -60
- pulumiverse_scaleway/iot/hub.py +259 -258
- pulumiverse_scaleway/iot/network.py +115 -114
- pulumiverse_scaleway/iot/outputs.py +107 -107
- pulumiverse_scaleway/iot/route.py +109 -108
- pulumiverse_scaleway/iot_device.py +156 -193
- pulumiverse_scaleway/iot_hub.py +259 -258
- pulumiverse_scaleway/iot_network.py +115 -114
- pulumiverse_scaleway/iot_route.py +109 -108
- pulumiverse_scaleway/ipam/__init__.py +2 -1
- pulumiverse_scaleway/ipam/_inputs.py +108 -108
- pulumiverse_scaleway/ipam/get_ip.py +65 -65
- pulumiverse_scaleway/ipam/get_ips.py +56 -56
- pulumiverse_scaleway/ipam/ip.py +160 -131
- pulumiverse_scaleway/ipam/ip_reverse_dns.py +141 -70
- pulumiverse_scaleway/ipam/outputs.py +122 -122
- pulumiverse_scaleway/ipam_ip.py +160 -131
- pulumiverse_scaleway/ipam_ip_reverse_dns.py +141 -70
- pulumiverse_scaleway/job/__init__.py +2 -1
- pulumiverse_scaleway/job/_inputs.py +127 -14
- pulumiverse_scaleway/job/definition.py +283 -175
- pulumiverse_scaleway/job/outputs.py +98 -10
- pulumiverse_scaleway/job_definition.py +283 -175
- pulumiverse_scaleway/key_manager_key.py +939 -0
- pulumiverse_scaleway/kubernetes/__init__.py +3 -1
- pulumiverse_scaleway/kubernetes/_inputs.py +388 -185
- pulumiverse_scaleway/kubernetes/acl.py +447 -0
- pulumiverse_scaleway/kubernetes/cluster.py +594 -307
- pulumiverse_scaleway/kubernetes/get_cluster.py +98 -65
- pulumiverse_scaleway/kubernetes/get_pool.py +86 -75
- pulumiverse_scaleway/kubernetes/get_version.py +34 -23
- pulumiverse_scaleway/kubernetes/outputs.py +444 -250
- pulumiverse_scaleway/kubernetes/pool.py +427 -365
- pulumiverse_scaleway/kubernetes_cluster.py +594 -307
- pulumiverse_scaleway/kubernetes_node_pool.py +427 -365
- pulumiverse_scaleway/loadbalancer.py +329 -246
- pulumiverse_scaleway/loadbalancer_acl.py +102 -101
- pulumiverse_scaleway/loadbalancer_backend.py +534 -487
- pulumiverse_scaleway/loadbalancer_certificate.py +97 -96
- pulumiverse_scaleway/loadbalancer_frontend.py +271 -167
- pulumiverse_scaleway/loadbalancer_ip.py +124 -123
- pulumiverse_scaleway/loadbalancer_route.py +244 -119
- pulumiverse_scaleway/loadbalancers/__init__.py +3 -1
- pulumiverse_scaleway/loadbalancers/_inputs.py +367 -273
- pulumiverse_scaleway/loadbalancers/acl.py +102 -101
- pulumiverse_scaleway/loadbalancers/backend.py +534 -487
- pulumiverse_scaleway/loadbalancers/certificate.py +97 -96
- pulumiverse_scaleway/loadbalancers/frontend.py +271 -167
- pulumiverse_scaleway/loadbalancers/get_acls.py +29 -29
- pulumiverse_scaleway/loadbalancers/get_backend.py +75 -75
- pulumiverse_scaleway/loadbalancers/get_backends.py +29 -29
- pulumiverse_scaleway/loadbalancers/get_certificate.py +96 -36
- pulumiverse_scaleway/loadbalancers/get_frontend.py +76 -43
- pulumiverse_scaleway/loadbalancers/get_frontends.py +29 -29
- pulumiverse_scaleway/loadbalancers/get_ip.py +40 -40
- pulumiverse_scaleway/loadbalancers/get_ips.py +37 -37
- pulumiverse_scaleway/loadbalancers/get_load_balancer.py +78 -56
- pulumiverse_scaleway/loadbalancers/get_load_balancers.py +31 -31
- pulumiverse_scaleway/loadbalancers/get_route.py +36 -25
- pulumiverse_scaleway/loadbalancers/get_routes.py +23 -23
- pulumiverse_scaleway/loadbalancers/ip.py +124 -123
- pulumiverse_scaleway/loadbalancers/load_balancer.py +329 -246
- pulumiverse_scaleway/loadbalancers/outputs.py +870 -716
- pulumiverse_scaleway/loadbalancers/private_network.py +505 -0
- pulumiverse_scaleway/loadbalancers/route.py +244 -119
- pulumiverse_scaleway/mnq/__init__.py +2 -1
- pulumiverse_scaleway/mnq/_inputs.py +90 -38
- pulumiverse_scaleway/mnq/get_sns.py +18 -18
- pulumiverse_scaleway/mnq/get_sqs.py +18 -18
- pulumiverse_scaleway/mnq/nats_account.py +63 -62
- pulumiverse_scaleway/mnq/nats_credentials.py +63 -62
- pulumiverse_scaleway/mnq/outputs.py +73 -26
- pulumiverse_scaleway/mnq/sns.py +46 -45
- pulumiverse_scaleway/mnq/sns_credentials.py +82 -81
- pulumiverse_scaleway/mnq/sns_topic.py +174 -173
- pulumiverse_scaleway/mnq/sns_topic_subscription.py +182 -181
- pulumiverse_scaleway/mnq/sqs.py +46 -45
- pulumiverse_scaleway/mnq/sqs_credentials.py +82 -81
- pulumiverse_scaleway/mnq/sqs_queue.py +392 -232
- pulumiverse_scaleway/mnq_nats_account.py +63 -62
- pulumiverse_scaleway/mnq_nats_credentials.py +63 -62
- pulumiverse_scaleway/mnq_sns.py +46 -45
- pulumiverse_scaleway/mnq_sns_credentials.py +82 -81
- pulumiverse_scaleway/mnq_sns_topic.py +174 -173
- pulumiverse_scaleway/mnq_sns_topic_subscription.py +182 -181
- pulumiverse_scaleway/mnq_sqs.py +46 -45
- pulumiverse_scaleway/mnq_sqs_credentials.py +82 -81
- pulumiverse_scaleway/mnq_sqs_queue.py +392 -232
- pulumiverse_scaleway/mongo_db_instance.py +569 -268
- pulumiverse_scaleway/mongo_db_snapshot.py +127 -126
- pulumiverse_scaleway/mongodb/__init__.py +3 -1
- pulumiverse_scaleway/mongodb/_inputs.py +178 -51
- pulumiverse_scaleway/mongodb/get_instance.py +110 -55
- pulumiverse_scaleway/mongodb/instance.py +569 -268
- pulumiverse_scaleway/mongodb/outputs.py +192 -68
- pulumiverse_scaleway/mongodb/snapshot.py +127 -126
- pulumiverse_scaleway/mongodb/user.py +507 -0
- pulumiverse_scaleway/network/__init__.py +2 -1
- pulumiverse_scaleway/network/_inputs.py +209 -155
- pulumiverse_scaleway/network/acl.py +100 -101
- pulumiverse_scaleway/network/gateway_network.py +228 -180
- pulumiverse_scaleway/network/get_gateway_network.py +55 -44
- pulumiverse_scaleway/network/get_private_network.py +58 -47
- pulumiverse_scaleway/network/get_public_gateway.py +56 -56
- pulumiverse_scaleway/network/get_public_gateway_dhcp.py +44 -44
- pulumiverse_scaleway/network/get_public_gateway_dhcp_reservation.py +44 -44
- pulumiverse_scaleway/network/get_public_gateway_ip.py +24 -24
- pulumiverse_scaleway/network/get_public_gateway_pat_rule.py +32 -32
- pulumiverse_scaleway/network/get_routes.py +47 -47
- pulumiverse_scaleway/network/get_vpc.py +58 -47
- pulumiverse_scaleway/network/get_vpcs.py +31 -31
- pulumiverse_scaleway/network/outputs.py +338 -270
- pulumiverse_scaleway/network/private_network.py +203 -155
- pulumiverse_scaleway/network/public_gateway.py +261 -260
- pulumiverse_scaleway/network/public_gateway_dhcp.py +285 -284
- pulumiverse_scaleway/network/public_gateway_dhcp_reservation.py +107 -106
- pulumiverse_scaleway/network/public_gateway_ip.py +107 -106
- pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py +54 -53
- pulumiverse_scaleway/network/public_gateway_pat_rule.py +132 -131
- pulumiverse_scaleway/network/route.py +230 -141
- pulumiverse_scaleway/network/vpc.py +172 -124
- pulumiverse_scaleway/object/__init__.py +3 -1
- pulumiverse_scaleway/object/_inputs.py +202 -166
- pulumiverse_scaleway/object/bucket.py +162 -148
- pulumiverse_scaleway/object/bucket_acl.py +97 -94
- pulumiverse_scaleway/object/bucket_lock_configuration.py +57 -56
- pulumiverse_scaleway/object/bucket_policy.py +71 -134
- pulumiverse_scaleway/object/bucket_website_configuration.py +104 -85
- pulumiverse_scaleway/object/get.py +290 -0
- pulumiverse_scaleway/object/get_bucket.py +35 -35
- pulumiverse_scaleway/object/get_bucket_policy.py +22 -22
- pulumiverse_scaleway/object/item.py +301 -223
- pulumiverse_scaleway/object/outputs.py +210 -166
- pulumiverse_scaleway/object_bucket.py +162 -148
- pulumiverse_scaleway/object_bucket_acl.py +97 -94
- pulumiverse_scaleway/object_bucket_lock_configuration.py +57 -56
- pulumiverse_scaleway/object_bucket_policy.py +71 -134
- pulumiverse_scaleway/object_bucket_website_configuration.py +104 -85
- pulumiverse_scaleway/object_item.py +301 -223
- pulumiverse_scaleway/observability/__init__.py +4 -2
- pulumiverse_scaleway/observability/_inputs.py +106 -106
- pulumiverse_scaleway/observability/alert_manager.py +66 -65
- pulumiverse_scaleway/observability/cockpit.py +71 -49
- pulumiverse_scaleway/observability/get_grafana.py +103 -0
- pulumiverse_scaleway/observability/get_instance.py +16 -16
- pulumiverse_scaleway/observability/get_source.py +88 -45
- pulumiverse_scaleway/observability/get_sources.py +375 -0
- pulumiverse_scaleway/observability/grafana_user.py +72 -113
- pulumiverse_scaleway/observability/outputs.py +241 -101
- pulumiverse_scaleway/observability/source.py +142 -141
- pulumiverse_scaleway/observability/token.py +84 -83
- pulumiverse_scaleway/outputs.py +5235 -3665
- pulumiverse_scaleway/provider.py +107 -82
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/rdb_snapshot.py +127 -126
- pulumiverse_scaleway/redis/__init__.py +2 -1
- pulumiverse_scaleway/redis/_inputs.py +163 -69
- pulumiverse_scaleway/redis/cluster.py +273 -225
- pulumiverse_scaleway/redis/get_cluster.py +65 -54
- pulumiverse_scaleway/redis/outputs.py +199 -87
- pulumiverse_scaleway/redis_cluster.py +273 -225
- pulumiverse_scaleway/registry/__init__.py +2 -1
- pulumiverse_scaleway/registry/get_image.py +48 -48
- pulumiverse_scaleway/registry/get_image_tag.py +44 -44
- pulumiverse_scaleway/registry/get_namespace.py +36 -36
- pulumiverse_scaleway/registry/namespace.py +106 -105
- pulumiverse_scaleway/registry_namespace.py +106 -105
- pulumiverse_scaleway/sdb_database.py +97 -96
- pulumiverse_scaleway/secret.py +188 -179
- pulumiverse_scaleway/secret_version.py +107 -106
- pulumiverse_scaleway/secrets/__init__.py +2 -1
- pulumiverse_scaleway/secrets/_inputs.py +63 -63
- pulumiverse_scaleway/secrets/get_secret.py +58 -58
- pulumiverse_scaleway/secrets/get_version.py +46 -46
- pulumiverse_scaleway/secrets/outputs.py +84 -84
- pulumiverse_scaleway/secrets/secret.py +188 -179
- pulumiverse_scaleway/secrets/version.py +107 -106
- pulumiverse_scaleway/tem/__init__.py +2 -1
- pulumiverse_scaleway/tem/_inputs.py +33 -33
- pulumiverse_scaleway/tem/blocked_list.py +105 -104
- pulumiverse_scaleway/tem/domain.py +384 -257
- pulumiverse_scaleway/tem/domain_validation.py +63 -62
- pulumiverse_scaleway/tem/get_domain.py +103 -70
- pulumiverse_scaleway/tem/get_offer_subscription.py +34 -34
- pulumiverse_scaleway/tem/outputs.py +44 -44
- pulumiverse_scaleway/tem/webhook.py +132 -131
- pulumiverse_scaleway/tem_domain.py +384 -257
- pulumiverse_scaleway/tem_domain_validation.py +63 -62
- pulumiverse_scaleway/tem_webhook.py +132 -131
- pulumiverse_scaleway/vpc.py +172 -124
- pulumiverse_scaleway/vpc_gateway_network.py +228 -180
- pulumiverse_scaleway/vpc_private_network.py +203 -155
- pulumiverse_scaleway/vpc_public_gateway.py +261 -260
- pulumiverse_scaleway/vpc_public_gateway_dhcp.py +285 -284
- pulumiverse_scaleway/vpc_public_gateway_dhcp_reservation.py +107 -106
- pulumiverse_scaleway/vpc_public_gateway_ip.py +107 -106
- pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py +54 -53
- pulumiverse_scaleway/vpc_public_gateway_pat_rule.py +132 -131
- pulumiverse_scaleway/vpc_route.py +230 -141
- pulumiverse_scaleway/webhosting.py +213 -212
- {pulumiverse_scaleway-1.27.0a1744869119.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/METADATA +2 -2
- pulumiverse_scaleway-1.39.0a1764841480.dist-info/RECORD +513 -0
- {pulumiverse_scaleway-1.27.0a1744869119.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/WHEEL +1 -1
- pulumiverse_scaleway/get_cockpit_plan.py +0 -129
- pulumiverse_scaleway/observability/get_plan.py +0 -125
- pulumiverse_scaleway-1.27.0a1744869119.dist-info/RECORD +0 -483
- {pulumiverse_scaleway-1.27.0a1744869119.dist-info → pulumiverse_scaleway-1.39.0a1764841480.dist-info}/top_level.txt +0 -0
|
@@ -1,8 +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
|
|
5
|
+
import builtins as _builtins
|
|
6
6
|
import warnings
|
|
7
7
|
import sys
|
|
8
8
|
import pulumi
|
|
@@ -18,41 +18,45 @@ __all__ = [
|
|
|
18
18
|
'AclAclRule',
|
|
19
19
|
'InstanceLoadBalancer',
|
|
20
20
|
'InstanceLogsPolicy',
|
|
21
|
+
'InstancePrivateIp',
|
|
21
22
|
'InstancePrivateNetwork',
|
|
22
23
|
'InstanceReadReplica',
|
|
24
|
+
'InstanceUpgradableVersion',
|
|
23
25
|
'ReadReplicaDirectAccess',
|
|
24
26
|
'ReadReplicaPrivateNetwork',
|
|
25
27
|
'GetAclAclRuleResult',
|
|
26
28
|
'GetInstanceLoadBalancerResult',
|
|
27
29
|
'GetInstanceLogsPolicyResult',
|
|
30
|
+
'GetInstancePrivateIpResult',
|
|
28
31
|
'GetInstancePrivateNetworkResult',
|
|
29
32
|
'GetInstanceReadReplicaResult',
|
|
33
|
+
'GetInstanceUpgradableVersionResult',
|
|
30
34
|
]
|
|
31
35
|
|
|
32
36
|
@pulumi.output_type
|
|
33
37
|
class AclAclRule(dict):
|
|
34
38
|
def __init__(__self__, *,
|
|
35
|
-
ip: str,
|
|
36
|
-
description: Optional[str] = None):
|
|
39
|
+
ip: _builtins.str,
|
|
40
|
+
description: Optional[_builtins.str] = None):
|
|
37
41
|
"""
|
|
38
|
-
:param str ip: The IP range to whitelist in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation)
|
|
39
|
-
:param str description: A text describing this rule. Default description: `IP allowed`
|
|
42
|
+
:param _builtins.str ip: The IP range to whitelist in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation)
|
|
43
|
+
:param _builtins.str description: A text describing this rule. Default description: `IP allowed`
|
|
40
44
|
"""
|
|
41
45
|
pulumi.set(__self__, "ip", ip)
|
|
42
46
|
if description is not None:
|
|
43
47
|
pulumi.set(__self__, "description", description)
|
|
44
48
|
|
|
45
|
-
@property
|
|
49
|
+
@_builtins.property
|
|
46
50
|
@pulumi.getter
|
|
47
|
-
def ip(self) -> str:
|
|
51
|
+
def ip(self) -> _builtins.str:
|
|
48
52
|
"""
|
|
49
53
|
The IP range to whitelist in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation)
|
|
50
54
|
"""
|
|
51
55
|
return pulumi.get(self, "ip")
|
|
52
56
|
|
|
53
|
-
@property
|
|
57
|
+
@_builtins.property
|
|
54
58
|
@pulumi.getter
|
|
55
|
-
def description(self) -> Optional[str]:
|
|
59
|
+
def description(self) -> Optional[_builtins.str]:
|
|
56
60
|
"""
|
|
57
61
|
A text describing this rule. Default description: `IP allowed`
|
|
58
62
|
"""
|
|
@@ -79,17 +83,17 @@ class InstanceLoadBalancer(dict):
|
|
|
79
83
|
return super().get(key, default)
|
|
80
84
|
|
|
81
85
|
def __init__(__self__, *,
|
|
82
|
-
endpoint_id: Optional[str] = None,
|
|
83
|
-
hostname: Optional[str] = None,
|
|
84
|
-
ip: Optional[str] = None,
|
|
85
|
-
name: Optional[str] = None,
|
|
86
|
-
port: Optional[int] = None):
|
|
87
|
-
"""
|
|
88
|
-
:param str endpoint_id: The ID of the endpoint.
|
|
89
|
-
:param str hostname: Hostname of the endpoint.
|
|
90
|
-
:param str ip: IPv4 address on the network.
|
|
91
|
-
:param str name: The name of the Database Instance.
|
|
92
|
-
:param int port: Port in the Private Network.
|
|
86
|
+
endpoint_id: Optional[_builtins.str] = None,
|
|
87
|
+
hostname: Optional[_builtins.str] = None,
|
|
88
|
+
ip: Optional[_builtins.str] = None,
|
|
89
|
+
name: Optional[_builtins.str] = None,
|
|
90
|
+
port: Optional[_builtins.int] = None):
|
|
91
|
+
"""
|
|
92
|
+
:param _builtins.str endpoint_id: The ID of the endpoint.
|
|
93
|
+
:param _builtins.str hostname: Hostname of the endpoint.
|
|
94
|
+
:param _builtins.str ip: IPv4 address on the network.
|
|
95
|
+
:param _builtins.str name: The name of the Database Instance.
|
|
96
|
+
:param _builtins.int port: Port in the Private Network.
|
|
93
97
|
"""
|
|
94
98
|
if endpoint_id is not None:
|
|
95
99
|
pulumi.set(__self__, "endpoint_id", endpoint_id)
|
|
@@ -102,41 +106,41 @@ class InstanceLoadBalancer(dict):
|
|
|
102
106
|
if port is not None:
|
|
103
107
|
pulumi.set(__self__, "port", port)
|
|
104
108
|
|
|
105
|
-
@property
|
|
109
|
+
@_builtins.property
|
|
106
110
|
@pulumi.getter(name="endpointId")
|
|
107
|
-
def endpoint_id(self) -> Optional[str]:
|
|
111
|
+
def endpoint_id(self) -> Optional[_builtins.str]:
|
|
108
112
|
"""
|
|
109
113
|
The ID of the endpoint.
|
|
110
114
|
"""
|
|
111
115
|
return pulumi.get(self, "endpoint_id")
|
|
112
116
|
|
|
113
|
-
@property
|
|
117
|
+
@_builtins.property
|
|
114
118
|
@pulumi.getter
|
|
115
|
-
def hostname(self) -> Optional[str]:
|
|
119
|
+
def hostname(self) -> Optional[_builtins.str]:
|
|
116
120
|
"""
|
|
117
121
|
Hostname of the endpoint.
|
|
118
122
|
"""
|
|
119
123
|
return pulumi.get(self, "hostname")
|
|
120
124
|
|
|
121
|
-
@property
|
|
125
|
+
@_builtins.property
|
|
122
126
|
@pulumi.getter
|
|
123
|
-
def ip(self) -> Optional[str]:
|
|
127
|
+
def ip(self) -> Optional[_builtins.str]:
|
|
124
128
|
"""
|
|
125
129
|
IPv4 address on the network.
|
|
126
130
|
"""
|
|
127
131
|
return pulumi.get(self, "ip")
|
|
128
132
|
|
|
129
|
-
@property
|
|
133
|
+
@_builtins.property
|
|
130
134
|
@pulumi.getter
|
|
131
|
-
def name(self) -> Optional[str]:
|
|
135
|
+
def name(self) -> Optional[_builtins.str]:
|
|
132
136
|
"""
|
|
133
137
|
The name of the Database Instance.
|
|
134
138
|
"""
|
|
135
139
|
return pulumi.get(self, "name")
|
|
136
140
|
|
|
137
|
-
@property
|
|
141
|
+
@_builtins.property
|
|
138
142
|
@pulumi.getter
|
|
139
|
-
def port(self) -> Optional[int]:
|
|
143
|
+
def port(self) -> Optional[_builtins.int]:
|
|
140
144
|
"""
|
|
141
145
|
Port in the Private Network.
|
|
142
146
|
"""
|
|
@@ -165,34 +169,65 @@ class InstanceLogsPolicy(dict):
|
|
|
165
169
|
return super().get(key, default)
|
|
166
170
|
|
|
167
171
|
def __init__(__self__, *,
|
|
168
|
-
max_age_retention: Optional[int] = None,
|
|
169
|
-
total_disk_retention: Optional[int] = None):
|
|
172
|
+
max_age_retention: Optional[_builtins.int] = None,
|
|
173
|
+
total_disk_retention: Optional[_builtins.int] = None):
|
|
170
174
|
"""
|
|
171
|
-
:param int max_age_retention: The max age (in days) of remote logs to keep on the Database Instance
|
|
172
|
-
:param int total_disk_retention: The max disk size of remote logs to keep on the Database Instance.
|
|
175
|
+
:param _builtins.int max_age_retention: The max age (in days) of remote logs to keep on the Database Instance
|
|
176
|
+
:param _builtins.int total_disk_retention: The max disk size of remote logs to keep on the Database Instance.
|
|
173
177
|
"""
|
|
174
178
|
if max_age_retention is not None:
|
|
175
179
|
pulumi.set(__self__, "max_age_retention", max_age_retention)
|
|
176
180
|
if total_disk_retention is not None:
|
|
177
181
|
pulumi.set(__self__, "total_disk_retention", total_disk_retention)
|
|
178
182
|
|
|
179
|
-
@property
|
|
183
|
+
@_builtins.property
|
|
180
184
|
@pulumi.getter(name="maxAgeRetention")
|
|
181
|
-
def max_age_retention(self) -> Optional[int]:
|
|
185
|
+
def max_age_retention(self) -> Optional[_builtins.int]:
|
|
182
186
|
"""
|
|
183
187
|
The max age (in days) of remote logs to keep on the Database Instance
|
|
184
188
|
"""
|
|
185
189
|
return pulumi.get(self, "max_age_retention")
|
|
186
190
|
|
|
187
|
-
@property
|
|
191
|
+
@_builtins.property
|
|
188
192
|
@pulumi.getter(name="totalDiskRetention")
|
|
189
|
-
def total_disk_retention(self) -> Optional[int]:
|
|
193
|
+
def total_disk_retention(self) -> Optional[_builtins.int]:
|
|
190
194
|
"""
|
|
191
195
|
The max disk size of remote logs to keep on the Database Instance.
|
|
192
196
|
"""
|
|
193
197
|
return pulumi.get(self, "total_disk_retention")
|
|
194
198
|
|
|
195
199
|
|
|
200
|
+
@pulumi.output_type
|
|
201
|
+
class InstancePrivateIp(dict):
|
|
202
|
+
def __init__(__self__, *,
|
|
203
|
+
address: Optional[_builtins.str] = None,
|
|
204
|
+
id: Optional[_builtins.str] = None):
|
|
205
|
+
"""
|
|
206
|
+
:param _builtins.str address: The private IPv4 address.
|
|
207
|
+
:param _builtins.str id: Version ID to use in upgrade requests.
|
|
208
|
+
"""
|
|
209
|
+
if address is not None:
|
|
210
|
+
pulumi.set(__self__, "address", address)
|
|
211
|
+
if id is not None:
|
|
212
|
+
pulumi.set(__self__, "id", id)
|
|
213
|
+
|
|
214
|
+
@_builtins.property
|
|
215
|
+
@pulumi.getter
|
|
216
|
+
def address(self) -> Optional[_builtins.str]:
|
|
217
|
+
"""
|
|
218
|
+
The private IPv4 address.
|
|
219
|
+
"""
|
|
220
|
+
return pulumi.get(self, "address")
|
|
221
|
+
|
|
222
|
+
@_builtins.property
|
|
223
|
+
@pulumi.getter
|
|
224
|
+
def id(self) -> Optional[_builtins.str]:
|
|
225
|
+
"""
|
|
226
|
+
Version ID to use in upgrade requests.
|
|
227
|
+
"""
|
|
228
|
+
return pulumi.get(self, "id")
|
|
229
|
+
|
|
230
|
+
|
|
196
231
|
@pulumi.output_type
|
|
197
232
|
class InstancePrivateNetwork(dict):
|
|
198
233
|
@staticmethod
|
|
@@ -219,25 +254,25 @@ class InstancePrivateNetwork(dict):
|
|
|
219
254
|
return super().get(key, default)
|
|
220
255
|
|
|
221
256
|
def __init__(__self__, *,
|
|
222
|
-
pn_id: str,
|
|
223
|
-
enable_ipam: Optional[bool] = None,
|
|
224
|
-
endpoint_id: Optional[str] = None,
|
|
225
|
-
hostname: Optional[str] = None,
|
|
226
|
-
ip: Optional[str] = None,
|
|
227
|
-
ip_net: Optional[str] = None,
|
|
228
|
-
name: Optional[str] = None,
|
|
229
|
-
port: Optional[int] = None,
|
|
230
|
-
zone: Optional[str] = None):
|
|
231
|
-
"""
|
|
232
|
-
:param str pn_id: The private network ID
|
|
233
|
-
:param bool enable_ipam: Whether or not the private network endpoint should be configured with IPAM
|
|
234
|
-
:param str endpoint_id: The ID of the endpoint.
|
|
235
|
-
:param str hostname: Hostname of the endpoint.
|
|
236
|
-
:param str ip: IPv4 address on the network.
|
|
237
|
-
:param str ip_net: The IP with the given mask within the private subnet
|
|
238
|
-
:param str name: The name of the Database Instance.
|
|
239
|
-
:param int port: Port in the Private Network.
|
|
240
|
-
:param str zone: The zone you want to attach the resource to
|
|
257
|
+
pn_id: _builtins.str,
|
|
258
|
+
enable_ipam: Optional[_builtins.bool] = None,
|
|
259
|
+
endpoint_id: Optional[_builtins.str] = None,
|
|
260
|
+
hostname: Optional[_builtins.str] = None,
|
|
261
|
+
ip: Optional[_builtins.str] = None,
|
|
262
|
+
ip_net: Optional[_builtins.str] = None,
|
|
263
|
+
name: Optional[_builtins.str] = None,
|
|
264
|
+
port: Optional[_builtins.int] = None,
|
|
265
|
+
zone: Optional[_builtins.str] = None):
|
|
266
|
+
"""
|
|
267
|
+
:param _builtins.str pn_id: The private network ID
|
|
268
|
+
:param _builtins.bool enable_ipam: Whether or not the private network endpoint should be configured with IPAM
|
|
269
|
+
:param _builtins.str endpoint_id: The ID of the endpoint.
|
|
270
|
+
:param _builtins.str hostname: Hostname of the endpoint.
|
|
271
|
+
:param _builtins.str ip: IPv4 address on the network.
|
|
272
|
+
:param _builtins.str ip_net: The IP with the given mask within the private subnet
|
|
273
|
+
:param _builtins.str name: The name of the Database Instance.
|
|
274
|
+
:param _builtins.int port: Port in the Private Network.
|
|
275
|
+
:param _builtins.str zone: The zone you want to attach the resource to
|
|
241
276
|
"""
|
|
242
277
|
pulumi.set(__self__, "pn_id", pn_id)
|
|
243
278
|
if enable_ipam is not None:
|
|
@@ -257,73 +292,73 @@ class InstancePrivateNetwork(dict):
|
|
|
257
292
|
if zone is not None:
|
|
258
293
|
pulumi.set(__self__, "zone", zone)
|
|
259
294
|
|
|
260
|
-
@property
|
|
295
|
+
@_builtins.property
|
|
261
296
|
@pulumi.getter(name="pnId")
|
|
262
|
-
def pn_id(self) -> str:
|
|
297
|
+
def pn_id(self) -> _builtins.str:
|
|
263
298
|
"""
|
|
264
299
|
The private network ID
|
|
265
300
|
"""
|
|
266
301
|
return pulumi.get(self, "pn_id")
|
|
267
302
|
|
|
268
|
-
@property
|
|
303
|
+
@_builtins.property
|
|
269
304
|
@pulumi.getter(name="enableIpam")
|
|
270
|
-
def enable_ipam(self) -> Optional[bool]:
|
|
305
|
+
def enable_ipam(self) -> Optional[_builtins.bool]:
|
|
271
306
|
"""
|
|
272
307
|
Whether or not the private network endpoint should be configured with IPAM
|
|
273
308
|
"""
|
|
274
309
|
return pulumi.get(self, "enable_ipam")
|
|
275
310
|
|
|
276
|
-
@property
|
|
311
|
+
@_builtins.property
|
|
277
312
|
@pulumi.getter(name="endpointId")
|
|
278
|
-
def endpoint_id(self) -> Optional[str]:
|
|
313
|
+
def endpoint_id(self) -> Optional[_builtins.str]:
|
|
279
314
|
"""
|
|
280
315
|
The ID of the endpoint.
|
|
281
316
|
"""
|
|
282
317
|
return pulumi.get(self, "endpoint_id")
|
|
283
318
|
|
|
284
|
-
@property
|
|
319
|
+
@_builtins.property
|
|
285
320
|
@pulumi.getter
|
|
286
|
-
def hostname(self) -> Optional[str]:
|
|
321
|
+
def hostname(self) -> Optional[_builtins.str]:
|
|
287
322
|
"""
|
|
288
323
|
Hostname of the endpoint.
|
|
289
324
|
"""
|
|
290
325
|
return pulumi.get(self, "hostname")
|
|
291
326
|
|
|
292
|
-
@property
|
|
327
|
+
@_builtins.property
|
|
293
328
|
@pulumi.getter
|
|
294
|
-
def ip(self) -> Optional[str]:
|
|
329
|
+
def ip(self) -> Optional[_builtins.str]:
|
|
295
330
|
"""
|
|
296
331
|
IPv4 address on the network.
|
|
297
332
|
"""
|
|
298
333
|
return pulumi.get(self, "ip")
|
|
299
334
|
|
|
300
|
-
@property
|
|
335
|
+
@_builtins.property
|
|
301
336
|
@pulumi.getter(name="ipNet")
|
|
302
|
-
def ip_net(self) -> Optional[str]:
|
|
337
|
+
def ip_net(self) -> Optional[_builtins.str]:
|
|
303
338
|
"""
|
|
304
339
|
The IP with the given mask within the private subnet
|
|
305
340
|
"""
|
|
306
341
|
return pulumi.get(self, "ip_net")
|
|
307
342
|
|
|
308
|
-
@property
|
|
343
|
+
@_builtins.property
|
|
309
344
|
@pulumi.getter
|
|
310
|
-
def name(self) -> Optional[str]:
|
|
345
|
+
def name(self) -> Optional[_builtins.str]:
|
|
311
346
|
"""
|
|
312
347
|
The name of the Database Instance.
|
|
313
348
|
"""
|
|
314
349
|
return pulumi.get(self, "name")
|
|
315
350
|
|
|
316
|
-
@property
|
|
351
|
+
@_builtins.property
|
|
317
352
|
@pulumi.getter
|
|
318
|
-
def port(self) -> Optional[int]:
|
|
353
|
+
def port(self) -> Optional[_builtins.int]:
|
|
319
354
|
"""
|
|
320
355
|
Port in the Private Network.
|
|
321
356
|
"""
|
|
322
357
|
return pulumi.get(self, "port")
|
|
323
358
|
|
|
324
|
-
@property
|
|
359
|
+
@_builtins.property
|
|
325
360
|
@pulumi.getter
|
|
326
|
-
def zone(self) -> Optional[str]:
|
|
361
|
+
def zone(self) -> Optional[_builtins.str]:
|
|
327
362
|
"""
|
|
328
363
|
The zone you want to attach the resource to
|
|
329
364
|
"""
|
|
@@ -333,13 +368,13 @@ class InstancePrivateNetwork(dict):
|
|
|
333
368
|
@pulumi.output_type
|
|
334
369
|
class InstanceReadReplica(dict):
|
|
335
370
|
def __init__(__self__, *,
|
|
336
|
-
ip: Optional[str] = None,
|
|
337
|
-
name: Optional[str] = None,
|
|
338
|
-
port: Optional[int] = None):
|
|
371
|
+
ip: Optional[_builtins.str] = None,
|
|
372
|
+
name: Optional[_builtins.str] = None,
|
|
373
|
+
port: Optional[_builtins.int] = None):
|
|
339
374
|
"""
|
|
340
|
-
:param str ip: IPv4 address on the network.
|
|
341
|
-
:param str name: The name of the Database Instance.
|
|
342
|
-
:param int port: Port in the Private Network.
|
|
375
|
+
:param _builtins.str ip: IPv4 address on the network.
|
|
376
|
+
:param _builtins.str name: The name of the Database Instance.
|
|
377
|
+
:param _builtins.int port: Port in the Private Network.
|
|
343
378
|
"""
|
|
344
379
|
if ip is not None:
|
|
345
380
|
pulumi.set(__self__, "ip", ip)
|
|
@@ -348,31 +383,103 @@ class InstanceReadReplica(dict):
|
|
|
348
383
|
if port is not None:
|
|
349
384
|
pulumi.set(__self__, "port", port)
|
|
350
385
|
|
|
351
|
-
@property
|
|
386
|
+
@_builtins.property
|
|
352
387
|
@pulumi.getter
|
|
353
|
-
def ip(self) -> Optional[str]:
|
|
388
|
+
def ip(self) -> Optional[_builtins.str]:
|
|
354
389
|
"""
|
|
355
390
|
IPv4 address on the network.
|
|
356
391
|
"""
|
|
357
392
|
return pulumi.get(self, "ip")
|
|
358
393
|
|
|
359
|
-
@property
|
|
394
|
+
@_builtins.property
|
|
360
395
|
@pulumi.getter
|
|
361
|
-
def name(self) -> Optional[str]:
|
|
396
|
+
def name(self) -> Optional[_builtins.str]:
|
|
362
397
|
"""
|
|
363
398
|
The name of the Database Instance.
|
|
364
399
|
"""
|
|
365
400
|
return pulumi.get(self, "name")
|
|
366
401
|
|
|
367
|
-
@property
|
|
402
|
+
@_builtins.property
|
|
368
403
|
@pulumi.getter
|
|
369
|
-
def port(self) -> Optional[int]:
|
|
404
|
+
def port(self) -> Optional[_builtins.int]:
|
|
370
405
|
"""
|
|
371
406
|
Port in the Private Network.
|
|
372
407
|
"""
|
|
373
408
|
return pulumi.get(self, "port")
|
|
374
409
|
|
|
375
410
|
|
|
411
|
+
@pulumi.output_type
|
|
412
|
+
class InstanceUpgradableVersion(dict):
|
|
413
|
+
@staticmethod
|
|
414
|
+
def __key_warning(key: str):
|
|
415
|
+
suggest = None
|
|
416
|
+
if key == "minorVersion":
|
|
417
|
+
suggest = "minor_version"
|
|
418
|
+
|
|
419
|
+
if suggest:
|
|
420
|
+
pulumi.log.warn(f"Key '{key}' not found in InstanceUpgradableVersion. Access the value via the '{suggest}' property getter instead.")
|
|
421
|
+
|
|
422
|
+
def __getitem__(self, key: str) -> Any:
|
|
423
|
+
InstanceUpgradableVersion.__key_warning(key)
|
|
424
|
+
return super().__getitem__(key)
|
|
425
|
+
|
|
426
|
+
def get(self, key: str, default = None) -> Any:
|
|
427
|
+
InstanceUpgradableVersion.__key_warning(key)
|
|
428
|
+
return super().get(key, default)
|
|
429
|
+
|
|
430
|
+
def __init__(__self__, *,
|
|
431
|
+
id: Optional[_builtins.str] = None,
|
|
432
|
+
minor_version: Optional[_builtins.str] = None,
|
|
433
|
+
name: Optional[_builtins.str] = None,
|
|
434
|
+
version: Optional[_builtins.str] = None):
|
|
435
|
+
"""
|
|
436
|
+
:param _builtins.str id: Version ID to use in upgrade requests.
|
|
437
|
+
:param _builtins.str minor_version: Minor version string (e.g., `15.5.0`).
|
|
438
|
+
:param _builtins.str name: The name of the Database Instance.
|
|
439
|
+
:param _builtins.str version: Version string (e.g., `15.5`).
|
|
440
|
+
"""
|
|
441
|
+
if id is not None:
|
|
442
|
+
pulumi.set(__self__, "id", id)
|
|
443
|
+
if minor_version is not None:
|
|
444
|
+
pulumi.set(__self__, "minor_version", minor_version)
|
|
445
|
+
if name is not None:
|
|
446
|
+
pulumi.set(__self__, "name", name)
|
|
447
|
+
if version is not None:
|
|
448
|
+
pulumi.set(__self__, "version", version)
|
|
449
|
+
|
|
450
|
+
@_builtins.property
|
|
451
|
+
@pulumi.getter
|
|
452
|
+
def id(self) -> Optional[_builtins.str]:
|
|
453
|
+
"""
|
|
454
|
+
Version ID to use in upgrade requests.
|
|
455
|
+
"""
|
|
456
|
+
return pulumi.get(self, "id")
|
|
457
|
+
|
|
458
|
+
@_builtins.property
|
|
459
|
+
@pulumi.getter(name="minorVersion")
|
|
460
|
+
def minor_version(self) -> Optional[_builtins.str]:
|
|
461
|
+
"""
|
|
462
|
+
Minor version string (e.g., `15.5.0`).
|
|
463
|
+
"""
|
|
464
|
+
return pulumi.get(self, "minor_version")
|
|
465
|
+
|
|
466
|
+
@_builtins.property
|
|
467
|
+
@pulumi.getter
|
|
468
|
+
def name(self) -> Optional[_builtins.str]:
|
|
469
|
+
"""
|
|
470
|
+
The name of the Database Instance.
|
|
471
|
+
"""
|
|
472
|
+
return pulumi.get(self, "name")
|
|
473
|
+
|
|
474
|
+
@_builtins.property
|
|
475
|
+
@pulumi.getter
|
|
476
|
+
def version(self) -> Optional[_builtins.str]:
|
|
477
|
+
"""
|
|
478
|
+
Version string (e.g., `15.5`).
|
|
479
|
+
"""
|
|
480
|
+
return pulumi.get(self, "version")
|
|
481
|
+
|
|
482
|
+
|
|
376
483
|
@pulumi.output_type
|
|
377
484
|
class ReadReplicaDirectAccess(dict):
|
|
378
485
|
@staticmethod
|
|
@@ -393,17 +500,17 @@ class ReadReplicaDirectAccess(dict):
|
|
|
393
500
|
return super().get(key, default)
|
|
394
501
|
|
|
395
502
|
def __init__(__self__, *,
|
|
396
|
-
endpoint_id: Optional[str] = None,
|
|
397
|
-
hostname: Optional[str] = None,
|
|
398
|
-
ip: Optional[str] = None,
|
|
399
|
-
name: Optional[str] = None,
|
|
400
|
-
port: Optional[int] = None):
|
|
401
|
-
"""
|
|
402
|
-
:param str endpoint_id: The ID of the endpoint of the Read Replica.
|
|
403
|
-
:param str hostname: Hostname of the endpoint. Only one of IP and hostname may be set.
|
|
404
|
-
:param str ip: IPv4 address of the endpoint (IP address). Only one of IP and hostname may be set.
|
|
405
|
-
:param str name: Name of the endpoint.
|
|
406
|
-
:param int port: TCP port of the endpoint.
|
|
503
|
+
endpoint_id: Optional[_builtins.str] = None,
|
|
504
|
+
hostname: Optional[_builtins.str] = None,
|
|
505
|
+
ip: Optional[_builtins.str] = None,
|
|
506
|
+
name: Optional[_builtins.str] = None,
|
|
507
|
+
port: Optional[_builtins.int] = None):
|
|
508
|
+
"""
|
|
509
|
+
:param _builtins.str endpoint_id: The ID of the endpoint of the Read Replica.
|
|
510
|
+
:param _builtins.str hostname: Hostname of the endpoint. Only one of IP and hostname may be set.
|
|
511
|
+
:param _builtins.str ip: IPv4 address of the endpoint (IP address). Only one of IP and hostname may be set.
|
|
512
|
+
:param _builtins.str name: Name of the endpoint.
|
|
513
|
+
:param _builtins.int port: TCP port of the endpoint.
|
|
407
514
|
"""
|
|
408
515
|
if endpoint_id is not None:
|
|
409
516
|
pulumi.set(__self__, "endpoint_id", endpoint_id)
|
|
@@ -416,41 +523,41 @@ class ReadReplicaDirectAccess(dict):
|
|
|
416
523
|
if port is not None:
|
|
417
524
|
pulumi.set(__self__, "port", port)
|
|
418
525
|
|
|
419
|
-
@property
|
|
526
|
+
@_builtins.property
|
|
420
527
|
@pulumi.getter(name="endpointId")
|
|
421
|
-
def endpoint_id(self) -> Optional[str]:
|
|
528
|
+
def endpoint_id(self) -> Optional[_builtins.str]:
|
|
422
529
|
"""
|
|
423
530
|
The ID of the endpoint of the Read Replica.
|
|
424
531
|
"""
|
|
425
532
|
return pulumi.get(self, "endpoint_id")
|
|
426
533
|
|
|
427
|
-
@property
|
|
534
|
+
@_builtins.property
|
|
428
535
|
@pulumi.getter
|
|
429
|
-
def hostname(self) -> Optional[str]:
|
|
536
|
+
def hostname(self) -> Optional[_builtins.str]:
|
|
430
537
|
"""
|
|
431
538
|
Hostname of the endpoint. Only one of IP and hostname may be set.
|
|
432
539
|
"""
|
|
433
540
|
return pulumi.get(self, "hostname")
|
|
434
541
|
|
|
435
|
-
@property
|
|
542
|
+
@_builtins.property
|
|
436
543
|
@pulumi.getter
|
|
437
|
-
def ip(self) -> Optional[str]:
|
|
544
|
+
def ip(self) -> Optional[_builtins.str]:
|
|
438
545
|
"""
|
|
439
546
|
IPv4 address of the endpoint (IP address). Only one of IP and hostname may be set.
|
|
440
547
|
"""
|
|
441
548
|
return pulumi.get(self, "ip")
|
|
442
549
|
|
|
443
|
-
@property
|
|
550
|
+
@_builtins.property
|
|
444
551
|
@pulumi.getter
|
|
445
|
-
def name(self) -> Optional[str]:
|
|
552
|
+
def name(self) -> Optional[_builtins.str]:
|
|
446
553
|
"""
|
|
447
554
|
Name of the endpoint.
|
|
448
555
|
"""
|
|
449
556
|
return pulumi.get(self, "name")
|
|
450
557
|
|
|
451
|
-
@property
|
|
558
|
+
@_builtins.property
|
|
452
559
|
@pulumi.getter
|
|
453
|
-
def port(self) -> Optional[int]:
|
|
560
|
+
def port(self) -> Optional[_builtins.int]:
|
|
454
561
|
"""
|
|
455
562
|
TCP port of the endpoint.
|
|
456
563
|
"""
|
|
@@ -483,27 +590,27 @@ class ReadReplicaPrivateNetwork(dict):
|
|
|
483
590
|
return super().get(key, default)
|
|
484
591
|
|
|
485
592
|
def __init__(__self__, *,
|
|
486
|
-
private_network_id: str,
|
|
487
|
-
enable_ipam: Optional[bool] = None,
|
|
488
|
-
endpoint_id: Optional[str] = None,
|
|
489
|
-
hostname: Optional[str] = None,
|
|
490
|
-
ip: Optional[str] = None,
|
|
491
|
-
name: Optional[str] = None,
|
|
492
|
-
port: Optional[int] = None,
|
|
493
|
-
service_ip: Optional[str] = None,
|
|
494
|
-
zone: Optional[str] = None):
|
|
495
|
-
"""
|
|
496
|
-
:param str private_network_id: UUID of the Private Netork to be connected to the Read Replica.
|
|
497
|
-
:param bool enable_ipam: If true, the IP network address within the private subnet is determined by the IP Address Management (IPAM) service.
|
|
593
|
+
private_network_id: _builtins.str,
|
|
594
|
+
enable_ipam: Optional[_builtins.bool] = None,
|
|
595
|
+
endpoint_id: Optional[_builtins.str] = None,
|
|
596
|
+
hostname: Optional[_builtins.str] = None,
|
|
597
|
+
ip: Optional[_builtins.str] = None,
|
|
598
|
+
name: Optional[_builtins.str] = None,
|
|
599
|
+
port: Optional[_builtins.int] = None,
|
|
600
|
+
service_ip: Optional[_builtins.str] = None,
|
|
601
|
+
zone: Optional[_builtins.str] = None):
|
|
602
|
+
"""
|
|
603
|
+
:param _builtins.str private_network_id: UUID of the Private Netork to be connected to the Read Replica.
|
|
604
|
+
:param _builtins.bool enable_ipam: If true, the IP network address within the private subnet is determined by the IP Address Management (IPAM) service.
|
|
498
605
|
|
|
499
606
|
> **Important:** One of `service_ip` or `enable_ipam=true` must be set.
|
|
500
|
-
:param str endpoint_id: The ID of the endpoint of the Read Replica.
|
|
501
|
-
:param str hostname: Hostname of the endpoint. Only one of IP and hostname may be set.
|
|
502
|
-
:param str ip: IPv4 address of the endpoint (IP address). Only one of IP and hostname may be set.
|
|
503
|
-
:param str name: Name of the endpoint.
|
|
504
|
-
:param int port: TCP port of the endpoint.
|
|
505
|
-
: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.
|
|
506
|
-
:param str zone: Private network zone
|
|
607
|
+
:param _builtins.str endpoint_id: The ID of the endpoint of the Read Replica.
|
|
608
|
+
:param _builtins.str hostname: Hostname of the endpoint. Only one of IP and hostname may be set.
|
|
609
|
+
:param _builtins.str ip: IPv4 address of the endpoint (IP address). Only one of IP and hostname may be set.
|
|
610
|
+
:param _builtins.str name: Name of the endpoint.
|
|
611
|
+
:param _builtins.int port: TCP port of the endpoint.
|
|
612
|
+
: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.
|
|
613
|
+
:param _builtins.str zone: Private network zone
|
|
507
614
|
"""
|
|
508
615
|
pulumi.set(__self__, "private_network_id", private_network_id)
|
|
509
616
|
if enable_ipam is not None:
|
|
@@ -523,17 +630,17 @@ class ReadReplicaPrivateNetwork(dict):
|
|
|
523
630
|
if zone is not None:
|
|
524
631
|
pulumi.set(__self__, "zone", zone)
|
|
525
632
|
|
|
526
|
-
@property
|
|
633
|
+
@_builtins.property
|
|
527
634
|
@pulumi.getter(name="privateNetworkId")
|
|
528
|
-
def private_network_id(self) -> str:
|
|
635
|
+
def private_network_id(self) -> _builtins.str:
|
|
529
636
|
"""
|
|
530
637
|
UUID of the Private Netork to be connected to the Read Replica.
|
|
531
638
|
"""
|
|
532
639
|
return pulumi.get(self, "private_network_id")
|
|
533
640
|
|
|
534
|
-
@property
|
|
641
|
+
@_builtins.property
|
|
535
642
|
@pulumi.getter(name="enableIpam")
|
|
536
|
-
def enable_ipam(self) -> Optional[bool]:
|
|
643
|
+
def enable_ipam(self) -> Optional[_builtins.bool]:
|
|
537
644
|
"""
|
|
538
645
|
If true, the IP network address within the private subnet is determined by the IP Address Management (IPAM) service.
|
|
539
646
|
|
|
@@ -541,57 +648,57 @@ class ReadReplicaPrivateNetwork(dict):
|
|
|
541
648
|
"""
|
|
542
649
|
return pulumi.get(self, "enable_ipam")
|
|
543
650
|
|
|
544
|
-
@property
|
|
651
|
+
@_builtins.property
|
|
545
652
|
@pulumi.getter(name="endpointId")
|
|
546
|
-
def endpoint_id(self) -> Optional[str]:
|
|
653
|
+
def endpoint_id(self) -> Optional[_builtins.str]:
|
|
547
654
|
"""
|
|
548
655
|
The ID of the endpoint of the Read Replica.
|
|
549
656
|
"""
|
|
550
657
|
return pulumi.get(self, "endpoint_id")
|
|
551
658
|
|
|
552
|
-
@property
|
|
659
|
+
@_builtins.property
|
|
553
660
|
@pulumi.getter
|
|
554
|
-
def hostname(self) -> Optional[str]:
|
|
661
|
+
def hostname(self) -> Optional[_builtins.str]:
|
|
555
662
|
"""
|
|
556
663
|
Hostname of the endpoint. Only one of IP and hostname may be set.
|
|
557
664
|
"""
|
|
558
665
|
return pulumi.get(self, "hostname")
|
|
559
666
|
|
|
560
|
-
@property
|
|
667
|
+
@_builtins.property
|
|
561
668
|
@pulumi.getter
|
|
562
|
-
def ip(self) -> Optional[str]:
|
|
669
|
+
def ip(self) -> Optional[_builtins.str]:
|
|
563
670
|
"""
|
|
564
671
|
IPv4 address of the endpoint (IP address). Only one of IP and hostname may be set.
|
|
565
672
|
"""
|
|
566
673
|
return pulumi.get(self, "ip")
|
|
567
674
|
|
|
568
|
-
@property
|
|
675
|
+
@_builtins.property
|
|
569
676
|
@pulumi.getter
|
|
570
|
-
def name(self) -> Optional[str]:
|
|
677
|
+
def name(self) -> Optional[_builtins.str]:
|
|
571
678
|
"""
|
|
572
679
|
Name of the endpoint.
|
|
573
680
|
"""
|
|
574
681
|
return pulumi.get(self, "name")
|
|
575
682
|
|
|
576
|
-
@property
|
|
683
|
+
@_builtins.property
|
|
577
684
|
@pulumi.getter
|
|
578
|
-
def port(self) -> Optional[int]:
|
|
685
|
+
def port(self) -> Optional[_builtins.int]:
|
|
579
686
|
"""
|
|
580
687
|
TCP port of the endpoint.
|
|
581
688
|
"""
|
|
582
689
|
return pulumi.get(self, "port")
|
|
583
690
|
|
|
584
|
-
@property
|
|
691
|
+
@_builtins.property
|
|
585
692
|
@pulumi.getter(name="serviceIp")
|
|
586
|
-
def service_ip(self) -> Optional[str]:
|
|
693
|
+
def service_ip(self) -> Optional[_builtins.str]:
|
|
587
694
|
"""
|
|
588
695
|
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.
|
|
589
696
|
"""
|
|
590
697
|
return pulumi.get(self, "service_ip")
|
|
591
698
|
|
|
592
|
-
@property
|
|
699
|
+
@_builtins.property
|
|
593
700
|
@pulumi.getter
|
|
594
|
-
def zone(self) -> Optional[str]:
|
|
701
|
+
def zone(self) -> Optional[_builtins.str]:
|
|
595
702
|
"""
|
|
596
703
|
Private network zone
|
|
597
704
|
"""
|
|
@@ -601,26 +708,26 @@ class ReadReplicaPrivateNetwork(dict):
|
|
|
601
708
|
@pulumi.output_type
|
|
602
709
|
class GetAclAclRuleResult(dict):
|
|
603
710
|
def __init__(__self__, *,
|
|
604
|
-
description: str,
|
|
605
|
-
ip: str):
|
|
711
|
+
description: _builtins.str,
|
|
712
|
+
ip: _builtins.str):
|
|
606
713
|
"""
|
|
607
|
-
:param str description: A simple text describing this rule
|
|
608
|
-
:param str ip: The ip range to whitelist in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation)
|
|
714
|
+
:param _builtins.str description: A simple text describing this rule
|
|
715
|
+
:param _builtins.str ip: The ip range to whitelist in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation)
|
|
609
716
|
"""
|
|
610
717
|
pulumi.set(__self__, "description", description)
|
|
611
718
|
pulumi.set(__self__, "ip", ip)
|
|
612
719
|
|
|
613
|
-
@property
|
|
720
|
+
@_builtins.property
|
|
614
721
|
@pulumi.getter
|
|
615
|
-
def description(self) -> str:
|
|
722
|
+
def description(self) -> _builtins.str:
|
|
616
723
|
"""
|
|
617
724
|
A simple text describing this rule
|
|
618
725
|
"""
|
|
619
726
|
return pulumi.get(self, "description")
|
|
620
727
|
|
|
621
|
-
@property
|
|
728
|
+
@_builtins.property
|
|
622
729
|
@pulumi.getter
|
|
623
|
-
def ip(self) -> str:
|
|
730
|
+
def ip(self) -> _builtins.str:
|
|
624
731
|
"""
|
|
625
732
|
The ip range to whitelist in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation)
|
|
626
733
|
"""
|
|
@@ -630,17 +737,17 @@ class GetAclAclRuleResult(dict):
|
|
|
630
737
|
@pulumi.output_type
|
|
631
738
|
class GetInstanceLoadBalancerResult(dict):
|
|
632
739
|
def __init__(__self__, *,
|
|
633
|
-
endpoint_id: str,
|
|
634
|
-
hostname: str,
|
|
635
|
-
ip: str,
|
|
636
|
-
name: str,
|
|
637
|
-
port: int):
|
|
638
|
-
"""
|
|
639
|
-
:param str endpoint_id: The endpoint ID
|
|
640
|
-
:param str hostname: The hostname of your endpoint
|
|
641
|
-
:param str ip: The IP of your load balancer service
|
|
642
|
-
:param str name: The name of the RDB instance.
|
|
643
|
-
:param int port: The port of your load balancer service
|
|
740
|
+
endpoint_id: _builtins.str,
|
|
741
|
+
hostname: _builtins.str,
|
|
742
|
+
ip: _builtins.str,
|
|
743
|
+
name: _builtins.str,
|
|
744
|
+
port: _builtins.int):
|
|
745
|
+
"""
|
|
746
|
+
:param _builtins.str endpoint_id: The endpoint ID
|
|
747
|
+
:param _builtins.str hostname: The hostname of your endpoint
|
|
748
|
+
:param _builtins.str ip: The IP of your load balancer service
|
|
749
|
+
:param _builtins.str name: The name of the RDB instance.
|
|
750
|
+
:param _builtins.int port: The port of your load balancer service
|
|
644
751
|
"""
|
|
645
752
|
pulumi.set(__self__, "endpoint_id", endpoint_id)
|
|
646
753
|
pulumi.set(__self__, "hostname", hostname)
|
|
@@ -648,41 +755,41 @@ class GetInstanceLoadBalancerResult(dict):
|
|
|
648
755
|
pulumi.set(__self__, "name", name)
|
|
649
756
|
pulumi.set(__self__, "port", port)
|
|
650
757
|
|
|
651
|
-
@property
|
|
758
|
+
@_builtins.property
|
|
652
759
|
@pulumi.getter(name="endpointId")
|
|
653
|
-
def endpoint_id(self) -> str:
|
|
760
|
+
def endpoint_id(self) -> _builtins.str:
|
|
654
761
|
"""
|
|
655
762
|
The endpoint ID
|
|
656
763
|
"""
|
|
657
764
|
return pulumi.get(self, "endpoint_id")
|
|
658
765
|
|
|
659
|
-
@property
|
|
766
|
+
@_builtins.property
|
|
660
767
|
@pulumi.getter
|
|
661
|
-
def hostname(self) -> str:
|
|
768
|
+
def hostname(self) -> _builtins.str:
|
|
662
769
|
"""
|
|
663
770
|
The hostname of your endpoint
|
|
664
771
|
"""
|
|
665
772
|
return pulumi.get(self, "hostname")
|
|
666
773
|
|
|
667
|
-
@property
|
|
774
|
+
@_builtins.property
|
|
668
775
|
@pulumi.getter
|
|
669
|
-
def ip(self) -> str:
|
|
776
|
+
def ip(self) -> _builtins.str:
|
|
670
777
|
"""
|
|
671
778
|
The IP of your load balancer service
|
|
672
779
|
"""
|
|
673
780
|
return pulumi.get(self, "ip")
|
|
674
781
|
|
|
675
|
-
@property
|
|
782
|
+
@_builtins.property
|
|
676
783
|
@pulumi.getter
|
|
677
|
-
def name(self) -> str:
|
|
784
|
+
def name(self) -> _builtins.str:
|
|
678
785
|
"""
|
|
679
786
|
The name of the RDB instance.
|
|
680
787
|
"""
|
|
681
788
|
return pulumi.get(self, "name")
|
|
682
789
|
|
|
683
|
-
@property
|
|
790
|
+
@_builtins.property
|
|
684
791
|
@pulumi.getter
|
|
685
|
-
def port(self) -> int:
|
|
792
|
+
def port(self) -> _builtins.int:
|
|
686
793
|
"""
|
|
687
794
|
The port of your load balancer service
|
|
688
795
|
"""
|
|
@@ -692,54 +799,83 @@ class GetInstanceLoadBalancerResult(dict):
|
|
|
692
799
|
@pulumi.output_type
|
|
693
800
|
class GetInstanceLogsPolicyResult(dict):
|
|
694
801
|
def __init__(__self__, *,
|
|
695
|
-
max_age_retention: int,
|
|
696
|
-
total_disk_retention: int):
|
|
802
|
+
max_age_retention: _builtins.int,
|
|
803
|
+
total_disk_retention: _builtins.int):
|
|
697
804
|
"""
|
|
698
|
-
:param int max_age_retention: The max age (in days) of remote logs to keep on the Database Instance
|
|
699
|
-
:param int total_disk_retention: The max disk size of remote logs to keep on the Database Instance.
|
|
805
|
+
:param _builtins.int max_age_retention: The max age (in days) of remote logs to keep on the Database Instance
|
|
806
|
+
:param _builtins.int total_disk_retention: The max disk size of remote logs to keep on the Database Instance.
|
|
700
807
|
"""
|
|
701
808
|
pulumi.set(__self__, "max_age_retention", max_age_retention)
|
|
702
809
|
pulumi.set(__self__, "total_disk_retention", total_disk_retention)
|
|
703
810
|
|
|
704
|
-
@property
|
|
811
|
+
@_builtins.property
|
|
705
812
|
@pulumi.getter(name="maxAgeRetention")
|
|
706
|
-
def max_age_retention(self) -> int:
|
|
813
|
+
def max_age_retention(self) -> _builtins.int:
|
|
707
814
|
"""
|
|
708
815
|
The max age (in days) of remote logs to keep on the Database Instance
|
|
709
816
|
"""
|
|
710
817
|
return pulumi.get(self, "max_age_retention")
|
|
711
818
|
|
|
712
|
-
@property
|
|
819
|
+
@_builtins.property
|
|
713
820
|
@pulumi.getter(name="totalDiskRetention")
|
|
714
|
-
def total_disk_retention(self) -> int:
|
|
821
|
+
def total_disk_retention(self) -> _builtins.int:
|
|
715
822
|
"""
|
|
716
823
|
The max disk size of remote logs to keep on the Database Instance.
|
|
717
824
|
"""
|
|
718
825
|
return pulumi.get(self, "total_disk_retention")
|
|
719
826
|
|
|
720
827
|
|
|
828
|
+
@pulumi.output_type
|
|
829
|
+
class GetInstancePrivateIpResult(dict):
|
|
830
|
+
def __init__(__self__, *,
|
|
831
|
+
address: _builtins.str,
|
|
832
|
+
id: _builtins.str):
|
|
833
|
+
"""
|
|
834
|
+
:param _builtins.str address: The private IPv4 address
|
|
835
|
+
:param _builtins.str id: The ID of the Database Instance.
|
|
836
|
+
"""
|
|
837
|
+
pulumi.set(__self__, "address", address)
|
|
838
|
+
pulumi.set(__self__, "id", id)
|
|
839
|
+
|
|
840
|
+
@_builtins.property
|
|
841
|
+
@pulumi.getter
|
|
842
|
+
def address(self) -> _builtins.str:
|
|
843
|
+
"""
|
|
844
|
+
The private IPv4 address
|
|
845
|
+
"""
|
|
846
|
+
return pulumi.get(self, "address")
|
|
847
|
+
|
|
848
|
+
@_builtins.property
|
|
849
|
+
@pulumi.getter
|
|
850
|
+
def id(self) -> _builtins.str:
|
|
851
|
+
"""
|
|
852
|
+
The ID of the Database Instance.
|
|
853
|
+
"""
|
|
854
|
+
return pulumi.get(self, "id")
|
|
855
|
+
|
|
856
|
+
|
|
721
857
|
@pulumi.output_type
|
|
722
858
|
class GetInstancePrivateNetworkResult(dict):
|
|
723
859
|
def __init__(__self__, *,
|
|
724
|
-
enable_ipam: bool,
|
|
725
|
-
endpoint_id: str,
|
|
726
|
-
hostname: str,
|
|
727
|
-
ip: str,
|
|
728
|
-
ip_net: str,
|
|
729
|
-
name: str,
|
|
730
|
-
pn_id: str,
|
|
731
|
-
port: int,
|
|
732
|
-
zone: str):
|
|
733
|
-
"""
|
|
734
|
-
:param bool enable_ipam: Whether or not the private network endpoint should be configured with IPAM
|
|
735
|
-
:param str endpoint_id: The endpoint ID
|
|
736
|
-
:param str hostname: The hostname of your endpoint
|
|
737
|
-
:param str ip: The IP of your Instance within the private service
|
|
738
|
-
:param str ip_net: The IP with the given mask within the private subnet
|
|
739
|
-
:param str name: The name of the RDB instance.
|
|
740
|
-
:param str pn_id: The private network ID
|
|
741
|
-
:param int port: The port of your private service
|
|
742
|
-
:param str zone: The zone you want to attach the resource to
|
|
860
|
+
enable_ipam: _builtins.bool,
|
|
861
|
+
endpoint_id: _builtins.str,
|
|
862
|
+
hostname: _builtins.str,
|
|
863
|
+
ip: _builtins.str,
|
|
864
|
+
ip_net: _builtins.str,
|
|
865
|
+
name: _builtins.str,
|
|
866
|
+
pn_id: _builtins.str,
|
|
867
|
+
port: _builtins.int,
|
|
868
|
+
zone: _builtins.str):
|
|
869
|
+
"""
|
|
870
|
+
:param _builtins.bool enable_ipam: Whether or not the private network endpoint should be configured with IPAM
|
|
871
|
+
:param _builtins.str endpoint_id: The endpoint ID
|
|
872
|
+
:param _builtins.str hostname: The hostname of your endpoint
|
|
873
|
+
:param _builtins.str ip: The IP of your Instance within the private service
|
|
874
|
+
:param _builtins.str ip_net: The IP with the given mask within the private subnet
|
|
875
|
+
:param _builtins.str name: The name of the RDB instance.
|
|
876
|
+
:param _builtins.str pn_id: The private network ID
|
|
877
|
+
:param _builtins.int port: The port of your private service
|
|
878
|
+
:param _builtins.str zone: The zone you want to attach the resource to
|
|
743
879
|
"""
|
|
744
880
|
pulumi.set(__self__, "enable_ipam", enable_ipam)
|
|
745
881
|
pulumi.set(__self__, "endpoint_id", endpoint_id)
|
|
@@ -751,73 +887,73 @@ class GetInstancePrivateNetworkResult(dict):
|
|
|
751
887
|
pulumi.set(__self__, "port", port)
|
|
752
888
|
pulumi.set(__self__, "zone", zone)
|
|
753
889
|
|
|
754
|
-
@property
|
|
890
|
+
@_builtins.property
|
|
755
891
|
@pulumi.getter(name="enableIpam")
|
|
756
|
-
def enable_ipam(self) -> bool:
|
|
892
|
+
def enable_ipam(self) -> _builtins.bool:
|
|
757
893
|
"""
|
|
758
894
|
Whether or not the private network endpoint should be configured with IPAM
|
|
759
895
|
"""
|
|
760
896
|
return pulumi.get(self, "enable_ipam")
|
|
761
897
|
|
|
762
|
-
@property
|
|
898
|
+
@_builtins.property
|
|
763
899
|
@pulumi.getter(name="endpointId")
|
|
764
|
-
def endpoint_id(self) -> str:
|
|
900
|
+
def endpoint_id(self) -> _builtins.str:
|
|
765
901
|
"""
|
|
766
902
|
The endpoint ID
|
|
767
903
|
"""
|
|
768
904
|
return pulumi.get(self, "endpoint_id")
|
|
769
905
|
|
|
770
|
-
@property
|
|
906
|
+
@_builtins.property
|
|
771
907
|
@pulumi.getter
|
|
772
|
-
def hostname(self) -> str:
|
|
908
|
+
def hostname(self) -> _builtins.str:
|
|
773
909
|
"""
|
|
774
910
|
The hostname of your endpoint
|
|
775
911
|
"""
|
|
776
912
|
return pulumi.get(self, "hostname")
|
|
777
913
|
|
|
778
|
-
@property
|
|
914
|
+
@_builtins.property
|
|
779
915
|
@pulumi.getter
|
|
780
|
-
def ip(self) -> str:
|
|
916
|
+
def ip(self) -> _builtins.str:
|
|
781
917
|
"""
|
|
782
918
|
The IP of your Instance within the private service
|
|
783
919
|
"""
|
|
784
920
|
return pulumi.get(self, "ip")
|
|
785
921
|
|
|
786
|
-
@property
|
|
922
|
+
@_builtins.property
|
|
787
923
|
@pulumi.getter(name="ipNet")
|
|
788
|
-
def ip_net(self) -> str:
|
|
924
|
+
def ip_net(self) -> _builtins.str:
|
|
789
925
|
"""
|
|
790
926
|
The IP with the given mask within the private subnet
|
|
791
927
|
"""
|
|
792
928
|
return pulumi.get(self, "ip_net")
|
|
793
929
|
|
|
794
|
-
@property
|
|
930
|
+
@_builtins.property
|
|
795
931
|
@pulumi.getter
|
|
796
|
-
def name(self) -> str:
|
|
932
|
+
def name(self) -> _builtins.str:
|
|
797
933
|
"""
|
|
798
934
|
The name of the RDB instance.
|
|
799
935
|
"""
|
|
800
936
|
return pulumi.get(self, "name")
|
|
801
937
|
|
|
802
|
-
@property
|
|
938
|
+
@_builtins.property
|
|
803
939
|
@pulumi.getter(name="pnId")
|
|
804
|
-
def pn_id(self) -> str:
|
|
940
|
+
def pn_id(self) -> _builtins.str:
|
|
805
941
|
"""
|
|
806
942
|
The private network ID
|
|
807
943
|
"""
|
|
808
944
|
return pulumi.get(self, "pn_id")
|
|
809
945
|
|
|
810
|
-
@property
|
|
946
|
+
@_builtins.property
|
|
811
947
|
@pulumi.getter
|
|
812
|
-
def port(self) -> int:
|
|
948
|
+
def port(self) -> _builtins.int:
|
|
813
949
|
"""
|
|
814
950
|
The port of your private service
|
|
815
951
|
"""
|
|
816
952
|
return pulumi.get(self, "port")
|
|
817
953
|
|
|
818
|
-
@property
|
|
954
|
+
@_builtins.property
|
|
819
955
|
@pulumi.getter
|
|
820
|
-
def zone(self) -> str:
|
|
956
|
+
def zone(self) -> _builtins.str:
|
|
821
957
|
"""
|
|
822
958
|
The zone you want to attach the resource to
|
|
823
959
|
"""
|
|
@@ -827,40 +963,91 @@ class GetInstancePrivateNetworkResult(dict):
|
|
|
827
963
|
@pulumi.output_type
|
|
828
964
|
class GetInstanceReadReplicaResult(dict):
|
|
829
965
|
def __init__(__self__, *,
|
|
830
|
-
ip: str,
|
|
831
|
-
name: str,
|
|
832
|
-
port: int):
|
|
966
|
+
ip: _builtins.str,
|
|
967
|
+
name: _builtins.str,
|
|
968
|
+
port: _builtins.int):
|
|
833
969
|
"""
|
|
834
|
-
:param str ip: IP of the replica
|
|
835
|
-
:param str name: The name of the RDB instance.
|
|
836
|
-
:param int port: Port of the replica
|
|
970
|
+
:param _builtins.str ip: IP of the replica
|
|
971
|
+
:param _builtins.str name: The name of the RDB instance.
|
|
972
|
+
:param _builtins.int port: Port of the replica
|
|
837
973
|
"""
|
|
838
974
|
pulumi.set(__self__, "ip", ip)
|
|
839
975
|
pulumi.set(__self__, "name", name)
|
|
840
976
|
pulumi.set(__self__, "port", port)
|
|
841
977
|
|
|
842
|
-
@property
|
|
978
|
+
@_builtins.property
|
|
843
979
|
@pulumi.getter
|
|
844
|
-
def ip(self) -> str:
|
|
980
|
+
def ip(self) -> _builtins.str:
|
|
845
981
|
"""
|
|
846
982
|
IP of the replica
|
|
847
983
|
"""
|
|
848
984
|
return pulumi.get(self, "ip")
|
|
849
985
|
|
|
850
|
-
@property
|
|
986
|
+
@_builtins.property
|
|
851
987
|
@pulumi.getter
|
|
852
|
-
def name(self) -> str:
|
|
988
|
+
def name(self) -> _builtins.str:
|
|
853
989
|
"""
|
|
854
990
|
The name of the RDB instance.
|
|
855
991
|
"""
|
|
856
992
|
return pulumi.get(self, "name")
|
|
857
993
|
|
|
858
|
-
@property
|
|
994
|
+
@_builtins.property
|
|
859
995
|
@pulumi.getter
|
|
860
|
-
def port(self) -> int:
|
|
996
|
+
def port(self) -> _builtins.int:
|
|
861
997
|
"""
|
|
862
998
|
Port of the replica
|
|
863
999
|
"""
|
|
864
1000
|
return pulumi.get(self, "port")
|
|
865
1001
|
|
|
866
1002
|
|
|
1003
|
+
@pulumi.output_type
|
|
1004
|
+
class GetInstanceUpgradableVersionResult(dict):
|
|
1005
|
+
def __init__(__self__, *,
|
|
1006
|
+
id: _builtins.str,
|
|
1007
|
+
minor_version: _builtins.str,
|
|
1008
|
+
name: _builtins.str,
|
|
1009
|
+
version: _builtins.str):
|
|
1010
|
+
"""
|
|
1011
|
+
:param _builtins.str id: The ID of the Database Instance.
|
|
1012
|
+
:param _builtins.str minor_version: Minor version string
|
|
1013
|
+
:param _builtins.str name: The name of the RDB instance.
|
|
1014
|
+
:param _builtins.str version: Version string
|
|
1015
|
+
"""
|
|
1016
|
+
pulumi.set(__self__, "id", id)
|
|
1017
|
+
pulumi.set(__self__, "minor_version", minor_version)
|
|
1018
|
+
pulumi.set(__self__, "name", name)
|
|
1019
|
+
pulumi.set(__self__, "version", version)
|
|
1020
|
+
|
|
1021
|
+
@_builtins.property
|
|
1022
|
+
@pulumi.getter
|
|
1023
|
+
def id(self) -> _builtins.str:
|
|
1024
|
+
"""
|
|
1025
|
+
The ID of the Database Instance.
|
|
1026
|
+
"""
|
|
1027
|
+
return pulumi.get(self, "id")
|
|
1028
|
+
|
|
1029
|
+
@_builtins.property
|
|
1030
|
+
@pulumi.getter(name="minorVersion")
|
|
1031
|
+
def minor_version(self) -> _builtins.str:
|
|
1032
|
+
"""
|
|
1033
|
+
Minor version string
|
|
1034
|
+
"""
|
|
1035
|
+
return pulumi.get(self, "minor_version")
|
|
1036
|
+
|
|
1037
|
+
@_builtins.property
|
|
1038
|
+
@pulumi.getter
|
|
1039
|
+
def name(self) -> _builtins.str:
|
|
1040
|
+
"""
|
|
1041
|
+
The name of the RDB instance.
|
|
1042
|
+
"""
|
|
1043
|
+
return pulumi.get(self, "name")
|
|
1044
|
+
|
|
1045
|
+
@_builtins.property
|
|
1046
|
+
@pulumi.getter
|
|
1047
|
+
def version(self) -> _builtins.str:
|
|
1048
|
+
"""
|
|
1049
|
+
Version string
|
|
1050
|
+
"""
|
|
1051
|
+
return pulumi.get(self, "version")
|
|
1052
|
+
|
|
1053
|
+
|