From 65676c08a623a0a57b097b5bdc8d864bae35bd61 Mon Sep 17 00:00:00 2001 From: ezilber-akamai Date: Wed, 12 Feb 2025 11:11:25 -0500 Subject: [PATCH 1/2] Added support for DBaaS suspend/resume --- mysql.go | 10 + postgres.go | 10 + request_helpers.go | 12 +- .../fixtures/TestDatabase_MySQL_Suite.yaml | 2474 +++++++++++----- .../fixtures/TestDatabase_Postgres_Suite.yaml | 2498 +++++++++++------ test/integration/mysql_test.go | 24 +- test/integration/postgres_test.go | 22 + 7 files changed, 3487 insertions(+), 1563 deletions(-) diff --git a/mysql.go b/mysql.go index 6703f1064..74d728e9d 100644 --- a/mysql.go +++ b/mysql.go @@ -278,3 +278,13 @@ func (c *Client) PatchMySQLDatabase(ctx context.Context, databaseID int) error { _, err := doPOSTRequest[MySQLDatabase, any](ctx, c, e) return err } + +func (c *Client) SuspendMySQLDatabase(ctx context.Context, databaseID int) error { + e := formatAPIPath("databases/mysql/instances/%d/suspend", databaseID) + return doPOSTRequestNoRequestResponseBody(ctx, c, e) +} + +func (c *Client) ResumeMySQLDatabase(ctx context.Context, databaseID int) error { + e := formatAPIPath("databases/mysql/instances/%d/resume", databaseID) + return doPOSTRequestNoRequestResponseBody(ctx, c, e) +} diff --git a/postgres.go b/postgres.go index e42967bbb..f5e0637dd 100644 --- a/postgres.go +++ b/postgres.go @@ -266,3 +266,13 @@ func (c *Client) CreatePostgresDatabaseBackup(ctx context.Context, databaseID in _, err := doPOSTRequest[PostgresDatabaseBackup](ctx, c, e, opts) return err } + +func (c *Client) SuspendPostgresDatabase(ctx context.Context, databaseID int) error { + e := formatAPIPath("databases/postgresql/instances/%d/suspend", databaseID) + return doPOSTRequestNoRequestResponseBody(ctx, c, e) +} + +func (c *Client) ResumePostgresDatabase(ctx context.Context, databaseID int) error { + e := formatAPIPath("databases/postgresql/instances/%d/resume", databaseID) + return doPOSTRequestNoRequestResponseBody(ctx, c, e) +} diff --git a/request_helpers.go b/request_helpers.go index 28ed21499..f5bb2048f 100644 --- a/request_helpers.go +++ b/request_helpers.go @@ -149,7 +149,7 @@ func doPOSTRequest[T, O any]( return r.Result().(*T), nil } -// doPOSTRequest runs a POST request using the given client, API endpoint, +// doPOSTRequestNoResponseBody runs a POST request using the given client, API endpoint, // and options/body. It expects only empty response from the endpoint. func doPOSTRequestNoResponseBody[T any]( ctx context.Context, @@ -161,6 +161,16 @@ func doPOSTRequestNoResponseBody[T any]( return err } +// doPOSTRequestNoRequestResponseBody runs a POST request where no request body is needed and no response body +// is expected from the endpoints. +func doPOSTRequestNoRequestResponseBody( + ctx context.Context, + client *Client, + endpoint string, +) error { + return doPOSTRequestNoResponseBody(ctx, client, endpoint, struct{}{}) +} + // doPUTRequest runs a PUT request using the given client, API endpoint, // and options/body. func doPUTRequest[T, O any]( diff --git a/test/integration/fixtures/TestDatabase_MySQL_Suite.yaml b/test/integration/fixtures/TestDatabase_MySQL_Suite.yaml index b04605b7c..6ed630fa3 100644 --- a/test/integration/fixtures/TestDatabase_MySQL_Suite.yaml +++ b/test/integration/fixtures/TestDatabase_MySQL_Suite.yaml @@ -221,25 +221,23 @@ interactions: "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement - Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, - 96.126.106.5, 50.116.53.5, 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, - 97.107.133.4, 207.192.69.4, 207.192.69.5", "ipv6": "1234::5678, 1234::5678, - 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, - 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west", - "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Disk Encryption", - "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", - "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"], - "status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5, - 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20, - 109.74.194.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, - 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, + Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5,96.126.106.5,50.116.53.5,50.116.58.5,50.116.61.5,50.116.62.5,66.175.211.5,97.107.133.4,173.255.225.5,66.228.35.5", + "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": - 5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country": - "sg", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"], - "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20", + 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country": + "gb", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", + "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", + "Metadata", "Placement Group", "StackScripts"], "status": "ok", "resolvers": + {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, + 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ap-south", "label": "Singapore, SG", "country": "sg", "capabilities": + ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Metadata", "Placement Group", "StackScripts"], "status": + "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20", "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": @@ -279,7 +277,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:20:48 GMT + - Wed, 12 Feb 2025 14:28:10 GMT Pragma: - no-cache Strict-Transport-Security: @@ -305,7 +303,7 @@ interactions: code: 200 duration: "" - request: - body: '{"label":"go-mysql-test-def547m5mw2qwc5","region":"ap-west","type":"g6-nanode-1","engine":"mysql/8","allow_list":["203.0.113.1","192.0.1.0/24"],"cluster_size":3}' + body: '{"label":"go-mysql-test-def7yr571p0nnx2","region":"ap-west","type":"g6-nanode-1","engine":"mysql/8","allow_list":["203.0.113.1","192.0.1.0/24"],"cluster_size":3}' form: {} headers: Accept: @@ -319,12 +317,12 @@ interactions: response: body: '{"allow_list": ["192.0.1.0/24", "203.0.113.1/32"], "cluster_size": 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": {"primary": - "a210765-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": "replica-a210765-akamai-prod-5782758-default.g2a.akamaidb.net"}, - "id": 210765, "label": "go-mysql-test-def547m5mw2qwc5", "members": {}, "port": + "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227288, "label": "go-mysql-test-def7yr571p0nnx2", "members": {}, "port": 18319, "region": "ap-west", "ssl_connection": true, "status": "provisioning", "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": "2018-01-02T03:04:05", - "updates": {"day_of_week": 6, "duration": 4, "frequency": "weekly", "hour_of_day": - 5, "pending": []}, "used_disk_size_gb": null, "version": "8", "platform": "rdbms-default"}' + "updates": {"day_of_week": 3, "duration": 4, "frequency": "weekly", "hour_of_day": + 17, "pending": []}, "used_disk_size_gb": null, "version": "8", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -343,13 +341,13 @@ interactions: Connection: - keep-alive Content-Length: - - "707" + - "708" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:20:51 GMT + - Wed, 12 Feb 2025 14:28:14 GMT Pragma: - no-cache Strict-Transport-Security: @@ -383,15 +381,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database"}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -417,7 +415,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:21:06 GMT + - Wed, 12 Feb 2025 14:28:29 GMT Pragma: - no-cache Strict-Transport-Security: @@ -452,15 +450,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -486,7 +484,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:21:21 GMT + - Wed, 12 Feb 2025 14:28:44 GMT Pragma: - no-cache Strict-Transport-Security: @@ -521,15 +519,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -555,7 +553,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:21:36 GMT + - Wed, 12 Feb 2025 14:28:59 GMT Pragma: - no-cache Strict-Transport-Security: @@ -590,15 +588,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -624,7 +622,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:21:51 GMT + - Wed, 12 Feb 2025 14:29:14 GMT Pragma: - no-cache Strict-Transport-Security: @@ -659,15 +657,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -693,7 +691,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:22:06 GMT + - Wed, 12 Feb 2025 14:29:29 GMT Pragma: - no-cache Strict-Transport-Security: @@ -728,15 +726,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -762,7 +760,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:22:21 GMT + - Wed, 12 Feb 2025 14:29:45 GMT Pragma: - no-cache Strict-Transport-Security: @@ -797,15 +795,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -831,7 +829,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:22:36 GMT + - Wed, 12 Feb 2025 14:30:00 GMT Pragma: - no-cache Strict-Transport-Security: @@ -866,15 +864,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -900,7 +898,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:22:51 GMT + - Wed, 12 Feb 2025 14:30:15 GMT Pragma: - no-cache Strict-Transport-Security: @@ -935,15 +933,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -969,7 +967,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:23:06 GMT + - Wed, 12 Feb 2025 14:30:29 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1004,15 +1002,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1038,7 +1036,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:23:21 GMT + - Wed, 12 Feb 2025 14:30:44 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1073,15 +1071,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1107,7 +1105,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:23:36 GMT + - Wed, 12 Feb 2025 14:30:59 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1142,15 +1140,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1176,7 +1174,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:23:51 GMT + - Wed, 12 Feb 2025 14:31:14 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1211,15 +1209,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1245,7 +1243,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:24:06 GMT + - Wed, 12 Feb 2025 14:31:29 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1280,15 +1278,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1314,7 +1312,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:24:21 GMT + - Wed, 12 Feb 2025 14:31:44 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1349,15 +1347,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1383,7 +1381,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:24:36 GMT + - Wed, 12 Feb 2025 14:32:00 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1418,15 +1416,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1452,7 +1450,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:24:51 GMT + - Wed, 12 Feb 2025 14:32:14 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1487,15 +1485,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1521,7 +1519,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:25:06 GMT + - Wed, 12 Feb 2025 14:32:29 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1556,15 +1554,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1590,7 +1588,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:25:21 GMT + - Wed, 12 Feb 2025 14:32:44 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1625,15 +1623,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1659,7 +1657,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:25:36 GMT + - Wed, 12 Feb 2025 14:32:59 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1694,15 +1692,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1728,7 +1726,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:25:51 GMT + - Wed, 12 Feb 2025 14:33:14 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1763,15 +1761,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1797,7 +1795,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:26:06 GMT + - Wed, 12 Feb 2025 14:33:29 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1832,15 +1830,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1866,7 +1864,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:26:21 GMT + - Wed, 12 Feb 2025 14:33:44 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1901,15 +1899,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1935,7 +1933,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:26:36 GMT + - Wed, 12 Feb 2025 14:33:59 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1970,15 +1968,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2004,7 +2002,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:26:51 GMT + - Wed, 12 Feb 2025 14:34:15 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2039,15 +2037,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2073,7 +2071,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:27:06 GMT + - Wed, 12 Feb 2025 14:34:29 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2108,15 +2106,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2142,7 +2140,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:27:21 GMT + - Wed, 12 Feb 2025 14:34:44 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2177,15 +2175,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2211,7 +2209,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:27:36 GMT + - Wed, 12 Feb 2025 14:34:59 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2246,15 +2244,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2280,7 +2278,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:27:51 GMT + - Wed, 12 Feb 2025 14:35:14 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2315,15 +2313,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2349,7 +2347,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:28:06 GMT + - Wed, 12 Feb 2025 14:35:29 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2384,15 +2382,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2418,7 +2416,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:28:21 GMT + - Wed, 12 Feb 2025 14:35:44 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2453,15 +2451,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2487,7 +2485,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:28:36 GMT + - Wed, 12 Feb 2025 14:35:59 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2522,15 +2520,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2556,7 +2554,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:28:51 GMT + - Wed, 12 Feb 2025 14:36:14 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2591,15 +2589,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2625,7 +2623,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:29:06 GMT + - Wed, 12 Feb 2025 14:36:29 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2660,15 +2658,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2694,7 +2692,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:29:21 GMT + - Wed, 12 Feb 2025 14:36:44 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2729,15 +2727,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2763,7 +2761,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:29:36 GMT + - Wed, 12 Feb 2025 14:36:59 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2798,15 +2796,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2832,7 +2830,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:29:51 GMT + - Wed, 12 Feb 2025 14:37:14 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2867,15 +2865,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2901,7 +2899,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:30:06 GMT + - Wed, 12 Feb 2025 14:37:29 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2936,15 +2934,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2970,7 +2968,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:30:21 GMT + - Wed, 12 Feb 2025 14:37:44 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3005,15 +3003,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3039,7 +3037,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:30:36 GMT + - Wed, 12 Feb 2025 14:37:59 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3074,15 +3072,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3108,7 +3106,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:30:51 GMT + - Wed, 12 Feb 2025 14:38:14 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3143,15 +3141,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3177,7 +3175,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:31:06 GMT + - Wed, 12 Feb 2025 14:38:29 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3212,15 +3210,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3246,7 +3244,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:31:21 GMT + - Wed, 12 Feb 2025 14:38:44 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3281,15 +3279,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3315,7 +3313,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:31:36 GMT + - Wed, 12 Feb 2025 14:38:59 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3350,15 +3348,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3384,7 +3382,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:31:51 GMT + - Wed, 12 Feb 2025 14:39:15 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3419,15 +3417,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3453,7 +3451,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:32:06 GMT + - Wed, 12 Feb 2025 14:39:29 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3488,15 +3486,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3522,7 +3520,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:32:21 GMT + - Wed, 12 Feb 2025 14:39:44 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3557,15 +3555,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3591,7 +3589,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:32:36 GMT + - Wed, 12 Feb 2025 14:39:59 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3626,15 +3624,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3660,7 +3658,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:32:51 GMT + - Wed, 12 Feb 2025 14:40:14 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3695,15 +3693,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3729,7 +3727,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:33:06 GMT + - Wed, 12 Feb 2025 14:40:29 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3764,15 +3762,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3798,7 +3796,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:33:21 GMT + - Wed, 12 Feb 2025 14:40:45 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3833,15 +3831,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3867,7 +3865,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:33:36 GMT + - Wed, 12 Feb 2025 14:40:59 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3902,15 +3900,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3936,7 +3934,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:33:51 GMT + - Wed, 12 Feb 2025 14:41:14 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3971,15 +3969,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -4005,7 +4003,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:34:06 GMT + - Wed, 12 Feb 2025 14:41:29 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4040,15 +4038,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -4074,7 +4072,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:34:21 GMT + - Wed, 12 Feb 2025 14:41:44 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4109,15 +4107,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -4143,7 +4141,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:34:36 GMT + - Wed, 12 Feb 2025 14:41:59 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4178,15 +4176,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -4212,7 +4210,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:34:51 GMT + - Wed, 12 Feb 2025 14:42:14 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4247,15 +4245,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -4281,7 +4279,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:35:06 GMT + - Wed, 12 Feb 2025 14:42:29 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4316,15 +4314,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -4350,7 +4348,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:35:21 GMT + - Wed, 12 Feb 2025 14:42:44 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4385,15 +4383,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -4419,7 +4417,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:35:36 GMT + - Wed, 12 Feb 2025 14:42:59 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4454,15 +4452,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -4488,7 +4486,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:35:51 GMT + - Wed, 12 Feb 2025 14:43:14 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4523,15 +4521,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -4557,7 +4555,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:36:06 GMT + - Wed, 12 Feb 2025 14:43:29 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4592,15 +4590,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -4626,7 +4624,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:36:21 GMT + - Wed, 12 Feb 2025 14:43:44 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4661,15 +4659,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T14:28:10"},"entity.id":227288,"entity.type":"database","id":{"+gte":952713396}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + body: '{"data": [{"id": 952713396, "created": "2018-01-02T03:04:05", "seen": false, + "read": false, "percent_complete": 100, "time_remaining": null, "rate": null, + "duration": 668, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-def7yr571p0nnx2", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "finished", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -4689,13 +4687,13 @@ interactions: Connection: - keep-alive Content-Length: - - "469" + - "463" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:36:36 GMT + - Wed, 12 Feb 2025 14:43:59 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4729,17 +4727,20 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/mysql/instances?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [{"allow_list": ["192.0.1.0/24", "203.0.113.1/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2", "members": {"172.105.37.203": "primary", + "45.79.125.124": "failover", "45.79.125.126": "failover"}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "active", "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": + "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": 4, "frequency": + "weekly", "hour_of_day": 17, "pending": []}, "used_disk_size_gb": 0, "version": + "8.0.35", "platform": "rdbms-default"}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4757,14 +4758,12 @@ interactions: - max-age=0, no-cache, no-store Connection: - keep-alive - Content-Length: - - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:36:51 GMT + - Wed, 12 Feb 2025 14:44:01 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4772,8 +4771,9 @@ interactions: Vary: - Authorization, X-Filter - Authorization, X-Filter + - Accept-Encoding X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -4798,17 +4798,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"allow_list": ["192.0.1.0/24", "203.0.113.1/32"], "cluster_size": 3, "created": + "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": {"primary": + "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227288, "label": "go-mysql-test-def7yr571p0nnx2", "members": {"172.105.37.203": + "primary", "45.79.125.124": "failover", "45.79.125.126": "failover"}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "active", "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": + "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": 4, "frequency": + "weekly", "hour_of_day": 17, "pending": []}, "used_disk_size_gb": 0, "version": + "8.0.35", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -4827,13 +4829,13 @@ interactions: Connection: - keep-alive Content-Length: - - "469" + - "835" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:37:06 GMT + - Wed, 12 Feb 2025 14:44:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4842,7 +4844,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -4858,7 +4860,7 @@ interactions: code: 200 duration: "" - request: - body: "" + body: '{"label":"go-mysql-test-def7yr571p0nnx2-updated","allow_list":["128.173.205.21","123.177.200.20"],"updates":{"day_of_week":3,"duration":4,"frequency":"weekly","hour_of_day":8}}' form: {} headers: Accept: @@ -4867,17 +4869,20 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 + method: PUT response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {"172.105.37.203": + "primary", "45.79.125.124": "failover", "45.79.125.126": "failover"}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "active", "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": + "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": 4, "frequency": + "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": 0, "version": + "8.0.35", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -4896,22 +4901,21 @@ interactions: Connection: - keep-alive Content-Length: - - "469" + - "850" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:37:21 GMT + - Wed, 12 Feb 2025 14:44:05 GMT Pragma: - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter - - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -4937,15 +4941,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":227288,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": + body: '{"data": [{"id": 952725005, "created": "2018-01-02T03:04:05", "seen": false, + "read": false, "percent_complete": 100, "time_remaining": null, "rate": null, + "duration": 0, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-def7yr571p0nnx2-updated", "id": 227288, "type": "database", + "url": "/v4/databases/mysql/instances/227288"}, "status": "finished", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -4971,7 +4975,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:37:36 GMT + - Wed, 12 Feb 2025 14:44:20 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5005,17 +5009,20 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {"172.105.37.203": + "primary", "45.79.125.124": "failover", "45.79.125.126": "failover"}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "active", "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": + "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": 4, "frequency": + "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": 0, "version": + "8.0.35", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -5034,13 +5041,13 @@ interactions: Connection: - keep-alive Content-Length: - - "469" + - "850" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:37:51 GMT + - Wed, 12 Feb 2025 14:44:36 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5049,7 +5056,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5074,17 +5081,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/mysql/instances/227288/ssl method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"ca_certificate": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUVRVENDQXFtZ0F3SUJBZ0lVSGw2WFlseHA0MTFpVUMwU294VkYzUmpkUXpBd0RRWUpLb1pJaHZjTkFRRU0KQlFBd09qRTRNRFlHQTFVRUF3d3ZZakF3TkRoaU4yRXRPR0ZrWVMwMFpUWXlMV0UyTXprdFpEazROakU1WXpJeApaR1ZsSUZCeWIycGxZM1FnUTBFd0hoY05NalF4TVRBMk1Ua3hOVFV5V2hjTk16UXhNVEEwTVRreE5UVXlXakE2Ck1UZ3dOZ1lEVlFRRERDOWlNREEwT0dJM1lTMDRZV1JoTFRSbE5qSXRZVFl6T1Mxa09UZzJNVGxqTWpGa1pXVWcKVUhKdmFtVmpkQ0JEUVRDQ0FhSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnR1BBRENDQVlvQ2dnR0JBTXUrMXNuVQpYdXplSUI3U05ReUE5K0JFdkFJYzNKeThRVm1aTmRYWFdVRzUvZlZ3SXZsdVNwaW40SVZuSFpGclJadjNXdmM5CllQbTRQdmxBZEZFcy9qek4wZ3RhNnlVeEJES09YRHBJVksxZU0xbHIrUWNvczQ1blk2cWVXa2xBOThGbFFPQkYKWkk1elkvVU1vLzk3WElINmVQVllzeWQ2dHM0MEp0SjBDYUcyVXBBSUJuOU5QYnRJTFk1a1ZkRGlVdHFSbm55MQpHdmY3N2M3ZkxVYVRkWi9TRUwveGl0S1B5M24zZGFaOG5qUmMzNXlLbWthOElxZXlIS3NqNVc4azMvem1UVlB0Clkvc3ZPcGVCOU5FeHMvenlZZzJFOHp3bGtzUDZwTE85N0hnWXdLNFJPcmZHMUJYLzVFZUhkL29xbHB2dnBLdzUKRklMUVpWRk9jVGFyTm5XdERwa2VKRW5zWmpFd0Y2MTJzNjZHei9GYzF4N1RSdkhEMmQ0MXE0M1pvOXN6bHpETwprWkxrOXZSNUxlZmFSaW9uUnJlYktSR1NzK0tuQlN0aTA0UlpsSGt0ZzZ0dmN1MHdIT05OdG1RODVRTUcvMTJKClJEcXZsMG1IQTR3cXNDUi9RK3Zkc3k3MkprWEFIakFpd0o1bzBwdVNEYTBzUVZzSHdlaGlXakkrelFJREFRQUIKb3o4d1BUQWRCZ05WSFE0RUZnUVVXVDg4RVhSaWRSSmFtOUtkK3RtU3BwTjI0aVF3RHdZRFZSMFRCQWd3QmdFQgovd0lCQURBTEJnTlZIUThFQkFNQ0FRWXdEUVlKS29aSWh2Y05BUUVNQlFBRGdnR0JBSjVKZWRRczJPUG9kd0pZClVzdDdhVWZUNFp1TWhEaWJEditBckdBblAzL3Rsa3JJeEMzMjhoai9ET1gvM3NSUm9xRDVEZm1IMUtBMGkxZEsKcU9QN0pIaUI4dkYrT2Q1MjgvMzFTeFg0cmlpRll5MlozQStHQ2xMRFYyTks3QXBjZXZSL09MUmdSKys5ZElmMQppVHRIczNpd2FNYUtBQ1JaaDFVcTMzU0hURE5URkhVVVJVbGUrM0YvS1J0YllCS1VHa3Vob3lzbE14TXM1aHFiCk5sdlZBdU8yY21ucHl0WWIrcmhseE5BWjZYMjdlODNnd21idUROcjdXaGJRd0xkN1U3Wnh3VlZWYitHTkxlYUkKQU5oMURsOXZLWnRRTFdjNExVZnQxZWZCbzR1MnlwSjRRckd6aHI4alVrQUhRWE4vSzgzaDVqQ2hXRzZjeUozQwpIRm9rZkdhdnF3MkdVS1AyRVc0SkJVQ0VaMTRYUEpjYW9HeTNEQmd3WDUxZ1VTMUsySlR2a0NrMXl0ckh4NzZqCkloMFVJZnFvTS9rNEw1K0Z2YmxsS1ZYaHhoSllBSVg2TndVRzlZRklhR1BUdVZUREFFQlV6L3lWd2VnUmNZcGcKWm0zMDJTbGMrWDlmamwrR2VQN3JWbWtBTmwyOHRYL1VVZG1SeTFlS1BxeDlQZGVEQ2c9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg=="}' headers: Access-Control-Allow-Credentials: - "true" @@ -5102,14 +5102,12 @@ interactions: - max-age=0, no-cache, no-store Connection: - keep-alive - Content-Length: - - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:38:06 GMT + - Wed, 12 Feb 2025 14:44:37 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5117,8 +5115,9 @@ interactions: Vary: - Authorization, X-Filter - Authorization, X-Filter + - Accept-Encoding X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5143,17 +5142,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/mysql/instances/227288/credentials method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"password": "@S3cur3P@55w0rd", "username": "aCoolUsername"}' headers: Access-Control-Allow-Credentials: - "true" @@ -5172,13 +5164,13 @@ interactions: Connection: - keep-alive Content-Length: - - "469" + - "64" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:38:21 GMT + - Wed, 12 Feb 2025 14:44:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5187,7 +5179,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5212,17 +5204,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET + url: https://api.linode.com/v4beta/databases/mysql/instances/227288/credentials/reset + method: POST response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{}' headers: Access-Control-Allow-Credentials: - "true" @@ -5241,22 +5226,21 @@ interactions: Connection: - keep-alive Content-Length: - - "469" + - "2" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:38:36 GMT + - Wed, 12 Feb 2025 14:49:42 GMT Pragma: - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter - - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5281,17 +5265,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/mysql/instances/227288/credentials method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"password": "@V3ryS3cur3P@55w0rd", "username": "aCoolUsername"}' headers: Access-Control-Allow-Credentials: - "true" @@ -5310,13 +5287,13 @@ interactions: Connection: - keep-alive Content-Length: - - "469" + - "64" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:38:51 GMT + - Wed, 12 Feb 2025 14:49:59 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5325,7 +5302,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5350,17 +5327,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET + url: https://api.linode.com/v4beta/databases/mysql/instances/227288/patch + method: POST response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{}' headers: Access-Control-Allow-Credentials: - "true" @@ -5379,22 +5349,21 @@ interactions: Connection: - keep-alive Content-Length: - - "469" + - "2" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:39:06 GMT + - Wed, 12 Feb 2025 14:50:00 GMT Pragma: - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter - - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5419,17 +5388,20 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {"172.105.37.203": + "primary", "45.79.125.124": "failover", "45.79.125.126": "failover"}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "updating", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -5448,13 +5420,13 @@ interactions: Connection: - keep-alive Content-Length: - - "469" + - "852" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:39:21 GMT + - Wed, 12 Feb 2025 14:50:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5463,7 +5435,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5488,17 +5460,20 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {"172.105.37.203": + "primary", "45.79.125.124": "failover", "45.79.125.126": "failover"}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "updating", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -5517,13 +5492,13 @@ interactions: Connection: - keep-alive Content-Length: - - "469" + - "852" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:39:36 GMT + - Wed, 12 Feb 2025 14:50:34 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5532,7 +5507,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5557,17 +5532,20 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {"172.105.37.203": + "primary", "45.79.125.124": "failover", "45.79.125.126": "failover"}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "updating", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -5586,13 +5564,13 @@ interactions: Connection: - keep-alive Content-Length: - - "469" + - "852" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:39:51 GMT + - Wed, 12 Feb 2025 14:50:48 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5601,7 +5579,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5626,17 +5604,20 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {"172.105.37.203": + "primary", "45.79.125.124": "failover", "45.79.125.126": "failover"}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "active", "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": + "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": 4, "frequency": + "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": 0, "version": + "8.0.35", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -5655,13 +5636,13 @@ interactions: Connection: - keep-alive Content-Length: - - "469" + - "850" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:40:06 GMT + - Wed, 12 Feb 2025 14:51:03 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5670,7 +5651,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5686,7 +5667,7 @@ interactions: code: 200 duration: "" - request: - body: "" + body: '{}' form: {} headers: Accept: @@ -5695,17 +5676,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET + url: https://api.linode.com/v4beta/databases/mysql/instances/227288/suspend + method: POST response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{}' headers: Access-Control-Allow-Credentials: - "true" @@ -5724,22 +5698,21 @@ interactions: Connection: - keep-alive Content-Length: - - "469" + - "2" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:40:21 GMT + - Wed, 12 Feb 2025 14:51:04 GMT Pragma: - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter - - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5764,17 +5737,20 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {"172.105.37.203": + "primary", "45.79.125.124": "failover", "45.79.125.126": "failover"}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "suspended", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -5793,13 +5769,13 @@ interactions: Connection: - keep-alive Content-Length: - - "469" + - "853" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:40:36 GMT + - Wed, 12 Feb 2025 14:51:21 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5808,7 +5784,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5824,7 +5800,7 @@ interactions: code: 200 duration: "" - request: - body: "" + body: '{}' form: {} headers: Accept: @@ -5833,17 +5809,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET + url: https://api.linode.com/v4beta/databases/mysql/instances/227288/resume + method: POST response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{}' headers: Access-Control-Allow-Credentials: - "true" @@ -5862,22 +5831,21 @@ interactions: Connection: - keep-alive Content-Length: - - "469" + - "2" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:40:51 GMT + - Wed, 12 Feb 2025 14:51:22 GMT Pragma: - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter - - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5902,17 +5870,20 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {"172.105.37.203": + "primary", "45.79.125.124": "failover", "45.79.125.126": "failover"}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "suspended", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -5931,13 +5902,13 @@ interactions: Connection: - keep-alive Content-Length: - - "469" + - "853" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:41:06 GMT + - Wed, 12 Feb 2025 14:51:38 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5946,7 +5917,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5971,21 +5942,24 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - headers: - Access-Control-Allow-Credentials: - - "true" - Access-Control-Allow-Headers: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {"172.105.37.203": + "primary", "45.79.125.124": "failover", "45.79.125.126": "failover"}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "suspended", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter Access-Control-Allow-Methods: - HEAD, GET, OPTIONS, POST, PUT, DELETE @@ -6000,13 +5974,13 @@ interactions: Connection: - keep-alive Content-Length: - - "469" + - "853" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:41:21 GMT + - Wed, 12 Feb 2025 14:51:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6015,7 +5989,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -6040,17 +6014,20 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {"172.105.37.203": + "primary", "45.79.125.124": "failover", "45.79.125.126": "failover"}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "suspended", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6069,13 +6046,13 @@ interactions: Connection: - keep-alive Content-Length: - - "469" + - "853" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:41:36 GMT + - Wed, 12 Feb 2025 14:52:08 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6084,7 +6061,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -6109,17 +6086,20 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {"45.79.125.124": + "failover", "45.79.125.126": "failover"}, "oldest_restore_time": "2018-01-02T03:04:05", + "port": 18319, "region": "ap-west", "ssl_connection": true, "status": "suspended", + "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": "2018-01-02T03:04:05", + "updates": {"day_of_week": 3, "duration": 4, "frequency": "weekly", "hour_of_day": + 8, "pending": []}, "used_disk_size_gb": 0, "version": "8.0.35", "platform": + "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6138,13 +6118,13 @@ interactions: Connection: - keep-alive Content-Length: - - "469" + - "824" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:41:51 GMT + - Wed, 12 Feb 2025 14:52:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6153,7 +6133,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -6178,17 +6158,20 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:20:48"},"entity.id":210765,"entity.type":"database","id":{"+gte":934250283}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 method: GET response: - body: '{"data": [{"id": 934250283, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": 100, "time_remaining": null, "rate": null, - "duration": 907, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "finished", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {"45.79.125.124": + "failover", "45.79.125.126": "failover"}, "oldest_restore_time": "2018-01-02T03:04:05", + "port": 18319, "region": "ap-west", "ssl_connection": true, "status": "resuming", + "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": "2018-01-02T03:04:05", + "updates": {"day_of_week": 3, "duration": 4, "frequency": "weekly", "hour_of_day": + 8, "pending": []}, "used_disk_size_gb": 0, "version": "8.0.35", "platform": + "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6207,13 +6190,13 @@ interactions: Connection: - keep-alive Content-Length: - - "463" + - "823" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:42:06 GMT + - Wed, 12 Feb 2025 14:52:38 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6222,7 +6205,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -6247,49 +6230,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances?page=1 + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 method: GET response: - body: '{"data": [{"allow_list": ["192.0.1.0/24", "203.0.113.1/32"], "cluster_size": + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": - {"primary": "a210765-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": - "replica-a210765-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 210765, - "label": "go-mysql-test-def547m5mw2qwc5", "members": {"172.104.206.251": "failover", - "172.104.206.64": "failover", "172.105.57.43": "primary"}, "oldest_restore_time": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {}, "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": - true, "status": "active", "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": - "2018-01-02T03:04:05", "updates": {"day_of_week": 6, "duration": 4, "frequency": - "weekly", "hour_of_day": 5, "pending": []}, "used_disk_size_gb": 0, "version": - "8.0.30", "platform": "rdbms-default"}, {"allow_list": [], "cluster_size": 1, - "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": - {"primary": "a210826-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 210826, - "label": "tf_test-2947682077824026612", "members": {}, "port": 18319, "region": - "fr-par", "ssl_connection": true, "status": "provisioning", "total_disk_size_gb": - 9, "type": "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": - 2, "duration": 4, "frequency": "weekly", "hour_of_day": 23, "pending": []}, - "used_disk_size_gb": null, "version": "8", "platform": "rdbms-default"}, {"allow_list": - ["10.0.0.3/32"], "cluster_size": 1, "created": "2018-01-02T03:04:05", "encrypted": - true, "engine": "mysql", "hosts": {"primary": "a210827-akamai-prod-5782758-default.g2a.akamaidb.net"}, - "id": 210827, "label": "tf_test-255170365349247847", "members": {}, "port": - 18319, "region": "fr-par", "ssl_connection": true, "status": "provisioning", - "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": "2018-01-02T03:04:05", - "updates": {"day_of_week": 4, "duration": 4, "frequency": "weekly", "hour_of_day": - 12, "pending": []}, "used_disk_size_gb": null, "version": "8", "platform": "rdbms-default"}, - {"allow_list": [], "cluster_size": 1, "created": "2018-01-02T03:04:05", "encrypted": - true, "engine": "mysql", "hosts": {"primary": "a210828-akamai-prod-5782758-default.g2a.akamaidb.net"}, - "id": 210828, "label": "tf_test-2611724571476327698", "members": {}, "port": - 18319, "region": "fr-par", "ssl_connection": true, "status": "provisioning", - "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": "2018-01-02T03:04:05", - "updates": {"day_of_week": 7, "duration": 4, "frequency": "weekly", "hour_of_day": - 15, "pending": []}, "used_disk_size_gb": null, "version": "8", "platform": "rdbms-default"}, - {"allow_list": ["10.0.0.3/32"], "cluster_size": 1, "created": "2018-01-02T03:04:05", - "encrypted": true, "engine": "mysql", "hosts": {"primary": "a210829-akamai-prod-5782758-default.g2a.akamaidb.net"}, - "id": 210829, "label": "tf_test-6180143901014791701", "members": {}, "port": - 18319, "region": "fr-par", "ssl_connection": true, "status": "provisioning", - "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": "2018-01-02T03:04:05", - "updates": {"day_of_week": 4, "duration": 4, "frequency": "weekly", "hour_of_day": - 21, "pending": []}, "used_disk_size_gb": null, "version": "8", "platform": "rdbms-default"}], - "page": 1, "pages": 1, "results": 5}' + true, "status": "resuming", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6307,12 +6260,14 @@ interactions: - max-age=0, no-cache, no-store Connection: - keep-alive + Content-Length: + - "767" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:42:08 GMT + - Wed, 12 Feb 2025 14:52:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6320,7 +6275,6 @@ interactions: Vary: - Authorization, X-Filter - Authorization, X-Filter - - Accept-Encoding X-Accepted-Oauth-Scopes: - databases:read_only X-Content-Type-Options: @@ -6347,19 +6301,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/210765 + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 method: GET response: - body: '{"allow_list": ["192.0.1.0/24", "203.0.113.1/32"], "cluster_size": 3, "created": - "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": {"primary": - "a210765-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": "replica-a210765-akamai-prod-5782758-default.g2a.akamaidb.net"}, - "id": 210765, "label": "go-mysql-test-def547m5mw2qwc5", "members": {"172.104.206.251": - "failover", "172.104.206.64": "failover", "172.105.57.43": "primary"}, "oldest_restore_time": + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {}, "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": - true, "status": "active", "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": - "2018-01-02T03:04:05", "updates": {"day_of_week": 6, "duration": 4, "frequency": - "weekly", "hour_of_day": 5, "pending": []}, "used_disk_size_gb": 0, "version": - "8.0.30", "platform": "rdbms-default"}' + true, "status": "resuming", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6378,13 +6332,13 @@ interactions: Connection: - keep-alive Content-Length: - - "836" + - "767" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:42:09 GMT + - Wed, 12 Feb 2025 14:53:08 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6409,7 +6363,7 @@ interactions: code: 200 duration: "" - request: - body: '{"label":"go-mysql-test-def547m5mw2qwc5-updated","allow_list":["128.173.205.21","123.177.200.20"],"updates":{"day_of_week":3,"duration":4,"frequency":"weekly","hour_of_day":8}}' + body: "" form: {} headers: Accept: @@ -6418,20 +6372,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/210765 - method: PUT + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 + method: GET response: body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": - {"primary": "a210765-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": - "replica-a210765-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 210765, - "label": "go-mysql-test-def547m5mw2qwc5-updated", "members": {"172.104.206.251": - "failover", "172.104.206.64": "failover", "172.105.57.43": "primary"}, "oldest_restore_time": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {}, "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": - true, "status": "active", "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": - "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": 4, "frequency": - "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": 0, "version": - "8.0.30", "platform": "rdbms-default"}' + true, "status": "resuming", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6450,21 +6403,22 @@ interactions: Connection: - keep-alive Content-Length: - - "852" + - "767" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:42:12 GMT + - Wed, 12 Feb 2025 14:53:24 GMT Pragma: - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter + - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_write + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -6489,17 +6443,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":210765,"entity.type":"database"}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 method: GET response: - body: '{"data": [{"id": 934270545, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": 100, "time_remaining": null, "rate": null, - "duration": 0, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-def547m5mw2qwc5", "id": 210765, "type": "database", - "url": "/v4/databases/mysql/instances/210765"}, "status": "finished", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "resuming", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6518,13 +6474,13 @@ interactions: Connection: - keep-alive Content-Length: - - "461" + - "767" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:42:27 GMT + - Wed, 12 Feb 2025 14:53:38 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6533,7 +6489,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -6558,20 +6514,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/210765 + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 method: GET response: body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": - {"primary": "a210765-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": - "replica-a210765-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 210765, - "label": "go-mysql-test-def547m5mw2qwc5", "members": {"172.104.206.251": "failover", - "172.104.206.64": "failover", "172.105.57.43": "primary"}, "oldest_restore_time": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {}, "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": - true, "status": "active", "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": - "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": 4, "frequency": - "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": 0, "version": - "8.0.30", "platform": "rdbms-default"}' + true, "status": "resuming", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6590,13 +6545,13 @@ interactions: Connection: - keep-alive Content-Length: - - "844" + - "767" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:42:43 GMT + - Wed, 12 Feb 2025 14:53:54 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6630,10 +6585,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/210765/ssl + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 method: GET response: - body: '{"ca_certificate": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUVRVENDQXFtZ0F3SUJBZ0lVSGw2WFlseHA0MTFpVUMwU294VkYzUmpkUXpBd0RRWUpLb1pJaHZjTkFRRU0KQlFBd09qRTRNRFlHQTFVRUF3d3ZZakF3TkRoaU4yRXRPR0ZrWVMwMFpUWXlMV0UyTXprdFpEazROakU1WXpJeApaR1ZsSUZCeWIycGxZM1FnUTBFd0hoY05NalF4TVRBMk1Ua3hOVFV5V2hjTk16UXhNVEEwTVRreE5UVXlXakE2Ck1UZ3dOZ1lEVlFRRERDOWlNREEwT0dJM1lTMDRZV1JoTFRSbE5qSXRZVFl6T1Mxa09UZzJNVGxqTWpGa1pXVWcKVUhKdmFtVmpkQ0JEUVRDQ0FhSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnR1BBRENDQVlvQ2dnR0JBTXUrMXNuVQpYdXplSUI3U05ReUE5K0JFdkFJYzNKeThRVm1aTmRYWFdVRzUvZlZ3SXZsdVNwaW40SVZuSFpGclJadjNXdmM5CllQbTRQdmxBZEZFcy9qek4wZ3RhNnlVeEJES09YRHBJVksxZU0xbHIrUWNvczQ1blk2cWVXa2xBOThGbFFPQkYKWkk1elkvVU1vLzk3WElINmVQVllzeWQ2dHM0MEp0SjBDYUcyVXBBSUJuOU5QYnRJTFk1a1ZkRGlVdHFSbm55MQpHdmY3N2M3ZkxVYVRkWi9TRUwveGl0S1B5M24zZGFaOG5qUmMzNXlLbWthOElxZXlIS3NqNVc4azMvem1UVlB0Clkvc3ZPcGVCOU5FeHMvenlZZzJFOHp3bGtzUDZwTE85N0hnWXdLNFJPcmZHMUJYLzVFZUhkL29xbHB2dnBLdzUKRklMUVpWRk9jVGFyTm5XdERwa2VKRW5zWmpFd0Y2MTJzNjZHei9GYzF4N1RSdkhEMmQ0MXE0M1pvOXN6bHpETwprWkxrOXZSNUxlZmFSaW9uUnJlYktSR1NzK0tuQlN0aTA0UlpsSGt0ZzZ0dmN1MHdIT05OdG1RODVRTUcvMTJKClJEcXZsMG1IQTR3cXNDUi9RK3Zkc3k3MkprWEFIakFpd0o1bzBwdVNEYTBzUVZzSHdlaGlXakkrelFJREFRQUIKb3o4d1BUQWRCZ05WSFE0RUZnUVVXVDg4RVhSaWRSSmFtOUtkK3RtU3BwTjI0aVF3RHdZRFZSMFRCQWd3QmdFQgovd0lCQURBTEJnTlZIUThFQkFNQ0FRWXdEUVlKS29aSWh2Y05BUUVNQlFBRGdnR0JBSjVKZWRRczJPUG9kd0pZClVzdDdhVWZUNFp1TWhEaWJEditBckdBblAzL3Rsa3JJeEMzMjhoai9ET1gvM3NSUm9xRDVEZm1IMUtBMGkxZEsKcU9QN0pIaUI4dkYrT2Q1MjgvMzFTeFg0cmlpRll5MlozQStHQ2xMRFYyTks3QXBjZXZSL09MUmdSKys5ZElmMQppVHRIczNpd2FNYUtBQ1JaaDFVcTMzU0hURE5URkhVVVJVbGUrM0YvS1J0YllCS1VHa3Vob3lzbE14TXM1aHFiCk5sdlZBdU8yY21ucHl0WWIrcmhseE5BWjZYMjdlODNnd21idUROcjdXaGJRd0xkN1U3Wnh3VlZWYitHTkxlYUkKQU5oMURsOXZLWnRRTFdjNExVZnQxZWZCbzR1MnlwSjRRckd6aHI4alVrQUhRWE4vSzgzaDVqQ2hXRzZjeUozQwpIRm9rZkdhdnF3MkdVS1AyRVc0SkJVQ0VaMTRYUEpjYW9HeTNEQmd3WDUxZ1VTMUsySlR2a0NrMXl0ckh4NzZqCkloMFVJZnFvTS9rNEw1K0Z2YmxsS1ZYaHhoSllBSVg2TndVRzlZRklhR1BUdVZUREFFQlV6L3lWd2VnUmNZcGcKWm0zMDJTbGMrWDlmamwrR2VQN3JWbWtBTmwyOHRYL1VVZG1SeTFlS1BxeDlQZGVEQ2c9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg=="}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "resuming", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6651,12 +6615,14 @@ interactions: - max-age=0, no-cache, no-store Connection: - keep-alive + Content-Length: + - "767" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:42:44 GMT + - Wed, 12 Feb 2025 14:54:09 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6664,7 +6630,6 @@ interactions: Vary: - Authorization, X-Filter - Authorization, X-Filter - - Accept-Encoding X-Accepted-Oauth-Scopes: - databases:read_only X-Content-Type-Options: @@ -6691,10 +6656,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/210765/credentials + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 method: GET response: - body: '{"password": "@S3cur3P@ssw0rd", "username": "aCoolUsername"}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "resuming", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6713,13 +6687,13 @@ interactions: Connection: - keep-alive Content-Length: - - "64" + - "767" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:42:45 GMT + - Wed, 12 Feb 2025 14:54:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6753,10 +6727,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/210765/credentials/reset - method: POST + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 + method: GET response: - body: '{}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "resuming", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6775,21 +6758,22 @@ interactions: Connection: - keep-alive Content-Length: - - "2" + - "767" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:47:48 GMT + - Wed, 12 Feb 2025 14:54:38 GMT Pragma: - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter + - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_write + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -6814,10 +6798,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/210765/credentials + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 method: GET response: - body: '{"password": "@NewS3cur3P@ssw0rd", "username": "aCoolUsername"}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "resuming", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6836,13 +6829,13 @@ interactions: Connection: - keep-alive Content-Length: - - "64" + - "767" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:48:04 GMT + - Wed, 12 Feb 2025 14:54:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6876,10 +6869,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/210765/patch - method: POST + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 + method: GET response: - body: '{}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "resuming", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6898,21 +6900,22 @@ interactions: Connection: - keep-alive Content-Length: - - "2" + - "767" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:48:08 GMT + - Wed, 12 Feb 2025 14:55:08 GMT Pragma: - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter + - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_write + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -6937,20 +6940,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/210765 + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 method: GET response: body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": - {"primary": "a210765-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": - "replica-a210765-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 210765, - "label": "go-mysql-test-def547m5mw2qwc5", "members": {"172.104.206.251": "failover", - "172.104.206.64": "failover", "172.105.57.43": "primary"}, "oldest_restore_time": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {}, "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": - true, "status": "updating", "total_disk_size_gb": 9, "type": "g6-nanode-1", + true, "status": "resuming", "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": - 0, "version": "8.0.30", "platform": "rdbms-default"}' + 0, "version": "8.0.35", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6969,13 +6971,13 @@ interactions: Connection: - keep-alive Content-Length: - - "846" + - "767" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:48:25 GMT + - Wed, 12 Feb 2025 14:55:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7009,20 +7011,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/210765 + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 method: GET response: body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": - {"primary": "a210765-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": - "replica-a210765-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 210765, - "label": "go-mysql-test-def547m5mw2qwc5", "members": {"172.104.206.251": "failover", - "172.104.206.64": "failover", "172.105.57.43": "primary"}, "oldest_restore_time": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {}, "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": - true, "status": "updating", "total_disk_size_gb": 9, "type": "g6-nanode-1", + true, "status": "resuming", "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": - 0, "version": "8.0.30", "platform": "rdbms-default"}' + 0, "version": "8.0.35", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -7041,13 +7042,13 @@ interactions: Connection: - keep-alive Content-Length: - - "846" + - "767" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:48:41 GMT + - Wed, 12 Feb 2025 14:55:39 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7081,20 +7082,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/210765 + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 method: GET response: body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": - {"primary": "a210765-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": - "replica-a210765-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 210765, - "label": "go-mysql-test-def547m5mw2qwc5", "members": {"172.104.206.251": "failover", - "172.104.206.64": "failover", "172.105.57.43": "primary"}, "oldest_restore_time": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {}, "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": - true, "status": "updating", "total_disk_size_gb": 9, "type": "g6-nanode-1", + true, "status": "resuming", "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": - 0, "version": "8.0.30", "platform": "rdbms-default"}' + 0, "version": "8.0.35", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -7113,13 +7113,13 @@ interactions: Connection: - keep-alive Content-Length: - - "846" + - "767" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:48:56 GMT + - Wed, 12 Feb 2025 14:55:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7153,20 +7153,942 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/210765 + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 method: GET response: body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": - {"primary": "a210765-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": - "replica-a210765-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 210765, - "label": "go-mysql-test-def547m5mw2qwc5", "members": {"172.104.206.251": "failover", - "172.104.206.64": "failover", "172.105.57.43": "primary"}, "oldest_restore_time": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {}, "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": - true, "status": "active", "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": - "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": 4, "frequency": - "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": 0, "version": - "8.0.30", "platform": "rdbms-default"}' + true, "status": "resuming", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "767" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 14:56:08 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 + method: GET + response: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "resuming", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "767" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 14:56:23 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 + method: GET + response: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "resuming", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "767" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 14:56:38 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 + method: GET + response: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "resuming", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "767" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 14:56:53 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 + method: GET + response: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "resuming", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "767" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 14:57:08 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 + method: GET + response: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "resuming", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "767" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 14:57:23 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 + method: GET + response: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "resuming", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "767" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 14:57:38 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 + method: GET + response: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "resuming", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "767" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 14:57:53 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 + method: GET + response: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "resuming", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "767" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 14:58:08 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 + method: GET + response: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "resuming", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "767" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 14:58:24 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 + method: GET + response: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "resuming", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "767" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 14:58:39 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 + method: GET + response: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {"172.104.207.251": + "failover"}, "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": + "ap-west", "ssl_connection": true, "status": "resuming", "total_disk_size_gb": + 9, "type": "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "796" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 14:58:54 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 + method: GET + response: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {"172.104.207.251": + "failover"}, "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": + "ap-west", "ssl_connection": true, "status": "resuming", "total_disk_size_gb": + 9, "type": "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "796" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 14:59:08 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 + method: GET + response: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "mysql", "hosts": + {"primary": "a227288-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a227288-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 227288, + "label": "go-mysql-test-def7yr571p0nnx2-updated", "members": {"172.104.207.251": + "failover"}, "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": + "ap-west", "ssl_connection": true, "status": "active", "total_disk_size_gb": + 9, "type": "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "8.0.35", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -7185,13 +8107,13 @@ interactions: Connection: - keep-alive Content-Length: - - "844" + - "794" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:49:11 GMT + - Wed, 12 Feb 2025 14:59:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7225,7 +8147,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/210765 + url: https://api.linode.com/v4beta/databases/mysql/instances/227288 method: DELETE response: body: '{}' @@ -7253,7 +8175,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:49:28 GMT + - Wed, 12 Feb 2025 14:59:40 GMT Pragma: - no-cache Strict-Transport-Security: diff --git a/test/integration/fixtures/TestDatabase_Postgres_Suite.yaml b/test/integration/fixtures/TestDatabase_Postgres_Suite.yaml index ba470be84..82b8f19cc 100644 --- a/test/integration/fixtures/TestDatabase_Postgres_Suite.yaml +++ b/test/integration/fixtures/TestDatabase_Postgres_Suite.yaml @@ -221,25 +221,23 @@ interactions: "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement - Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5, - 96.126.106.5, 50.116.53.5, 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5, - 97.107.133.4, 207.192.69.4, 207.192.69.5", "ipv6": "1234::5678, 1234::5678, - 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, - 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west", - "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Disk Encryption", - "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", - "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"], - "status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5, - 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20, - 109.74.194.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, - 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, + Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5,96.126.106.5,50.116.53.5,50.116.58.5,50.116.61.5,50.116.62.5,66.175.211.5,97.107.133.4,173.255.225.5,66.228.35.5", + "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": - 5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country": - "sg", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"], - "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20", + 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country": + "gb", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", + "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", + "Metadata", "Placement Group", "StackScripts"], "status": "ok", "resolvers": + {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5, 176.58.121.5, 151.236.220.5, + 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20, 109.74.194.20", "ipv6": + "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, + 1234::5678, 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ap-south", "label": "Singapore, SG", "country": "sg", "capabilities": + ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Metadata", "Placement Group", "StackScripts"], "status": + "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20", "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": @@ -279,7 +277,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:49:29 GMT + - Wed, 12 Feb 2025 15:18:29 GMT Pragma: - no-cache Strict-Transport-Security: @@ -305,7 +303,7 @@ interactions: code: 200 duration: "" - request: - body: '{"label":"go-postgres-testing-defg02323nvin1r","region":"ap-west","type":"g6-nanode-1","engine":"postgresql/14","allow_list":["203.0.113.1","192.0.1.0/24"],"cluster_size":3}' + body: '{"label":"go-postgres-testing-deft7gm2j8p240c","region":"ap-west","type":"g6-nanode-1","engine":"postgresql/14","allow_list":["203.0.113.1","192.0.1.0/24"],"cluster_size":3}' form: {} headers: Accept: @@ -319,13 +317,12 @@ interactions: response: body: '{"allow_list": ["192.0.1.0/24", "203.0.113.1/32"], "cluster_size": 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", "hosts": {"primary": - "a210830-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": "replica-a210830-akamai-prod-5782758-default.g2a.akamaidb.net"}, - "id": 210830, "label": "go-postgres-testing-defg02323nvin1r", "members": {}, + "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, "port": 18319, "region": "ap-west", "ssl_connection": true, "status": "provisioning", "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": 4, "frequency": "weekly", "hour_of_day": - 18, "pending": []}, "used_disk_size_gb": null, "version": "14", "platform": - "rdbms-default"}' + 9, "pending": []}, "used_disk_size_gb": null, "version": "14", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -344,13 +341,13 @@ interactions: Connection: - keep-alive Content-Length: - - "720" + - "719" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:49:31 GMT + - Wed, 12 Feb 2025 15:18:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -384,15 +381,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database"}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -419,7 +416,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:49:46 GMT + - Wed, 12 Feb 2025 15:18:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -454,15 +451,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -489,7 +486,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:50:01 GMT + - Wed, 12 Feb 2025 15:19:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -524,15 +521,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -559,7 +556,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:50:16 GMT + - Wed, 12 Feb 2025 15:19:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -594,15 +591,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -629,7 +626,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:50:31 GMT + - Wed, 12 Feb 2025 15:19:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -664,15 +661,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -699,7 +696,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:50:46 GMT + - Wed, 12 Feb 2025 15:19:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -734,15 +731,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -769,7 +766,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:51:01 GMT + - Wed, 12 Feb 2025 15:20:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -804,15 +801,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -839,7 +836,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:51:16 GMT + - Wed, 12 Feb 2025 15:20:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -874,15 +871,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -909,7 +906,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:51:31 GMT + - Wed, 12 Feb 2025 15:20:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -944,15 +941,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -979,7 +976,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:51:46 GMT + - Wed, 12 Feb 2025 15:20:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1014,15 +1011,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1049,7 +1046,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:52:01 GMT + - Wed, 12 Feb 2025 15:21:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1084,15 +1081,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1119,7 +1116,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:52:16 GMT + - Wed, 12 Feb 2025 15:21:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1154,15 +1151,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1189,7 +1186,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:52:31 GMT + - Wed, 12 Feb 2025 15:21:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1224,15 +1221,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1259,7 +1256,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:52:46 GMT + - Wed, 12 Feb 2025 15:21:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1294,15 +1291,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1329,7 +1326,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:53:01 GMT + - Wed, 12 Feb 2025 15:22:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1364,15 +1361,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1399,7 +1396,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:53:16 GMT + - Wed, 12 Feb 2025 15:22:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1434,15 +1431,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1469,7 +1466,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:53:31 GMT + - Wed, 12 Feb 2025 15:22:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1504,15 +1501,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1539,7 +1536,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:53:46 GMT + - Wed, 12 Feb 2025 15:22:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1574,15 +1571,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1609,7 +1606,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:54:01 GMT + - Wed, 12 Feb 2025 15:23:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1644,15 +1641,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1679,7 +1676,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:54:16 GMT + - Wed, 12 Feb 2025 15:23:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1714,15 +1711,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1749,7 +1746,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:54:31 GMT + - Wed, 12 Feb 2025 15:23:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1784,15 +1781,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1819,7 +1816,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:54:46 GMT + - Wed, 12 Feb 2025 15:23:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1854,15 +1851,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1889,7 +1886,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:55:01 GMT + - Wed, 12 Feb 2025 15:24:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1924,15 +1921,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -1959,7 +1956,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:55:16 GMT + - Wed, 12 Feb 2025 15:24:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1994,15 +1991,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2029,7 +2026,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:55:31 GMT + - Wed, 12 Feb 2025 15:24:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2064,15 +2061,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2099,7 +2096,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:55:46 GMT + - Wed, 12 Feb 2025 15:24:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2134,15 +2131,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2169,7 +2166,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:56:02 GMT + - Wed, 12 Feb 2025 15:25:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2204,15 +2201,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2239,7 +2236,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:56:16 GMT + - Wed, 12 Feb 2025 15:25:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2274,15 +2271,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2309,7 +2306,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:56:31 GMT + - Wed, 12 Feb 2025 15:25:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2344,15 +2341,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2379,7 +2376,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:56:46 GMT + - Wed, 12 Feb 2025 15:25:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2414,15 +2411,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2449,7 +2446,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:57:01 GMT + - Wed, 12 Feb 2025 15:26:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2484,15 +2481,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2519,7 +2516,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:57:16 GMT + - Wed, 12 Feb 2025 15:26:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2554,15 +2551,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2589,7 +2586,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:57:31 GMT + - Wed, 12 Feb 2025 15:26:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2624,15 +2621,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2659,7 +2656,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:57:46 GMT + - Wed, 12 Feb 2025 15:26:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2694,15 +2691,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2729,7 +2726,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:58:01 GMT + - Wed, 12 Feb 2025 15:27:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2764,15 +2761,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2799,7 +2796,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:58:16 GMT + - Wed, 12 Feb 2025 15:27:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2834,15 +2831,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2869,7 +2866,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:58:31 GMT + - Wed, 12 Feb 2025 15:27:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2904,15 +2901,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -2939,7 +2936,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:58:46 GMT + - Wed, 12 Feb 2025 15:27:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2974,15 +2971,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3009,7 +3006,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:59:01 GMT + - Wed, 12 Feb 2025 15:28:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3044,15 +3041,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3079,7 +3076,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:59:16 GMT + - Wed, 12 Feb 2025 15:28:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3114,15 +3111,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3149,7 +3146,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:59:32 GMT + - Wed, 12 Feb 2025 15:28:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3184,15 +3181,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3219,7 +3216,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 15:59:46 GMT + - Wed, 12 Feb 2025 15:28:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3254,15 +3251,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3289,7 +3286,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:00:02 GMT + - Wed, 12 Feb 2025 15:29:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3324,15 +3321,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3359,7 +3356,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:00:16 GMT + - Wed, 12 Feb 2025 15:29:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3394,15 +3391,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3429,7 +3426,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:00:31 GMT + - Wed, 12 Feb 2025 15:29:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3464,15 +3461,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3499,7 +3496,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:00:46 GMT + - Wed, 12 Feb 2025 15:29:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3534,15 +3531,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3569,7 +3566,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:01:01 GMT + - Wed, 12 Feb 2025 15:30:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3604,15 +3601,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3639,7 +3636,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:01:16 GMT + - Wed, 12 Feb 2025 15:30:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3674,15 +3671,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3709,7 +3706,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:01:31 GMT + - Wed, 12 Feb 2025 15:30:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3744,15 +3741,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3779,7 +3776,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:01:46 GMT + - Wed, 12 Feb 2025 15:30:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3814,15 +3811,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3849,7 +3846,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:02:01 GMT + - Wed, 12 Feb 2025 15:31:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3884,15 +3881,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3919,7 +3916,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:02:16 GMT + - Wed, 12 Feb 2025 15:31:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3954,15 +3951,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -3989,7 +3986,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:02:31 GMT + - Wed, 12 Feb 2025 15:31:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4024,15 +4021,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4059,7 +4056,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:02:46 GMT + - Wed, 12 Feb 2025 15:31:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4094,15 +4091,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4129,7 +4126,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:03:01 GMT + - Wed, 12 Feb 2025 15:32:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4164,15 +4161,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4199,7 +4196,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:03:16 GMT + - Wed, 12 Feb 2025 15:32:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4234,15 +4231,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4269,7 +4266,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:03:31 GMT + - Wed, 12 Feb 2025 15:32:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4304,15 +4301,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4339,7 +4336,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:03:46 GMT + - Wed, 12 Feb 2025 15:32:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4374,15 +4371,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4409,7 +4406,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:04:01 GMT + - Wed, 12 Feb 2025 15:33:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4444,15 +4441,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4479,7 +4476,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:04:16 GMT + - Wed, 12 Feb 2025 15:33:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4514,15 +4511,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4549,7 +4546,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:04:31 GMT + - Wed, 12 Feb 2025 15:33:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4584,15 +4581,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4619,7 +4616,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:04:46 GMT + - Wed, 12 Feb 2025 15:33:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4654,15 +4651,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: @@ -4689,7 +4686,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:05:01 GMT + - Wed, 12 Feb 2025 15:34:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4724,17 +4721,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-02-12T15:18:29"},"entity.id":227300,"entity.type":"database","id":{"+gte":952748475}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + body: '{"data": [{"id": 952748475, "created": "2018-01-02T03:04:05", "seen": false, + "read": false, "percent_complete": 100, "time_remaining": null, "rate": null, + "duration": 657, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "finished", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4753,13 +4749,13 @@ interactions: Connection: - keep-alive Content-Length: - - "480" + - "474" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:05:16 GMT + - Wed, 12 Feb 2025 15:34:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4793,18 +4789,20 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/postgresql/instances?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + body: '{"data": [{"allow_list": ["192.0.1.0/24", "203.0.113.1/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {"172.105.40.35": + "primary", "172.105.62.68": "failover", "172.105.62.9": "failover"}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "active", "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": + "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": 4, "frequency": + "weekly", "hour_of_day": 9, "pending": []}, "used_disk_size_gb": 0, "version": + "14.15", "platform": "rdbms-default"}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4822,14 +4820,12 @@ interactions: - max-age=0, no-cache, no-store Connection: - keep-alive - Content-Length: - - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:05:31 GMT + - Wed, 12 Feb 2025 15:34:18 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4837,8 +4833,9 @@ interactions: Vary: - Authorization, X-Filter - Authorization, X-Filter + - Accept-Encoding X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -4863,18 +4860,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + body: '{"allow_list": ["192.0.1.0/24", "203.0.113.1/32"], "cluster_size": 3, "created": + "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", "hosts": {"primary": + "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {"172.105.40.35": + "primary", "172.105.62.68": "failover", "172.105.62.9": "failover"}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "active", "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": + "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": 4, "frequency": + "weekly", "hour_of_day": 9, "pending": []}, "used_disk_size_gb": 0, "version": + "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -4893,13 +4891,13 @@ interactions: Connection: - keep-alive Content-Length: - - "480" + - "842" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:05:46 GMT + - Wed, 12 Feb 2025 15:34:20 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4908,7 +4906,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -4924,7 +4922,7 @@ interactions: code: 200 duration: "" - request: - body: "" + body: '{"label":"go-postgres-testing-deft7gm2j8p240c-updated","allow_list":["128.173.205.21","123.177.200.20"],"updates":{"day_of_week":3,"duration":4,"frequency":"weekly","hour_of_day":8}}' form: {} headers: Accept: @@ -4933,18 +4931,20 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 + method: PUT response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c-updated", "members": + {"172.105.40.35": "primary", "172.105.62.68": "failover", "172.105.62.9": "failover"}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "active", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -4963,22 +4963,21 @@ interactions: Connection: - keep-alive Content-Length: - - "480" + - "858" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:06:01 GMT + - Wed, 12 Feb 2025 15:34:23 GMT Pragma: - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter - - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5004,17 +5003,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":227300,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + body: '{"data": [{"id": 952761882, "created": "2018-01-02T03:04:05", "seen": false, + "read": false, "percent_complete": 100, "time_remaining": null, "rate": null, + "duration": 0, "action": "database_update", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-deft7gm2j8p240c", "id": 227300, "type": "database", + "url": "/v4/databases/postgresql/instances/227300"}, "status": "finished", "secondary_entity": + null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -5033,13 +5031,13 @@ interactions: Connection: - keep-alive Content-Length: - - "480" + - "472" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:06:16 GMT + - Wed, 12 Feb 2025 15:34:38 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5073,18 +5071,20 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {"172.105.40.35": + "primary", "172.105.62.68": "failover", "172.105.62.9": "failover"}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "active", "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": + "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": 4, "frequency": + "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": 0, "version": + "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -5103,13 +5103,13 @@ interactions: Connection: - keep-alive Content-Length: - - "480" + - "850" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:06:31 GMT + - Wed, 12 Feb 2025 15:34:55 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5118,7 +5118,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5143,18 +5143,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300/ssl method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + body: '{"ca_certificate": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUVRVENDQXFtZ0F3SUJBZ0lVSGw2WFlseHA0MTFpVUMwU294VkYzUmpkUXpBd0RRWUpLb1pJaHZjTkFRRU0KQlFBd09qRTRNRFlHQTFVRUF3d3ZZakF3TkRoaU4yRXRPR0ZrWVMwMFpUWXlMV0UyTXprdFpEazROakU1WXpJeApaR1ZsSUZCeWIycGxZM1FnUTBFd0hoY05NalF4TVRBMk1Ua3hOVFV5V2hjTk16UXhNVEEwTVRreE5UVXlXakE2Ck1UZ3dOZ1lEVlFRRERDOWlNREEwT0dJM1lTMDRZV1JoTFRSbE5qSXRZVFl6T1Mxa09UZzJNVGxqTWpGa1pXVWcKVUhKdmFtVmpkQ0JEUVRDQ0FhSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnR1BBRENDQVlvQ2dnR0JBTXUrMXNuVQpYdXplSUI3U05ReUE5K0JFdkFJYzNKeThRVm1aTmRYWFdVRzUvZlZ3SXZsdVNwaW40SVZuSFpGclJadjNXdmM5CllQbTRQdmxBZEZFcy9qek4wZ3RhNnlVeEJES09YRHBJVksxZU0xbHIrUWNvczQ1blk2cWVXa2xBOThGbFFPQkYKWkk1elkvVU1vLzk3WElINmVQVllzeWQ2dHM0MEp0SjBDYUcyVXBBSUJuOU5QYnRJTFk1a1ZkRGlVdHFSbm55MQpHdmY3N2M3ZkxVYVRkWi9TRUwveGl0S1B5M24zZGFaOG5qUmMzNXlLbWthOElxZXlIS3NqNVc4azMvem1UVlB0Clkvc3ZPcGVCOU5FeHMvenlZZzJFOHp3bGtzUDZwTE85N0hnWXdLNFJPcmZHMUJYLzVFZUhkL29xbHB2dnBLdzUKRklMUVpWRk9jVGFyTm5XdERwa2VKRW5zWmpFd0Y2MTJzNjZHei9GYzF4N1RSdkhEMmQ0MXE0M1pvOXN6bHpETwprWkxrOXZSNUxlZmFSaW9uUnJlYktSR1NzK0tuQlN0aTA0UlpsSGt0ZzZ0dmN1MHdIT05OdG1RODVRTUcvMTJKClJEcXZsMG1IQTR3cXNDUi9RK3Zkc3k3MkprWEFIakFpd0o1bzBwdVNEYTBzUVZzSHdlaGlXakkrelFJREFRQUIKb3o4d1BUQWRCZ05WSFE0RUZnUVVXVDg4RVhSaWRSSmFtOUtkK3RtU3BwTjI0aVF3RHdZRFZSMFRCQWd3QmdFQgovd0lCQURBTEJnTlZIUThFQkFNQ0FRWXdEUVlKS29aSWh2Y05BUUVNQlFBRGdnR0JBSjVKZWRRczJPUG9kd0pZClVzdDdhVWZUNFp1TWhEaWJEditBckdBblAzL3Rsa3JJeEMzMjhoai9ET1gvM3NSUm9xRDVEZm1IMUtBMGkxZEsKcU9QN0pIaUI4dkYrT2Q1MjgvMzFTeFg0cmlpRll5MlozQStHQ2xMRFYyTks3QXBjZXZSL09MUmdSKys5ZElmMQppVHRIczNpd2FNYUtBQ1JaaDFVcTMzU0hURE5URkhVVVJVbGUrM0YvS1J0YllCS1VHa3Vob3lzbE14TXM1aHFiCk5sdlZBdU8yY21ucHl0WWIrcmhseE5BWjZYMjdlODNnd21idUROcjdXaGJRd0xkN1U3Wnh3VlZWYitHTkxlYUkKQU5oMURsOXZLWnRRTFdjNExVZnQxZWZCbzR1MnlwSjRRckd6aHI4alVrQUhRWE4vSzgzaDVqQ2hXRzZjeUozQwpIRm9rZkdhdnF3MkdVS1AyRVc0SkJVQ0VaMTRYUEpjYW9HeTNEQmd3WDUxZ1VTMUsySlR2a0NrMXl0ckh4NzZqCkloMFVJZnFvTS9rNEw1K0Z2YmxsS1ZYaHhoSllBSVg2TndVRzlZRklhR1BUdVZUREFFQlV6L3lWd2VnUmNZcGcKWm0zMDJTbGMrWDlmamwrR2VQN3JWbWtBTmwyOHRYL1VVZG1SeTFlS1BxeDlQZGVEQ2c9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg=="}' headers: Access-Control-Allow-Credentials: - "true" @@ -5172,14 +5164,12 @@ interactions: - max-age=0, no-cache, no-store Connection: - keep-alive - Content-Length: - - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:06:46 GMT + - Wed, 12 Feb 2025 15:34:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5187,8 +5177,9 @@ interactions: Vary: - Authorization, X-Filter - Authorization, X-Filter + - Accept-Encoding X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5213,18 +5204,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300/credentials method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + body: '{"password": "@S3cur3P@55w0rd", "username": "aCoolUsername"}' headers: Access-Control-Allow-Credentials: - "true" @@ -5243,13 +5226,13 @@ interactions: Connection: - keep-alive Content-Length: - - "480" + - "64" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:07:01 GMT + - Wed, 12 Feb 2025 15:34:57 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5258,7 +5241,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5283,18 +5266,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300/credentials/reset + method: POST response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + body: '{}' headers: Access-Control-Allow-Credentials: - "true" @@ -5313,22 +5288,21 @@ interactions: Connection: - keep-alive Content-Length: - - "480" + - "2" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:07:16 GMT + - Wed, 12 Feb 2025 15:39:59 GMT Pragma: - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter - - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5353,18 +5327,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300/credentials method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + body: '{"password": "@V3ryS3cur3P@55w0rd", "username": "aCoolUsername"}' headers: Access-Control-Allow-Credentials: - "true" @@ -5383,13 +5349,13 @@ interactions: Connection: - keep-alive Content-Length: - - "480" + - "64" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:07:31 GMT + - Wed, 12 Feb 2025 15:40:15 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5398,7 +5364,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5423,18 +5389,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300/patch + method: POST response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + body: '{}' headers: Access-Control-Allow-Credentials: - "true" @@ -5453,22 +5411,21 @@ interactions: Connection: - keep-alive Content-Length: - - "480" + - "2" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:07:46 GMT + - Wed, 12 Feb 2025 15:45:17 GMT Pragma: - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter - - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5493,18 +5450,20 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {"172.105.40.35": + "primary", "172.105.62.68": "failover", "172.105.62.9": "failover"}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "updating", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -5523,13 +5482,13 @@ interactions: Connection: - keep-alive Content-Length: - - "480" + - "852" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:08:01 GMT + - Wed, 12 Feb 2025 15:45:33 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5538,7 +5497,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5563,18 +5522,20 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {"172.105.40.35": + "primary", "172.105.62.68": "failover", "172.105.62.9": "failover"}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "updating", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -5593,13 +5554,13 @@ interactions: Connection: - keep-alive Content-Length: - - "480" + - "852" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:08:16 GMT + - Wed, 12 Feb 2025 15:45:50 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5608,7 +5569,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5633,18 +5594,20 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {"172.105.40.35": + "primary", "172.105.62.68": "failover", "172.105.62.9": "failover"}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "updating", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -5663,13 +5626,13 @@ interactions: Connection: - keep-alive Content-Length: - - "480" + - "852" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:08:31 GMT + - Wed, 12 Feb 2025 15:46:05 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5678,7 +5641,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5703,18 +5666,20 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {"172.105.40.35": + "primary", "172.105.62.68": "failover", "172.105.62.9": "failover"}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "updating", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -5733,13 +5698,13 @@ interactions: Connection: - keep-alive Content-Length: - - "480" + - "852" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:08:46 GMT + - Wed, 12 Feb 2025 15:46:19 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5748,7 +5713,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5773,18 +5738,20 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {"172.105.40.35": + "primary", "172.105.62.68": "failover", "172.105.62.9": "failover"}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "active", "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": + "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": 4, "frequency": + "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": 0, "version": + "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -5803,13 +5770,13 @@ interactions: Connection: - keep-alive Content-Length: - - "480" + - "850" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:09:01 GMT + - Wed, 12 Feb 2025 15:46:35 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5818,7 +5785,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5834,7 +5801,7 @@ interactions: code: 200 duration: "" - request: - body: "" + body: '{}' form: {} headers: Accept: @@ -5843,18 +5810,10 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300/suspend + method: POST response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + body: '{}' headers: Access-Control-Allow-Credentials: - "true" @@ -5873,22 +5832,21 @@ interactions: Connection: - keep-alive Content-Length: - - "480" + - "2" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:09:16 GMT + - Wed, 12 Feb 2025 15:46:36 GMT Pragma: - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter - - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5913,18 +5871,866 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {"172.105.40.35": + "primary", "172.105.62.68": "failover", "172.105.62.9": "failover"}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "suspended", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "853" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 15:46:53 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: '{}' + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300/resume + method: POST + response: + body: '{}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "2" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 15:46:54 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_write + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 + method: GET + response: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {"172.105.40.35": + "primary", "172.105.62.68": "failover", "172.105.62.9": "failover"}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "suspended", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "853" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 15:47:11 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 + method: GET + response: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {"172.105.40.35": + "primary", "172.105.62.68": "failover", "172.105.62.9": "failover"}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "suspended", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "853" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 15:47:26 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 + method: GET + response: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {"172.105.40.35": + "primary", "172.105.62.68": "failover", "172.105.62.9": "failover"}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "suspended", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "853" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 15:47:41 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 + method: GET + response: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {"172.105.40.35": + "primary", "172.105.62.68": "failover", "172.105.62.9": "failover"}, "oldest_restore_time": + "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": + true, "status": "suspended", "total_disk_size_gb": 9, "type": "g6-nanode-1", + "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": + 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "853" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 15:47:56 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 + method: GET + response: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "769" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 15:48:11 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 + method: GET + response: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "769" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 15:48:25 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 + method: GET + response: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "769" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 15:48:41 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 + method: GET + response: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "769" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 15:48:55 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 + method: GET + response: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "769" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 15:49:10 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 + method: GET + response: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "769" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 15:49:26 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 + method: GET + response: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -5943,13 +6749,13 @@ interactions: Connection: - keep-alive Content-Length: - - "480" + - "769" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:09:31 GMT + - Wed, 12 Feb 2025 15:49:40 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5958,7 +6764,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -5983,18 +6789,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6013,13 +6820,13 @@ interactions: Connection: - keep-alive Content-Length: - - "480" + - "769" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:09:46 GMT + - Wed, 12 Feb 2025 15:49:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6028,7 +6835,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -6053,18 +6860,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6083,13 +6891,13 @@ interactions: Connection: - keep-alive Content-Length: - - "480" + - "769" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:10:01 GMT + - Wed, 12 Feb 2025 15:50:10 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6098,7 +6906,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -6123,18 +6931,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6153,13 +6962,13 @@ interactions: Connection: - keep-alive Content-Length: - - "480" + - "769" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:10:16 GMT + - Wed, 12 Feb 2025 15:50:25 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6168,7 +6977,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -6193,18 +7002,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6223,13 +7033,13 @@ interactions: Connection: - keep-alive Content-Length: - - "480" + - "769" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:10:31 GMT + - Wed, 12 Feb 2025 15:50:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6238,7 +7048,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -6263,17 +7073,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2025-01-22T15:49:28"},"entity.id":210830,"entity.type":"database","id":{"+gte":934275685}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: GET response: - body: '{"data": [{"id": 934275685, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": 100, "time_remaining": null, "rate": null, - "duration": 903, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "finished", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6292,13 +7104,13 @@ interactions: Connection: - keep-alive Content-Length: - - "474" + - "769" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:10:46 GMT + - Wed, 12 Feb 2025 15:50:55 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6307,7 +7119,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -6332,20 +7144,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances?page=1 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: GET response: - body: '{"data": [{"allow_list": ["192.0.1.0/24", "203.0.113.1/32"], "cluster_size": + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", - "hosts": {"primary": "a210830-akamai-prod-5782758-default.g2a.akamaidb.net", - "standby": "replica-a210830-akamai-prod-5782758-default.g2a.akamaidb.net"}, - "id": 210830, "label": "go-postgres-testing-defg02323nvin1r", "members": {"172.105.56.179": - "failover", "172.105.56.41": "failover", "45.79.125.252": "primary"}, "oldest_restore_time": - "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": - true, "status": "active", "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": - "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": 4, "frequency": - "weekly", "hour_of_day": 18, "pending": []}, "used_disk_size_gb": 0, "version": - "14.15", "platform": "rdbms-default"}], "page": 1, "pages": 1, "results": 1}' + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6363,12 +7174,14 @@ interactions: - max-age=0, no-cache, no-store Connection: - keep-alive + Content-Length: + - "769" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:10:48 GMT + - Wed, 12 Feb 2025 15:51:10 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6376,7 +7189,6 @@ interactions: Vary: - Authorization, X-Filter - Authorization, X-Filter - - Accept-Encoding X-Accepted-Oauth-Scopes: - databases:read_only X-Content-Type-Options: @@ -6403,19 +7215,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/210830 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: GET response: - body: '{"allow_list": ["192.0.1.0/24", "203.0.113.1/32"], "cluster_size": 3, "created": - "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", "hosts": {"primary": - "a210830-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": "replica-a210830-akamai-prod-5782758-default.g2a.akamaidb.net"}, - "id": 210830, "label": "go-postgres-testing-defg02323nvin1r", "members": {"172.105.56.179": - "failover", "172.105.56.41": "failover", "45.79.125.252": "primary"}, "oldest_restore_time": - "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": - true, "status": "active", "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": - "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": 4, "frequency": - "weekly", "hour_of_day": 18, "pending": []}, "used_disk_size_gb": 0, "version": - "14.15", "platform": "rdbms-default"}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6434,13 +7246,13 @@ interactions: Connection: - keep-alive Content-Length: - - "845" + - "769" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:10:49 GMT + - Wed, 12 Feb 2025 15:51:25 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6465,7 +7277,7 @@ interactions: code: 200 duration: "" - request: - body: '{"label":"go-postgres-testing-defg02323nvin1r-updated","allow_list":["128.173.205.21","123.177.200.20"],"updates":{"day_of_week":3,"duration":4,"frequency":"weekly","hour_of_day":8}}' + body: "" form: {} headers: Accept: @@ -6474,18 +7286,17 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/210830 - method: PUT + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 + method: GET response: body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", - "hosts": {"primary": "a210830-akamai-prod-5782758-default.g2a.akamaidb.net", - "standby": "replica-a210830-akamai-prod-5782758-default.g2a.akamaidb.net"}, - "id": 210830, "label": "go-postgres-testing-defg02323nvin1r-updated", "members": - {"172.105.56.179": "failover", "172.105.56.41": "failover", "45.79.125.252": - "primary"}, "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": - "ap-west", "ssl_connection": true, "status": "active", "total_disk_size_gb": - 9, "type": "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": 0, "version": "14.15", "platform": "rdbms-default"}' headers: @@ -6505,21 +7316,23 @@ interactions: - max-age=0, no-cache, no-store Connection: - keep-alive + Content-Length: + - "769" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:10:52 GMT + - Wed, 12 Feb 2025 15:51:40 GMT Pragma: - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter - - Accept-Encoding + - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_write + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -6544,17 +7357,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":210830,"entity.type":"database"}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: GET response: - body: '{"data": [{"id": 934289808, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": 100, "time_remaining": null, "rate": null, - "duration": 0, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-postgres-testing-defg02323nvin1r", "id": 210830, "type": "database", - "url": "/v4/databases/postgresql/instances/210830"}, "status": "finished", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6573,13 +7388,13 @@ interactions: Connection: - keep-alive Content-Length: - - "472" + - "769" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:11:07 GMT + - Wed, 12 Feb 2025 15:51:55 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6588,7 +7403,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -6613,20 +7428,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/210830 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: GET response: body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", - "hosts": {"primary": "a210830-akamai-prod-5782758-default.g2a.akamaidb.net", - "standby": "replica-a210830-akamai-prod-5782758-default.g2a.akamaidb.net"}, - "id": 210830, "label": "go-postgres-testing-defg02323nvin1r", "members": {"172.105.56.179": - "failover", "172.105.56.41": "failover", "45.79.125.252": "primary"}, "oldest_restore_time": - "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": - true, "status": "active", "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": - "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": 4, "frequency": - "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": 0, "version": - "14.15", "platform": "rdbms-default"}' + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6645,13 +7459,13 @@ interactions: Connection: - keep-alive Content-Length: - - "852" + - "769" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:11:23 GMT + - Wed, 12 Feb 2025 15:52:10 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6685,10 +7499,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/210830/ssl + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: GET response: - body: '{"ca_certificate": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUVRVENDQXFtZ0F3SUJBZ0lVSGw2WFlseHA0MTFpVUMwU294VkYzUmpkUXpBd0RRWUpLb1pJaHZjTkFRRU0KQlFBd09qRTRNRFlHQTFVRUF3d3ZZakF3TkRoaU4yRXRPR0ZrWVMwMFpUWXlMV0UyTXprdFpEazROakU1WXpJeApaR1ZsSUZCeWIycGxZM1FnUTBFd0hoY05NalF4TVRBMk1Ua3hOVFV5V2hjTk16UXhNVEEwTVRreE5UVXlXakE2Ck1UZ3dOZ1lEVlFRRERDOWlNREEwT0dJM1lTMDRZV1JoTFRSbE5qSXRZVFl6T1Mxa09UZzJNVGxqTWpGa1pXVWcKVUhKdmFtVmpkQ0JEUVRDQ0FhSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnR1BBRENDQVlvQ2dnR0JBTXUrMXNuVQpYdXplSUI3U05ReUE5K0JFdkFJYzNKeThRVm1aTmRYWFdVRzUvZlZ3SXZsdVNwaW40SVZuSFpGclJadjNXdmM5CllQbTRQdmxBZEZFcy9qek4wZ3RhNnlVeEJES09YRHBJVksxZU0xbHIrUWNvczQ1blk2cWVXa2xBOThGbFFPQkYKWkk1elkvVU1vLzk3WElINmVQVllzeWQ2dHM0MEp0SjBDYUcyVXBBSUJuOU5QYnRJTFk1a1ZkRGlVdHFSbm55MQpHdmY3N2M3ZkxVYVRkWi9TRUwveGl0S1B5M24zZGFaOG5qUmMzNXlLbWthOElxZXlIS3NqNVc4azMvem1UVlB0Clkvc3ZPcGVCOU5FeHMvenlZZzJFOHp3bGtzUDZwTE85N0hnWXdLNFJPcmZHMUJYLzVFZUhkL29xbHB2dnBLdzUKRklMUVpWRk9jVGFyTm5XdERwa2VKRW5zWmpFd0Y2MTJzNjZHei9GYzF4N1RSdkhEMmQ0MXE0M1pvOXN6bHpETwprWkxrOXZSNUxlZmFSaW9uUnJlYktSR1NzK0tuQlN0aTA0UlpsSGt0ZzZ0dmN1MHdIT05OdG1RODVRTUcvMTJKClJEcXZsMG1IQTR3cXNDUi9RK3Zkc3k3MkprWEFIakFpd0o1bzBwdVNEYTBzUVZzSHdlaGlXakkrelFJREFRQUIKb3o4d1BUQWRCZ05WSFE0RUZnUVVXVDg4RVhSaWRSSmFtOUtkK3RtU3BwTjI0aVF3RHdZRFZSMFRCQWd3QmdFQgovd0lCQURBTEJnTlZIUThFQkFNQ0FRWXdEUVlKS29aSWh2Y05BUUVNQlFBRGdnR0JBSjVKZWRRczJPUG9kd0pZClVzdDdhVWZUNFp1TWhEaWJEditBckdBblAzL3Rsa3JJeEMzMjhoai9ET1gvM3NSUm9xRDVEZm1IMUtBMGkxZEsKcU9QN0pIaUI4dkYrT2Q1MjgvMzFTeFg0cmlpRll5MlozQStHQ2xMRFYyTks3QXBjZXZSL09MUmdSKys5ZElmMQppVHRIczNpd2FNYUtBQ1JaaDFVcTMzU0hURE5URkhVVVJVbGUrM0YvS1J0YllCS1VHa3Vob3lzbE14TXM1aHFiCk5sdlZBdU8yY21ucHl0WWIrcmhseE5BWjZYMjdlODNnd21idUROcjdXaGJRd0xkN1U3Wnh3VlZWYitHTkxlYUkKQU5oMURsOXZLWnRRTFdjNExVZnQxZWZCbzR1MnlwSjRRckd6aHI4alVrQUhRWE4vSzgzaDVqQ2hXRzZjeUozQwpIRm9rZkdhdnF3MkdVS1AyRVc0SkJVQ0VaMTRYUEpjYW9HeTNEQmd3WDUxZ1VTMUsySlR2a0NrMXl0ckh4NzZqCkloMFVJZnFvTS9rNEw1K0Z2YmxsS1ZYaHhoSllBSVg2TndVRzlZRklhR1BUdVZUREFFQlV6L3lWd2VnUmNZcGcKWm0zMDJTbGMrWDlmamwrR2VQN3JWbWtBTmwyOHRYL1VVZG1SeTFlS1BxeDlQZGVEQ2c9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg=="}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6706,12 +7529,14 @@ interactions: - max-age=0, no-cache, no-store Connection: - keep-alive + Content-Length: + - "769" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:11:24 GMT + - Wed, 12 Feb 2025 15:52:25 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6719,7 +7544,6 @@ interactions: Vary: - Authorization, X-Filter - Authorization, X-Filter - - Accept-Encoding X-Accepted-Oauth-Scopes: - databases:read_only X-Content-Type-Options: @@ -6746,10 +7570,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/210830/credentials + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: GET response: - body: '{"password": "@S3cur3P@ssw0rd", "username": "aCoolUsername"}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6768,13 +7601,13 @@ interactions: Connection: - keep-alive Content-Length: - - "64" + - "769" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:11:25 GMT + - Wed, 12 Feb 2025 15:52:40 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6808,10 +7641,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/210830/credentials/reset - method: POST + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 + method: GET response: - body: '{}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6830,21 +7672,22 @@ interactions: Connection: - keep-alive Content-Length: - - "2" + - "769" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:16:28 GMT + - Wed, 12 Feb 2025 15:52:55 GMT Pragma: - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter + - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_write + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -6869,10 +7712,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/210830/credentials + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: GET response: - body: '{"password": "@NewS3cur3P@ssw0rd", "username": "aCoolUsername"}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6891,13 +7743,13 @@ interactions: Connection: - keep-alive Content-Length: - - "64" + - "769" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:16:44 GMT + - Wed, 12 Feb 2025 15:53:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6931,10 +7783,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/210830/patch - method: POST + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 + method: GET response: - body: '{}' + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -6953,21 +7814,22 @@ interactions: Connection: - keep-alive Content-Length: - - "2" + - "769" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:21:46 GMT + - Wed, 12 Feb 2025 15:53:25 GMT Pragma: - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter + - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_write + - databases:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -6992,19 +7854,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/210830 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: GET response: body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", - "hosts": {"primary": "a210830-akamai-prod-5782758-default.g2a.akamaidb.net", - "standby": "replica-a210830-akamai-prod-5782758-default.g2a.akamaidb.net"}, - "id": 210830, "label": "go-postgres-testing-defg02323nvin1r", "members": {"172.105.56.179": - "failover", "172.105.56.41": "failover", "45.79.125.252": "primary"}, "oldest_restore_time": - "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": - true, "status": "updating", "total_disk_size_gb": 9, "type": "g6-nanode-1", - "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": - 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": 0, "version": "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: @@ -7024,13 +7885,13 @@ interactions: Connection: - keep-alive Content-Length: - - "854" + - "769" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:22:03 GMT + - Wed, 12 Feb 2025 15:53:40 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7064,19 +7925,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/210830 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: GET response: body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", - "hosts": {"primary": "a210830-akamai-prod-5782758-default.g2a.akamaidb.net", - "standby": "replica-a210830-akamai-prod-5782758-default.g2a.akamaidb.net"}, - "id": 210830, "label": "go-postgres-testing-defg02323nvin1r", "members": {"172.105.56.179": - "failover", "172.105.56.41": "failover", "45.79.125.252": "primary"}, "oldest_restore_time": - "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": - true, "status": "updating", "total_disk_size_gb": 9, "type": "g6-nanode-1", - "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": - 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": 0, "version": "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: @@ -7096,13 +7956,13 @@ interactions: Connection: - keep-alive Content-Length: - - "854" + - "769" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:22:19 GMT + - Wed, 12 Feb 2025 15:53:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7136,19 +7996,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/210830 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: GET response: body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", - "hosts": {"primary": "a210830-akamai-prod-5782758-default.g2a.akamaidb.net", - "standby": "replica-a210830-akamai-prod-5782758-default.g2a.akamaidb.net"}, - "id": 210830, "label": "go-postgres-testing-defg02323nvin1r", "members": {"172.105.56.179": - "failover", "172.105.56.41": "failover", "45.79.125.252": "primary"}, "oldest_restore_time": - "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": - true, "status": "updating", "total_disk_size_gb": 9, "type": "g6-nanode-1", - "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": - 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": 0, "version": "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: @@ -7168,13 +8027,13 @@ interactions: Connection: - keep-alive Content-Length: - - "854" + - "769" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:22:34 GMT + - Wed, 12 Feb 2025 15:54:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7208,19 +8067,18 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/210830 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: GET response: body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", - "hosts": {"primary": "a210830-akamai-prod-5782758-default.g2a.akamaidb.net", - "standby": "replica-a210830-akamai-prod-5782758-default.g2a.akamaidb.net"}, - "id": 210830, "label": "go-postgres-testing-defg02323nvin1r", "members": {"172.105.56.179": - "failover", "172.105.56.41": "failover", "45.79.125.252": "primary"}, "oldest_restore_time": - "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": - true, "status": "updating", "total_disk_size_gb": 9, "type": "g6-nanode-1", - "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": - 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": 0, "version": "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: @@ -7240,13 +8098,13 @@ interactions: Connection: - keep-alive Content-Length: - - "854" + - "769" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:22:49 GMT + - Wed, 12 Feb 2025 15:54:25 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7280,20 +8138,19 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/210830 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: GET response: body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", - "hosts": {"primary": "a210830-akamai-prod-5782758-default.g2a.akamaidb.net", - "standby": "replica-a210830-akamai-prod-5782758-default.g2a.akamaidb.net"}, - "id": 210830, "label": "go-postgres-testing-defg02323nvin1r", "members": {"172.105.56.179": - "failover", "172.105.56.41": "failover", "45.79.125.252": "primary"}, "oldest_restore_time": - "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection": - true, "status": "active", "total_disk_size_gb": 9, "type": "g6-nanode-1", "updated": - "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration": 4, "frequency": - "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": 0, "version": - "14.15", "platform": "rdbms-default"}' + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "resuming", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -7312,13 +8169,84 @@ interactions: Connection: - keep-alive Content-Length: - - "852" + - "769" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Wed, 12 Feb 2025 15:54:41 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - databases:read_only + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + - DENY + X-Oauth-Scopes: + - '*' + X-Ratelimit-Limit: + - "1600" + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - linodego/dev https://github.com/linode/linodego + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 + method: GET + response: + body: '{"allow_list": ["123.177.200.20/32", "128.173.205.21/32"], "cluster_size": + 3, "created": "2018-01-02T03:04:05", "encrypted": true, "engine": "postgresql", + "hosts": {"primary": "a227300-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a227300-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 227300, "label": "go-postgres-testing-deft7gm2j8p240c", "members": {}, + "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", + "ssl_connection": true, "status": "active", "total_disk_size_gb": 9, "type": + "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": + 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": + 0, "version": "14.15", "platform": "rdbms-default"}' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter + Access-Control-Allow-Methods: + - HEAD, GET, OPTIONS, POST, PUT, DELETE + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status + Akamai-Internal-Account: + - '*' + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "767" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:23:06 GMT + - Wed, 12 Feb 2025 15:54:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7352,7 +8280,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/postgresql/instances/210830 + url: https://api.linode.com/v4beta/databases/postgresql/instances/227300 method: DELETE response: body: '{}' @@ -7380,7 +8308,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 22 Jan 2025 16:23:23 GMT + - Wed, 12 Feb 2025 15:55:13 GMT Pragma: - no-cache Strict-Transport-Security: diff --git a/test/integration/mysql_test.go b/test/integration/mysql_test.go index 773029fd8..a873563e2 100644 --- a/test/integration/mysql_test.go +++ b/test/integration/mysql_test.go @@ -126,7 +126,29 @@ func TestDatabase_MySQL_Suite(t *testing.T) { if err := client.WaitForDatabaseStatus( context.Background(), database.ID, linodego.DatabaseEngineTypeMySQL, linodego.DatabaseStatusActive, 2400); err != nil { - t.Fatalf("failed to wait for database updating: %s", err) + t.Fatalf("failed to wait for database active: %s", err) + } + + if err := client.SuspendMySQLDatabase(context.Background(), database.ID); err != nil { + t.Fatalf("failed to suspend database: %s", err) + } + + // Wait for the DB to enter suspended status + if err := client.WaitForDatabaseStatus( + context.Background(), database.ID, linodego.DatabaseEngineTypeMySQL, + linodego.DatabaseStatusSuspended, 240); err != nil { + t.Fatalf("failed to wait for database suspended: %s", err) + } + + if err := client.ResumeMySQLDatabase(context.Background(), database.ID); err != nil { + t.Fatalf("failed to resume database: %s", err) + } + + // Wait for the DB to re-enter active status + if err := client.WaitForDatabaseStatus( + context.Background(), database.ID, linodego.DatabaseEngineTypeMySQL, + linodego.DatabaseStatusActive, 2400); err != nil { + t.Fatalf("failed to wait for database active: %s", err) } } diff --git a/test/integration/postgres_test.go b/test/integration/postgres_test.go index 844fe0434..150e09e65 100644 --- a/test/integration/postgres_test.go +++ b/test/integration/postgres_test.go @@ -132,6 +132,28 @@ func TestDatabase_Postgres_Suite(t *testing.T) { linodego.DatabaseStatusActive, 2400); err != nil { t.Fatalf("failed to wait for database updating: %s", err) } + + if err := client.SuspendPostgresDatabase(context.Background(), database.ID); err != nil { + t.Fatalf("failed to suspend database: %s", err) + } + + // Wait for the DB to enter suspended status + if err := client.WaitForDatabaseStatus( + context.Background(), database.ID, linodego.DatabaseEngineTypePostgres, + linodego.DatabaseStatusSuspended, 2400); err != nil { + t.Fatalf("failed to wait for database suspended: %s", err) + } + + if err := client.ResumePostgresDatabase(context.Background(), database.ID); err != nil { + t.Fatalf("failed to resume database: %s", err) + } + + // Wait for the DB to re-enter active status + if err := client.WaitForDatabaseStatus( + context.Background(), database.ID, linodego.DatabaseEngineTypePostgres, + linodego.DatabaseStatusActive, 2400); err != nil { + t.Fatalf("failed to wait for database active: %s", err) + } } type postgresDatabaseModifier func(options *linodego.PostgresCreateOptions) From b820de4d4bd22ca4cbf6b91cf3d7de5b5baa8ded Mon Sep 17 00:00:00 2001 From: ezilber-akamai Date: Wed, 12 Feb 2025 11:24:48 -0500 Subject: [PATCH 2/2] Added unit tests --- test/unit/mysql_test.go | 20 ++++++++++++++++++++ test/unit/postgres_test.go | 20 ++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/test/unit/mysql_test.go b/test/unit/mysql_test.go index 913800d90..abe394f46 100644 --- a/test/unit/mysql_test.go +++ b/test/unit/mysql_test.go @@ -192,3 +192,23 @@ func TestDatabaseMySQL_Patch(t *testing.T) { t.Fatal(err) } } + +func TestDatabaseMySQL_Suspend(t *testing.T) { + client := createMockClient(t) + + httpmock.RegisterRegexpResponder("POST", mockRequestURL(t, "databases/mysql/instances/123/suspend"), httpmock.NewStringResponder(200, "{}")) + + if err := client.SuspendMySQLDatabase(context.Background(), 123); err != nil { + t.Fatal(err) + } +} + +func TestDatabaseMySQL_Resume(t *testing.T) { + client := createMockClient(t) + + httpmock.RegisterRegexpResponder("POST", mockRequestURL(t, "databases/mysql/instances/123/resume"), httpmock.NewStringResponder(200, "{}")) + + if err := client.ResumeMySQLDatabase(context.Background(), 123); err != nil { + t.Fatal(err) + } +} diff --git a/test/unit/postgres_test.go b/test/unit/postgres_test.go index 6fdda8ce5..31c23c13a 100644 --- a/test/unit/postgres_test.go +++ b/test/unit/postgres_test.go @@ -191,3 +191,23 @@ func TestDatabasePostgreSQL_Patch(t *testing.T) { t.Fatal(err) } } + +func TestDatabasePostgreSQL_Suspend(t *testing.T) { + client := createMockClient(t) + + httpmock.RegisterRegexpResponder("POST", mockRequestURL(t, "databases/postgresql/instances/123/suspend"), httpmock.NewStringResponder(200, "{}")) + + if err := client.SuspendPostgresDatabase(context.Background(), 123); err != nil { + t.Fatal(err) + } +} + +func TestDatabasePostgreSQL_Resume(t *testing.T) { + client := createMockClient(t) + + httpmock.RegisterRegexpResponder("POST", mockRequestURL(t, "databases/postgresql/instances/123/resume"), httpmock.NewStringResponder(200, "{}")) + + if err := client.ResumePostgresDatabase(context.Background(), 123); err != nil { + t.Fatal(err) + } +}