From 93d4235662fb2e10ff5c9205ad1cc6265fb1f2fa Mon Sep 17 00:00:00 2001 From: Yacine FODIL Date: Tue, 22 Oct 2024 15:25:52 +0200 Subject: [PATCH] tests(rdb): fix gateway network to use ipam mode --- internal/services/rdb/instance_test.go | 168 +- ...nstance-private-network-dhcp.cassette.yaml | 1807 +++++++++-------- 2 files changed, 1073 insertions(+), 902 deletions(-) diff --git a/internal/services/rdb/instance_test.go b/internal/services/rdb/instance_test.go index d5a72309e2..15ddb8b9be 100644 --- a/internal/services/rdb/instance_test.go +++ b/internal/services/rdb/instance_test.go @@ -695,6 +695,7 @@ func TestAccInstance_PrivateNetworkUpdate(t *testing.T) { }) } +// TODO: Refactor this test when rdb is ipam-compatible func TestAccInstance_PrivateNetwork_DHCP(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() @@ -708,63 +709,77 @@ func TestAccInstance_PrivateNetwork_DHCP(t *testing.T) { Steps: []resource.TestStep{ { Config: fmt.Sprintf(` - resource scaleway_vpc_private_network pn02 { - name = "my_private_network" - region= "nl-ams" - } - - resource scaleway_vpc_public_gateway_dhcp main { + resource "scaleway_vpc" "vpc01" { + name = "my vpc" + region = "nl-ams" + } + + resource "scaleway_vpc_private_network" "pn01" { + name = "my_private_network" + vpc_id = scaleway_vpc.vpc01.id + ipv4_subnet { subnet = "192.168.1.0/24" - zone = "nl-ams-1" - } - - resource scaleway_vpc_public_gateway_ip main { - zone = "nl-ams-1" - } - - resource scaleway_vpc_public_gateway main { - name = "foobar" - type = "VPC-GW-S" - zone = "nl-ams-1" - ip_id = scaleway_vpc_public_gateway_ip.main.id - } - - resource scaleway_vpc_public_gateway_pat_rule main { - gateway_id = scaleway_vpc_public_gateway.main.id - private_ip = scaleway_vpc_public_gateway_dhcp.main.address - private_port = scaleway_rdb_instance.main.private_network.0.port - public_port = 42 - protocol = "both" - zone = "nl-ams-1" - depends_on = [scaleway_vpc_gateway_network.main, scaleway_vpc_private_network.pn02] - } - - resource scaleway_vpc_gateway_network main { - gateway_id = scaleway_vpc_public_gateway.main.id - private_network_id = scaleway_vpc_private_network.pn02.id - dhcp_id = scaleway_vpc_public_gateway_dhcp.main.id - cleanup_dhcp = true - enable_masquerade = true - zone = "nl-ams-1" - depends_on = [scaleway_vpc_public_gateway_ip.main, scaleway_vpc_private_network.pn02] + } + region = "nl-ams" } - - resource scaleway_rdb_instance main { - name = "test-rdb-private-network-dhcp" - node_type = "db-dev-s" - engine = %q - is_ha_cluster = false - disable_backup = true - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - region= "nl-ams" - tags = [ "terraform-test", "scaleway_rdb_instance", "volume", "rdb_pn" ] - volume_type = "bssd" - volume_size_in_gb = 10 - private_network { - ip_net = "192.168.1.254/24" #pool high - pn_id = "${scaleway_vpc_private_network.pn02.id}" - } + + data "scaleway_ipam_ip" "ip01" { + resource { + id = scaleway_vpc_gateway_network.main.id + type = "vpc_gateway_network" + } + type = "ipv4" + region = "nl-ams" + } + + resource "scaleway_vpc_public_gateway_ip" "main" { + zone = "nl-ams-1" + } + + resource "scaleway_vpc_public_gateway" "main" { + name = "foobar" + type = "VPC-GW-S" + zone = "nl-ams-1" + ip_id = scaleway_vpc_public_gateway_ip.main.id + } + + resource "scaleway_vpc_public_gateway_pat_rule" "main" { + gateway_id = scaleway_vpc_public_gateway.main.id + private_ip = data.scaleway_ipam_ip.ip01.address + private_port = scaleway_rdb_instance.main.private_network.0.port + public_port = 42 + protocol = "both" + zone = "nl-ams-1" + depends_on = [scaleway_vpc_gateway_network.main, scaleway_vpc_private_network.pn01] + } + + resource "scaleway_vpc_gateway_network" "main" { + gateway_id = scaleway_vpc_public_gateway.main.id + private_network_id = scaleway_vpc_private_network.pn01.id + ipam_config { + push_default_route = true + } + enable_masquerade = true + zone = "nl-ams-1" + depends_on = [scaleway_vpc_public_gateway_ip.main, scaleway_vpc_private_network.pn01] + } + + resource "scaleway_rdb_instance" "main" { + name = "test-rdb-private-network-dhcp" + node_type = "db-dev-s" + engine = %q + is_ha_cluster = false + disable_backup = true + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + region = "nl-ams" + tags = ["terraform-test", "scaleway_rdb_instance", "volume", "rdb_pn"] + volume_type = "bssd" + volume_size_in_gb = 10 + private_network { + ip_net = "192.168.1.254/24" #pool high + pn_id = scaleway_vpc_private_network.pn01.id + } } `, latestEngineVersion), Check: resource.ComposeTestCheckFunc( @@ -774,23 +789,32 @@ func TestAccInstance_PrivateNetwork_DHCP(t *testing.T) { }, { Config: fmt.Sprintf(` - resource scaleway_vpc_private_network pn02 { - name = "my_private_network" - region= "nl-ams" - } - - resource scaleway_rdb_instance main { - name = "test-rdb-private-network-dhcp" - node_type = "db-dev-s" - engine = %q - is_ha_cluster = false - disable_backup = true - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - region= "nl-ams" - tags = [ "terraform-test", "scaleway_rdb_instance", "volume", "rdb_pn" ] - volume_type = "bssd" - volume_size_in_gb = 10 + resource "scaleway_vpc" "vpc01" { + name = "my vpc" + region = "nl-ams" + } + + resource "scaleway_vpc_private_network" "pn01" { + name = "my_private_network" + vpc_id = scaleway_vpc.vpc01.id + ipv4_subnet { + subnet = "192.168.1.0/24" + } + region = "nl-ams" + } + + resource "scaleway_rdb_instance" "main" { + name = "test-rdb-private-network-dhcp" + node_type = "db-dev-s" + engine = %q + is_ha_cluster = false + disable_backup = true + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + region = "nl-ams" + tags = ["terraform-test", "scaleway_rdb_instance", "volume", "rdb_pn"] + volume_type = "bssd" + volume_size_in_gb = 10 } `, latestEngineVersion), }, diff --git a/internal/services/rdb/testdata/instance-private-network-dhcp.cassette.yaml b/internal/services/rdb/testdata/instance-private-network-dhcp.cassette.yaml index abbb1c0d1e..cb0287ff80 100644 --- a/internal/services/rdb/testdata/instance-private-network-dhcp.cassette.yaml +++ b/internal/services/rdb/testdata/instance-private-network-dhcp.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines method: GET response: @@ -25,18 +25,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 + content_length: 122852 uncompressed: false body: '{"engines":[{"logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg","name":"MySQL","region":"fr-par","versions":[{"available_init_settings":[{"default_value":"0","description":"If set to 0, table names are stored as specified and comparisons are case-sensitive. If set to 1, table names are stored in lowercase on disk and comparisons are not case sensitive.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":1,"int_min":0,"name":"lower_case_table_names","property_type":"INT","string_constraint":null,"unit":null}],"available_settings":[{"default_value":"1","description":"Controls the AUTO_INCREMENT interval between successive column values","float_max":null,"float_min":null,"hot_configurable":true,"int_max":65535,"int_min":1,"name":"auto_increment_increment","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Determines the starting point for the AUTO_INCREMENT column value","float_max":null,"float_min":null,"hot_configurable":true,"int_max":65535,"int_min":1,"name":"auto_increment_offset","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"utf8mb4","description":"Specify a specific server side character-set encoding","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"character_set_server","property_type":"STRING","string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$","unit":null},{"default_value":"10","description":"The number of seconds that the mysqld server waits for a connect packet before responding with Bad handshake","float_max":null,"float_min":null,"hot_configurable":true,"int_max":300,"int_min":10,"name":"connect_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"mysql_native_password","description":"The default authentication plugin at the user creation","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"default_authentication_plugin","property_type":"STRING","string_constraint":"^(mysql_native_password|caching_sha2_password)$","unit":null},{"default_value":"UTC","description":"This option sets the global time_zone system variable.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"default_time_zone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"The maximum permitted result length in bytes for the GROUP_CONCAT() function","float_max":null,"float_min":null,"hot_configurable":true,"int_max":65536,"int_min":1024,"name":"group_concat_max_len","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"fsync","description":"Defines the method used to flush data to InnoDB data files and log files, which can affect I/O throughput","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"innodb_flush_method","property_type":"STRING","string_constraint":"^(fsync|O_DIRECT)$","unit":null},{"default_value":"84","description":"The maximum character length of words that are stored in an InnoDB FULLTEXT index.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":84,"int_min":10,"name":"innodb_ft_max_token_size","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"3","description":"The minimum character length of words that are stored in an InnoDB FULLTEXT index.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":16,"int_min":0,"name":"innodb_ft_min_token_size","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"50","description":"The length of time in seconds an InnoDB transaction waits for a row lock before giving up","float_max":null,"float_min":null,"hot_configurable":true,"int_max":600,"int_min":1,"name":"innodb_lock_wait_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"200","description":"The number of index pages to sample when estimating cardinality and other statistics for an indexed column","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1000,"int_min":20,"name":"innodb_stats_persistent_sample_pages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"21600","description":"The number of seconds the server waits for activity on an interactive connection before closing it","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":60,"name":"interactive_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"OFF","description":"This variable controls server-side LOCAL capability for LOAD DATA statements","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"local_infile","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"31536000","description":"This variable specifies the timeout in seconds for attempts to acquire metadata locks","float_max":null,"float_min":null,"hot_configurable":true,"int_max":31536000,"int_min":60,"name":"lock_wait_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"OFF","description":"This variable controls whether stored function creators can be trusted","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"log_bin_trust_function_creators","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"10","description":"If the slow query log is enabled, the query is logged to the slow query log file if it takes longer than this threshold","float_max":3600,"float_min":0,"hot_configurable":true,"int_max":null,"int_min":null,"name":"long_query_time","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"64","description":"The maximum size (MB) of one packet or any generated/intermediate string, or any parameter sent by the mysql_stmt_send_long_data() C API function","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":4,"name":"max_allowed_packet","property_type":"INT","string_constraint":null,"unit":"M"},{"default_value":"100","description":"The maximum permitted number of simultaneous client connections","float_max":null,"float_min":null,"hot_configurable":true,"int_max":5000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"16382","description":"Limit the total number of prepared statements in the server","float_max":null,"float_min":null,"hot_configurable":false,"int_max":1048576,"int_min":16382,"name":"max_prepared_stmt_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Queries that examine fewer than this number of rows are not logged to the slow query log.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"min_examined_row_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"OFF","description":"Whether the slow query log is enabled","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"slow_query_log","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"262144","description":"Connection sort buffer memory size. Large buffer slows down most queries that perform sorts.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10485760,"int_min":32768,"name":"sort_buffer_size","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION","description":"Modes affect the SQL syntax MySQL supports and the data validation checks it performs","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"sql_mode","property_type":"STRING","string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$","unit":null},{"default_value":"2000","description":"The number of table definitions that can be stored in the definition cache","float_max":null,"float_min":null,"hot_configurable":true,"int_max":20000,"int_min":1000,"name":"table_definition_cache","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10000","description":"The number of open tables for all threads","float_max":null,"float_min":null,"hot_configurable":true,"int_max":20000,"int_min":1000,"name":"table_open_cache","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"16","description":"The number of open tables cache instances. Improve scalability by reducing contention among sessions but increase memory usage in case of many triggers or procedures","float_max":null,"float_min":null,"hot_configurable":true,"int_max":16,"int_min":1,"name":"table_open_cache_instances","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"280","description":"Defines the stack size for each thread and impact the complexity of the SQL statements that the server can handle.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10240,"int_min":128,"name":"thread_stack","property_type":"INT","string_constraint":null,"unit":"K"},{"default_value":"REPEATABLE-READ","description":"Define the transaction isolation level which fine-tunes the balance between performance and reliability, consistency, and reproducibility of your database","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"transaction_isolation","property_type":"STRING","string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$","unit":null},{"default_value":"21600","description":"The number of seconds the server waits for activity on a noninteractive connection before closing it","float_max":null,"float_min":null,"hot_configurable":false,"int_max":21600,"int_min":60,"name":"wait_timeout","property_type":"INT","string_constraint":null,"unit":null}],"beta":false,"disabled":false,"end_of_life":"2026-04-01T00:00:00Z","name":"MySQL-8","version":"8"}]},{"logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg","name":"PostgreSQL","region":"fr-par","versions":[{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":false,"end_of_life":"2027-11-11T00:00:00Z","name":"PostgreSQL-15","version":"15"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":false,"end_of_life":"2026-11-12T00:00:00Z","name":"PostgreSQL-14","version":"14"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":false,"end_of_life":"2025-11-13T00:00:00Z","name":"PostgreSQL-13","version":"13"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":false,"end_of_life":"2024-11-14T00:00:00Z","name":"PostgreSQL-12","version":"12"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":true,"end_of_life":"2023-11-09T00:00:00Z","name":"PostgreSQL-11","version":"11"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":true,"end_of_life":"2022-11-10T00:00:00Z","name":"PostgreSQL-10","version":"10"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":true,"end_of_life":"2021-11-11T00:00:00Z","name":"PostgreSQL-9.6","version":"9.6"}]}],"total_count":2}' headers: + Content-Length: + - "122852" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:06:37 GMT + - Tue, 22 Oct 2024 13:15:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -44,29 +46,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a90543e4-c967-463b-9bf2-849a36fb8052 + - 6c73f8ed-0e62-4852-9fc9-b706570d1b6b status: 200 OK code: 200 - duration: 271.955394ms + duration: 162.446473ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 79 + content_length: 102 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"192.168.1.0/24"}' + body: '{"name":"my vpc","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"enable_routing":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/dhcps + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs method: POST response: proto: HTTP/2.0 @@ -74,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 362 uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"}' + body: '{"created_at":"2024-10-22T13:15:30.781606Z","id":"75a45c10-8ca0-49a7-a062-c91c5148edba","is_default":false,"name":"my vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","routing_enabled":true,"tags":[],"updated_at":"2024-10-22T13:15:30.781606Z"}' headers: Content-Length: - - "586" + - "362" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:06:42 GMT + - Tue, 22 Oct 2024 13:15:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -95,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9c1f458-7bbb-434a-8fd0-ea5c0d8ea450 + - c5c545d3-c12e-4268-ab08-0ad38669f247 status: 200 OK code: 200 - duration: 113.433844ms + duration: 180.818864ms - id: 2 request: proto: HTTP/1.1 @@ -114,8 +116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/dhcps/7d4eb8ce-c98f-44d2-a12e-0d403d999ea6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/75a45c10-8ca0-49a7-a062-c91c5148edba method: GET response: proto: HTTP/2.0 @@ -123,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 362 uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"}' + body: '{"created_at":"2024-10-22T13:15:30.781606Z","id":"75a45c10-8ca0-49a7-a062-c91c5148edba","is_default":false,"name":"my vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","routing_enabled":true,"tags":[],"updated_at":"2024-10-22T13:15:30.781606Z"}' headers: Content-Length: - - "586" + - "362" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:06:42 GMT + - Tue, 22 Oct 2024 13:15:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -144,28 +146,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e14ff600-7f36-4da6-ad86-ca6e43b5d1e9 + - 599c36da-c5fd-4e10-a581-59f1cb1e6527 status: 200 OK code: 200 - duration: 65.94425ms + duration: 39.62844ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 106 + content_length: 168 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"my_private_network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null}' + body: '{"name":"my_private_network","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["192.168.1.0/24"],"vpc_id":"75a45c10-8ca0-49a7-a062-c91c5148edba"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks method: POST response: @@ -174,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 719 + content_length: 1045 uncompressed: false - body: '{"created_at":"2024-05-14T09:06:42.294166Z","dhcp_enabled":true,"id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","subnets":[{"created_at":"2024-05-14T09:06:42.294166Z","id":"1c3afa97-01af-4126-9802-c88b7851fe3e","subnet":"172.16.16.0/22","updated_at":"2024-05-14T09:06:42.294166Z"},{"created_at":"2024-05-14T09:06:42.294166Z","id":"524ab668-c0c5-4229-8ff2-decc5041fd56","subnet":"fd5c:d510:d730:2cba::/64","updated_at":"2024-05-14T09:06:42.294166Z"}],"tags":[],"updated_at":"2024-05-14T09:06:42.294166Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}' + body: '{"created_at":"2024-10-22T13:15:31.020207Z","dhcp_enabled":true,"id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","subnets":[{"created_at":"2024-10-22T13:15:31.020207Z","id":"f5490a24-d55f-4f89-8f17-ee00a2cbc131","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"192.168.1.0/24","updated_at":"2024-10-22T13:15:31.020207Z","vpc_id":"75a45c10-8ca0-49a7-a062-c91c5148edba"},{"created_at":"2024-10-22T13:15:31.020207Z","id":"bb671a8a-d699-4b3f-beee-e81a34d372e3","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd2c:2ff0:469a:e950::/64","updated_at":"2024-10-22T13:15:31.020207Z","vpc_id":"75a45c10-8ca0-49a7-a062-c91c5148edba"}],"tags":[],"updated_at":"2024-10-22T13:15:31.020207Z","vpc_id":"75a45c10-8ca0-49a7-a062-c91c5148edba"}' headers: Content-Length: - - "719" + - "1045" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:06:42 GMT + - Tue, 22 Oct 2024 13:15:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d67444b-0e40-44c3-a3f3-ccd01b0c04f4 + - 96764586-1ddd-477d-a90f-9c6950827837 status: 200 OK code: 200 - duration: 558.777537ms + duration: 528.989768ms - id: 4 request: proto: HTTP/1.1 @@ -214,8 +216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/61afa66f-80bf-4f31-9b28-649b0c3bc9b3 method: GET response: proto: HTTP/2.0 @@ -223,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 719 + content_length: 1045 uncompressed: false - body: '{"created_at":"2024-05-14T09:06:42.294166Z","dhcp_enabled":true,"id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","subnets":[{"created_at":"2024-05-14T09:06:42.294166Z","id":"1c3afa97-01af-4126-9802-c88b7851fe3e","subnet":"172.16.16.0/22","updated_at":"2024-05-14T09:06:42.294166Z"},{"created_at":"2024-05-14T09:06:42.294166Z","id":"524ab668-c0c5-4229-8ff2-decc5041fd56","subnet":"fd5c:d510:d730:2cba::/64","updated_at":"2024-05-14T09:06:42.294166Z"}],"tags":[],"updated_at":"2024-05-14T09:06:42.294166Z","vpc_id":"5976fd03-14dd-4892-a481-034469de59c6"}' + body: '{"created_at":"2024-10-22T13:15:31.020207Z","dhcp_enabled":true,"id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","subnets":[{"created_at":"2024-10-22T13:15:31.020207Z","id":"f5490a24-d55f-4f89-8f17-ee00a2cbc131","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"192.168.1.0/24","updated_at":"2024-10-22T13:15:31.020207Z","vpc_id":"75a45c10-8ca0-49a7-a062-c91c5148edba"},{"created_at":"2024-10-22T13:15:31.020207Z","id":"bb671a8a-d699-4b3f-beee-e81a34d372e3","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd2c:2ff0:469a:e950::/64","updated_at":"2024-10-22T13:15:31.020207Z","vpc_id":"75a45c10-8ca0-49a7-a062-c91c5148edba"}],"tags":[],"updated_at":"2024-10-22T13:15:31.020207Z","vpc_id":"75a45c10-8ca0-49a7-a062-c91c5148edba"}' headers: Content-Length: - - "719" + - "1045" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:06:42 GMT + - Tue, 22 Oct 2024 13:15:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3cb5b0a-1b4e-4d35-b3ec-37def28c77e6 + - 1f9f7705-0a32-40d5-ba4b-797406bb2fc7 status: 200 OK code: 200 - duration: 70.838317ms + duration: 34.952354ms - id: 5 request: proto: HTTP/1.1 @@ -259,13 +261,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/ips method: POST response: @@ -276,7 +278,7 @@ interactions: trailer: {} content_length: 367 uncompressed: false - body: '{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":null,"id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"}' + body: '{"address":"51.158.179.16","created_at":"2024-10-22T13:15:31.506029Z","gateway_id":null,"id":"39fec5a0-53d9-405b-af02-17948f96980b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"16-179-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-10-22T13:15:31.506029Z","zone":"nl-ams-1"}' headers: Content-Length: - "367" @@ -285,9 +287,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 May 2024 09:06:43 GMT + - Tue, 22 Oct 2024 13:15:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5276273b-536d-48a2-932f-79ac6c926fba + - 6cb151da-09b2-4ed8-b679-d34979087658 status: 200 OK code: 200 - duration: 829.098317ms + duration: 836.565657ms - id: 6 request: proto: HTTP/1.1 @@ -314,8 +316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/ips/33a83f9d-c32d-4013-a0d9-d6a86d8b19e2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/ips/39fec5a0-53d9-405b-af02-17948f96980b method: GET response: proto: HTTP/2.0 @@ -325,7 +327,7 @@ interactions: trailer: {} content_length: 367 uncompressed: false - body: '{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":null,"id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"}' + body: '{"address":"51.158.179.16","created_at":"2024-10-22T13:15:31.506029Z","gateway_id":null,"id":"39fec5a0-53d9-405b-af02-17948f96980b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"16-179-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-10-22T13:15:31.506029Z","zone":"nl-ams-1"}' headers: Content-Length: - "367" @@ -334,9 +336,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 May 2024 09:06:43 GMT + - Tue, 22 Oct 2024 13:15:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,10 +346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ddb06c6d-cb62-4f6b-adfd-53554b157c19 + - 0b36fd3f-6170-4f5b-9202-bc99bfbae18f status: 200 OK code: 200 - duration: 94.242928ms + duration: 38.651083ms - id: 7 request: proto: HTTP/1.1 @@ -359,13 +361,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"foobar","tags":[],"type":"VPC-GW-S","upstream_dns_servers":[],"ip_id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","enable_smtp":false,"enable_bastion":false}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"foobar","tags":[],"type":"VPC-GW-S","upstream_dns_servers":[],"ip_id":"39fec5a0-53d9-405b-af02-17948f96980b","enable_smtp":false,"enable_bastion":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways method: POST response: @@ -376,7 +378,7 @@ interactions: trailer: {} content_length: 998 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-05-14T09:06:43.233572Z","gateway_networks":[],"id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","ip":{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"},"ip_mobility_enabled":false,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-05-14T09:06:43.233572Z","upstream_dns_servers":[],"version":null,"zone":"nl-ams-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-10-22T13:15:31.685262Z","gateway_networks":[],"id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","ip":{"address":"51.158.179.16","created_at":"2024-10-22T13:15:31.506029Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"39fec5a0-53d9-405b-af02-17948f96980b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"16-179-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-10-22T13:15:31.506029Z","zone":"nl-ams-1"},"ip_mobility_enabled":false,"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-10-22T13:15:31.685262Z","upstream_dns_servers":[],"version":null,"zone":"nl-ams-1"}' headers: Content-Length: - "998" @@ -385,9 +387,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 May 2024 09:06:43 GMT + - Tue, 22 Oct 2024 13:15:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4692636c-d47b-4e82-85ea-1023b16d92e5 + - 9f1ef60c-a06d-4d45-8b74-58d5946a771a status: 200 OK code: 200 - duration: 148.266566ms + duration: 115.768355ms - id: 8 request: proto: HTTP/1.1 @@ -414,8 +416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/8d9f16f0-1b57-4786-a415-2b7dec3ef447 method: GET response: proto: HTTP/2.0 @@ -425,7 +427,7 @@ interactions: trailer: {} content_length: 1000 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-05-14T09:06:43.233572Z","gateway_networks":[],"id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","ip":{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-05-14T09:06:43.296391Z","upstream_dns_servers":[],"version":"0.6.3","zone":"nl-ams-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-10-22T13:15:31.685262Z","gateway_networks":[],"id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","ip":{"address":"51.158.179.16","created_at":"2024-10-22T13:15:31.506029Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"39fec5a0-53d9-405b-af02-17948f96980b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"16-179-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-10-22T13:15:31.506029Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-10-22T13:15:31.733308Z","upstream_dns_servers":[],"version":"0.7.2","zone":"nl-ams-1"}' headers: Content-Length: - "1000" @@ -434,9 +436,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 May 2024 09:06:43 GMT + - Tue, 22 Oct 2024 13:15:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,28 +446,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82c5d14a-e540-4807-a7c1-d72404610fd2 + - df678e2b-ad86-42ea-b30a-604e4acd0129 status: 200 OK code: 200 - duration: 85.926789ms + duration: 46.332557ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 548 + content_length: 579 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-rdb-private-network-dhcp","engine":"PostgreSQL-15","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","node_type":"db-dev-s","is_ha_cluster":false,"disable_backup":true,"tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"init_settings":null,"volume_type":"bssd","volume_size":10000000000,"init_endpoints":[{"private_network":{"private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","service_ip":"192.168.1.254/24"}}],"backup_same_region":false}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-rdb-private-network-dhcp","engine":"PostgreSQL-15","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","node_type":"db-dev-s","is_ha_cluster":false,"disable_backup":true,"tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"init_settings":null,"volume_type":"bssd","volume_size":10000000000,"init_endpoints":[{"private_network":{"private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","service_ip":"192.168.1.254/24"}}],"backup_same_region":false,"encryption":{"enabled":false}}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances method: POST response: @@ -474,20 +476,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1096 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-05-14T09:06:43.182848Z","endpoint":null,"endpoints":[{"id":"63c8bff5-c3d8-41b7-8726-ea019c188e5f","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"6ab9f17b-184f-4f17-835e-0b72c21c7d5a","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-10-22T13:15:31.870898Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"db683a6d-0998-4f25-aa32-312b8403fa6b","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"61b54824-9439-4688-b81d-83b5eb2c2400","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1064" + - "1096" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:06:43 GMT + - Tue, 22 Oct 2024 13:15:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -495,10 +497,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - acae55a6-c870-44d1-8eb6-dbd4edf4d267 + - d6cd986c-6fcb-4fde-b275-2cbaabeb97d0 status: 200 OK code: 200 - duration: 934.583906ms + duration: 804.001544ms - id: 10 request: proto: HTTP/1.1 @@ -514,8 +516,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400 method: GET response: proto: HTTP/2.0 @@ -523,20 +525,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1096 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-05-14T09:06:43.182848Z","endpoint":null,"endpoints":[{"id":"63c8bff5-c3d8-41b7-8726-ea019c188e5f","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"6ab9f17b-184f-4f17-835e-0b72c21c7d5a","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-10-22T13:15:31.870898Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"db683a6d-0998-4f25-aa32-312b8403fa6b","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"61b54824-9439-4688-b81d-83b5eb2c2400","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1064" + - "1096" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:06:43 GMT + - Tue, 22 Oct 2024 13:15:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -544,10 +546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e149de13-ba4a-435c-96cb-d507a390df3e + - 9e05a922-1164-4f46-9f97-fe25bbac3eac status: 200 OK code: 200 - duration: 184.95089ms + duration: 146.369769ms - id: 11 request: proto: HTTP/1.1 @@ -563,8 +565,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/8d9f16f0-1b57-4786-a415-2b7dec3ef447 method: GET response: proto: HTTP/2.0 @@ -572,20 +574,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1001 + content_length: 997 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-05-14T09:06:43.233572Z","gateway_networks":[],"id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","ip":{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-05-14T09:06:43.437134Z","upstream_dns_servers":[],"version":"0.6.3","zone":"nl-ams-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-10-22T13:15:31.685262Z","gateway_networks":[],"id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","ip":{"address":"51.158.179.16","created_at":"2024-10-22T13:15:31.506029Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"39fec5a0-53d9-405b-af02-17948f96980b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"16-179-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-10-22T13:15:31.506029Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-10-22T13:15:36.627697Z","upstream_dns_servers":[],"version":"0.7.2","zone":"nl-ams-1"}' headers: Content-Length: - - "1001" + - "997" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:06:48 GMT + - Tue, 22 Oct 2024 13:15:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,10 +595,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc48c768-d602-43a3-9b89-199ff3bdb7e7 + - 21c016ab-4e73-4cfa-8d77-d672951b8dc0 status: 200 OK code: 200 - duration: 48.543711ms + duration: 44.180456ms - id: 12 request: proto: HTTP/1.1 @@ -612,8 +614,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/8d9f16f0-1b57-4786-a415-2b7dec3ef447 method: GET response: proto: HTTP/2.0 @@ -623,7 +625,7 @@ interactions: trailer: {} content_length: 997 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-05-14T09:06:43.233572Z","gateway_networks":[],"id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","ip":{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-05-14T09:06:50.340685Z","upstream_dns_servers":[],"version":"0.6.3","zone":"nl-ams-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-10-22T13:15:31.685262Z","gateway_networks":[],"id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","ip":{"address":"51.158.179.16","created_at":"2024-10-22T13:15:31.506029Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"39fec5a0-53d9-405b-af02-17948f96980b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"16-179-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-10-22T13:15:31.506029Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-10-22T13:15:36.627697Z","upstream_dns_servers":[],"version":"0.7.2","zone":"nl-ams-1"}' headers: Content-Length: - "997" @@ -632,9 +634,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 May 2024 09:06:53 GMT + - Tue, 22 Oct 2024 13:15:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -642,10 +644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5e50eee-5147-4c15-8a2c-3758c0d721e1 + - afae274f-540e-42ff-8a49-1703f28e394a status: 200 OK code: 200 - duration: 42.152343ms + duration: 50.793614ms - id: 13 request: proto: HTTP/1.1 @@ -661,8 +663,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/8d9f16f0-1b57-4786-a415-2b7dec3ef447 method: GET response: proto: HTTP/2.0 @@ -672,7 +674,7 @@ interactions: trailer: {} content_length: 997 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-05-14T09:06:43.233572Z","gateway_networks":[],"id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","ip":{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-05-14T09:06:50.340685Z","upstream_dns_servers":[],"version":"0.6.3","zone":"nl-ams-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-10-22T13:15:31.685262Z","gateway_networks":[],"id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","ip":{"address":"51.158.179.16","created_at":"2024-10-22T13:15:31.506029Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"39fec5a0-53d9-405b-af02-17948f96980b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"16-179-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-10-22T13:15:31.506029Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-10-22T13:15:36.627697Z","upstream_dns_servers":[],"version":"0.7.2","zone":"nl-ams-1"}' headers: Content-Length: - "997" @@ -681,9 +683,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 May 2024 09:06:53 GMT + - Tue, 22 Oct 2024 13:15:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -691,48 +693,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b57e29b-658e-4c5c-b5e2-3f4066a517ce + - f059b712-2f89-44bc-bb37-7319f9ce4c42 status: 200 OK code: 200 - duration: 77.172457ms + duration: 43.398879ms - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 217 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","enable_masquerade":true,"enable_dhcp":true,"ipam_config":{"push_default_route":true,"ipam_ip_id":null}}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 997 + content_length: 489 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-05-14T09:06:43.233572Z","gateway_networks":[],"id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","ip":{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-05-14T09:06:50.340685Z","upstream_dns_servers":[],"version":"0.6.3","zone":"nl-ams-1"}' + body: '{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.223115Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"90d980f9-ebe2-47f5-a479-b403babe38a0","ipam_config":{"ipam_ip_id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","push_default_route":true},"mac_address":null,"private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","status":"created","updated_at":"2024-10-22T13:15:37.223115Z","zone":"nl-ams-1"}' headers: Content-Length: - - "997" + - "489" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:06:53 GMT + - Tue, 22 Oct 2024 13:15:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -740,50 +744,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4b21070-9078-4b7e-948c-f2cd768f17a2 + - f5d43208-5452-48c0-97a8-18424e2a46a7 status: 200 OK code: 200 - duration: 36.27605ms + duration: 376.010105ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 206 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","enable_masquerade":true,"enable_dhcp":true,"dhcp_id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/8d9f16f0-1b57-4786-a415-2b7dec3ef447 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 983 + content_length: 1490 uncompressed: false - body: '{"address":null,"created_at":"2024-05-14T09:06:55.718278Z","dhcp":{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9","ipam_config":null,"mac_address":null,"private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","status":"created","updated_at":"2024-05-14T09:06:55.718278Z","zone":"nl-ams-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-10-22T13:15:31.685262Z","gateway_networks":[{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.223115Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"90d980f9-ebe2-47f5-a479-b403babe38a0","ipam_config":{"ipam_ip_id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","push_default_route":true},"mac_address":null,"private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","status":"created","updated_at":"2024-10-22T13:15:37.223115Z","zone":"nl-ams-1"}],"id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","ip":{"address":"51.158.179.16","created_at":"2024-10-22T13:15:31.506029Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"39fec5a0-53d9-405b-af02-17948f96980b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"16-179-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-10-22T13:15:31.506029Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-10-22T13:15:37.339014Z","upstream_dns_servers":[],"version":"0.7.2","zone":"nl-ams-1"}' headers: Content-Length: - - "983" + - "1490" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:06:55 GMT + - Tue, 22 Oct 2024 13:15:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -791,10 +793,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bca3b716-895d-4910-8c8f-09606e1f0c33 + - 7f0b74a8-e324-43ae-8ab2-7180c78b4247 status: 200 OK code: 200 - duration: 2.35505438s + duration: 42.589268ms - id: 16 request: proto: HTTP/1.1 @@ -810,8 +812,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/8d9f16f0-1b57-4786-a415-2b7dec3ef447 method: GET response: proto: HTTP/2.0 @@ -819,20 +821,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1983 + content_length: 1490 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-05-14T09:06:43.233572Z","gateway_networks":[{"address":null,"created_at":"2024-05-14T09:06:55.718278Z","dhcp":{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9","ipam_config":null,"mac_address":null,"private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","status":"created","updated_at":"2024-05-14T09:06:55.718278Z","zone":"nl-ams-1"}],"id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","ip":{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-05-14T09:06:55.911889Z","upstream_dns_servers":[],"version":"0.6.3","zone":"nl-ams-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-10-22T13:15:31.685262Z","gateway_networks":[{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.223115Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"90d980f9-ebe2-47f5-a479-b403babe38a0","ipam_config":{"ipam_ip_id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","push_default_route":true},"mac_address":null,"private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","status":"created","updated_at":"2024-10-22T13:15:37.223115Z","zone":"nl-ams-1"}],"id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","ip":{"address":"51.158.179.16","created_at":"2024-10-22T13:15:31.506029Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"39fec5a0-53d9-405b-af02-17948f96980b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"16-179-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-10-22T13:15:31.506029Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-10-22T13:15:37.339014Z","upstream_dns_servers":[],"version":"0.7.2","zone":"nl-ams-1"}' headers: Content-Length: - - "1983" + - "1490" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:06:55 GMT + - Tue, 22 Oct 2024 13:15:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -840,10 +842,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6464518c-09a6-435d-b04f-26325aa051d8 + - 1a2370eb-02ce-470d-923c-aad367e8c883 status: 200 OK code: 200 - duration: 37.955291ms + duration: 170.310068ms - id: 17 request: proto: HTTP/1.1 @@ -859,8 +861,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/8d9f16f0-1b57-4786-a415-2b7dec3ef447 method: GET response: proto: HTTP/2.0 @@ -868,20 +870,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1983 + content_length: 1499 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-05-14T09:06:43.233572Z","gateway_networks":[{"address":null,"created_at":"2024-05-14T09:06:55.718278Z","dhcp":{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9","ipam_config":null,"mac_address":null,"private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","status":"created","updated_at":"2024-05-14T09:06:55.718278Z","zone":"nl-ams-1"}],"id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","ip":{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-05-14T09:06:55.911889Z","upstream_dns_servers":[],"version":"0.6.3","zone":"nl-ams-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-10-22T13:15:31.685262Z","gateway_networks":[{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.223115Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"90d980f9-ebe2-47f5-a479-b403babe38a0","ipam_config":{"ipam_ip_id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","push_default_route":true},"mac_address":"02:00:00:19:F7:18","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","status":"ready","updated_at":"2024-10-22T13:15:45.871237Z","zone":"nl-ams-1"}],"id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","ip":{"address":"51.158.179.16","created_at":"2024-10-22T13:15:31.506029Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"39fec5a0-53d9-405b-af02-17948f96980b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"16-179-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-10-22T13:15:31.506029Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-10-22T13:15:46.031839Z","upstream_dns_servers":[],"version":"0.7.2","zone":"nl-ams-1"}' headers: Content-Length: - - "1983" + - "1499" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:07:01 GMT + - Tue, 22 Oct 2024 13:15:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -889,10 +891,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d06f7bda-8d74-4170-a1f0-64d0d114692b + - de34837b-5cb6-4416-8ba4-6bb42667455c status: 200 OK code: 200 - duration: 47.863367ms + duration: 38.475305ms - id: 18 request: proto: HTTP/1.1 @@ -908,8 +910,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/90d980f9-ebe2-47f5-a479-b403babe38a0 method: GET response: proto: HTTP/2.0 @@ -917,20 +919,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2002 + content_length: 502 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-05-14T09:06:43.233572Z","gateway_networks":[{"address":null,"created_at":"2024-05-14T09:06:55.718278Z","dhcp":{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9","ipam_config":null,"mac_address":"02:00:00:13:AF:3C","private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","status":"configuring","updated_at":"2024-05-14T09:07:01.769630Z","zone":"nl-ams-1"}],"id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","ip":{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-05-14T09:06:55.911889Z","upstream_dns_servers":[],"version":"0.6.3","zone":"nl-ams-1"}' + body: '{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.223115Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"90d980f9-ebe2-47f5-a479-b403babe38a0","ipam_config":{"ipam_ip_id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","push_default_route":true},"mac_address":"02:00:00:19:F7:18","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","status":"ready","updated_at":"2024-10-22T13:15:45.871237Z","zone":"nl-ams-1"}' headers: Content-Length: - - "2002" + - "502" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:07:06 GMT + - Tue, 22 Oct 2024 13:15:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -938,10 +940,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 718ed631-5c0c-4a9c-bc62-e36396760478 + - 73a58380-8bc9-425e-8a82-b7f3562c1172 status: 200 OK code: 200 - duration: 45.704591ms + duration: 90.543979ms - id: 19 request: proto: HTTP/1.1 @@ -957,8 +959,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/90d980f9-ebe2-47f5-a479-b403babe38a0 method: GET response: proto: HTTP/2.0 @@ -966,20 +968,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1992 + content_length: 502 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-05-14T09:06:43.233572Z","gateway_networks":[{"address":null,"created_at":"2024-05-14T09:06:55.718278Z","dhcp":{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9","ipam_config":null,"mac_address":"02:00:00:13:AF:3C","private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","status":"ready","updated_at":"2024-05-14T09:07:07.224472Z","zone":"nl-ams-1"}],"id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","ip":{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-05-14T09:07:07.426146Z","upstream_dns_servers":[],"version":"0.6.3","zone":"nl-ams-1"}' + body: '{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.223115Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"90d980f9-ebe2-47f5-a479-b403babe38a0","ipam_config":{"ipam_ip_id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","push_default_route":true},"mac_address":"02:00:00:19:F7:18","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","status":"ready","updated_at":"2024-10-22T13:15:45.871237Z","zone":"nl-ams-1"}' headers: Content-Length: - - "1992" + - "502" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:07:11 GMT + - Tue, 22 Oct 2024 13:15:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -987,10 +989,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0cfe79fd-e049-4362-8f2f-854447662336 + - 958c4c97-4efd-4a87-95d2-f9cf059f79e6 status: 200 OK code: 200 - duration: 50.16913ms + duration: 71.248985ms - id: 20 request: proto: HTTP/1.1 @@ -1006,8 +1008,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/8d9f16f0-1b57-4786-a415-2b7dec3ef447 method: GET response: proto: HTTP/2.0 @@ -1015,20 +1017,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 996 + content_length: 1499 uncompressed: false - body: '{"address":null,"created_at":"2024-05-14T09:06:55.718278Z","dhcp":{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9","ipam_config":null,"mac_address":"02:00:00:13:AF:3C","private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","status":"ready","updated_at":"2024-05-14T09:07:07.224472Z","zone":"nl-ams-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-10-22T13:15:31.685262Z","gateway_networks":[{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.223115Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"90d980f9-ebe2-47f5-a479-b403babe38a0","ipam_config":{"ipam_ip_id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","push_default_route":true},"mac_address":"02:00:00:19:F7:18","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","status":"ready","updated_at":"2024-10-22T13:15:45.871237Z","zone":"nl-ams-1"}],"id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","ip":{"address":"51.158.179.16","created_at":"2024-10-22T13:15:31.506029Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"39fec5a0-53d9-405b-af02-17948f96980b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"16-179-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-10-22T13:15:31.506029Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-10-22T13:15:46.031839Z","upstream_dns_servers":[],"version":"0.7.2","zone":"nl-ams-1"}' headers: Content-Length: - - "996" + - "1499" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:07:11 GMT + - Tue, 22 Oct 2024 13:15:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1036,10 +1038,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4af19d88-16a7-4fc1-8bc9-d243189d4743 + - cca65f72-b517-4a96-86e6-1a28701d4f41 status: 200 OK code: 200 - duration: 474.660842ms + duration: 44.622372ms - id: 21 request: proto: HTTP/1.1 @@ -1055,8 +1057,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/90d980f9-ebe2-47f5-a479-b403babe38a0 method: GET response: proto: HTTP/2.0 @@ -1064,20 +1066,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 996 + content_length: 502 uncompressed: false - body: '{"address":null,"created_at":"2024-05-14T09:06:55.718278Z","dhcp":{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9","ipam_config":null,"mac_address":"02:00:00:13:AF:3C","private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","status":"ready","updated_at":"2024-05-14T09:07:07.224472Z","zone":"nl-ams-1"}' + body: '{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.223115Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"90d980f9-ebe2-47f5-a479-b403babe38a0","ipam_config":{"ipam_ip_id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","push_default_route":true},"mac_address":"02:00:00:19:F7:18","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","status":"ready","updated_at":"2024-10-22T13:15:45.871237Z","zone":"nl-ams-1"}' headers: Content-Length: - - "996" + - "502" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:07:11 GMT + - Tue, 22 Oct 2024 13:15:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1085,10 +1087,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 215018c1-edda-42a1-8d28-6f3a0c5d74c2 + - 8d7e2c94-d916-4de5-8816-6cf13da91d30 status: 200 OK code: 200 - duration: 108.118263ms + duration: 68.997699ms - id: 22 request: proto: HTTP/1.1 @@ -1104,8 +1106,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/nl-ams/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=90d980f9-ebe2-47f5-a479-b403babe38a0&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -1113,20 +1115,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1992 + content_length: 519 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-05-14T09:06:43.233572Z","gateway_networks":[{"address":null,"created_at":"2024-05-14T09:06:55.718278Z","dhcp":{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9","ipam_config":null,"mac_address":"02:00:00:13:AF:3C","private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","status":"ready","updated_at":"2024-05-14T09:07:07.224472Z","zone":"nl-ams-1"}],"id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","ip":{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-05-14T09:07:07.426146Z","upstream_dns_servers":[],"version":"0.6.3","zone":"nl-ams-1"}' + body: '{"ips":[{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.163982Z","id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","resource":{"id":"90d980f9-ebe2-47f5-a479-b403babe38a0","mac_address":"02:00:00:19:F7:18","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"f5490a24-d55f-4f89-8f17-ee00a2cbc131"},"tags":[],"updated_at":"2024-10-22T13:15:37.754798Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1992" + - "519" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:07:11 GMT + - Tue, 22 Oct 2024 13:15:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1134,10 +1136,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d430363c-91f1-47a3-b7e2-04bd4fde3c9e + - 15e982b8-8771-4e34-a3f9-3309e1c012df status: 200 OK code: 200 - duration: 46.949224ms + duration: 70.545604ms - id: 23 request: proto: HTTP/1.1 @@ -1153,8 +1155,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400 method: GET response: proto: HTTP/2.0 @@ -1162,20 +1164,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 996 + content_length: 1096 uncompressed: false - body: '{"address":null,"created_at":"2024-05-14T09:06:55.718278Z","dhcp":{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9","ipam_config":null,"mac_address":"02:00:00:13:AF:3C","private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","status":"ready","updated_at":"2024-05-14T09:07:07.224472Z","zone":"nl-ams-1"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-10-22T13:15:31.870898Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"db683a6d-0998-4f25-aa32-312b8403fa6b","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"61b54824-9439-4688-b81d-83b5eb2c2400","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "996" + - "1096" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:07:11 GMT + - Tue, 22 Oct 2024 13:16:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1183,10 +1185,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 188e5eb1-9907-408b-ae75-fef5b8981ab8 + - a7b5d56b-ea67-4f2f-ade0-b27364fc9d40 status: 200 OK code: 200 - duration: 64.113009ms + duration: 137.754107ms - id: 24 request: proto: HTTP/1.1 @@ -1202,8 +1204,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400 method: GET response: proto: HTTP/2.0 @@ -1211,20 +1213,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1096 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-05-14T09:06:43.182848Z","endpoint":null,"endpoints":[{"id":"63c8bff5-c3d8-41b7-8726-ea019c188e5f","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"6ab9f17b-184f-4f17-835e-0b72c21c7d5a","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-10-22T13:15:31.870898Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"db683a6d-0998-4f25-aa32-312b8403fa6b","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"61b54824-9439-4688-b81d-83b5eb2c2400","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1064" + - "1096" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:07:14 GMT + - Tue, 22 Oct 2024 13:16:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1232,10 +1234,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80dfc623-21de-4866-adce-44521c75005a + - e6ab800e-4cea-4680-9b95-b3af1b173122 status: 200 OK code: 200 - duration: 179.682129ms + duration: 134.749544ms - id: 25 request: proto: HTTP/1.1 @@ -1251,8 +1253,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400 method: GET response: proto: HTTP/2.0 @@ -1260,20 +1262,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1096 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-05-14T09:06:43.182848Z","endpoint":null,"endpoints":[{"id":"63c8bff5-c3d8-41b7-8726-ea019c188e5f","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"6ab9f17b-184f-4f17-835e-0b72c21c7d5a","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-10-22T13:15:31.870898Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"db683a6d-0998-4f25-aa32-312b8403fa6b","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"61b54824-9439-4688-b81d-83b5eb2c2400","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1064" + - "1096" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:07:44 GMT + - Tue, 22 Oct 2024 13:17:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1281,10 +1283,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6c7a405-aacd-4167-8388-37137243ac64 + - befb7a04-5761-446f-925c-4e8b1f03d0d6 status: 200 OK code: 200 - duration: 352.37648ms + duration: 156.675026ms - id: 26 request: proto: HTTP/1.1 @@ -1300,8 +1302,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400 method: GET response: proto: HTTP/2.0 @@ -1309,20 +1311,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1096 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-05-14T09:06:43.182848Z","endpoint":null,"endpoints":[{"id":"63c8bff5-c3d8-41b7-8726-ea019c188e5f","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"6ab9f17b-184f-4f17-835e-0b72c21c7d5a","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-10-22T13:15:31.870898Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"db683a6d-0998-4f25-aa32-312b8403fa6b","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"61b54824-9439-4688-b81d-83b5eb2c2400","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1064" + - "1096" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:08:14 GMT + - Tue, 22 Oct 2024 13:17:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1330,10 +1332,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29cc49b6-34e7-4caa-b4ee-e99f6b322cda + - 0e2e08c8-2ff1-4c09-bd87-9fb1568f66e7 status: 200 OK code: 200 - duration: 514.608065ms + duration: 183.393408ms - id: 27 request: proto: HTTP/1.1 @@ -1349,8 +1351,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400 method: GET response: proto: HTTP/2.0 @@ -1358,20 +1360,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1096 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-05-14T09:06:43.182848Z","endpoint":null,"endpoints":[{"id":"63c8bff5-c3d8-41b7-8726-ea019c188e5f","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"6ab9f17b-184f-4f17-835e-0b72c21c7d5a","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-10-22T13:15:31.870898Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"db683a6d-0998-4f25-aa32-312b8403fa6b","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"61b54824-9439-4688-b81d-83b5eb2c2400","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1064" + - "1096" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:08:45 GMT + - Tue, 22 Oct 2024 13:18:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1379,10 +1381,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27b5ad3a-f10e-4f3a-9a7e-21c9812a1b15 + - 707c4b46-8f12-41f1-bc8a-a7a56ff96228 status: 200 OK code: 200 - duration: 217.398026ms + duration: 194.560699ms - id: 28 request: proto: HTTP/1.1 @@ -1398,8 +1400,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400 method: GET response: proto: HTTP/2.0 @@ -1407,20 +1409,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1096 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-05-14T09:06:43.182848Z","endpoint":null,"endpoints":[{"id":"63c8bff5-c3d8-41b7-8726-ea019c188e5f","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"6ab9f17b-184f-4f17-835e-0b72c21c7d5a","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-10-22T13:15:31.870898Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"db683a6d-0998-4f25-aa32-312b8403fa6b","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"61b54824-9439-4688-b81d-83b5eb2c2400","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1064" + - "1096" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:09:15 GMT + - Tue, 22 Oct 2024 13:18:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1428,10 +1430,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3790444e-6839-4265-ad18-1f40ae0cd29b + - 1d4b0ce3-75d8-4a2c-be0b-ce1c074db2c4 status: 200 OK code: 200 - duration: 130.385906ms + duration: 170.076441ms - id: 29 request: proto: HTTP/1.1 @@ -1447,8 +1449,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400 method: GET response: proto: HTTP/2.0 @@ -1456,20 +1458,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1364 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-05-14T09:06:43.182848Z","endpoint":null,"endpoints":[{"id":"63c8bff5-c3d8-41b7-8726-ea019c188e5f","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"6ab9f17b-184f-4f17-835e-0b72c21c7d5a","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-10-22T13:15:31.870898Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"db683a6d-0998-4f25-aa32-312b8403fa6b","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"61b54824-9439-4688-b81d-83b5eb2c2400","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1064" + - "1364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:09:45 GMT + - Tue, 22 Oct 2024 13:19:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1477,10 +1479,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3073990c-1131-459a-8c38-604bbf94e25f + - 12f7d095-b5b0-4c9d-b451-ebe97ea7271b status: 200 OK code: 200 - duration: 140.737206ms + duration: 141.430085ms - id: 30 request: proto: HTTP/1.1 @@ -1496,8 +1498,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400/certificate method: GET response: proto: HTTP/2.0 @@ -1505,20 +1507,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1332 + content_length: 1737 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-05-14T09:06:43.182848Z","endpoint":null,"endpoints":[{"id":"63c8bff5-c3d8-41b7-8726-ea019c188e5f","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"6ab9f17b-184f-4f17-835e-0b72c21c7d5a","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURaakNDQWs2Z0F3SUJBZ0lVSmdLYlFiSDRzM2xKbmZYMm1KZUs2N1NBOTlZd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1dERUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RmpBVUJnTlZCQU1NRFRFNU1pNHhOamd1TVM0eU5UUXdIaGNOCk1qUXhNREl5TVRNeE5qTTJXaGNOTXpReE1ESXdNVE14TmpNMldqQllNUXN3Q1FZRFZRUUdFd0pHVWpFT01Bd0cKQTFVRUNBd0ZVR0Z5YVhNeERqQU1CZ05WQkFjTUJWQmhjbWx6TVJFd0R3WURWUVFLREFoVFkyRnNaWGRoZVRFVwpNQlFHQTFVRUF3d05NVGt5TGpFMk9DNHhMakkxTkRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDCkFRb0NnZ0VCQUxmTEJpOFhibDZ1R3RUMmEraHNRL3A1Y0ZpR2s3OWw1OVZmaHkwU3EzWERxbWlYeFA5ZFMzY3QKdS9zc3l0ODd1QkEvTVJYYVowd2tSRXN5ekZEWjFIaGwyQ2srK0lodDY2ZWw0ZEJrc0RPZEJaSjNmRkc3UURWRwoyUkJDTU1kMmdKUDFSaEFxMy8zUXpma09PM29RQjVSV2txMzRWcnlSSE1EY0RhZGZLWVJlZmxhalFqbE4rT0pECkJFcEUzbjFnWDR4d2FPeUhWbjI5c0xVZWRPaGNFT3l3UmczbWJid0tSdndtL3dwS1hjNkVXRnpqZllPU2tVeDcKcmNoUitta3l3bDV0TjdUMGFnSUtVTXF4ZVFJeE0zblRZZzJhc28zS2I2YWEwcjA4Z2llTFBqclUzWDN5dE1aUgpyN3ROU3NBakhXM3E2QWh3aEJJQjlYSFhvMUFwQ0VrQ0F3RUFBYU1vTUNZd0pBWURWUjBSQkIwd0c0SU5NVGt5CkxqRTJPQzR4TGpJMU5JY0VNNTZ5M29jRXdLZ0IvakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBVkFES01mc0oKSGRsU0dESURHYmhNMnVtc2toQWFwM1BwQ253cHBPeTBzdGNGNEJSdlBRcVpNQlYyVXdzdytINEh1ZnpYUnBkSApHdXg0QzBscmNCWXNOc0RLLzljVUhGb0NwREs3KzQrUk0vc0RmNTFDWkFnYmRrN2lkeTlhRnBVUHNTdlhCcmU1CkEydzFIdHNra2JJVXRuUjNaM2xIalRoaGFJbytFRVBVV3JneW1naUVlemdIRTYveTVTbTNlMVQ4aTdoMmRBSWoKSE1FdzMrUEkwMXRyYkw4dXFFR1FZbzdLY3RZRlZTL2lURjVIWkxRUGZTeEFocGlPcDlBNUxXYWNxeGJLc2srZQprWDBxR0lyZzE5TmhYMVl1cXNCN0MzZ1RJdkRZdU5rWUpla0ZkZFBEV3k3NzdUeUdvdWFMYU92aWR5d0t5c0RmCjBnVFpBTWIrOFZiN29BPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "1332" + - "1737" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:15 GMT + - Tue, 22 Oct 2024 13:19:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1526,10 +1528,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f10acea1-57c0-401a-aee1-9a3be65b37b1 + - bf6eb2e4-68cb-4ac7-84fe-249bbcabfc9a status: 200 OK code: 200 - duration: 234.739786ms + duration: 130.26278ms - id: 31 request: proto: HTTP/1.1 @@ -1545,8 +1547,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/8d9f16f0-1b57-4786-a415-2b7dec3ef447 method: GET response: proto: HTTP/2.0 @@ -1554,20 +1556,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1737 + content_length: 1499 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURaakNDQWs2Z0F3SUJBZ0lVZTNubTlkR1VMcWdIVi9jSjJ6OUhTc1pLUVc4d0RRWUpLb1pJaHZjTkFRRUwKQlFBd1dERUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RmpBVUJnTlZCQU1NRFRFNU1pNHhOamd1TVM0eU5UUXdIaGNOCk1qUXdOVEUwTURrd056UTRXaGNOTXpRd05URXlNRGt3TnpRNFdqQllNUXN3Q1FZRFZRUUdFd0pHVWpFT01Bd0cKQTFVRUNBd0ZVR0Z5YVhNeERqQU1CZ05WQkFjTUJWQmhjbWx6TVJFd0R3WURWUVFLREFoVFkyRnNaWGRoZVRFVwpNQlFHQTFVRUF3d05NVGt5TGpFMk9DNHhMakkxTkRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDCkFRb0NnZ0VCQU4ySDd1Yk5SeUFERXlPM1A3OVFCVEo4TWd4SVNGSlBrdy9PM2lmUENNcFBVa3Bxdm9MVk4xQ2IKZk9ZVmIvamlKNEoyMzVJSTF1ZkJXaVl0c3FxdWNoaXk4V3FFVkhpRDg1SDVsUExzRWZpQmN2VEt2R0dTUy8wUgpBRWdiS3JROEhLK0t6WTMzUVRzOFMzSE5abVNYZjRGVmZGRy9OWHpXLzIzaTNVSDl2dnVSR2xhcjJ1VCtNVDNDCjdHdXFIR00xbUhzbzhSdGlSQWNFLzhGTUxoZmkvMWhWMVQ5L21xTVB0eTJHaTh5RUlrbXdJQmtQODlGVDdiSWUKL0VWdDRoT2RGK1Jqa3hUL1NITlNySXlpMy9qRDhDRStlU1J4dndSVFFEK2t4aDRBK0hCOGdZUnJtbHlGWWpsTgpQM1FIR01PRW1zVTlTSVQ0OFRFd3dnV09GWWlQenhrQ0F3RUFBYU1vTUNZd0pBWURWUjBSQkIwd0c0SU5NVGt5CkxqRTJPQzR4TGpJMU5JY0VNNTY2cm9jRXdLZ0IvakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBVWRWTmVSaWgKMGVyODZBRmpIYS9EU3dPRC92ckEzR045ckJQMExtYUJHSEEyNzFFeFNndGJJdHQ0OHBVaUpCd1ViN0pEY0FkTQpWclFncWNQMUl4Z0ZFYWFKazdncGEwVWJJQTZsNm5GZW1rd1JyQWxjWlRGdzNrVGwzaTIvSlo2a3lGZnFtOGw5CmZpOUpta05kOWRUTFBaQlQ0YTFmbVZjMWxFcm82T1UxU3FTekp6MnFUaS9JRzh1dVBrUmRqcW1qUy9sQmtiZlcKa1NBaGlmaGdMSXg2NU82Vk9XVDhiNW9JVjc4OERsRHQxL2Rjd0ZyYm5VV2ZYeGRuKzJKQ01DZG00dCtwK0dobwpDQmZpeW9jWjFicWtkZDEvV0t4YU1jeDdraE5INUNzT3FlN2k1emtsNUhhQmN2ZlN6UkFzOFl3UVhVdVZKT3ZvCjdjQXdLcXFXdjZOSXB3PT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-10-22T13:15:31.685262Z","gateway_networks":[{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.223115Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"90d980f9-ebe2-47f5-a479-b403babe38a0","ipam_config":{"ipam_ip_id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","push_default_route":true},"mac_address":"02:00:00:19:F7:18","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","status":"ready","updated_at":"2024-10-22T13:15:45.871237Z","zone":"nl-ams-1"}],"id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","ip":{"address":"51.158.179.16","created_at":"2024-10-22T13:15:31.506029Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"39fec5a0-53d9-405b-af02-17948f96980b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"16-179-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-10-22T13:15:31.506029Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-10-22T13:15:46.031839Z","upstream_dns_servers":[],"version":"0.7.2","zone":"nl-ams-1"}' headers: Content-Length: - - "1737" + - "1499" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:15 GMT + - Tue, 22 Oct 2024 13:19:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1575,10 +1577,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dcbd40d4-6d3e-4716-bc45-02990f928c4f + - 80a7a6e2-1002-4cb4-aec3-2a47c10217cd status: 200 OK code: 200 - duration: 105.656669ms + duration: 44.41743ms - id: 32 request: proto: HTTP/1.1 @@ -1594,8 +1596,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/8d9f16f0-1b57-4786-a415-2b7dec3ef447 method: GET response: proto: HTTP/2.0 @@ -1603,20 +1605,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1992 + content_length: 1499 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-05-14T09:06:43.233572Z","gateway_networks":[{"address":null,"created_at":"2024-05-14T09:06:55.718278Z","dhcp":{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9","ipam_config":null,"mac_address":"02:00:00:13:AF:3C","private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","status":"ready","updated_at":"2024-05-14T09:07:07.224472Z","zone":"nl-ams-1"}],"id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","ip":{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-05-14T09:07:07.426146Z","upstream_dns_servers":[],"version":"0.6.3","zone":"nl-ams-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-10-22T13:15:31.685262Z","gateway_networks":[{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.223115Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"90d980f9-ebe2-47f5-a479-b403babe38a0","ipam_config":{"ipam_ip_id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","push_default_route":true},"mac_address":"02:00:00:19:F7:18","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","status":"ready","updated_at":"2024-10-22T13:15:45.871237Z","zone":"nl-ams-1"}],"id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","ip":{"address":"51.158.179.16","created_at":"2024-10-22T13:15:31.506029Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"39fec5a0-53d9-405b-af02-17948f96980b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"16-179-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-10-22T13:15:31.506029Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-10-22T13:15:46.031839Z","upstream_dns_servers":[],"version":"0.7.2","zone":"nl-ams-1"}' headers: Content-Length: - - "1992" + - "1499" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:15 GMT + - Tue, 22 Oct 2024 13:19:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1624,48 +1626,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6da94969-d88f-4181-a2e2-4b379d9d1f0c + - 93cb2ec7-4686-4475-b03a-830747baca62 status: 200 OK code: 200 - duration: 45.129104ms + duration: 61.087308ms - id: 33 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 135 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","public_port":42,"private_ip":"192.168.1.2","private_port":5432,"protocol":"both"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/pat-rules + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1992 + content_length: 291 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-05-14T09:06:43.233572Z","gateway_networks":[{"address":null,"created_at":"2024-05-14T09:06:55.718278Z","dhcp":{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9","ipam_config":null,"mac_address":"02:00:00:13:AF:3C","private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","status":"ready","updated_at":"2024-05-14T09:07:07.224472Z","zone":"nl-ams-1"}],"id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","ip":{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-05-14T09:07:07.426146Z","upstream_dns_servers":[],"version":"0.6.3","zone":"nl-ams-1"}' + body: '{"created_at":"2024-10-22T13:19:03.976727Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"79c4fd87-1845-4590-aea6-5fe57f98c406","private_ip":"192.168.1.2","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2024-10-22T13:19:03.976727Z","zone":"nl-ams-1"}' headers: Content-Length: - - "1992" + - "291" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:15 GMT + - Tue, 22 Oct 2024 13:19:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1673,50 +1677,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d052ce98-1175-426f-8eec-06cd623db908 + - b7446af2-88e5-4c30-b4b9-4951cdb3bd3d status: 200 OK code: 200 - duration: 44.197273ms + duration: 120.987256ms - id: 34 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 135 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","public_port":42,"private_ip":"192.168.1.1","private_port":5432,"protocol":"both"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/pat-rules - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/8d9f16f0-1b57-4786-a415-2b7dec3ef447 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 291 + content_length: 1499 uncompressed: false - body: '{"created_at":"2024-05-14T09:10:16.029303Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"40a001f7-4df3-464c-90d8-d72264331d9b","private_ip":"192.168.1.1","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2024-05-14T09:10:16.029303Z","zone":"nl-ams-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-10-22T13:15:31.685262Z","gateway_networks":[{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.223115Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"90d980f9-ebe2-47f5-a479-b403babe38a0","ipam_config":{"ipam_ip_id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","push_default_route":true},"mac_address":"02:00:00:19:F7:18","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","status":"ready","updated_at":"2024-10-22T13:15:45.871237Z","zone":"nl-ams-1"}],"id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","ip":{"address":"51.158.179.16","created_at":"2024-10-22T13:15:31.506029Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"39fec5a0-53d9-405b-af02-17948f96980b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"16-179-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-10-22T13:15:31.506029Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-10-22T13:15:46.031839Z","upstream_dns_servers":[],"version":"0.7.2","zone":"nl-ams-1"}' headers: Content-Length: - - "291" + - "1499" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:16 GMT + - Tue, 22 Oct 2024 13:19:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1724,10 +1726,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb8913c8-fe7d-4be8-970c-eb858d8e533b + - d7076e29-d081-485c-9ffb-10b60b91691f status: 200 OK code: 200 - duration: 172.138491ms + duration: 41.160424ms - id: 35 request: proto: HTTP/1.1 @@ -1743,8 +1745,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/pat-rules/79c4fd87-1845-4590-aea6-5fe57f98c406 method: GET response: proto: HTTP/2.0 @@ -1752,20 +1754,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1992 + content_length: 291 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-05-14T09:06:43.233572Z","gateway_networks":[{"address":null,"created_at":"2024-05-14T09:06:55.718278Z","dhcp":{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9","ipam_config":null,"mac_address":"02:00:00:13:AF:3C","private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","status":"ready","updated_at":"2024-05-14T09:07:07.224472Z","zone":"nl-ams-1"}],"id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","ip":{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-05-14T09:07:07.426146Z","upstream_dns_servers":[],"version":"0.6.3","zone":"nl-ams-1"}' + body: '{"created_at":"2024-10-22T13:19:03.976727Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"79c4fd87-1845-4590-aea6-5fe57f98c406","private_ip":"192.168.1.2","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2024-10-22T13:19:03.976727Z","zone":"nl-ams-1"}' headers: Content-Length: - - "1992" + - "291" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:16 GMT + - Tue, 22 Oct 2024 13:19:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1773,10 +1775,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70ceac10-3fc2-4db0-b54e-b2be3cdb0a50 + - 2a8edd53-85e8-4276-bffd-5019755df51a status: 200 OK code: 200 - duration: 42.679984ms + duration: 45.91769ms - id: 36 request: proto: HTTP/1.1 @@ -1792,8 +1794,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/pat-rules/40a001f7-4df3-464c-90d8-d72264331d9b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400 method: GET response: proto: HTTP/2.0 @@ -1801,20 +1803,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 291 + content_length: 1364 uncompressed: false - body: '{"created_at":"2024-05-14T09:10:16.029303Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"40a001f7-4df3-464c-90d8-d72264331d9b","private_ip":"192.168.1.1","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2024-05-14T09:10:16.029303Z","zone":"nl-ams-1"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-10-22T13:15:31.870898Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"db683a6d-0998-4f25-aa32-312b8403fa6b","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"61b54824-9439-4688-b81d-83b5eb2c2400","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "291" + - "1364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:16 GMT + - Tue, 22 Oct 2024 13:19:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1822,10 +1824,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7354c4f7-dd87-4226-8b1e-562a550f09b0 + - 28cdd7ac-ef80-4736-80f5-98287d8475d7 status: 200 OK code: 200 - duration: 44.542307ms + duration: 144.200563ms - id: 37 request: proto: HTTP/1.1 @@ -1841,8 +1843,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/nl-ams/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=90d980f9-ebe2-47f5-a479-b403babe38a0&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -1850,20 +1852,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1332 + content_length: 519 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-05-14T09:06:43.182848Z","endpoint":null,"endpoints":[{"id":"63c8bff5-c3d8-41b7-8726-ea019c188e5f","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"6ab9f17b-184f-4f17-835e-0b72c21c7d5a","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"ips":[{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.163982Z","id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","resource":{"id":"90d980f9-ebe2-47f5-a479-b403babe38a0","mac_address":"02:00:00:19:F7:18","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"f5490a24-d55f-4f89-8f17-ee00a2cbc131"},"tags":[],"updated_at":"2024-10-22T13:15:37.754798Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1332" + - "519" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:16 GMT + - Tue, 22 Oct 2024 13:19:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1871,10 +1873,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0f1cac0-e06b-4d4e-a74a-4409bef195de + - ae4d9b61-2170-4717-90b3-a44dbc50a95a status: 200 OK code: 200 - duration: 172.224503ms + duration: 65.784847ms - id: 38 request: proto: HTTP/1.1 @@ -1890,8 +1892,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/ips/33a83f9d-c32d-4013-a0d9-d6a86d8b19e2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/ips/39fec5a0-53d9-405b-af02-17948f96980b method: GET response: proto: HTTP/2.0 @@ -1901,7 +1903,7 @@ interactions: trailer: {} content_length: 401 uncompressed: false - body: '{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"}' + body: '{"address":"51.158.179.16","created_at":"2024-10-22T13:15:31.506029Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"39fec5a0-53d9-405b-af02-17948f96980b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"16-179-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-10-22T13:15:31.506029Z","zone":"nl-ams-1"}' headers: Content-Length: - "401" @@ -1910,9 +1912,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:16 GMT + - Tue, 22 Oct 2024 13:19:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1920,10 +1922,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8186d7f7-1a27-4d24-9a4f-d509fde0f286 + - 4173e051-bb59-4e76-975a-384637f2695a status: 200 OK code: 200 - duration: 66.4963ms + duration: 36.142504ms - id: 39 request: proto: HTTP/1.1 @@ -1939,8 +1941,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/75a45c10-8ca0-49a7-a062-c91c5148edba method: GET response: proto: HTTP/2.0 @@ -1948,20 +1950,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 719 + content_length: 362 uncompressed: false - body: '{"created_at":"2024-05-14T09:06:42.294166Z","dhcp_enabled":true,"id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","subnets":[{"created_at":"2024-05-14T09:06:42.294166Z","id":"1c3afa97-01af-4126-9802-c88b7851fe3e","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:54.103830Z"},{"created_at":"2024-05-14T09:06:42.294166Z","id":"524ab668-c0c5-4229-8ff2-decc5041fd56","subnet":"fd5c:d510:d730:2cba::/64","updated_at":"2024-05-14T09:06:54.108854Z"}],"tags":[],"updated_at":"2024-05-14T09:07:02.401070Z","vpc_id":"1e918353-b3a7-45ce-b72f-b3eefab4a8d1"}' + body: '{"created_at":"2024-10-22T13:15:30.781606Z","id":"75a45c10-8ca0-49a7-a062-c91c5148edba","is_default":false,"name":"my vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","routing_enabled":true,"tags":[],"updated_at":"2024-10-22T13:15:30.781606Z"}' headers: Content-Length: - - "719" + - "362" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:16 GMT + - Tue, 22 Oct 2024 13:19:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1969,10 +1971,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58ae9d11-2b53-4669-93fa-1fa666ed78c6 + - 3b47fe8a-9ed2-402d-a6ae-b48412022087 status: 200 OK code: 200 - duration: 73.754367ms + duration: 72.244428ms - id: 40 request: proto: HTTP/1.1 @@ -1988,8 +1990,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/dhcps/7d4eb8ce-c98f-44d2-a12e-0d403d999ea6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/8d9f16f0-1b57-4786-a415-2b7dec3ef447 method: GET response: proto: HTTP/2.0 @@ -1997,20 +1999,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 1499 uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-10-22T13:15:31.685262Z","gateway_networks":[{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.223115Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"90d980f9-ebe2-47f5-a479-b403babe38a0","ipam_config":{"ipam_ip_id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","push_default_route":true},"mac_address":"02:00:00:19:F7:18","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","status":"ready","updated_at":"2024-10-22T13:15:45.871237Z","zone":"nl-ams-1"}],"id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","ip":{"address":"51.158.179.16","created_at":"2024-10-22T13:15:31.506029Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"39fec5a0-53d9-405b-af02-17948f96980b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"16-179-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-10-22T13:15:31.506029Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-10-22T13:15:46.031839Z","upstream_dns_servers":[],"version":"0.7.2","zone":"nl-ams-1"}' headers: Content-Length: - - "586" + - "1499" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:16 GMT + - Tue, 22 Oct 2024 13:19:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2018,10 +2020,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef3265d8-a5d2-4cf4-91c2-dab88455ade3 + - ae38f96f-61c8-4399-8e4e-a2dfb12683d1 status: 200 OK code: 200 - duration: 86.055493ms + duration: 38.241415ms - id: 41 request: proto: HTTP/1.1 @@ -2037,8 +2039,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/61afa66f-80bf-4f31-9b28-649b0c3bc9b3 method: GET response: proto: HTTP/2.0 @@ -2046,20 +2048,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1992 + content_length: 1045 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-05-14T09:06:43.233572Z","gateway_networks":[{"address":null,"created_at":"2024-05-14T09:06:55.718278Z","dhcp":{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9","ipam_config":null,"mac_address":"02:00:00:13:AF:3C","private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","status":"ready","updated_at":"2024-05-14T09:07:07.224472Z","zone":"nl-ams-1"}],"id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","ip":{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-05-14T09:07:07.426146Z","upstream_dns_servers":[],"version":"0.6.3","zone":"nl-ams-1"}' + body: '{"created_at":"2024-10-22T13:15:31.020207Z","dhcp_enabled":true,"id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","subnets":[{"created_at":"2024-10-22T13:15:31.020207Z","id":"f5490a24-d55f-4f89-8f17-ee00a2cbc131","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"192.168.1.0/24","updated_at":"2024-10-22T13:15:31.020207Z","vpc_id":"75a45c10-8ca0-49a7-a062-c91c5148edba"},{"created_at":"2024-10-22T13:15:31.020207Z","id":"bb671a8a-d699-4b3f-beee-e81a34d372e3","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd2c:2ff0:469a:e950::/64","updated_at":"2024-10-22T13:15:31.020207Z","vpc_id":"75a45c10-8ca0-49a7-a062-c91c5148edba"}],"tags":[],"updated_at":"2024-10-22T13:15:43.796767Z","vpc_id":"75a45c10-8ca0-49a7-a062-c91c5148edba"}' headers: Content-Length: - - "1992" + - "1045" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:16 GMT + - Tue, 22 Oct 2024 13:19:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2067,10 +2069,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abe5695a-a415-4e37-bf6b-90319f51e280 + - 64ca55a6-250c-4ac8-a214-61575d57f810 status: 200 OK code: 200 - duration: 49.737426ms + duration: 50.129378ms - id: 42 request: proto: HTTP/1.1 @@ -2086,8 +2088,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/90d980f9-ebe2-47f5-a479-b403babe38a0 method: GET response: proto: HTTP/2.0 @@ -2095,20 +2097,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 996 + content_length: 502 uncompressed: false - body: '{"address":null,"created_at":"2024-05-14T09:06:55.718278Z","dhcp":{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9","ipam_config":null,"mac_address":"02:00:00:13:AF:3C","private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","status":"ready","updated_at":"2024-05-14T09:07:07.224472Z","zone":"nl-ams-1"}' + body: '{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.223115Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"90d980f9-ebe2-47f5-a479-b403babe38a0","ipam_config":{"ipam_ip_id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","push_default_route":true},"mac_address":"02:00:00:19:F7:18","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","status":"ready","updated_at":"2024-10-22T13:15:45.871237Z","zone":"nl-ams-1"}' headers: Content-Length: - - "996" + - "502" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:16 GMT + - Tue, 22 Oct 2024 13:19:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2116,10 +2118,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37e942e4-276a-495b-ae3e-4aba22e2ce05 + - ab6976cd-0520-499f-b0fd-dd406887d18d status: 200 OK code: 200 - duration: 74.552502ms + duration: 74.053207ms - id: 43 request: proto: HTTP/1.1 @@ -2135,8 +2137,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/8d9f16f0-1b57-4786-a415-2b7dec3ef447 method: GET response: proto: HTTP/2.0 @@ -2144,20 +2146,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1992 + content_length: 1499 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-05-14T09:06:43.233572Z","gateway_networks":[{"address":null,"created_at":"2024-05-14T09:06:55.718278Z","dhcp":{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9","ipam_config":null,"mac_address":"02:00:00:13:AF:3C","private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","status":"ready","updated_at":"2024-05-14T09:07:07.224472Z","zone":"nl-ams-1"}],"id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","ip":{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-05-14T09:07:07.426146Z","upstream_dns_servers":[],"version":"0.6.3","zone":"nl-ams-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-10-22T13:15:31.685262Z","gateway_networks":[{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.223115Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"90d980f9-ebe2-47f5-a479-b403babe38a0","ipam_config":{"ipam_ip_id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","push_default_route":true},"mac_address":"02:00:00:19:F7:18","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","status":"ready","updated_at":"2024-10-22T13:15:45.871237Z","zone":"nl-ams-1"}],"id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","ip":{"address":"51.158.179.16","created_at":"2024-10-22T13:15:31.506029Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"39fec5a0-53d9-405b-af02-17948f96980b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"16-179-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-10-22T13:15:31.506029Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-10-22T13:15:46.031839Z","upstream_dns_servers":[],"version":"0.7.2","zone":"nl-ams-1"}' headers: Content-Length: - - "1992" + - "1499" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:16 GMT + - Tue, 22 Oct 2024 13:19:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2165,10 +2167,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e7075c6-e6a7-436c-aeb2-ff87c4e221c5 + - 5ebb8637-c158-4889-9c36-dece47727eee status: 200 OK code: 200 - duration: 38.313282ms + duration: 38.151581ms - id: 44 request: proto: HTTP/1.1 @@ -2184,8 +2186,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400 method: GET response: proto: HTTP/2.0 @@ -2193,20 +2195,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1332 + content_length: 1364 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-05-14T09:06:43.182848Z","endpoint":null,"endpoints":[{"id":"63c8bff5-c3d8-41b7-8726-ea019c188e5f","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"6ab9f17b-184f-4f17-835e-0b72c21c7d5a","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-10-22T13:15:31.870898Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"db683a6d-0998-4f25-aa32-312b8403fa6b","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"61b54824-9439-4688-b81d-83b5eb2c2400","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1332" + - "1364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:16 GMT + - Tue, 22 Oct 2024 13:19:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2214,10 +2216,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bbcc9756-9ab8-417b-8bfc-4605f57812ea + - e2b85252-31ab-4829-af52-48508fb63289 status: 200 OK code: 200 - duration: 157.069864ms + duration: 135.220894ms - id: 45 request: proto: HTTP/1.1 @@ -2233,8 +2235,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/90d980f9-ebe2-47f5-a479-b403babe38a0 method: GET response: proto: HTTP/2.0 @@ -2242,20 +2244,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 996 + content_length: 502 uncompressed: false - body: '{"address":null,"created_at":"2024-05-14T09:06:55.718278Z","dhcp":{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9","ipam_config":null,"mac_address":"02:00:00:13:AF:3C","private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","status":"ready","updated_at":"2024-05-14T09:07:07.224472Z","zone":"nl-ams-1"}' + body: '{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.223115Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"90d980f9-ebe2-47f5-a479-b403babe38a0","ipam_config":{"ipam_ip_id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","push_default_route":true},"mac_address":"02:00:00:19:F7:18","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","status":"ready","updated_at":"2024-10-22T13:15:45.871237Z","zone":"nl-ams-1"}' headers: Content-Length: - - "996" + - "502" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:16 GMT + - Tue, 22 Oct 2024 13:19:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2263,10 +2265,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d75cb34f-bbeb-4815-a7c6-b926df93337b + - 0e7933e8-4cf9-41cf-8d3f-c120135cf58b status: 200 OK code: 200 - duration: 67.815989ms + duration: 79.225891ms - id: 46 request: proto: HTTP/1.1 @@ -2282,8 +2284,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400/certificate method: GET response: proto: HTTP/2.0 @@ -2293,7 +2295,7 @@ interactions: trailer: {} content_length: 1737 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURaakNDQWs2Z0F3SUJBZ0lVZTNubTlkR1VMcWdIVi9jSjJ6OUhTc1pLUVc4d0RRWUpLb1pJaHZjTkFRRUwKQlFBd1dERUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RmpBVUJnTlZCQU1NRFRFNU1pNHhOamd1TVM0eU5UUXdIaGNOCk1qUXdOVEUwTURrd056UTRXaGNOTXpRd05URXlNRGt3TnpRNFdqQllNUXN3Q1FZRFZRUUdFd0pHVWpFT01Bd0cKQTFVRUNBd0ZVR0Z5YVhNeERqQU1CZ05WQkFjTUJWQmhjbWx6TVJFd0R3WURWUVFLREFoVFkyRnNaWGRoZVRFVwpNQlFHQTFVRUF3d05NVGt5TGpFMk9DNHhMakkxTkRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDCkFRb0NnZ0VCQU4ySDd1Yk5SeUFERXlPM1A3OVFCVEo4TWd4SVNGSlBrdy9PM2lmUENNcFBVa3Bxdm9MVk4xQ2IKZk9ZVmIvamlKNEoyMzVJSTF1ZkJXaVl0c3FxdWNoaXk4V3FFVkhpRDg1SDVsUExzRWZpQmN2VEt2R0dTUy8wUgpBRWdiS3JROEhLK0t6WTMzUVRzOFMzSE5abVNYZjRGVmZGRy9OWHpXLzIzaTNVSDl2dnVSR2xhcjJ1VCtNVDNDCjdHdXFIR00xbUhzbzhSdGlSQWNFLzhGTUxoZmkvMWhWMVQ5L21xTVB0eTJHaTh5RUlrbXdJQmtQODlGVDdiSWUKL0VWdDRoT2RGK1Jqa3hUL1NITlNySXlpMy9qRDhDRStlU1J4dndSVFFEK2t4aDRBK0hCOGdZUnJtbHlGWWpsTgpQM1FIR01PRW1zVTlTSVQ0OFRFd3dnV09GWWlQenhrQ0F3RUFBYU1vTUNZd0pBWURWUjBSQkIwd0c0SU5NVGt5CkxqRTJPQzR4TGpJMU5JY0VNNTY2cm9jRXdLZ0IvakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBVWRWTmVSaWgKMGVyODZBRmpIYS9EU3dPRC92ckEzR045ckJQMExtYUJHSEEyNzFFeFNndGJJdHQ0OHBVaUpCd1ViN0pEY0FkTQpWclFncWNQMUl4Z0ZFYWFKazdncGEwVWJJQTZsNm5GZW1rd1JyQWxjWlRGdzNrVGwzaTIvSlo2a3lGZnFtOGw5CmZpOUpta05kOWRUTFBaQlQ0YTFmbVZjMWxFcm82T1UxU3FTekp6MnFUaS9JRzh1dVBrUmRqcW1qUy9sQmtiZlcKa1NBaGlmaGdMSXg2NU82Vk9XVDhiNW9JVjc4OERsRHQxL2Rjd0ZyYm5VV2ZYeGRuKzJKQ01DZG00dCtwK0dobwpDQmZpeW9jWjFicWtkZDEvV0t4YU1jeDdraE5INUNzT3FlN2k1emtsNUhhQmN2ZlN6UkFzOFl3UVhVdVZKT3ZvCjdjQXdLcXFXdjZOSXB3PT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURaakNDQWs2Z0F3SUJBZ0lVSmdLYlFiSDRzM2xKbmZYMm1KZUs2N1NBOTlZd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1dERUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RmpBVUJnTlZCQU1NRFRFNU1pNHhOamd1TVM0eU5UUXdIaGNOCk1qUXhNREl5TVRNeE5qTTJXaGNOTXpReE1ESXdNVE14TmpNMldqQllNUXN3Q1FZRFZRUUdFd0pHVWpFT01Bd0cKQTFVRUNBd0ZVR0Z5YVhNeERqQU1CZ05WQkFjTUJWQmhjbWx6TVJFd0R3WURWUVFLREFoVFkyRnNaWGRoZVRFVwpNQlFHQTFVRUF3d05NVGt5TGpFMk9DNHhMakkxTkRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDCkFRb0NnZ0VCQUxmTEJpOFhibDZ1R3RUMmEraHNRL3A1Y0ZpR2s3OWw1OVZmaHkwU3EzWERxbWlYeFA5ZFMzY3QKdS9zc3l0ODd1QkEvTVJYYVowd2tSRXN5ekZEWjFIaGwyQ2srK0lodDY2ZWw0ZEJrc0RPZEJaSjNmRkc3UURWRwoyUkJDTU1kMmdKUDFSaEFxMy8zUXpma09PM29RQjVSV2txMzRWcnlSSE1EY0RhZGZLWVJlZmxhalFqbE4rT0pECkJFcEUzbjFnWDR4d2FPeUhWbjI5c0xVZWRPaGNFT3l3UmczbWJid0tSdndtL3dwS1hjNkVXRnpqZllPU2tVeDcKcmNoUitta3l3bDV0TjdUMGFnSUtVTXF4ZVFJeE0zblRZZzJhc28zS2I2YWEwcjA4Z2llTFBqclUzWDN5dE1aUgpyN3ROU3NBakhXM3E2QWh3aEJJQjlYSFhvMUFwQ0VrQ0F3RUFBYU1vTUNZd0pBWURWUjBSQkIwd0c0SU5NVGt5CkxqRTJPQzR4TGpJMU5JY0VNNTZ5M29jRXdLZ0IvakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBVkFES01mc0oKSGRsU0dESURHYmhNMnVtc2toQWFwM1BwQ253cHBPeTBzdGNGNEJSdlBRcVpNQlYyVXdzdytINEh1ZnpYUnBkSApHdXg0QzBscmNCWXNOc0RLLzljVUhGb0NwREs3KzQrUk0vc0RmNTFDWkFnYmRrN2lkeTlhRnBVUHNTdlhCcmU1CkEydzFIdHNra2JJVXRuUjNaM2xIalRoaGFJbytFRVBVV3JneW1naUVlemdIRTYveTVTbTNlMVQ4aTdoMmRBSWoKSE1FdzMrUEkwMXRyYkw4dXFFR1FZbzdLY3RZRlZTL2lURjVIWkxRUGZTeEFocGlPcDlBNUxXYWNxeGJLc2srZQprWDBxR0lyZzE5TmhYMVl1cXNCN0MzZ1RJdkRZdU5rWUpla0ZkZFBEV3k3NzdUeUdvdWFMYU92aWR5d0t5c0RmCjBnVFpBTWIrOFZiN29BPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - "1737" @@ -2302,9 +2304,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:16 GMT + - Tue, 22 Oct 2024 13:19:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2312,10 +2314,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3925c42d-158c-466d-a04b-72eda8b4b159 + - 8ad909a4-5015-49c0-94e9-a9dff18b4339 status: 200 OK code: 200 - duration: 101.988551ms + duration: 95.74856ms - id: 47 request: proto: HTTP/1.1 @@ -2331,8 +2333,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/pat-rules/40a001f7-4df3-464c-90d8-d72264331d9b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/nl-ams/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=90d980f9-ebe2-47f5-a479-b403babe38a0&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -2340,20 +2342,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 291 + content_length: 519 uncompressed: false - body: '{"created_at":"2024-05-14T09:10:16.029303Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"40a001f7-4df3-464c-90d8-d72264331d9b","private_ip":"192.168.1.1","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2024-05-14T09:10:16.029303Z","zone":"nl-ams-1"}' + body: '{"ips":[{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.163982Z","id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","resource":{"id":"90d980f9-ebe2-47f5-a479-b403babe38a0","mac_address":"02:00:00:19:F7:18","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"f5490a24-d55f-4f89-8f17-ee00a2cbc131"},"tags":[],"updated_at":"2024-10-22T13:15:37.754798Z","zone":null}],"total_count":1}' headers: Content-Length: - - "291" + - "519" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:16 GMT + - Tue, 22 Oct 2024 13:19:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2361,10 +2363,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d999b77-3598-4153-a717-f7e36638f301 + - fe2eb23c-c028-4515-960a-2fa8112b2ff2 status: 200 OK code: 200 - duration: 33.514906ms + duration: 66.939367ms - id: 48 request: proto: HTTP/1.1 @@ -2380,8 +2382,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/ips/33a83f9d-c32d-4013-a0d9-d6a86d8b19e2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/pat-rules/79c4fd87-1845-4590-aea6-5fe57f98c406 method: GET response: proto: HTTP/2.0 @@ -2389,20 +2391,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 401 + content_length: 291 uncompressed: false - body: '{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"}' + body: '{"created_at":"2024-10-22T13:19:03.976727Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"79c4fd87-1845-4590-aea6-5fe57f98c406","private_ip":"192.168.1.2","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2024-10-22T13:19:03.976727Z","zone":"nl-ams-1"}' headers: Content-Length: - - "401" + - "291" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:17 GMT + - Tue, 22 Oct 2024 13:19:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2410,10 +2412,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 529f86c9-c06a-42e2-a6b1-e6e61443cbd8 + - aa1df1be-a75d-491a-9d36-e692a0cfbeae status: 200 OK code: 200 - duration: 131.816965ms + duration: 36.114565ms - id: 49 request: proto: HTTP/1.1 @@ -2429,8 +2431,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/dhcps/7d4eb8ce-c98f-44d2-a12e-0d403d999ea6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/nl-ams/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=90d980f9-ebe2-47f5-a479-b403babe38a0&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -2438,20 +2440,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 519 uncompressed: false - body: '{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"}' + body: '{"ips":[{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.163982Z","id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","resource":{"id":"90d980f9-ebe2-47f5-a479-b403babe38a0","mac_address":"02:00:00:19:F7:18","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"f5490a24-d55f-4f89-8f17-ee00a2cbc131"},"tags":[],"updated_at":"2024-10-22T13:15:37.754798Z","zone":null}],"total_count":1}' headers: Content-Length: - - "586" + - "519" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:17 GMT + - Tue, 22 Oct 2024 13:19:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2459,10 +2461,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd54f9a2-a03a-422b-9625-10d0f73ea0b5 + - c5936a0f-830f-4baa-a194-bf453e6304d2 status: 200 OK code: 200 - duration: 130.644247ms + duration: 57.854941ms - id: 50 request: proto: HTTP/1.1 @@ -2478,8 +2480,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/pat-rules/40a001f7-4df3-464c-90d8-d72264331d9b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/pat-rules/79c4fd87-1845-4590-aea6-5fe57f98c406 method: GET response: proto: HTTP/2.0 @@ -2489,7 +2491,7 @@ interactions: trailer: {} content_length: 291 uncompressed: false - body: '{"created_at":"2024-05-14T09:10:16.029303Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"40a001f7-4df3-464c-90d8-d72264331d9b","private_ip":"192.168.1.1","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2024-05-14T09:10:16.029303Z","zone":"nl-ams-1"}' + body: '{"created_at":"2024-10-22T13:19:03.976727Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"79c4fd87-1845-4590-aea6-5fe57f98c406","private_ip":"192.168.1.2","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2024-10-22T13:19:03.976727Z","zone":"nl-ams-1"}' headers: Content-Length: - "291" @@ -2498,9 +2500,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:17 GMT + - Tue, 22 Oct 2024 13:19:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2508,10 +2510,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3bf3983e-df6f-439e-a172-3a73fdb5d0fc + - 9a25856e-94cd-4d74-b5ef-d9a1811783f5 status: 200 OK code: 200 - duration: 131.258583ms + duration: 46.382561ms - id: 51 request: proto: HTTP/1.1 @@ -2527,8 +2529,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/8d9f16f0-1b57-4786-a415-2b7dec3ef447 method: GET response: proto: HTTP/2.0 @@ -2536,20 +2538,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1992 + content_length: 1499 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-05-14T09:06:43.233572Z","gateway_networks":[{"address":null,"created_at":"2024-05-14T09:06:55.718278Z","dhcp":{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9","ipam_config":null,"mac_address":"02:00:00:13:AF:3C","private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","status":"ready","updated_at":"2024-05-14T09:07:07.224472Z","zone":"nl-ams-1"}],"id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","ip":{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-05-14T09:07:07.426146Z","upstream_dns_servers":[],"version":"0.6.3","zone":"nl-ams-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-10-22T13:15:31.685262Z","gateway_networks":[{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.223115Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"90d980f9-ebe2-47f5-a479-b403babe38a0","ipam_config":{"ipam_ip_id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","push_default_route":true},"mac_address":"02:00:00:19:F7:18","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","status":"ready","updated_at":"2024-10-22T13:15:45.871237Z","zone":"nl-ams-1"}],"id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","ip":{"address":"51.158.179.16","created_at":"2024-10-22T13:15:31.506029Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"39fec5a0-53d9-405b-af02-17948f96980b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"16-179-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-10-22T13:15:31.506029Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-10-22T13:15:46.031839Z","upstream_dns_servers":[],"version":"0.7.2","zone":"nl-ams-1"}' headers: Content-Length: - - "1992" + - "1499" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:17 GMT + - Tue, 22 Oct 2024 13:19:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2557,10 +2559,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7dfe3774-8e5d-4727-a7af-3e86438d47fc + - 5125c429-e389-4f53-8ed8-853c48c6a0fa status: 200 OK code: 200 - duration: 132.888184ms + duration: 51.618164ms - id: 52 request: proto: HTTP/1.1 @@ -2576,8 +2578,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/ips/39fec5a0-53d9-405b-af02-17948f96980b method: GET response: proto: HTTP/2.0 @@ -2585,20 +2587,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 996 + content_length: 401 uncompressed: false - body: '{"address":null,"created_at":"2024-05-14T09:06:55.718278Z","dhcp":{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9","ipam_config":null,"mac_address":"02:00:00:13:AF:3C","private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","status":"ready","updated_at":"2024-05-14T09:07:07.224472Z","zone":"nl-ams-1"}' + body: '{"address":"51.158.179.16","created_at":"2024-10-22T13:15:31.506029Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"39fec5a0-53d9-405b-af02-17948f96980b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"16-179-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-10-22T13:15:31.506029Z","zone":"nl-ams-1"}' headers: Content-Length: - - "996" + - "401" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:17 GMT + - Tue, 22 Oct 2024 13:19:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2606,10 +2608,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a86188fb-9804-4e95-afb5-132ec528f6e7 + - b9b5b457-702a-4ae1-9273-68e804d15bdf status: 200 OK code: 200 - duration: 165.153419ms + duration: 61.954435ms - id: 53 request: proto: HTTP/1.1 @@ -2625,8 +2627,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/90d980f9-ebe2-47f5-a479-b403babe38a0 method: GET response: proto: HTTP/2.0 @@ -2634,20 +2636,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 719 + content_length: 502 uncompressed: false - body: '{"created_at":"2024-05-14T09:06:42.294166Z","dhcp_enabled":true,"id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","subnets":[{"created_at":"2024-05-14T09:06:42.294166Z","id":"1c3afa97-01af-4126-9802-c88b7851fe3e","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:54.103830Z"},{"created_at":"2024-05-14T09:06:42.294166Z","id":"524ab668-c0c5-4229-8ff2-decc5041fd56","subnet":"fd5c:d510:d730:2cba::/64","updated_at":"2024-05-14T09:06:54.108854Z"}],"tags":[],"updated_at":"2024-05-14T09:07:02.401070Z","vpc_id":"1e918353-b3a7-45ce-b72f-b3eefab4a8d1"}' + body: '{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.223115Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"90d980f9-ebe2-47f5-a479-b403babe38a0","ipam_config":{"ipam_ip_id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","push_default_route":true},"mac_address":"02:00:00:19:F7:18","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","status":"ready","updated_at":"2024-10-22T13:15:45.871237Z","zone":"nl-ams-1"}' headers: Content-Length: - - "719" + - "502" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:17 GMT + - Tue, 22 Oct 2024 13:19:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2655,10 +2657,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b8a546b-c6a7-4bbd-bb7a-edfd39f3d92f + - 336eda3c-b682-43de-8dc7-b501af4a6a2e status: 200 OK code: 200 - duration: 166.197652ms + duration: 80.774311ms - id: 54 request: proto: HTTP/1.1 @@ -2674,8 +2676,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/75a45c10-8ca0-49a7-a062-c91c5148edba method: GET response: proto: HTTP/2.0 @@ -2683,20 +2685,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1992 + content_length: 362 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-05-14T09:06:43.233572Z","gateway_networks":[{"address":null,"created_at":"2024-05-14T09:06:55.718278Z","dhcp":{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9","ipam_config":null,"mac_address":"02:00:00:13:AF:3C","private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","status":"ready","updated_at":"2024-05-14T09:07:07.224472Z","zone":"nl-ams-1"}],"id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","ip":{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-05-14T09:07:07.426146Z","upstream_dns_servers":[],"version":"0.6.3","zone":"nl-ams-1"}' + body: '{"created_at":"2024-10-22T13:15:30.781606Z","id":"75a45c10-8ca0-49a7-a062-c91c5148edba","is_default":false,"name":"my vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","routing_enabled":true,"tags":[],"updated_at":"2024-10-22T13:15:30.781606Z"}' headers: Content-Length: - - "1992" + - "362" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:17 GMT + - Tue, 22 Oct 2024 13:19:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2704,10 +2706,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db2a618d-664c-4379-be38-c849e1c958fc + - 31233849-0776-4b8c-a3fb-d32f001553af status: 200 OK code: 200 - duration: 46.368041ms + duration: 89.519497ms - id: 55 request: proto: HTTP/1.1 @@ -2723,8 +2725,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/8d9f16f0-1b57-4786-a415-2b7dec3ef447 method: GET response: proto: HTTP/2.0 @@ -2732,20 +2734,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1332 + content_length: 1499 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-05-14T09:06:43.182848Z","endpoint":null,"endpoints":[{"id":"63c8bff5-c3d8-41b7-8726-ea019c188e5f","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"6ab9f17b-184f-4f17-835e-0b72c21c7d5a","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-10-22T13:15:31.685262Z","gateway_networks":[{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.223115Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"90d980f9-ebe2-47f5-a479-b403babe38a0","ipam_config":{"ipam_ip_id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","push_default_route":true},"mac_address":"02:00:00:19:F7:18","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","status":"ready","updated_at":"2024-10-22T13:15:45.871237Z","zone":"nl-ams-1"}],"id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","ip":{"address":"51.158.179.16","created_at":"2024-10-22T13:15:31.506029Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"39fec5a0-53d9-405b-af02-17948f96980b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"16-179-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-10-22T13:15:31.506029Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-10-22T13:15:46.031839Z","upstream_dns_servers":[],"version":"0.7.2","zone":"nl-ams-1"}' headers: Content-Length: - - "1332" + - "1499" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:17 GMT + - Tue, 22 Oct 2024 13:19:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2753,10 +2755,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b4e860c-f242-4b6c-8175-2e9a7eeace92 + - 1bfb22d7-4b45-4229-ac81-af516935cec3 status: 200 OK code: 200 - duration: 237.542559ms + duration: 56.350063ms - id: 56 request: proto: HTTP/1.1 @@ -2772,8 +2774,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400 method: GET response: proto: HTTP/2.0 @@ -2781,20 +2783,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 996 + content_length: 1364 uncompressed: false - body: '{"address":null,"created_at":"2024-05-14T09:06:55.718278Z","dhcp":{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9","ipam_config":null,"mac_address":"02:00:00:13:AF:3C","private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","status":"ready","updated_at":"2024-05-14T09:07:07.224472Z","zone":"nl-ams-1"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-10-22T13:15:31.870898Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"db683a6d-0998-4f25-aa32-312b8403fa6b","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"61b54824-9439-4688-b81d-83b5eb2c2400","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "996" + - "1364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:17 GMT + - Tue, 22 Oct 2024 13:19:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2802,10 +2804,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21414ce2-2a35-4575-93f5-3b845c952887 + - b05f48df-8385-4b4e-832d-71791565ef1e status: 200 OK code: 200 - duration: 64.72814ms + duration: 139.89157ms - id: 57 request: proto: HTTP/1.1 @@ -2821,8 +2823,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/61afa66f-80bf-4f31-9b28-649b0c3bc9b3 method: GET response: proto: HTTP/2.0 @@ -2830,20 +2832,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1737 + content_length: 1045 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURaakNDQWs2Z0F3SUJBZ0lVZTNubTlkR1VMcWdIVi9jSjJ6OUhTc1pLUVc4d0RRWUpLb1pJaHZjTkFRRUwKQlFBd1dERUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RmpBVUJnTlZCQU1NRFRFNU1pNHhOamd1TVM0eU5UUXdIaGNOCk1qUXdOVEUwTURrd056UTRXaGNOTXpRd05URXlNRGt3TnpRNFdqQllNUXN3Q1FZRFZRUUdFd0pHVWpFT01Bd0cKQTFVRUNBd0ZVR0Z5YVhNeERqQU1CZ05WQkFjTUJWQmhjbWx6TVJFd0R3WURWUVFLREFoVFkyRnNaWGRoZVRFVwpNQlFHQTFVRUF3d05NVGt5TGpFMk9DNHhMakkxTkRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDCkFRb0NnZ0VCQU4ySDd1Yk5SeUFERXlPM1A3OVFCVEo4TWd4SVNGSlBrdy9PM2lmUENNcFBVa3Bxdm9MVk4xQ2IKZk9ZVmIvamlKNEoyMzVJSTF1ZkJXaVl0c3FxdWNoaXk4V3FFVkhpRDg1SDVsUExzRWZpQmN2VEt2R0dTUy8wUgpBRWdiS3JROEhLK0t6WTMzUVRzOFMzSE5abVNYZjRGVmZGRy9OWHpXLzIzaTNVSDl2dnVSR2xhcjJ1VCtNVDNDCjdHdXFIR00xbUhzbzhSdGlSQWNFLzhGTUxoZmkvMWhWMVQ5L21xTVB0eTJHaTh5RUlrbXdJQmtQODlGVDdiSWUKL0VWdDRoT2RGK1Jqa3hUL1NITlNySXlpMy9qRDhDRStlU1J4dndSVFFEK2t4aDRBK0hCOGdZUnJtbHlGWWpsTgpQM1FIR01PRW1zVTlTSVQ0OFRFd3dnV09GWWlQenhrQ0F3RUFBYU1vTUNZd0pBWURWUjBSQkIwd0c0SU5NVGt5CkxqRTJPQzR4TGpJMU5JY0VNNTY2cm9jRXdLZ0IvakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBVWRWTmVSaWgKMGVyODZBRmpIYS9EU3dPRC92ckEzR045ckJQMExtYUJHSEEyNzFFeFNndGJJdHQ0OHBVaUpCd1ViN0pEY0FkTQpWclFncWNQMUl4Z0ZFYWFKazdncGEwVWJJQTZsNm5GZW1rd1JyQWxjWlRGdzNrVGwzaTIvSlo2a3lGZnFtOGw5CmZpOUpta05kOWRUTFBaQlQ0YTFmbVZjMWxFcm82T1UxU3FTekp6MnFUaS9JRzh1dVBrUmRqcW1qUy9sQmtiZlcKa1NBaGlmaGdMSXg2NU82Vk9XVDhiNW9JVjc4OERsRHQxL2Rjd0ZyYm5VV2ZYeGRuKzJKQ01DZG00dCtwK0dobwpDQmZpeW9jWjFicWtkZDEvV0t4YU1jeDdraE5INUNzT3FlN2k1emtsNUhhQmN2ZlN6UkFzOFl3UVhVdVZKT3ZvCjdjQXdLcXFXdjZOSXB3PT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"created_at":"2024-10-22T13:15:31.020207Z","dhcp_enabled":true,"id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","subnets":[{"created_at":"2024-10-22T13:15:31.020207Z","id":"f5490a24-d55f-4f89-8f17-ee00a2cbc131","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"192.168.1.0/24","updated_at":"2024-10-22T13:15:31.020207Z","vpc_id":"75a45c10-8ca0-49a7-a062-c91c5148edba"},{"created_at":"2024-10-22T13:15:31.020207Z","id":"bb671a8a-d699-4b3f-beee-e81a34d372e3","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd2c:2ff0:469a:e950::/64","updated_at":"2024-10-22T13:15:31.020207Z","vpc_id":"75a45c10-8ca0-49a7-a062-c91c5148edba"}],"tags":[],"updated_at":"2024-10-22T13:15:43.796767Z","vpc_id":"75a45c10-8ca0-49a7-a062-c91c5148edba"}' headers: Content-Length: - - "1737" + - "1045" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:17 GMT + - Tue, 22 Oct 2024 13:19:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2851,10 +2853,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66866048-ce52-40f9-a283-646f5b459bc0 + - 5da6a4b4-326d-419b-8c62-e85411fd030d status: 200 OK code: 200 - duration: 100.789336ms + duration: 65.719065ms - id: 58 request: proto: HTTP/1.1 @@ -2870,8 +2872,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/pat-rules/40a001f7-4df3-464c-90d8-d72264331d9b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/90d980f9-ebe2-47f5-a479-b403babe38a0 method: GET response: proto: HTTP/2.0 @@ -2879,20 +2881,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 291 + content_length: 502 uncompressed: false - body: '{"created_at":"2024-05-14T09:10:16.029303Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"40a001f7-4df3-464c-90d8-d72264331d9b","private_ip":"192.168.1.1","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2024-05-14T09:10:16.029303Z","zone":"nl-ams-1"}' + body: '{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.223115Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"90d980f9-ebe2-47f5-a479-b403babe38a0","ipam_config":{"ipam_ip_id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","push_default_route":true},"mac_address":"02:00:00:19:F7:18","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","status":"ready","updated_at":"2024-10-22T13:15:45.871237Z","zone":"nl-ams-1"}' headers: Content-Length: - - "291" + - "502" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:17 GMT + - Tue, 22 Oct 2024 13:19:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2900,10 +2902,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ffee1b12-8c9b-4c1f-97e4-34b33563876c + - 4eaa0a86-3fb3-4c4a-bc3e-73868318df2d status: 200 OK code: 200 - duration: 43.620659ms + duration: 75.717851ms - id: 59 request: proto: HTTP/1.1 @@ -2919,8 +2921,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400/certificate method: GET response: proto: HTTP/2.0 @@ -2928,20 +2930,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1992 + content_length: 1737 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-05-14T09:06:43.233572Z","gateway_networks":[{"address":null,"created_at":"2024-05-14T09:06:55.718278Z","dhcp":{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9","ipam_config":null,"mac_address":"02:00:00:13:AF:3C","private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","status":"ready","updated_at":"2024-05-14T09:07:07.224472Z","zone":"nl-ams-1"}],"id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","ip":{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-05-14T09:07:07.426146Z","upstream_dns_servers":[],"version":"0.6.3","zone":"nl-ams-1"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURaakNDQWs2Z0F3SUJBZ0lVSmdLYlFiSDRzM2xKbmZYMm1KZUs2N1NBOTlZd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1dERUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RmpBVUJnTlZCQU1NRFRFNU1pNHhOamd1TVM0eU5UUXdIaGNOCk1qUXhNREl5TVRNeE5qTTJXaGNOTXpReE1ESXdNVE14TmpNMldqQllNUXN3Q1FZRFZRUUdFd0pHVWpFT01Bd0cKQTFVRUNBd0ZVR0Z5YVhNeERqQU1CZ05WQkFjTUJWQmhjbWx6TVJFd0R3WURWUVFLREFoVFkyRnNaWGRoZVRFVwpNQlFHQTFVRUF3d05NVGt5TGpFMk9DNHhMakkxTkRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDCkFRb0NnZ0VCQUxmTEJpOFhibDZ1R3RUMmEraHNRL3A1Y0ZpR2s3OWw1OVZmaHkwU3EzWERxbWlYeFA5ZFMzY3QKdS9zc3l0ODd1QkEvTVJYYVowd2tSRXN5ekZEWjFIaGwyQ2srK0lodDY2ZWw0ZEJrc0RPZEJaSjNmRkc3UURWRwoyUkJDTU1kMmdKUDFSaEFxMy8zUXpma09PM29RQjVSV2txMzRWcnlSSE1EY0RhZGZLWVJlZmxhalFqbE4rT0pECkJFcEUzbjFnWDR4d2FPeUhWbjI5c0xVZWRPaGNFT3l3UmczbWJid0tSdndtL3dwS1hjNkVXRnpqZllPU2tVeDcKcmNoUitta3l3bDV0TjdUMGFnSUtVTXF4ZVFJeE0zblRZZzJhc28zS2I2YWEwcjA4Z2llTFBqclUzWDN5dE1aUgpyN3ROU3NBakhXM3E2QWh3aEJJQjlYSFhvMUFwQ0VrQ0F3RUFBYU1vTUNZd0pBWURWUjBSQkIwd0c0SU5NVGt5CkxqRTJPQzR4TGpJMU5JY0VNNTZ5M29jRXdLZ0IvakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBVkFES01mc0oKSGRsU0dESURHYmhNMnVtc2toQWFwM1BwQ253cHBPeTBzdGNGNEJSdlBRcVpNQlYyVXdzdytINEh1ZnpYUnBkSApHdXg0QzBscmNCWXNOc0RLLzljVUhGb0NwREs3KzQrUk0vc0RmNTFDWkFnYmRrN2lkeTlhRnBVUHNTdlhCcmU1CkEydzFIdHNra2JJVXRuUjNaM2xIalRoaGFJbytFRVBVV3JneW1naUVlemdIRTYveTVTbTNlMVQ4aTdoMmRBSWoKSE1FdzMrUEkwMXRyYkw4dXFFR1FZbzdLY3RZRlZTL2lURjVIWkxRUGZTeEFocGlPcDlBNUxXYWNxeGJLc2srZQprWDBxR0lyZzE5TmhYMVl1cXNCN0MzZ1RJdkRZdU5rWUpla0ZkZFBEV3k3NzdUeUdvdWFMYU92aWR5d0t5c0RmCjBnVFpBTWIrOFZiN29BPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "1992" + - "1737" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:17 GMT + - Tue, 22 Oct 2024 13:19:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2949,10 +2951,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7fb64ab-0e1c-4360-887c-c795a246fdcd + - e5e2598c-6191-4d52-bf12-d87f5b778b26 status: 200 OK code: 200 - duration: 39.607989ms + duration: 86.302559ms - id: 60 request: proto: HTTP/1.1 @@ -2968,27 +2970,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/pat-rules/40a001f7-4df3-464c-90d8-d72264331d9b - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/pat-rules/79c4fd87-1845-4590-aea6-5fe57f98c406 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 291 uncompressed: false - body: "" + body: '{"created_at":"2024-10-22T13:19:03.976727Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"79c4fd87-1845-4590-aea6-5fe57f98c406","private_ip":"192.168.1.2","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2024-10-22T13:19:03.976727Z","zone":"nl-ams-1"}' headers: + Content-Length: + - "291" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:17 GMT + - Tue, 22 Oct 2024 13:19:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2996,10 +3000,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1cb3adea-cdf2-4e47-b0e7-72d33a88144a - status: 204 No Content - code: 204 - duration: 95.843578ms + - 1f70a649-c45d-4999-8730-ffb9f2ae6cee + status: 200 OK + code: 200 + duration: 45.614601ms - id: 61 request: proto: HTTP/1.1 @@ -3015,8 +3019,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/8d9f16f0-1b57-4786-a415-2b7dec3ef447 method: GET response: proto: HTTP/2.0 @@ -3024,20 +3028,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1992 + content_length: 1499 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-05-14T09:06:43.233572Z","gateway_networks":[{"address":null,"created_at":"2024-05-14T09:06:55.718278Z","dhcp":{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9","ipam_config":null,"mac_address":"02:00:00:13:AF:3C","private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","status":"ready","updated_at":"2024-05-14T09:07:07.224472Z","zone":"nl-ams-1"}],"id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","ip":{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-05-14T09:07:07.426146Z","upstream_dns_servers":[],"version":"0.6.3","zone":"nl-ams-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-10-22T13:15:31.685262Z","gateway_networks":[{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.223115Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"90d980f9-ebe2-47f5-a479-b403babe38a0","ipam_config":{"ipam_ip_id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","push_default_route":true},"mac_address":"02:00:00:19:F7:18","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","status":"ready","updated_at":"2024-10-22T13:15:45.871237Z","zone":"nl-ams-1"}],"id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","ip":{"address":"51.158.179.16","created_at":"2024-10-22T13:15:31.506029Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"39fec5a0-53d9-405b-af02-17948f96980b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"16-179-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-10-22T13:15:31.506029Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-10-22T13:15:46.031839Z","upstream_dns_servers":[],"version":"0.7.2","zone":"nl-ams-1"}' headers: Content-Length: - - "1992" + - "1499" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:18 GMT + - Tue, 22 Oct 2024 13:19:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3045,10 +3049,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45a76217-d447-4880-b7fb-4479028a7752 + - 788660b5-0837-4d35-ae50-2affaa0c1950 status: 200 OK code: 200 - duration: 43.839622ms + duration: 41.247261ms - id: 62 request: proto: HTTP/1.1 @@ -3064,29 +3068,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/pat-rules/79c4fd87-1845-4590-aea6-5fe57f98c406 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 996 + content_length: 0 uncompressed: false - body: '{"address":null,"created_at":"2024-05-14T09:06:55.718278Z","dhcp":{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9","ipam_config":null,"mac_address":"02:00:00:13:AF:3C","private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","status":"ready","updated_at":"2024-05-14T09:07:07.224472Z","zone":"nl-ams-1"}' + body: "" headers: - Content-Length: - - "996" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:18 GMT + - Tue, 22 Oct 2024 13:19:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3094,10 +3096,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad884a83-56ad-464e-bce7-7cff90aef0f9 - status: 200 OK - code: 200 - duration: 66.854321ms + - 157f86a3-1e6f-42a5-9b13-9cfe6b4f379b + status: 204 No Content + code: 204 + duration: 61.362847ms - id: 63 request: proto: HTTP/1.1 @@ -3113,8 +3115,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/8d9f16f0-1b57-4786-a415-2b7dec3ef447 method: GET response: proto: HTTP/2.0 @@ -3122,20 +3124,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1332 + content_length: 1499 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-05-14T09:06:43.182848Z","endpoint":null,"endpoints":[{"id":"63c8bff5-c3d8-41b7-8726-ea019c188e5f","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"6ab9f17b-184f-4f17-835e-0b72c21c7d5a","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-10-22T13:15:31.685262Z","gateway_networks":[{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.223115Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"90d980f9-ebe2-47f5-a479-b403babe38a0","ipam_config":{"ipam_ip_id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","push_default_route":true},"mac_address":"02:00:00:19:F7:18","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","status":"ready","updated_at":"2024-10-22T13:15:45.871237Z","zone":"nl-ams-1"}],"id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","ip":{"address":"51.158.179.16","created_at":"2024-10-22T13:15:31.506029Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"39fec5a0-53d9-405b-af02-17948f96980b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"16-179-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-10-22T13:15:31.506029Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-10-22T13:15:46.031839Z","upstream_dns_servers":[],"version":"0.7.2","zone":"nl-ams-1"}' headers: Content-Length: - - "1332" + - "1499" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:18 GMT + - Tue, 22 Oct 2024 13:19:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3143,10 +3145,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc6f6e44-4a3e-4bd4-8dbf-61baa66e12ba + - a755a707-6438-47e0-ba5f-f105b0b1fefc status: 200 OK code: 200 - duration: 550.901407ms + duration: 44.327367ms - id: 64 request: proto: HTTP/1.1 @@ -3162,27 +3164,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9?cleanup_dhcp=true - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/90d980f9-ebe2-47f5-a479-b403babe38a0 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 502 uncompressed: false - body: "" + body: '{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.223115Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"90d980f9-ebe2-47f5-a479-b403babe38a0","ipam_config":{"ipam_ip_id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","push_default_route":true},"mac_address":"02:00:00:19:F7:18","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","status":"ready","updated_at":"2024-10-22T13:15:45.871237Z","zone":"nl-ams-1"}' headers: + Content-Length: + - "502" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:18 GMT + - Tue, 22 Oct 2024 13:19:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3190,10 +3194,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 260f8bb7-ebf9-4b06-973a-c8a05bc16ccb - status: 204 No Content - code: 204 - duration: 499.429068ms + - 5792f234-f7be-4908-9f78-03fa5b7d3607 + status: 200 OK + code: 200 + duration: 66.971204ms - id: 65 request: proto: HTTP/1.1 @@ -3209,8 +3213,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400 method: GET response: proto: HTTP/2.0 @@ -3218,20 +3222,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1000 + content_length: 1364 uncompressed: false - body: '{"address":null,"created_at":"2024-05-14T09:06:55.718278Z","dhcp":{"address":"192.168.1.1","created_at":"2024-05-14T09:06:42.295252Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:42.295252Z","valid_lifetime":"3600s","zone":"nl-ams-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9","ipam_config":null,"mac_address":"02:00:00:13:AF:3C","private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","status":"detaching","updated_at":"2024-05-14T09:10:18.227159Z","zone":"nl-ams-1"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-10-22T13:15:31.870898Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"db683a6d-0998-4f25-aa32-312b8403fa6b","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"61b54824-9439-4688-b81d-83b5eb2c2400","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1000" + - "1364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:18 GMT + - Tue, 22 Oct 2024 13:19:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3239,10 +3243,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d75d36e5-6d89-4904-9cba-e3011a18e4dc + - e88f7625-dc8b-49f4-b08d-89ad8362e0ea status: 200 OK code: 200 - duration: 66.072003ms + duration: 139.526932ms - id: 66 request: proto: HTTP/1.1 @@ -3258,29 +3262,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/90d980f9-ebe2-47f5-a479-b403babe38a0?cleanup_dhcp=false + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1332 + content_length: 0 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-05-14T09:06:43.182848Z","endpoint":null,"endpoints":[{"id":"63c8bff5-c3d8-41b7-8726-ea019c188e5f","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"6ab9f17b-184f-4f17-835e-0b72c21c7d5a","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: "" headers: - Content-Length: - - "1332" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:18 GMT + - Tue, 22 Oct 2024 13:19:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3288,50 +3290,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 965cc41c-4cd2-4d69-baa2-b6fd5014362d - status: 200 OK - code: 200 - duration: 131.657931ms + - 9bf7b1f2-2056-4c6d-a84e-3a1d208b6f26 + status: 204 No Content + code: 204 + duration: 84.782276ms - id: 67 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/90d980f9-ebe2-47f5-a479-b403babe38a0 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1332 + content_length: 506 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-05-14T09:06:43.182848Z","endpoint":null,"endpoints":[{"id":"63c8bff5-c3d8-41b7-8726-ea019c188e5f","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"6ab9f17b-184f-4f17-835e-0b72c21c7d5a","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"address":"192.168.1.2/24","created_at":"2024-10-22T13:15:37.223115Z","dhcp":null,"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"90d980f9-ebe2-47f5-a479-b403babe38a0","ipam_config":{"ipam_ip_id":"e901afd7-eaf1-45b0-b63a-5cb40c5ee6e6","push_default_route":true},"mac_address":"02:00:00:19:F7:18","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","status":"detaching","updated_at":"2024-10-22T13:19:06.948093Z","zone":"nl-ams-1"}' headers: Content-Length: - - "1332" + - "506" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:18 GMT + - Tue, 22 Oct 2024 13:19:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3339,10 +3339,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c5ff717-1191-497f-bbe3-416cde1bb8ef + - 0f3862c4-76b4-4a22-ad85-6cc446848e0b status: 200 OK code: 200 - duration: 379.356249ms + duration: 70.115358ms - id: 68 request: proto: HTTP/1.1 @@ -3358,8 +3358,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400 method: GET response: proto: HTTP/2.0 @@ -3367,20 +3367,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1332 + content_length: 1364 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-05-14T09:06:43.182848Z","endpoint":null,"endpoints":[{"id":"63c8bff5-c3d8-41b7-8726-ea019c188e5f","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"6ab9f17b-184f-4f17-835e-0b72c21c7d5a","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-10-22T13:15:31.870898Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"db683a6d-0998-4f25-aa32-312b8403fa6b","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"61b54824-9439-4688-b81d-83b5eb2c2400","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1332" + - "1364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:19 GMT + - Tue, 22 Oct 2024 13:19:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3388,46 +3388,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77d3e916-175f-4e83-8f82-14c9692afcad + - d9b4e18c-17de-4567-b336-68c8b94313b9 status: 200 OK code: 200 - duration: 143.536024ms + duration: 117.990041ms - id: 69 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/endpoints/63c8bff5-c3d8-41b7-8726-ea019c188e5f - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1364 uncompressed: false - body: "" + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-10-22T13:15:31.870898Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"db683a6d-0998-4f25-aa32-312b8403fa6b","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"61b54824-9439-4688-b81d-83b5eb2c2400","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' headers: + Content-Length: + - "1364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:19 GMT + - Tue, 22 Oct 2024 13:19:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3435,10 +3439,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9329a589-3a22-4bba-89a8-ac42e78ea3e7 - status: 204 No Content - code: 204 - duration: 572.076577ms + - e276c3de-c365-4557-85df-5c90282a786c + status: 200 OK + code: 200 + duration: 178.629997ms - id: 70 request: proto: HTTP/1.1 @@ -3454,8 +3458,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400 method: GET response: proto: HTTP/2.0 @@ -3463,20 +3467,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1338 + content_length: 1364 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-05-14T09:06:43.182848Z","endpoint":null,"endpoints":[{"id":"63c8bff5-c3d8-41b7-8726-ea019c188e5f","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"6ab9f17b-184f-4f17-835e-0b72c21c7d5a","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"configuring","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-10-22T13:15:31.870898Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"db683a6d-0998-4f25-aa32-312b8403fa6b","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"61b54824-9439-4688-b81d-83b5eb2c2400","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1338" + - "1364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:20 GMT + - Tue, 22 Oct 2024 13:19:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3484,10 +3488,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2fada38f-1fd5-4236-9137-c3a39ced6cc1 + - 4fccfe7c-7414-4ed1-a99e-7bc35a57007f status: 200 OK code: 200 - duration: 409.09829ms + duration: 148.852849ms - id: 71 request: proto: HTTP/1.1 @@ -3503,29 +3507,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/endpoints/db683a6d-0998-4f25-aa32-312b8403fa6b + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 136 + content_length: 0 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"1e80e4e6-2bd0-45d6-b3b3-3dfb917325c9","type":"not_found"}' + body: "" headers: - Content-Length: - - "136" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:23 GMT + - Tue, 22 Oct 2024 13:19:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3533,10 +3535,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c18af44f-abe5-42ea-9897-d84044115491 - status: 404 Not Found - code: 404 - duration: 40.838232ms + - d4357310-4d8a-4254-80fe-309114a109a1 + status: 204 No Content + code: 204 + duration: 255.183366ms - id: 72 request: proto: HTTP/1.1 @@ -3552,8 +3554,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400 method: GET response: proto: HTTP/2.0 @@ -3561,20 +3563,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 996 + content_length: 1370 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-05-14T09:06:43.233572Z","gateway_networks":[],"id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","ip":{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-05-14T09:07:07.426146Z","upstream_dns_servers":[],"version":"0.6.3","zone":"nl-ams-1"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-10-22T13:15:31.870898Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"db683a6d-0998-4f25-aa32-312b8403fa6b","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-15","id":"61b54824-9439-4688-b81d-83b5eb2c2400","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"configuring","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "996" + - "1370" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:23 GMT + - Tue, 22 Oct 2024 13:19:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3582,10 +3584,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3ecc48a-9d44-4cc6-92a4-8ec20773b214 + - e4a6c264-8dec-4627-93f6-c9b294523ddb status: 200 OK code: 200 - duration: 40.417191ms + duration: 156.943034ms - id: 73 request: proto: HTTP/1.1 @@ -3601,29 +3603,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/dhcps/7d4eb8ce-c98f-44d2-a12e-0d403d999ea6 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateway-networks/90d980f9-ebe2-47f5-a479-b403babe38a0 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 125 + content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"dhcp","resource_id":"7d4eb8ce-c98f-44d2-a12e-0d403d999ea6","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"90d980f9-ebe2-47f5-a479-b403babe38a0","type":"not_found"}' headers: Content-Length: - - "125" + - "136" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:23 GMT + - Tue, 22 Oct 2024 13:19:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3631,10 +3633,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 910d6bd8-7cd2-4c19-9af4-9b5eacd88417 + - 9c81b43f-e95a-408b-b4e2-13a356922c41 status: 404 Not Found code: 404 - duration: 43.250551ms + duration: 45.519192ms - id: 74 request: proto: HTTP/1.1 @@ -3650,8 +3652,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/8d9f16f0-1b57-4786-a415-2b7dec3ef447 method: GET response: proto: HTTP/2.0 @@ -3659,20 +3661,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 996 + content_length: 997 uncompressed: false - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-05-14T09:06:43.233572Z","gateway_networks":[],"id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","ip":{"address":"51.158.183.79","created_at":"2024-05-14T09:06:43.000527Z","gateway_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","id":"33a83f9d-c32d-4013-a0d9-d6a86d8b19e2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"79-183-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-05-14T09:06:43.000527Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-05-14T09:07:07.426146Z","upstream_dns_servers":[],"version":"0.6.3","zone":"nl-ams-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-10-22T13:15:31.685262Z","gateway_networks":[],"id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","ip":{"address":"51.158.179.16","created_at":"2024-10-22T13:15:31.506029Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"39fec5a0-53d9-405b-af02-17948f96980b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"16-179-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-10-22T13:15:31.506029Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-10-22T13:15:46.031839Z","upstream_dns_servers":[],"version":"0.7.2","zone":"nl-ams-1"}' headers: Content-Length: - - "996" + - "997" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:23 GMT + - Tue, 22 Oct 2024 13:19:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3680,10 +3682,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 773c87f5-cdb3-45f7-80ee-a854f3d3b6ee + - dcdfd595-a45c-45a8-b15d-29b620916c57 status: 200 OK code: 200 - duration: 49.266772ms + duration: 48.316149ms - id: 75 request: proto: HTTP/1.1 @@ -3699,8 +3701,57 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6?cleanup_dhcp=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/8d9f16f0-1b57-4786-a415-2b7dec3ef447 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 997 + uncompressed: false + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2024-10-22T13:15:31.685262Z","gateway_networks":[],"id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","ip":{"address":"51.158.179.16","created_at":"2024-10-22T13:15:31.506029Z","gateway_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","id":"39fec5a0-53d9-405b-af02-17948f96980b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"16-179-158-51.instances.scw.cloud","tags":[],"updated_at":"2024-10-22T13:15:31.506029Z","zone":"nl-ams-1"},"ip_mobility_enabled":true,"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"nl-ams-1"},"updated_at":"2024-10-22T13:15:46.031839Z","upstream_dns_servers":[],"version":"0.7.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "997" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Oct 2024 13:19:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 89149509-6191-425d-b57e-1169ced01afa + status: 200 OK + code: 200 + duration: 46.115746ms + - id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/8d9f16f0-1b57-4786-a415-2b7dec3ef447?cleanup_dhcp=false method: DELETE response: proto: HTTP/2.0 @@ -3717,9 +3768,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:23 GMT + - Tue, 22 Oct 2024 13:19:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3727,11 +3778,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2f409ab-cb24-4360-b364-9862b43f28ca + - ce2f96d1-8778-4b7d-b89d-36ffee5f63e5 status: 204 No Content code: 204 - duration: 77.51393ms - - id: 76 + duration: 86.33281ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -3746,8 +3797,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/gateways/8d9f16f0-1b57-4786-a415-2b7dec3ef447 method: GET response: proto: HTTP/2.0 @@ -3757,7 +3808,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"89d1c0e4-8cc5-40c6-8ef5-dc9800d9f2c6","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"8d9f16f0-1b57-4786-a415-2b7dec3ef447","type":"not_found"}' headers: Content-Length: - "128" @@ -3766,9 +3817,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:23 GMT + - Tue, 22 Oct 2024 13:19:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3776,11 +3827,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44b8cd64-83c2-4bdd-9372-fe5818d06eee + - 3a4e27c5-a905-4376-b415-7615dd1410ec status: 404 Not Found code: 404 - duration: 43.754039ms - - id: 77 + duration: 38.955954ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -3795,8 +3846,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/ips/33a83f9d-c32d-4013-a0d9-d6a86d8b19e2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/nl-ams-1/ips/39fec5a0-53d9-405b-af02-17948f96980b method: DELETE response: proto: HTTP/2.0 @@ -3813,9 +3864,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:24 GMT + - Tue, 22 Oct 2024 13:19:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3823,11 +3874,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aec9cb0b-42d5-4925-9f22-135f0ec9dde7 + - aa3b8526-dc01-4572-8e7c-1e8de6a21c21 status: 204 No Content code: 204 - duration: 866.681025ms - - id: 78 + duration: 962.343933ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -3842,8 +3893,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400 method: GET response: proto: HTTP/2.0 @@ -3851,20 +3902,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1076 + content_length: 1108 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-05-14T09:06:43.182848Z","endpoint":null,"endpoints":[],"engine":"PostgreSQL-15","id":"6ab9f17b-184f-4f17-835e-0b72c21c7d5a","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-10-22T13:15:31.870898Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-15","id":"61b54824-9439-4688-b81d-83b5eb2c2400","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1076" + - "1108" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:50 GMT + - Tue, 22 Oct 2024 13:19:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3872,11 +3923,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5dccd82a-8290-4d30-b5f7-11b0d4706e58 + - b21df5a6-9dcb-4a8a-a816-0dfaae1984f8 status: 200 OK code: 200 - duration: 515.483272ms - - id: 79 + duration: 151.709375ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -3891,8 +3942,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400 method: GET response: proto: HTTP/2.0 @@ -3900,20 +3951,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1076 + content_length: 1108 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-05-14T09:06:43.182848Z","endpoint":null,"endpoints":[],"engine":"PostgreSQL-15","id":"6ab9f17b-184f-4f17-835e-0b72c21c7d5a","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-10-22T13:15:31.870898Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-15","id":"61b54824-9439-4688-b81d-83b5eb2c2400","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1076" + - "1108" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:50 GMT + - Tue, 22 Oct 2024 13:19:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3921,11 +3972,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc084417-cd76-4643-bd61-27c32e91a3ba + - 5f380209-03be-4d94-8f0c-f8dd94f2c47b status: 200 OK code: 200 - duration: 407.91314ms - - id: 80 + duration: 120.593956ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -3940,8 +3991,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400/certificate method: GET response: proto: HTTP/2.0 @@ -3951,7 +4002,7 @@ interactions: trailer: {} content_length: 1737 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURaakNDQWs2Z0F3SUJBZ0lVZTNubTlkR1VMcWdIVi9jSjJ6OUhTc1pLUVc4d0RRWUpLb1pJaHZjTkFRRUwKQlFBd1dERUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RmpBVUJnTlZCQU1NRFRFNU1pNHhOamd1TVM0eU5UUXdIaGNOCk1qUXdOVEUwTURrd056UTRXaGNOTXpRd05URXlNRGt3TnpRNFdqQllNUXN3Q1FZRFZRUUdFd0pHVWpFT01Bd0cKQTFVRUNBd0ZVR0Z5YVhNeERqQU1CZ05WQkFjTUJWQmhjbWx6TVJFd0R3WURWUVFLREFoVFkyRnNaWGRoZVRFVwpNQlFHQTFVRUF3d05NVGt5TGpFMk9DNHhMakkxTkRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDCkFRb0NnZ0VCQU4ySDd1Yk5SeUFERXlPM1A3OVFCVEo4TWd4SVNGSlBrdy9PM2lmUENNcFBVa3Bxdm9MVk4xQ2IKZk9ZVmIvamlKNEoyMzVJSTF1ZkJXaVl0c3FxdWNoaXk4V3FFVkhpRDg1SDVsUExzRWZpQmN2VEt2R0dTUy8wUgpBRWdiS3JROEhLK0t6WTMzUVRzOFMzSE5abVNYZjRGVmZGRy9OWHpXLzIzaTNVSDl2dnVSR2xhcjJ1VCtNVDNDCjdHdXFIR00xbUhzbzhSdGlSQWNFLzhGTUxoZmkvMWhWMVQ5L21xTVB0eTJHaTh5RUlrbXdJQmtQODlGVDdiSWUKL0VWdDRoT2RGK1Jqa3hUL1NITlNySXlpMy9qRDhDRStlU1J4dndSVFFEK2t4aDRBK0hCOGdZUnJtbHlGWWpsTgpQM1FIR01PRW1zVTlTSVQ0OFRFd3dnV09GWWlQenhrQ0F3RUFBYU1vTUNZd0pBWURWUjBSQkIwd0c0SU5NVGt5CkxqRTJPQzR4TGpJMU5JY0VNNTY2cm9jRXdLZ0IvakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBVWRWTmVSaWgKMGVyODZBRmpIYS9EU3dPRC92ckEzR045ckJQMExtYUJHSEEyNzFFeFNndGJJdHQ0OHBVaUpCd1ViN0pEY0FkTQpWclFncWNQMUl4Z0ZFYWFKazdncGEwVWJJQTZsNm5GZW1rd1JyQWxjWlRGdzNrVGwzaTIvSlo2a3lGZnFtOGw5CmZpOUpta05kOWRUTFBaQlQ0YTFmbVZjMWxFcm82T1UxU3FTekp6MnFUaS9JRzh1dVBrUmRqcW1qUy9sQmtiZlcKa1NBaGlmaGdMSXg2NU82Vk9XVDhiNW9JVjc4OERsRHQxL2Rjd0ZyYm5VV2ZYeGRuKzJKQ01DZG00dCtwK0dobwpDQmZpeW9jWjFicWtkZDEvV0t4YU1jeDdraE5INUNzT3FlN2k1emtsNUhhQmN2ZlN6UkFzOFl3UVhVdVZKT3ZvCjdjQXdLcXFXdjZOSXB3PT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURaakNDQWs2Z0F3SUJBZ0lVSmdLYlFiSDRzM2xKbmZYMm1KZUs2N1NBOTlZd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1dERUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RmpBVUJnTlZCQU1NRFRFNU1pNHhOamd1TVM0eU5UUXdIaGNOCk1qUXhNREl5TVRNeE5qTTJXaGNOTXpReE1ESXdNVE14TmpNMldqQllNUXN3Q1FZRFZRUUdFd0pHVWpFT01Bd0cKQTFVRUNBd0ZVR0Z5YVhNeERqQU1CZ05WQkFjTUJWQmhjbWx6TVJFd0R3WURWUVFLREFoVFkyRnNaWGRoZVRFVwpNQlFHQTFVRUF3d05NVGt5TGpFMk9DNHhMakkxTkRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDCkFRb0NnZ0VCQUxmTEJpOFhibDZ1R3RUMmEraHNRL3A1Y0ZpR2s3OWw1OVZmaHkwU3EzWERxbWlYeFA5ZFMzY3QKdS9zc3l0ODd1QkEvTVJYYVowd2tSRXN5ekZEWjFIaGwyQ2srK0lodDY2ZWw0ZEJrc0RPZEJaSjNmRkc3UURWRwoyUkJDTU1kMmdKUDFSaEFxMy8zUXpma09PM29RQjVSV2txMzRWcnlSSE1EY0RhZGZLWVJlZmxhalFqbE4rT0pECkJFcEUzbjFnWDR4d2FPeUhWbjI5c0xVZWRPaGNFT3l3UmczbWJid0tSdndtL3dwS1hjNkVXRnpqZllPU2tVeDcKcmNoUitta3l3bDV0TjdUMGFnSUtVTXF4ZVFJeE0zblRZZzJhc28zS2I2YWEwcjA4Z2llTFBqclUzWDN5dE1aUgpyN3ROU3NBakhXM3E2QWh3aEJJQjlYSFhvMUFwQ0VrQ0F3RUFBYU1vTUNZd0pBWURWUjBSQkIwd0c0SU5NVGt5CkxqRTJPQzR4TGpJMU5JY0VNNTZ5M29jRXdLZ0IvakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBVkFES01mc0oKSGRsU0dESURHYmhNMnVtc2toQWFwM1BwQ253cHBPeTBzdGNGNEJSdlBRcVpNQlYyVXdzdytINEh1ZnpYUnBkSApHdXg0QzBscmNCWXNOc0RLLzljVUhGb0NwREs3KzQrUk0vc0RmNTFDWkFnYmRrN2lkeTlhRnBVUHNTdlhCcmU1CkEydzFIdHNra2JJVXRuUjNaM2xIalRoaGFJbytFRVBVV3JneW1naUVlemdIRTYveTVTbTNlMVQ4aTdoMmRBSWoKSE1FdzMrUEkwMXRyYkw4dXFFR1FZbzdLY3RZRlZTL2lURjVIWkxRUGZTeEFocGlPcDlBNUxXYWNxeGJLc2srZQprWDBxR0lyZzE5TmhYMVl1cXNCN0MzZ1RJdkRZdU5rWUpla0ZkZFBEV3k3NzdUeUdvdWFMYU92aWR5d0t5c0RmCjBnVFpBTWIrOFZiN29BPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - "1737" @@ -3960,9 +4011,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:51 GMT + - Tue, 22 Oct 2024 13:19:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3970,11 +4021,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0f85e73-00de-40d2-a8b2-14d9eb81f847 + - 9bfdeaa2-b5e5-4cd3-9d3d-c379ee9c91a8 status: 200 OK code: 200 - duration: 102.570987ms - - id: 81 + duration: 93.926091ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -3989,8 +4040,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/75a45c10-8ca0-49a7-a062-c91c5148edba method: GET response: proto: HTTP/2.0 @@ -3998,20 +4049,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 719 + content_length: 362 uncompressed: false - body: '{"created_at":"2024-05-14T09:06:42.294166Z","dhcp_enabled":true,"id":"1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","subnets":[{"created_at":"2024-05-14T09:06:42.294166Z","id":"1c3afa97-01af-4126-9802-c88b7851fe3e","subnet":"192.168.1.0/24","updated_at":"2024-05-14T09:06:54.103830Z"},{"created_at":"2024-05-14T09:06:42.294166Z","id":"524ab668-c0c5-4229-8ff2-decc5041fd56","subnet":"fd5c:d510:d730:2cba::/64","updated_at":"2024-05-14T09:06:54.108854Z"}],"tags":[],"updated_at":"2024-05-14T09:10:18.339855Z","vpc_id":"1e918353-b3a7-45ce-b72f-b3eefab4a8d1"}' + body: '{"created_at":"2024-10-22T13:15:30.781606Z","id":"75a45c10-8ca0-49a7-a062-c91c5148edba","is_default":false,"name":"my vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","routing_enabled":true,"tags":[],"updated_at":"2024-10-22T13:15:30.781606Z"}' headers: Content-Length: - - "719" + - "362" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:51 GMT + - Tue, 22 Oct 2024 13:19:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4019,11 +4070,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb9f9815-ee4a-422d-83c9-dc9d4ef7ff8b + - 0c5ce98a-341b-4f19-9789-a8cc891078d5 status: 200 OK code: 200 - duration: 77.57944ms - - id: 82 + duration: 43.183319ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -4038,8 +4089,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/61afa66f-80bf-4f31-9b28-649b0c3bc9b3 method: GET response: proto: HTTP/2.0 @@ -4047,20 +4098,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1076 + content_length: 1045 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-05-14T09:06:43.182848Z","endpoint":null,"endpoints":[],"engine":"PostgreSQL-15","id":"6ab9f17b-184f-4f17-835e-0b72c21c7d5a","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"created_at":"2024-10-22T13:15:31.020207Z","dhcp_enabled":true,"id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","subnets":[{"created_at":"2024-10-22T13:15:31.020207Z","id":"f5490a24-d55f-4f89-8f17-ee00a2cbc131","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"192.168.1.0/24","updated_at":"2024-10-22T13:15:31.020207Z","vpc_id":"75a45c10-8ca0-49a7-a062-c91c5148edba"},{"created_at":"2024-10-22T13:15:31.020207Z","id":"bb671a8a-d699-4b3f-beee-e81a34d372e3","private_network_id":"61afa66f-80bf-4f31-9b28-649b0c3bc9b3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd2c:2ff0:469a:e950::/64","updated_at":"2024-10-22T13:15:31.020207Z","vpc_id":"75a45c10-8ca0-49a7-a062-c91c5148edba"}],"tags":[],"updated_at":"2024-10-22T13:19:07.168060Z","vpc_id":"75a45c10-8ca0-49a7-a062-c91c5148edba"}' headers: Content-Length: - - "1076" + - "1045" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:51 GMT + - Tue, 22 Oct 2024 13:19:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4068,11 +4119,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1af6f8e-5f41-4958-a7e5-ed95573695d6 + - 1b91ad9f-9a5e-42b4-82ea-e2487c95472c status: 200 OK code: 200 - duration: 118.209237ms - - id: 83 + duration: 32.806209ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1108 + uncompressed: false + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-10-22T13:15:31.870898Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-15","id":"61b54824-9439-4688-b81d-83b5eb2c2400","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + headers: + Content-Length: + - "1108" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Oct 2024 13:19:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9b9b4f59-9070-4f90-9c0b-f98f1df33ef1 + status: 200 OK + code: 200 + duration: 131.983614ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -4087,8 +4187,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400/certificate method: GET response: proto: HTTP/2.0 @@ -4098,7 +4198,7 @@ interactions: trailer: {} content_length: 1737 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURaakNDQWs2Z0F3SUJBZ0lVZTNubTlkR1VMcWdIVi9jSjJ6OUhTc1pLUVc4d0RRWUpLb1pJaHZjTkFRRUwKQlFBd1dERUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RmpBVUJnTlZCQU1NRFRFNU1pNHhOamd1TVM0eU5UUXdIaGNOCk1qUXdOVEUwTURrd056UTRXaGNOTXpRd05URXlNRGt3TnpRNFdqQllNUXN3Q1FZRFZRUUdFd0pHVWpFT01Bd0cKQTFVRUNBd0ZVR0Z5YVhNeERqQU1CZ05WQkFjTUJWQmhjbWx6TVJFd0R3WURWUVFLREFoVFkyRnNaWGRoZVRFVwpNQlFHQTFVRUF3d05NVGt5TGpFMk9DNHhMakkxTkRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDCkFRb0NnZ0VCQU4ySDd1Yk5SeUFERXlPM1A3OVFCVEo4TWd4SVNGSlBrdy9PM2lmUENNcFBVa3Bxdm9MVk4xQ2IKZk9ZVmIvamlKNEoyMzVJSTF1ZkJXaVl0c3FxdWNoaXk4V3FFVkhpRDg1SDVsUExzRWZpQmN2VEt2R0dTUy8wUgpBRWdiS3JROEhLK0t6WTMzUVRzOFMzSE5abVNYZjRGVmZGRy9OWHpXLzIzaTNVSDl2dnVSR2xhcjJ1VCtNVDNDCjdHdXFIR00xbUhzbzhSdGlSQWNFLzhGTUxoZmkvMWhWMVQ5L21xTVB0eTJHaTh5RUlrbXdJQmtQODlGVDdiSWUKL0VWdDRoT2RGK1Jqa3hUL1NITlNySXlpMy9qRDhDRStlU1J4dndSVFFEK2t4aDRBK0hCOGdZUnJtbHlGWWpsTgpQM1FIR01PRW1zVTlTSVQ0OFRFd3dnV09GWWlQenhrQ0F3RUFBYU1vTUNZd0pBWURWUjBSQkIwd0c0SU5NVGt5CkxqRTJPQzR4TGpJMU5JY0VNNTY2cm9jRXdLZ0IvakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBVWRWTmVSaWgKMGVyODZBRmpIYS9EU3dPRC92ckEzR045ckJQMExtYUJHSEEyNzFFeFNndGJJdHQ0OHBVaUpCd1ViN0pEY0FkTQpWclFncWNQMUl4Z0ZFYWFKazdncGEwVWJJQTZsNm5GZW1rd1JyQWxjWlRGdzNrVGwzaTIvSlo2a3lGZnFtOGw5CmZpOUpta05kOWRUTFBaQlQ0YTFmbVZjMWxFcm82T1UxU3FTekp6MnFUaS9JRzh1dVBrUmRqcW1qUy9sQmtiZlcKa1NBaGlmaGdMSXg2NU82Vk9XVDhiNW9JVjc4OERsRHQxL2Rjd0ZyYm5VV2ZYeGRuKzJKQ01DZG00dCtwK0dobwpDQmZpeW9jWjFicWtkZDEvV0t4YU1jeDdraE5INUNzT3FlN2k1emtsNUhhQmN2ZlN6UkFzOFl3UVhVdVZKT3ZvCjdjQXdLcXFXdjZOSXB3PT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURaakNDQWs2Z0F3SUJBZ0lVSmdLYlFiSDRzM2xKbmZYMm1KZUs2N1NBOTlZd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1dERUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RmpBVUJnTlZCQU1NRFRFNU1pNHhOamd1TVM0eU5UUXdIaGNOCk1qUXhNREl5TVRNeE5qTTJXaGNOTXpReE1ESXdNVE14TmpNMldqQllNUXN3Q1FZRFZRUUdFd0pHVWpFT01Bd0cKQTFVRUNBd0ZVR0Z5YVhNeERqQU1CZ05WQkFjTUJWQmhjbWx6TVJFd0R3WURWUVFLREFoVFkyRnNaWGRoZVRFVwpNQlFHQTFVRUF3d05NVGt5TGpFMk9DNHhMakkxTkRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDCkFRb0NnZ0VCQUxmTEJpOFhibDZ1R3RUMmEraHNRL3A1Y0ZpR2s3OWw1OVZmaHkwU3EzWERxbWlYeFA5ZFMzY3QKdS9zc3l0ODd1QkEvTVJYYVowd2tSRXN5ekZEWjFIaGwyQ2srK0lodDY2ZWw0ZEJrc0RPZEJaSjNmRkc3UURWRwoyUkJDTU1kMmdKUDFSaEFxMy8zUXpma09PM29RQjVSV2txMzRWcnlSSE1EY0RhZGZLWVJlZmxhalFqbE4rT0pECkJFcEUzbjFnWDR4d2FPeUhWbjI5c0xVZWRPaGNFT3l3UmczbWJid0tSdndtL3dwS1hjNkVXRnpqZllPU2tVeDcKcmNoUitta3l3bDV0TjdUMGFnSUtVTXF4ZVFJeE0zblRZZzJhc28zS2I2YWEwcjA4Z2llTFBqclUzWDN5dE1aUgpyN3ROU3NBakhXM3E2QWh3aEJJQjlYSFhvMUFwQ0VrQ0F3RUFBYU1vTUNZd0pBWURWUjBSQkIwd0c0SU5NVGt5CkxqRTJPQzR4TGpJMU5JY0VNNTZ5M29jRXdLZ0IvakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBVkFES01mc0oKSGRsU0dESURHYmhNMnVtc2toQWFwM1BwQ253cHBPeTBzdGNGNEJSdlBRcVpNQlYyVXdzdytINEh1ZnpYUnBkSApHdXg0QzBscmNCWXNOc0RLLzljVUhGb0NwREs3KzQrUk0vc0RmNTFDWkFnYmRrN2lkeTlhRnBVUHNTdlhCcmU1CkEydzFIdHNra2JJVXRuUjNaM2xIalRoaGFJbytFRVBVV3JneW1naUVlemdIRTYveTVTbTNlMVQ4aTdoMmRBSWoKSE1FdzMrUEkwMXRyYkw4dXFFR1FZbzdLY3RZRlZTL2lURjVIWkxRUGZTeEFocGlPcDlBNUxXYWNxeGJLc2srZQprWDBxR0lyZzE5TmhYMVl1cXNCN0MzZ1RJdkRZdU5rWUpla0ZkZFBEV3k3NzdUeUdvdWFMYU92aWR5d0t5c0RmCjBnVFpBTWIrOFZiN29BPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - "1737" @@ -4107,9 +4207,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:51 GMT + - Tue, 22 Oct 2024 13:19:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4117,11 +4217,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e806664-f4ec-4dda-ad06-f45ae6a0ed50 + - 7d09183e-d89d-46b3-a677-5182bf8cfdff status: 200 OK code: 200 - duration: 103.355006ms - - id: 84 + duration: 104.798968ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -4136,8 +4236,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400 method: GET response: proto: HTTP/2.0 @@ -4145,20 +4245,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1076 + content_length: 1108 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-05-14T09:06:43.182848Z","endpoint":null,"endpoints":[],"engine":"PostgreSQL-15","id":"6ab9f17b-184f-4f17-835e-0b72c21c7d5a","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-10-22T13:15:31.870898Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-15","id":"61b54824-9439-4688-b81d-83b5eb2c2400","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1076" + - "1108" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:52 GMT + - Tue, 22 Oct 2024 13:19:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4166,11 +4266,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6904926e-4efe-4d0c-a610-2e88c6a7e9f3 + - 3cc3ef6b-1ac6-4326-9abf-3f356d6eaf7e status: 200 OK code: 200 - duration: 343.644296ms - - id: 85 + duration: 119.864625ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -4185,8 +4285,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400 method: DELETE response: proto: HTTP/2.0 @@ -4194,20 +4294,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1079 + content_length: 1111 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-05-14T09:06:43.182848Z","endpoint":null,"endpoints":[],"engine":"PostgreSQL-15","id":"6ab9f17b-184f-4f17-835e-0b72c21c7d5a","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"deleting","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-10-22T13:15:31.870898Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-15","id":"61b54824-9439-4688-b81d-83b5eb2c2400","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"deleting","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1079" + - "1111" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:52 GMT + - Tue, 22 Oct 2024 13:19:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4215,11 +4315,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11cab46c-7b4f-49bb-81dd-fbcb3ab050d6 + - 7964dfd8-e667-4f05-94ae-3b90d04bbfad status: 200 OK code: 200 - duration: 409.189389ms - - id: 86 + duration: 485.051096ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -4234,8 +4334,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400 method: GET response: proto: HTTP/2.0 @@ -4243,20 +4343,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1079 + content_length: 1111 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-05-14T09:06:43.182848Z","endpoint":null,"endpoints":[],"engine":"PostgreSQL-15","id":"6ab9f17b-184f-4f17-835e-0b72c21c7d5a","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"deleting","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2024-10-22T13:15:31.870898Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-15","id":"61b54824-9439-4688-b81d-83b5eb2c2400","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"deleting","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"bssd","size":10000000000,"type":"bssd"}}' headers: Content-Length: - - "1079" + - "1111" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:52 GMT + - Tue, 22 Oct 2024 13:19:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4264,11 +4364,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6020a9c-5ba9-4a7e-be4c-77c9712a97e4 + - 356b97ad-d010-4c2f-a1af-94193e6bc9cc status: 200 OK code: 200 - duration: 408.993446ms - - id: 87 + duration: 142.057475ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -4283,8 +4383,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/1e7b2811-05e5-463a-9d0f-e0b74c7bfd1c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/61afa66f-80bf-4f31-9b28-649b0c3bc9b3 method: DELETE response: proto: HTTP/2.0 @@ -4301,9 +4401,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 May 2024 09:10:53 GMT + - Tue, 22 Oct 2024 13:19:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4311,11 +4411,58 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7870b0e4-8d13-4151-8424-9775f602ecf4 + - 1cd03cfe-23ba-49bb-a1a9-a671914bee41 status: 204 No Content code: 204 - duration: 1.470676622s - - id: 88 + duration: 1.158808786s + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/75a45c10-8ca0-49a7-a062-c91c5148edba + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Oct 2024 13:19:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 43f15542-3394-408f-b2ef-3ec01e89ee0c + status: 204 No Content + code: 204 + duration: 105.093921ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -4330,8 +4477,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400 method: GET response: proto: HTTP/2.0 @@ -4341,7 +4488,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"6ab9f17b-184f-4f17-835e-0b72c21c7d5a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"61b54824-9439-4688-b81d-83b5eb2c2400","type":"not_found"}' headers: Content-Length: - "129" @@ -4350,9 +4497,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 May 2024 09:11:23 GMT + - Tue, 22 Oct 2024 13:20:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4360,11 +4507,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f075506a-f1d8-4121-a021-00e73c511992 + - 09074473-d093-4284-91f8-6ece40957a09 status: 404 Not Found code: 404 - duration: 96.806343ms - - id: 89 + duration: 111.665624ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -4379,8 +4526,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/6ab9f17b-184f-4f17-835e-0b72c21c7d5a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/61b54824-9439-4688-b81d-83b5eb2c2400 method: GET response: proto: HTTP/2.0 @@ -4390,7 +4537,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"6ab9f17b-184f-4f17-835e-0b72c21c7d5a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"61b54824-9439-4688-b81d-83b5eb2c2400","type":"not_found"}' headers: Content-Length: - "129" @@ -4399,9 +4546,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 May 2024 09:11:23 GMT + - Tue, 22 Oct 2024 13:20:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4409,7 +4556,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ab94036-3d8f-4dd3-a055-35cbff67d259 + - 286f1469-1e49-4e54-b396-d2fd51f5a671 status: 404 Not Found code: 404 - duration: 105.689405ms + duration: 96.978068ms