From d7f6e19b933f70bdf9480b45f71e6848803bdb29 Mon Sep 17 00:00:00 2001 From: ezilber-akamai Date: Thu, 21 Nov 2024 14:24:40 -0500 Subject: [PATCH] wip --- databases.go | 57 +- mysql.go | 72 +- postgres.go | 76 +- test/integration/databases_test.go | 4 +- .../fixtures/TestAccountEvents_List.yaml | 467 +- .../fixtures/TestDatabase_Engine.yaml | 252 +- .../fixtures/TestDatabase_List.yaml | 10142 +------ .../fixtures/TestDatabase_MySQL_Suite.yaml | 21907 +--------------- .../fixtures/TestDatabase_Postgres_Suite.yaml | 16389 ++---------- .../fixtures/TestDatabase_Type.yaml | 486 +- test/integration/mysql_test.go | 69 +- test/integration/postgres_test.go | 63 +- 12 files changed, 4765 insertions(+), 45219 deletions(-) diff --git a/databases.go b/databases.go index c665da775..a7c9d6173 100644 --- a/databases.go +++ b/databases.go @@ -52,22 +52,24 @@ const ( // A Database is a instance of Linode Managed Databases type Database struct { - ID int `json:"id"` - Status DatabaseStatus `json:"status"` - Label string `json:"label"` - Hosts DatabaseHost `json:"hosts"` - Region string `json:"region"` - Type string `json:"type"` - Engine string `json:"engine"` - Version string `json:"version"` - ClusterSize int `json:"cluster_size"` - ReplicationType string `json:"replication_type"` - SSLConnection bool `json:"ssl_connection"` - Encrypted bool `json:"encrypted"` - AllowList []string `json:"allow_list"` - InstanceURI string `json:"instance_uri"` - Created *time.Time `json:"-"` - Updated *time.Time `json:"-"` + ID int `json:"id"` + Status DatabaseStatus `json:"status"` + Label string `json:"label"` + Hosts DatabaseHost `json:"hosts"` + Region string `json:"region"` + Type string `json:"type"` + Engine string `json:"engine"` + Version string `json:"version"` + ClusterSize int `json:"cluster_size"` + + ReplicationType string `json:"replication_type,omitempty"` // This field doesn't exist in DBaaS v2 + SSLConnection bool `json:"ssl_connection"` // This field doesn't exist in DBaaS v2 + + Encrypted bool `json:"encrypted"` + AllowList []string `json:"allow_list"` + InstanceURI string `json:"instance_uri"` + Created *time.Time `json:"-"` + Updated *time.Time `json:"-"` } // DatabaseHost for Primary/Secondary of Database @@ -85,11 +87,18 @@ type DatabaseEngine struct { // DatabaseMaintenanceWindow stores information about a MySQL cluster's maintenance window type DatabaseMaintenanceWindow struct { - DayOfWeek DatabaseDayOfWeek `json:"day_of_week"` - Duration int `json:"duration"` - Frequency DatabaseMaintenanceFrequency `json:"frequency"` - HourOfDay int `json:"hour_of_day"` - WeekOfMonth *int `json:"week_of_month"` + DayOfWeek DatabaseDayOfWeek `json:"day_of_week"` + Duration int `json:"duration"` + Frequency DatabaseMaintenanceFrequency `json:"frequency"` + HourOfDay int `json:"hour_of_day"` + + Pending []struct { + Deadline *time.Time `json:"deadline"` + Description string `json:"description"` + PlannedFor *time.Time `json:"planned_for"` + } `json:"pending,omitempty"` + + WeekOfMonth *int `json:"week_of_month,omitempty"` // This field doesn't exist in v2 } // DatabaseType is information about the supported Database Types by Linode Managed Databases @@ -120,6 +129,12 @@ type ClusterPrice struct { Monthly float32 `json:"monthly"` } +// DatabaseFork describes the source and restore time for the fork for forked DBs +type DatabaseFork struct { + Source int `json:"source"` + RestoreTime *time.Time `json:"restore_time"` +} + func (d *Database) UnmarshalJSON(b []byte) error { type Mask Database diff --git a/mysql.go b/mysql.go index f69f32f25..2b779f91b 100644 --- a/mysql.go +++ b/mysql.go @@ -19,23 +19,27 @@ const ( // A MySQLDatabase is an instance of Linode MySQL Managed Databases type MySQLDatabase struct { - ID int `json:"id"` - Status DatabaseStatus `json:"status"` - Label string `json:"label"` - Hosts DatabaseHost `json:"hosts"` - Region string `json:"region"` - Type string `json:"type"` - Engine string `json:"engine"` - Version string `json:"version"` - ClusterSize int `json:"cluster_size"` - ReplicationType string `json:"replication_type"` - SSLConnection bool `json:"ssl_connection"` - Encrypted bool `json:"encrypted"` - AllowList []string `json:"allow_list"` - InstanceURI string `json:"instance_uri"` - Created *time.Time `json:"-"` - Updated *time.Time `json:"-"` - Updates DatabaseMaintenanceWindow `json:"updates"` + ID int `json:"id"` + Status DatabaseStatus `json:"status"` + Label string `json:"label"` + Hosts DatabaseHost `json:"hosts"` + Region string `json:"region"` + Type string `json:"type"` + Engine string `json:"engine"` + Version string `json:"version"` + ClusterSize int `json:"cluster_size"` + + ReplicationType string `json:"replication_type,omitempty"` // This field doesn't exist in DBaaS v2 + + SSLConnection bool `json:"ssl_connection"` + Encrypted bool `json:"encrypted"` + AllowList []string `json:"allow_list"` + InstanceURI string `json:"instance_uri"` + Created *time.Time `json:"-"` + Updated *time.Time `json:"-"` + Updates DatabaseMaintenanceWindow `json:"updates"` + Fork DatabaseFork `json:"fork"` + OldestRestoreTime *time.Time `json:"-"` } func (d *MySQLDatabase) UnmarshalJSON(b []byte) error { @@ -43,8 +47,9 @@ func (d *MySQLDatabase) UnmarshalJSON(b []byte) error { p := struct { *Mask - Created *parseabletime.ParseableTime `json:"created"` - Updated *parseabletime.ParseableTime `json:"updated"` + Created *parseabletime.ParseableTime `json:"created"` + Updated *parseabletime.ParseableTime `json:"updated"` + OldestRestoreTime *parseabletime.ParseableTime `json:"oldest_restore_time"` }{ Mask: (*Mask)(d), } @@ -55,20 +60,24 @@ func (d *MySQLDatabase) UnmarshalJSON(b []byte) error { d.Created = (*time.Time)(p.Created) d.Updated = (*time.Time)(p.Updated) + d.OldestRestoreTime = (*time.Time)(p.OldestRestoreTime) return nil } // MySQLCreateOptions fields are used when creating a new MySQL Database type MySQLCreateOptions struct { - Label string `json:"label"` - Region string `json:"region"` - Type string `json:"type"` - Engine string `json:"engine"` - AllowList []string `json:"allow_list,omitempty"` - ReplicationType string `json:"replication_type,omitempty"` - ClusterSize int `json:"cluster_size,omitempty"` - Encrypted bool `json:"encrypted,omitempty"` - SSLConnection bool `json:"ssl_connection,omitempty"` + Label string `json:"label"` + Region string `json:"region"` + Type string `json:"type"` + Engine string `json:"engine"` + AllowList []string `json:"allow_list,omitempty"` + ClusterSize int `json:"cluster_size,omitempty"` + + ReplicationType string `json:"replication_type,omitempty"` // This field doesn't exist in DBaaS v2 + Encrypted bool `json:"encrypted,omitempty"` // This field doesn't exist in DBaaS v2 + SSLConnection bool `json:"ssl_connection,omitempty"` // This field doesn't exist in DBaaS v2 + + Fork *DatabaseFork `json:"fork,omitempty"` } // MySQLUpdateOptions fields are used when altering the existing MySQL Database @@ -76,9 +85,11 @@ type MySQLUpdateOptions struct { Label string `json:"label,omitempty"` AllowList *[]string `json:"allow_list,omitempty"` Updates *DatabaseMaintenanceWindow `json:"updates,omitempty"` + Type string `json:"type,omitempty"` } // MySQLDatabaseBackup is information for interacting with a backup for the existing MySQL Database +// This struct is not supported in DBaaS v2 type MySQLDatabaseBackup struct { ID int `json:"id"` Label string `json:"label"` @@ -87,6 +98,7 @@ type MySQLDatabaseBackup struct { } // MySQLBackupCreateOptions are options used for CreateMySQLDatabaseBackup(...) +// This struct is not supported in DBaaS v2 type MySQLBackupCreateOptions struct { Label string `json:"label"` Target MySQLDatabaseTarget `json:"target"` @@ -132,6 +144,7 @@ func (c *Client) ListMySQLDatabases(ctx context.Context, opts *ListOptions) ([]M } // ListMySQLDatabaseBackups lists all MySQL Database Backups associated with the given MySQL Database +// Note: This method is not supported in DBaaS V2 func (c *Client) ListMySQLDatabaseBackups(ctx context.Context, databaseID int, opts *ListOptions) ([]MySQLDatabaseBackup, error) { response, err := getPaginatedResults[MySQLDatabaseBackup](ctx, c, formatAPIPath("databases/mysql/instances/%d/backups", databaseID), opts) if err != nil { @@ -211,6 +224,7 @@ func (c *Client) ResetMySQLDatabaseCredentials(ctx context.Context, databaseID i } // GetMySQLDatabaseBackup returns a specific MySQL Database Backup with the given ids +// Note: This method is not supported in DBaaS V2 func (c *Client) GetMySQLDatabaseBackup(ctx context.Context, databaseID int, backupID int) (*MySQLDatabaseBackup, error) { e := formatAPIPath("databases/mysql/instances/%d/backups/%d", databaseID, backupID) response, err := doGETRequest[MySQLDatabaseBackup](ctx, c, e) @@ -222,6 +236,7 @@ func (c *Client) GetMySQLDatabaseBackup(ctx context.Context, databaseID int, bac } // RestoreMySQLDatabaseBackup returns the given MySQL Database with the given Backup +// Note: This method is not supported in DBaaS V2 func (c *Client) RestoreMySQLDatabaseBackup(ctx context.Context, databaseID int, backupID int) error { e := formatAPIPath("databases/mysql/instances/%d/backups/%d/restore", databaseID, backupID) _, err := doPOSTRequest[MySQLDatabaseBackup, any](ctx, c, e) @@ -229,6 +244,7 @@ func (c *Client) RestoreMySQLDatabaseBackup(ctx context.Context, databaseID int, } // CreateMySQLDatabaseBackup creates a snapshot for the given MySQL database +// Note: This method is not supported in DBaaS V2 func (c *Client) CreateMySQLDatabaseBackup(ctx context.Context, databaseID int, opts MySQLBackupCreateOptions) error { e := formatAPIPath("databases/mysql/instances/%d/backups", databaseID) _, err := doPOSTRequest[MySQLDatabaseBackup](ctx, c, e, opts) diff --git a/postgres.go b/postgres.go index 19c32f79a..338a00def 100644 --- a/postgres.go +++ b/postgres.go @@ -35,24 +35,28 @@ const ( // A PostgresDatabase is an instance of Linode Postgres Managed Databases type PostgresDatabase struct { - ID int `json:"id"` - Status DatabaseStatus `json:"status"` - Label string `json:"label"` - Region string `json:"region"` - Type string `json:"type"` - Engine string `json:"engine"` - Version string `json:"version"` - Encrypted bool `json:"encrypted"` - AllowList []string `json:"allow_list"` - Port int `json:"port"` - SSLConnection bool `json:"ssl_connection"` - ClusterSize int `json:"cluster_size"` - ReplicationCommitType PostgresCommitType `json:"replication_commit_type"` - ReplicationType PostgresReplicationType `json:"replication_type"` - Hosts DatabaseHost `json:"hosts"` - Updates DatabaseMaintenanceWindow `json:"updates"` - Created *time.Time `json:"-"` - Updated *time.Time `json:"-"` + ID int `json:"id"` + Status DatabaseStatus `json:"status"` + Label string `json:"label"` + Region string `json:"region"` + Type string `json:"type"` + Engine string `json:"engine"` + Version string `json:"version"` + Encrypted bool `json:"encrypted"` + AllowList []string `json:"allow_list"` + Port int `json:"port"` + SSLConnection bool `json:"ssl_connection"` + ClusterSize int `json:"cluster_size"` + + ReplicationCommitType PostgresCommitType `json:"replication_commit_type,omitempty"` // This field doesn't exist in DBaaS v2 + ReplicationType PostgresReplicationType `json:"replication_type,omitempty"` // This field doesn't exist in DBaaS v2 + + Hosts DatabaseHost `json:"hosts"` + Updates DatabaseMaintenanceWindow `json:"updates"` + Created *time.Time `json:"-"` + Updated *time.Time `json:"-"` + Fork DatabaseFork `json:"fork"` + OldestRestoreTime *time.Time `json:"-"` } func (d *PostgresDatabase) UnmarshalJSON(b []byte) error { @@ -60,8 +64,9 @@ func (d *PostgresDatabase) UnmarshalJSON(b []byte) error { p := struct { *Mask - Created *parseabletime.ParseableTime `json:"created"` - Updated *parseabletime.ParseableTime `json:"updated"` + Created *parseabletime.ParseableTime `json:"created"` + Updated *parseabletime.ParseableTime `json:"updated"` + OldestRestoreTime *parseabletime.ParseableTime `json:"oldest_restore_time"` }{ Mask: (*Mask)(d), } @@ -72,21 +77,25 @@ func (d *PostgresDatabase) UnmarshalJSON(b []byte) error { d.Created = (*time.Time)(p.Created) d.Updated = (*time.Time)(p.Updated) + d.OldestRestoreTime = (*time.Time)(p.OldestRestoreTime) return nil } // PostgresCreateOptions fields are used when creating a new Postgres Database type PostgresCreateOptions struct { - Label string `json:"label"` - Region string `json:"region"` - Type string `json:"type"` - Engine string `json:"engine"` - AllowList []string `json:"allow_list,omitempty"` - ClusterSize int `json:"cluster_size,omitempty"` - Encrypted bool `json:"encrypted,omitempty"` - SSLConnection bool `json:"ssl_connection,omitempty"` - ReplicationType PostgresReplicationType `json:"replication_type,omitempty"` - ReplicationCommitType PostgresCommitType `json:"replication_commit_type,omitempty"` + Label string `json:"label"` + Region string `json:"region"` + Type string `json:"type"` + Engine string `json:"engine"` + AllowList []string `json:"allow_list,omitempty"` + ClusterSize int `json:"cluster_size,omitempty"` + + Encrypted bool `json:"encrypted,omitempty"` // This field doesn't exist in DBaaS v2 + SSLConnection bool `json:"ssl_connection,omitempty"` // This field doesn't exist in DBaaS v2 + ReplicationType PostgresReplicationType `json:"replication_type,omitempty"` // This field doesn't exist in DBaaS v2 + ReplicationCommitType PostgresCommitType `json:"replication_commit_type,omitempty"` // This field doesn't exist in DBaaS v2 + + Fork *DatabaseFork `json:"fork,omitempty"` } // PostgresUpdateOptions fields are used when altering the existing Postgres Database @@ -94,6 +103,7 @@ type PostgresUpdateOptions struct { Label string `json:"label,omitempty"` AllowList *[]string `json:"allow_list,omitempty"` Updates *DatabaseMaintenanceWindow `json:"updates,omitempty"` + Type string `json:"type,omitempty"` } // PostgresDatabaseSSL is the SSL Certificate to access the Linode Managed Postgres Database @@ -114,6 +124,7 @@ func (c *Client) ListPostgresDatabases(ctx context.Context, opts *ListOptions) ( } // PostgresDatabaseBackup is information for interacting with a backup for the existing Postgres Database +// This struct is not supported in DBaaS v2 type PostgresDatabaseBackup struct { ID int `json:"id"` Label string `json:"label"` @@ -140,12 +151,14 @@ func (d *PostgresDatabaseBackup) UnmarshalJSON(b []byte) error { } // PostgresBackupCreateOptions are options used for CreatePostgresDatabaseBackup(...) +// This struct is not supported in DBaaS v2 type PostgresBackupCreateOptions struct { Label string `json:"label"` Target PostgresDatabaseTarget `json:"target"` } // ListPostgresDatabaseBackups lists all Postgres Database Backups associated with the given Postgres Database +// Note: This method is not supported in DBaaS V2 func (c *Client) ListPostgresDatabaseBackups(ctx context.Context, databaseID int, opts *ListOptions) ([]PostgresDatabaseBackup, error) { response, err := getPaginatedResults[PostgresDatabaseBackup](ctx, c, formatAPIPath("databases/postgresql/instances/%d/backups", databaseID), opts) return response, err @@ -208,6 +221,7 @@ func (c *Client) GetPostgresDatabaseSSL(ctx context.Context, databaseID int) (*P } // GetPostgresDatabaseBackup returns a specific Postgres Database Backup with the given ids +// Note: This method is not supported in DBaaS V2 func (c *Client) GetPostgresDatabaseBackup(ctx context.Context, databaseID int, backupID int) (*PostgresDatabaseBackup, error) { e := formatAPIPath("databases/postgresql/instances/%d/backups/%d", databaseID, backupID) response, err := doGETRequest[PostgresDatabaseBackup](ctx, c, e) @@ -215,6 +229,7 @@ func (c *Client) GetPostgresDatabaseBackup(ctx context.Context, databaseID int, } // RestorePostgresDatabaseBackup returns the given Postgres Database with the given Backup +// Note: This method is not supported in DBaaS V2 func (c *Client) RestorePostgresDatabaseBackup(ctx context.Context, databaseID int, backupID int) error { e := formatAPIPath("databases/postgresql/instances/%d/backups/%d/restore", databaseID, backupID) _, err := doPOSTRequest[PostgresDatabaseBackup, any](ctx, c, e) @@ -222,6 +237,7 @@ func (c *Client) RestorePostgresDatabaseBackup(ctx context.Context, databaseID i } // CreatePostgresDatabaseBackup creates a snapshot for the given Postgres database +// Note: This method is not supported in DBaaS V2 func (c *Client) CreatePostgresDatabaseBackup(ctx context.Context, databaseID int, opts PostgresBackupCreateOptions) error { e := formatAPIPath("databases/postgresql/instances/%d/backups", databaseID) _, err := doPOSTRequest[PostgresDatabaseBackup](ctx, c, e, opts) diff --git a/test/integration/databases_test.go b/test/integration/databases_test.go index 06e1692e7..99090a35d 100644 --- a/test/integration/databases_test.go +++ b/test/integration/databases_test.go @@ -32,7 +32,7 @@ func TestDatabase_Engine(t *testing.T) { } if engine.Engine != response.Engine { - t.Fatal("recieved engine does not match source") + t.Fatal("received engine does not match source") } } @@ -57,7 +57,7 @@ func TestDatabase_Type(t *testing.T) { } if aType.Label != response.Label { - t.Fatal("recieved type does not match source") + t.Fatal("received type does not match source") } if response.Engines.MySQL[0].Quantity != aType.Engines.MySQL[0].Quantity { diff --git a/test/integration/fixtures/TestAccountEvents_List.yaml b/test/integration/fixtures/TestAccountEvents_List.yaml index 67bd09208..ffe9a7762 100644 --- a/test/integration/fixtures/TestAccountEvents_List.yaml +++ b/test/integration/fixtures/TestAccountEvents_List.yaml @@ -15,27 +15,28 @@ interactions: method: GET response: body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", - "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", - "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, - 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, - 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, + ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage", + "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", + "Managed Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": + {"ipv4": "172.105.34.5, 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, + 172.105.39.5, 172.105.40.5, 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": + "1234::5678, 1234::5678, 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": "ca-central", "label": "Toronto, CA", "country": - "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", - "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed - Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": - "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5, - 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ca-central", + "label": "Toronto, CA", "country": "ca", "capabilities": ["Linodes", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", + "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement + Group"], "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5, + 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5, + 172.105.11.5", "ipv6": "1234::5678, 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-southeast", "label": "Sydney, AU", "country": - "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities": + ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5, @@ -45,28 +46,30 @@ interactions: 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": "us-iad", "label": - "Washington, DC", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", - "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], - "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61, - 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66, - 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, 1234::5678, + "Washington, DC", "country": "us", "capabilities": ["Linodes", "Block Storage + Encryption", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed + Databases", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", + "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, 139.144.192.61, 139.144.192.53, + 139.144.192.54, 139.144.192.67, 139.144.192.69, 139.144.192.66, 139.144.192.52, + 139.144.192.68", "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": "us-ord", "label": "Chicago, IL", "country": "us", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU - Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", - "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": - {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, 172.232.0.22, - 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", "ipv6": - "1234::5678, 1234::5678, 1234::5678, + ["Linodes", "Block Storage Encryption", "Disk Encryption", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", + "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement + Group"], "status": "ok", "resolvers": {"ipv4": "172.232.0.17, 172.232.0.16, + 172.232.0.21, 172.232.0.13, 172.232.0.22, 172.232.0.9, 172.232.0.19, 172.232.0.20, + 172.232.0.15, 172.232.0.18", "ipv6": "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": "fr-par", "label": - "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers", + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "fr-par", "label": "Paris, FR", "country": "fr", "capabilities": + ["Linodes", "Block Storage Encryption", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, @@ -77,17 +80,18 @@ interactions: 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label": "Seattle, WA", "country": "us", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU - Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium - Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19, - 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8, - 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678, + ["Linodes", "Block Storage Encryption", "Disk Encryption", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", + "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": + "ok", "resolvers": {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, + 172.232.160.15, 172.232.160.18, 172.232.160.8, 172.232.160.12, 172.232.160.11, + 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678, 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": "br-gru", "label": "Sao Paulo, BR", "country": - "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "br-gru", "label": "Sao Paulo, BR", "country": "br", "capabilities": + ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10, @@ -97,9 +101,10 @@ interactions: 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country": - "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", - "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", - "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, + "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium + Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38, 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30, 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, @@ -107,9 +112,10 @@ interactions: 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": - "se", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", - "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", - "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24, + "se", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium + Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20, 172.232.128.22, 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18, 172.232.128.21, 172.232.128.27", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, @@ -117,19 +123,17 @@ interactions: 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": - "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", - "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", - "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6, - 172.233.111.17, 172.233.111.21, 172.233.111.25, 172.233.111.19, 172.233.111.12, - 172.233.111.26, 172.233.111.16, 172.233.111.18, 172.233.111.9", "ipv6": "1234::5678, - 1234::5678, 1234::5678, 1234::5678, - 1234::5678, 1234::5678, 1234::5678, - 1234::5678, 1234::5678, 1234::5678"}, + "es", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": + {"ipv4": "172.233.111.6,172.233.111.17,172.233.111.21,172.233.111.25,172.233.111.19,172.233.111.12,172.233.111.26,172.233.111.16,172.233.111.18,172.233.111.9", + "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": "in-maa", "label": "Chennai, IN", "country": - "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", - "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", - "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17, + "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium + Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20, 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, @@ -137,47 +141,50 @@ interactions: 1234::5678, 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country": - "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", - "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", - "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": - {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46, - 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38", - "ipv6": "1234::5678, 1234::5678, 1234::5678, + "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", + "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement + Group"], "status": "ok", "resolvers": {"ipv4": "172.233.64.44, 172.233.64.43, + 172.233.64.37, 172.233.64.40, 172.233.64.46, 172.233.64.41, 172.233.64.39, 172.233.64.42, + 172.233.64.45, 172.233.64.38", "ipv6": "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": "it-mil", "label": - "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", - "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": - {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24, - 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23", - "ipv6": "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": "it-mil", "label": "Milan, IT", "country": "it", "capabilities": + ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.192.19, + 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24, 172.232.192.21, + 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23", "ipv6": "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": "us-mia", "label": - "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", - "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": - {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32, - 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31", - "ipv6": "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": "us-mia", "label": "Miami, FL", "country": + "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium + Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.160.34, + 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32, 172.233.160.28, + 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31", "ipv6": "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": "id-cgk", "label": - "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", - "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": - {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21, - 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28", - "ipv6": "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": "id-cgk", "label": "Jakarta, ID", "country": + "id", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group"], + "status": "ok", "resolvers": {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, + 172.232.224.27, 172.232.224.21, 172.232.224.24, 172.232.224.22, 172.232.224.20, + 172.232.224.31, 172.232.224.28", "ipv6": "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": "us-lax", "label": - "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "us-lax", "label": "Los Angeles, CA", "country": "us", "capabilities": + ["Linodes", "Block Storage Encryption", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34, @@ -186,122 +193,109 @@ interactions: 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": "us-den-edge-1", - "label": "Edge - Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud - Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers": - {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678, - 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "de-ham-edge-1", - "label": "Edge - Hamburg, DE", "country": "de", "capabilities": ["Linodes", - "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers": - {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678, - 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "fr-mrs-edge-1", - "label": "Edge - Marseille, FR", "country": "fr", "capabilities": ["Linodes", - "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers": - {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678, - 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "za-jnb-edge-1", - "label": "Edge - Johannesburg, ZA\t", "country": "za", "capabilities": ["Linodes", - "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers": - {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678, - 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "my-kul-edge-1", - "label": "Edge - Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes", - "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers": - {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678, - 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "co-bog-edge-1", - "label": "Edge - Bogot\u00e1, CO", "country": "co", "capabilities": ["Linodes", - "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers": - {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678, - 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "mx-qro-edge-1", - "label": "Edge - Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes", - "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers": - {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678, - 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-hou-edge-1", - "label": "Edge - Houston, TX", "country": "us", "capabilities": ["Linodes", - "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers": - {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678, - 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "cl-scl-edge-1", - "label": "Edge - Santiago, CL", "country": "cl", "capabilities": ["Linodes", - "Cloud Firewall", "Distributed Plans", "Placement Group"], "status": "ok", "resolvers": - {"ipv4": "173.223.100.53, 173.223.101.53", "ipv6": "1234::5678, - 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - null, "maximum_linodes_per_pg": 5}, "site_type": "distributed"}, {"id": "us-central", - "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups", - "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label": + "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", + "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": + "ok", "resolvers": {"ipv4": "172.236.0.46,172.236.0.50,172.236.0.47,172.236.0.53,172.236.0.52,172.236.0.45,172.236.0.49,172.236.0.51,172.236.0.54,172.236.0.48", + "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": "au-mel", "label": "Melbourne, AU", "country": + "au", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", + "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.236.32.23,172.236.32.35,172.236.32.30,172.236.32.28,172.236.32.32,172.236.32.33,172.236.32.27,172.236.32.37,172.236.32.29,172.236.32.34", + "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": "in-bom-2", "label": "Mumbai 2, IN", "country": + "in", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", + "Block Storage", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", + "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.236.171.41,172.236.171.42,172.236.171.25,172.236.171.44,172.236.171.26,172.236.171.45,172.236.171.24,172.236.171.43,172.236.171.27,172.236.171.28", + "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": "de-fra-2", "label": "Frankfurt 2, DE", "country": + "de", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", + "Block Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", + "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": + {"ipv4": "172.236.203.9,172.236.203.16,172.236.203.19,172.236.203.15,172.236.203.17,172.236.203.11,172.236.203.18,172.236.203.14,172.236.203.13,172.236.203.12", + "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": "sg-sin-2", "label": "Singapore 2, SG", "country": + "sg", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud + Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group"], + "status": "ok", "resolvers": {"ipv4": "172.236.129.8,172.236.129.42,172.236.129.41,172.236.129.19,172.236.129.46,172.236.129.23,172.236.129.48,172.236.129.20,172.236.129.21,172.236.129.47", + "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": "jp-tyo-3", "label": "Tokyo 3, JP", "country": + "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", + "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.237.4.15,172.237.4.19,172.237.4.17,172.237.4.21,172.237.4.16,172.237.4.18,172.237.4.23,172.237.4.24,172.237.4.20,172.237.4.14", + "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": "us-central", "label": "Dallas, TX", "country": + "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", + "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", + "Managed Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": + {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5, + 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.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": "us-west", "label": "Fremont, CA", "country": "us", "capabilities": + ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage", + "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed + Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": + "173.230.145.5, 173.230.147.5, 173.230.155.5, 173.255.212.5, 173.255.219.5, + 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5, 74.207.242.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": "us-southeast", "label": "Atlanta, GA", "country": "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"], "status": + "ok", "resolvers": {"ipv4": "74.207.231.5,173.230.128.5,173.230.129.5,173.230.136.5,173.230.140.5,66.228.59.5,66.228.62.5,50.116.35.5,50.116.41.5,23.239.18.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": "us-east", "label": "Newark, NJ", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status": - "ok", "resolvers": {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, - 96.126.122.5, 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.5", + "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": "us-west", "label": "Fremont, CA", "country": "us", "capabilities": + "core"}, {"id": "eu-west", "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", - "Placement Group"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, - 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, - 74.207.241.5, 74.207.242.5", "ipv6": "1234::5678, 1234::5678, 1234::5678, + "Placement Group"], "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": "us-southeast", "label": - "Atlanta, GA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", + "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south", "label": + "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement - Group"], "status": "ok", "resolvers": {"ipv4": "74.207.231.5, 173.230.128.5, - 173.230.129.5, 173.230.136.5, 173.230.140.5, 66.228.59.5, 66.228.62.5, 50.116.35.5, - 50.116.41.5, 23.239.18.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": "us-east", "label": - "Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement - Group"], "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"}, + Group"], "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-west", "label": "London, UK", "country": - "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", - "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed - Databases", "Metadata", "Placement Group"], "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", "Backups", - "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", - "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", - "Metadata", "Placement Group"], "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": "de", "capabilities": ["Linodes", "Backups", - "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", - "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", - "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5, - 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5, - 139.162.137.5, 139.162.138.5, 139.162.139.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-northeast", - "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups", - "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": + "de", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status": - "ok", "resolvers": {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5, - 139.162.70.5, 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.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"}], "page": 1, "pages": 1, "results": 34}' + "ok", "resolvers": {"ipv4": "139.162.130.5,139.162.131.5,139.162.132.5,139.162.133.5,139.162.134.5,139.162.135.5,139.162.136.5,139.162.137.5,139.162.138.5,139.162.139.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-northeast", "label": "Tokyo 2, JP", "country": + "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", + "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", + "Managed Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": + {"ipv4": "139.162.66.5,139.162.67.5,139.162.68.5,139.162.69.5,139.162.70.5,139.162.71.5,139.162.72.5,139.162.73.5,139.162.74.5,139.162.75.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"}], "page": 1, "pages": 1, "results": 31}' headers: Access-Control-Allow-Credentials: - "true" @@ -324,7 +318,7 @@ interactions: Content-Type: - application/json Expires: - - Thu, 25 Jul 2024 17:44:03 GMT + - Thu, 07 Nov 2024 20:59:40 GMT Pragma: - no-cache Strict-Transport-Security: @@ -341,19 +335,16 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-9t15okq9p55z","root_pass":"iV998k`L|Y\u003eRlFs2{u-!CN#2EfjT1JhS1Oe9hK\u003c12O3c376x)i2n-~U+]r-k+C4\u003c","image":"linode/debian9","firewall_id":692854,"booted":false}' + body: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-3ahbl279u48u","root_pass":"1?9#T96O;MBMviM3QSIyGu4NZ9w{[bt7S{*z,?699953d.CYn~P\u0026ko''4ot;3(\\mj","image":"linode/debian9","firewall_id":1155670,"booted":false}' form: {} headers: Accept: @@ -365,16 +356,17 @@ interactions: url: https://api.linode.com/v4beta/linode/instances method: POST response: - body: '{"id": 61874159, "label": "go-test-ins-9t15okq9p55z", "group": "", "status": + body: '{"id": 66747273, "label": "go-test-ins-3ahbl279u48u", "group": "", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", - "type": "g6-nanode-1", "ipv4": ["45.79.122.198"], "ipv6": "1234::5678/128", + "type": "g6-nanode-1", "ipv4": ["170.187.238.131"], "ipv6": "1234::5678/128", "image": "linode/debian9", "region": "ap-west", "site_type": "core", "specs": {"disk": 25600, "memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota": 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule": {"day": null, "window": null}, "last_successful": null}, "hypervisor": "kvm", "watchdog_enabled": - true, "tags": [], "host_uuid": "0be889ff8efab8e9f1cbbb28b1799aa440e95149", "has_user_data": - false, "placement_group": null, "lke_cluster_id": null}' + true, "tags": [], "host_uuid": "51d55bc6a0107cf3ae237504cc18d98448a67267", "has_user_data": + false, "placement_group": null, "disk_encryption": "enabled", "lke_cluster_id": + null, "capabilities": ["SMTP Enabled"]}' headers: Access-Control-Allow-Credentials: - "true" @@ -392,20 +384,19 @@ interactions: - max-age=0, no-cache, no-store Connection: - keep-alive - Content-Length: - - "810" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Thu, 25 Jul 2024 17:44:04 GMT + - Thu, 07 Nov 2024 20:59:41 GMT Pragma: - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter + - Accept-Encoding X-Accepted-Oauth-Scopes: - linodes:read_write X-Content-Type-Options: @@ -414,12 +405,9 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - - "10" + - "5" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -435,11 +423,11 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/linode/instances/61874159/configs + url: https://api.linode.com/v4beta/linode/instances/66747273/configs method: POST response: - body: '{"id": 65094623, "label": "test-config", "helpers": {"updatedb_disabled": - true, "distro": true, "modules_dep": true, "network": false, "devtmpfs_automount": + body: '{"id": 70065094, "label": "test-config", "helpers": {"updatedb_disabled": + true, "distro": true, "modules_dep": true, "network": true, "devtmpfs_automount": true}, "kernel": "linode/latest-64bit", "comments": "", "memory_limit": 0, "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "root_device": "/dev/sda", "devices": {"sda": null, "sdb": null, "sdc": null, "sdd": null, "sde": null, @@ -463,13 +451,13 @@ interactions: Connection: - keep-alive Content-Length: - - "526" + - "525" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Thu, 25 Jul 2024 17:44:04 GMT + - Thu, 07 Nov 2024 20:59:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -484,12 +472,9 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -506,16 +491,16 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"action":"linode_config_create","entity.id":61874159,"entity.type":"linode"}' + - '{"action":"linode_config_create","entity.id":66747273,"entity.type":"linode"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 788220794, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874531785, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "linode_config_create", "username": "ychen123", - "entity": {"label": "go-test-ins-9t15okq9p55z", "id": 61874159, "type": "linode", - "url": "/v4/linode/instances/61874159"}, "status": "notification", "secondary_entity": - {"id": 65094623, "type": "linode_config", "label": "test-config", "url": "/v4/linode/instances/61874159/configs/65094623"}, + "duration": null, "action": "linode_config_create", "username": "ErikZilber", + "entity": {"label": "go-test-ins-3ahbl279u48u", "id": 66747273, "type": "linode", + "url": "/v4/linode/instances/66747273"}, "status": "notification", "secondary_entity": + {"id": 70065094, "type": "linode_config", "label": "test-config", "url": "/v4/linode/instances/66747273/configs/70065094"}, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -535,13 +520,13 @@ interactions: Connection: - keep-alive Content-Length: - - "578" + - "580" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Thu, 25 Jul 2024 17:44:04 GMT + - Thu, 07 Nov 2024 20:59:42 GMT Pragma: - no-cache Strict-Transport-Security: @@ -557,12 +542,9 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -578,7 +560,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/linode/instances/61874159 + url: https://api.linode.com/v4beta/linode/instances/66747273 method: DELETE response: body: '{}' @@ -606,7 +588,7 @@ interactions: Content-Type: - application/json Expires: - - Thu, 25 Jul 2024 17:44:05 GMT + - Thu, 07 Nov 2024 20:59:43 GMT Pragma: - no-cache Strict-Transport-Security: @@ -621,12 +603,9 @@ interactions: - DENY - DENY X-Oauth-Scopes: - - account:read_write databases:read_write domains:read_write events:read_write - firewall:read_write images:read_write ips:read_write linodes:read_write lke:read_write - longview:read_write nodebalancers:read_write object_storage:read_write stackscripts:read_write - volumes:read_write vpc:read_write + - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK diff --git a/test/integration/fixtures/TestDatabase_Engine.yaml b/test/integration/fixtures/TestDatabase_Engine.yaml index d747169b0..1fbd68c5f 100644 --- a/test/integration/fixtures/TestDatabase_Engine.yaml +++ b/test/integration/fixtures/TestDatabase_Engine.yaml @@ -1,127 +1,131 @@ --- version: 1 interactions: - - 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/engines?page=1 - method: GET - response: - body: '{"data": [{"id": "mysql/8.0.30", "engine": "mysql", "version": "8.0.30"}, - {"id": "postgresql/12.12", "engine": "postgresql", "version": "12.12"}, {"id": - "postgresql/13.8", "engine": "postgresql", "version": "13.8"}, {"id": "postgresql/14.6", - "engine": "postgresql", "version": "14.6"}], "page": 1, "pages": 1, "results": - 4}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 16:45:40 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - '*' - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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/engines/mysql%2F8.0.30 - method: GET - response: - body: '{"id": "mysql/8.0.30", "engine": "mysql", "version": "8.0.30"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "62" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 16:45:40 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - '*' - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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/engines?page=1 + method: GET + response: + body: '{"data": [{"engine": "mysql", "id": "mysql/8", "version": "8"}, {"engine": + "postgresql", "id": "postgresql/13", "version": "13"}, {"engine": "postgresql", + "id": "postgresql/14", "version": "14"}, {"engine": "postgresql", "id": "postgresql/15", + "version": "15"}, {"engine": "postgresql", "id": "postgresql/16", "version": + "16"}], "page": 1, "pages": 1, "results": 5}' + 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: + - "365" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Thu, 21 Nov 2024 18:50:37 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - '*' + 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/engines/mysql%2F8 + method: GET + response: + body: '{"engine": "mysql", "id": "mysql/8", "version": "8"}' + 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: + - "52" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Thu, 21 Nov 2024 18:50:38 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - '*' + 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: "" diff --git a/test/integration/fixtures/TestDatabase_List.yaml b/test/integration/fixtures/TestDatabase_List.yaml index f7c87fa71..90beb27a8 100644 --- a/test/integration/fixtures/TestDatabase_List.yaml +++ b/test/integration/fixtures/TestDatabase_List.yaml @@ -15,243 +15,240 @@ interactions: method: GET response: body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", - "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", - "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5, - 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5, - 172.105.42.5, 172.105.43.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": 100, "maximum_linodes_per_pg": 5}, "site_type": - "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud - Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], - "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5, - 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5, - 172.105.11.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": 100, "maximum_linodes_per_pg": 5}, "site_type": - "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud - Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], - "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5, - 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, - 172.105.161.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": 100, "maximum_linodes_per_pg": 5}, "site_type": - "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage", + "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", + "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status": + "ok", "resolvers": {"ipv4": "172.105.34.5,172.105.35.5,172.105.36.5,172.105.37.5,172.105.38.5,172.105.39.5,172.105.40.5,172.105.41.5,172.105.42.5,172.105.43.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": "ca-central", "label": "Toronto, CA", "country": + "ca", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", + "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", + "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status": + "ok", "resolvers": {"ipv4": "172.105.0.5,172.105.3.5,172.105.4.5,172.105.5.5,172.105.6.5,172.105.7.5,172.105.8.5,172.105.9.5,172.105.10.5,172.105.11.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-southeast", "label": "Sydney, AU", "country": + "au", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", + "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", + "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status": + "ok", "resolvers": {"ipv4": "172.105.166.5,172.105.169.5,172.105.168.5,172.105.172.5,172.105.162.5,172.105.170.5,172.105.167.5,172.105.171.5,172.105.181.5,172.105.161.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": "us-iad", "label": "Washington, DC", "country": + "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium - Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, - 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, - 139.144.192.66, 139.144.192.52, 139.144.192.68", "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": 100, "maximum_linodes_per_pg": + Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": + "139.144.192.62,139.144.192.60,139.144.192.61,139.144.192.53,139.144.192.54,139.144.192.67,139.144.192.69,139.144.192.66,139.144.192.52,139.144.192.68", + "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": "us-ord", "label": "Chicago, IL", "country": - "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", - "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", - "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status": - "ok", "resolvers": {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, - 172.232.0.22, 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", - "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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label": - "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status": - "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18, - 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12", - "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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label": - "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": - {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, - 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", - "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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label": - "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", - "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": - "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, - 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "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": 100, "maximum_linodes_per_pg": + "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", + "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", + "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": + {"ipv4": "172.232.0.17,172.232.0.16,172.232.0.21,172.232.0.13,172.232.0.22,172.232.0.9,172.232.0.19,172.232.0.20,172.232.0.15,172.232.0.18", + "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": "fr-par", "label": "Paris, FR", "country": + "fr", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", + "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", + "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": + {"ipv4": "172.232.32.21,172.232.32.23,172.232.32.17,172.232.32.18,172.232.32.16,172.232.32.22,172.232.32.20,172.232.32.14,172.232.32.11,172.232.32.12", + "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": "us-sea", "label": "Seattle, WA", "country": + "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", + "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", + "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19,172.232.160.21,172.232.160.17,172.232.160.15,172.232.160.18,172.232.160.8,172.232.160.12,172.232.160.11,172.232.160.14,172.232.160.16", + "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": "br-gru", "label": "Sao Paulo, BR", "country": + "br", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group", + "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4,172.233.0.9,172.233.0.7,172.233.0.12,172.233.0.5,172.233.0.13,172.233.0.10,172.233.0.6,172.233.0.8,172.233.0.11", + "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": "nl-ams", "label": "Amsterdam, NL", "country": - "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", - "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", - "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38, - 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30, - 172.233.33.37, 172.233.33.32", "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": 100, "maximum_linodes_per_pg": 5}, "site_type": - "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", - "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", - "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20, 172.232.128.22, - 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18, 172.232.128.21, - 172.232.128.27", "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": 100, "maximum_linodes_per_pg": 5}, "site_type": - "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", - "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", - "resolvers": {"ipv4": "172.233.111.6, 172.233.111.17, 172.233.111.21, 172.233.111.25, - 172.233.111.19, 172.233.111.12, 172.233.111.26, 172.233.111.16, 172.233.111.18, - 172.233.111.9", "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": 100, "maximum_linodes_per_pg": 5}, "site_type": - "core"}, {"id": "in-maa", "label": "Chennai, IN", "country": "in", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", - "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", - "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20, - 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24", - "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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label": - "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": - {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46, - 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38", - "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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label": - "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", - "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": - "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24, - 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23", - "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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label": - "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", - "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": - {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32, - 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31", - "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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label": - "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", - "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": - "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21, - 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28", - "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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label": - "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", - "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": - "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34, - 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44", - "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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central", - "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups", - "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block - Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": - {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5, - 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.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": 100, "maximum_linodes_per_pg": 5}, "site_type": - "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud - Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], - "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5, - 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5, - 74.207.242.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": 100, "maximum_linodes_per_pg": - 5}, "site_type": "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country": + "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium + Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": + "172.233.33.36,172.233.33.38,172.233.33.35,172.233.33.39,172.233.33.34,172.233.33.33,172.233.33.31,172.233.33.30,172.233.33.37,172.233.33.32", + "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": "se-sto", "label": "Stockholm, SE", "country": + "se", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium + Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": + "172.232.128.24,172.232.128.26,172.232.128.20,172.232.128.22,172.232.128.25,172.232.128.19,172.232.128.23,172.232.128.18,172.232.128.21,172.232.128.27", + "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": "es-mad", "label": "Madrid, ES", "country": + "es", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group", + "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.233.111.6,172.233.111.17,172.233.111.21,172.233.111.25,172.233.111.19,172.233.111.12,172.233.111.26,172.233.111.16,172.233.111.18,172.233.111.9", + "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": "in-maa", "label": "Chennai, IN", "country": + "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium + Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok", + "resolvers": {"ipv4": "172.232.96.17,172.232.96.26,172.232.96.19,172.232.96.20,172.232.96.25,172.232.96.21,172.232.96.18,172.232.96.22,172.232.96.23,172.232.96.24", + "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": "jp-osa", "label": "Osaka, JP", "country": + "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", + "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", + "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", "resolvers": + {"ipv4": "172.233.64.44,172.233.64.43,172.233.64.37,172.233.64.40,172.233.64.46,172.233.64.41,172.233.64.39,172.233.64.42,172.233.64.45,172.233.64.38", + "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": "it-mil", "label": "Milan, IT", "country": + "it", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group", + "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.192.19,172.232.192.18,172.232.192.16,172.232.192.20,172.232.192.24,172.232.192.21,172.232.192.22,172.232.192.17,172.232.192.15,172.232.192.23", + "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": "us-mia", "label": "Miami, FL", "country": + "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium + Plans", "Placement Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok", + "resolvers": {"ipv4": "172.233.160.34,172.233.160.27,172.233.160.30,172.233.160.29,172.233.160.32,172.233.160.28,172.233.160.33,172.233.160.26,172.233.160.25,172.233.160.31", + "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": "id-cgk", "label": "Jakarta, ID", "country": + "id", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group", + "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.232.224.23,172.232.224.32,172.232.224.26,172.232.224.27,172.232.224.21,172.232.224.24,172.232.224.22,172.232.224.20,172.232.224.31,172.232.224.28", + "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": "us-lax", "label": "Los Angeles, CA", "country": + "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group", + "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4": + "172.233.128.45,172.233.128.38,172.233.128.53,172.233.128.37,172.233.128.34,172.233.128.36,172.233.128.33,172.233.128.39,172.233.128.43,172.233.128.44", + "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": "gb-lon", "label": "London 2, UK", "country": + "gb", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", + "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement + Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46,172.236.0.50,172.236.0.47,172.236.0.53,172.236.0.52,172.236.0.45,172.236.0.49,172.236.0.51,172.236.0.54,172.236.0.48", + "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": "au-mel", "label": "Melbourne, AU", "country": + "au", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", + "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement + Group", "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4": + "172.236.32.23,172.236.32.35,172.236.32.30,172.236.32.28,172.236.32.32,172.236.32.33,172.236.32.27,172.236.32.37,172.236.32.29,172.236.32.34", + "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": "in-bom-2", "label": "Mumbai 2, IN", "country": + "in", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", "VPCs", + "Metadata", "Premium Plans", "Placement Group", "StackScripts"], "status": "ok", + "resolvers": {"ipv4": "172.236.171.41,172.236.171.42,172.236.171.25,172.236.171.44,172.236.171.26,172.236.171.45,172.236.171.24,172.236.171.43,172.236.171.27,172.236.171.28", + "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": "de-fra-2", "label": "Frankfurt 2, DE", "country": + "de", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud + Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group", + "StackScripts", "NETINT Quadra T1U"], "status": "ok", "resolvers": {"ipv4": + "172.236.203.9,172.236.203.16,172.236.203.19,172.236.203.15,172.236.203.17,172.236.203.11,172.236.203.18,172.236.203.14,172.236.203.13,172.236.203.12", + "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": "sg-sin-2", "label": "Singapore 2, SG", "country": + "sg", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud + Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", + "Placement Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "172.236.129.8,172.236.129.42,172.236.129.41,172.236.129.19,172.236.129.46,172.236.129.23,172.236.129.48,172.236.129.20,172.236.129.21,172.236.129.47", + "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": "jp-tyo-3", "label": "Tokyo 3, JP", "country": + "jp", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", + "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group", "StackScripts"], + "status": "ok", "resolvers": {"ipv4": "172.237.4.15,172.237.4.19,172.237.4.17,172.237.4.21,172.237.4.16,172.237.4.18,172.237.4.23,172.237.4.24,172.237.4.20,172.237.4.14", + "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": "us-central", "label": "Dallas, TX", "country": + "us", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", + "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", + "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status": + "ok", "resolvers": {"ipv4": "72.14.179.5,72.14.188.5,173.255.199.5,66.228.53.5,96.126.122.5,96.126.124.5,96.126.127.5,198.58.107.5,198.58.111.5,23.239.24.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": "us-west", "label": "Fremont, CA", "country": + "us", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption", + "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", + "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement + Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "173.230.145.5, + 173.230.147.5, 173.230.155.5, 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, + 173.255.244.5, 74.207.241.5, 74.207.242.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": "us-southeast", + "label": "Atlanta, GA", "country": "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": "74.207.231.5,173.230.128.5,173.230.129.5,173.230.136.5,173.230.140.5,66.228.59.5,66.228.62.5,50.116.35.5,50.116.41.5,23.239.18.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": "us-east", "label": "Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block - Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": - {"ipv4": "74.207.231.5, 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5, - 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label": - "Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "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": 100, "maximum_linodes_per_pg": 5}, "site_type": - "core"}, {"id": "eu-west", "label": "London, UK", "country": "gb", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud - Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], - "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, + 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": 100, "maximum_linodes_per_pg": - 5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country": - "sg", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", - "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block - Storage Migrations", "Managed Databases", "Metadata"], "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": 100, "maximum_linodes_per_pg": 5}, "site_type": - "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU - Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", - "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5, - 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5, - 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "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", "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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast", - "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups", - "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block - Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": - {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5, - 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.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": 100, "maximum_linodes_per_pg": 5}, "site_type": - "core"}], "page": 1, "pages": 1, "results": 25}' + null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-south", + "label": "Singapore, SG", "country": "sg", "capabilities": ["Linodes", "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": + "de", "capabilities": ["Linodes", "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": "139.162.130.5,139.162.131.5,139.162.132.5,139.162.133.5,139.162.134.5,139.162.135.5,139.162.136.5,139.162.137.5,139.162.138.5,139.162.139.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-northeast", "label": "Tokyo 2, JP", "country": + "jp", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers", + "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", + "Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status": + "ok", "resolvers": {"ipv4": "139.162.66.5,139.162.67.5,139.162.68.5,139.162.69.5,139.162.70.5,139.162.71.5,139.162.72.5,139.162.73.5,139.162.74.5,139.162.75.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"}], "page": 1, "pages": 1, "results": 31}' headers: Access-Control-Allow-Credentials: - "true" @@ -263,6 +260,8 @@ interactions: - '*' 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: @@ -272,7 +271,7 @@ interactions: Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:45:41 GMT + - Thu, 21 Nov 2024 19:04:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -291,14 +290,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: '{"label":"go-postgres-testing-def","region":"ap-west","type":"g6-nanode-1","engine":"postgresql/14.6","allow_list":["203.0.113.1","192.0.1.0/24"],"cluster_size":3,"replication_type":"asynch"}' + body: '{"label":"go-postgres-testing-defk16c36c4v5ud","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: @@ -310,14 +309,15 @@ interactions: url: https://api.linode.com/v4beta/databases/postgresql/instances method: POST response: - body: '{"id": 133345, "label": "go-postgres-testing-def", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "provisioning", - "port": 5432, "encrypted": false, "allow_list": ["203.0.113.1", "192.0.1.0/24"], - "cluster_size": 3, "hosts": {"primary": null, "secondary": null}, "created": - "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - null, "used_disk_size_gb": null, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "weekly", "duration": 3, "hour_of_day": 0, - "day_of_week": null, "week_of_month": null}, "replication_commit_type": "local"}' + 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": + "a191297-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": "replica-a191297-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 191297, "label": "go-postgres-testing-defk16c36c4v5ud", "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": 2, "duration": 4, "frequency": "weekly", "hour_of_day": + 21, "pending": []}, "used_disk_size_gb": null, "version": "14", "platform": + "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -329,18 +329,20 @@ interactions: - '*' 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: - - "652" + - "720" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:45:41 GMT + - Thu, 21 Nov 2024 19:04:55 GMT Pragma: - no-cache Strict-Transport-Security: @@ -357,7 +359,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -374,16 +376,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database"}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -395,18 +398,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:45:56 GMT + - Thu, 21 Nov 2024 19:05:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -424,7 +429,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -441,16 +446,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -462,18 +468,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:46:11 GMT + - Thu, 21 Nov 2024 19:05:25 GMT Pragma: - no-cache Strict-Transport-Security: @@ -491,7 +499,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -508,16 +516,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -529,18 +538,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:46:26 GMT + - Thu, 21 Nov 2024 19:05:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -558,7 +569,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -575,16 +586,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -596,18 +608,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:46:41 GMT + - Thu, 21 Nov 2024 19:05:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -625,7 +639,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -642,16 +656,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -663,18 +678,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:46:56 GMT + - Thu, 21 Nov 2024 19:06:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -692,7 +709,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -709,16 +726,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -730,18 +748,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:47:11 GMT + - Thu, 21 Nov 2024 19:06:25 GMT Pragma: - no-cache Strict-Transport-Security: @@ -759,7 +779,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -776,16 +796,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -797,18 +818,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:47:26 GMT + - Thu, 21 Nov 2024 19:06:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -826,7 +849,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -843,16 +866,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -864,18 +888,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:47:41 GMT + - Thu, 21 Nov 2024 19:06:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -893,7 +919,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -910,16 +936,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -931,18 +958,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:47:56 GMT + - Thu, 21 Nov 2024 19:07:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -960,7 +989,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -977,16 +1006,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -998,18 +1028,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:48:11 GMT + - Thu, 21 Nov 2024 19:07:25 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1027,7 +1059,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1044,16 +1076,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1065,18 +1098,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:48:26 GMT + - Thu, 21 Nov 2024 19:07:40 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1094,7 +1129,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1111,16 +1146,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1132,18 +1168,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:48:41 GMT + - Thu, 21 Nov 2024 19:07:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1161,7 +1199,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1178,16 +1216,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1199,18 +1238,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:48:56 GMT + - Thu, 21 Nov 2024 19:08:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1228,7 +1269,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1245,16 +1286,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1266,18 +1308,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:49:11 GMT + - Thu, 21 Nov 2024 19:08:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1295,7 +1339,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1312,16 +1356,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1333,18 +1378,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:49:26 GMT + - Thu, 21 Nov 2024 19:08:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1362,7 +1409,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1379,16 +1426,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1400,18 +1448,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:49:41 GMT + - Thu, 21 Nov 2024 19:08:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1429,7 +1479,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1446,16 +1496,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1467,18 +1518,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:49:56 GMT + - Thu, 21 Nov 2024 19:09:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1496,7 +1549,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1513,16 +1566,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1534,18 +1588,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:50:11 GMT + - Thu, 21 Nov 2024 19:09:25 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1563,7 +1619,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1580,16 +1636,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1601,18 +1658,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:50:26 GMT + - Thu, 21 Nov 2024 19:09:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1630,7 +1689,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1647,16 +1706,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1668,18 +1728,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:50:41 GMT + - Thu, 21 Nov 2024 19:09:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1697,7 +1759,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1714,16 +1776,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1735,18 +1798,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:50:56 GMT + - Thu, 21 Nov 2024 19:10:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1764,7 +1829,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1781,16 +1846,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1802,18 +1868,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:51:11 GMT + - Thu, 21 Nov 2024 19:10:25 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1831,7 +1899,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1848,16 +1916,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1869,18 +1938,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:51:26 GMT + - Thu, 21 Nov 2024 19:10:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1898,7 +1969,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1915,16 +1986,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1936,18 +2008,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:51:41 GMT + - Thu, 21 Nov 2024 19:10:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1965,7 +2039,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1982,16 +2056,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2003,18 +2078,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:51:56 GMT + - Thu, 21 Nov 2024 19:11:10 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2032,7 +2109,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2049,16 +2126,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2070,18 +2148,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:52:11 GMT + - Thu, 21 Nov 2024 19:11:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2099,7 +2179,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2116,16 +2196,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2137,18 +2218,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:52:26 GMT + - Thu, 21 Nov 2024 19:11:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2166,7 +2249,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2183,16 +2266,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2204,18 +2288,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:52:41 GMT + - Thu, 21 Nov 2024 19:11:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2233,7 +2319,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2250,16 +2336,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2271,18 +2358,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:52:56 GMT + - Thu, 21 Nov 2024 19:12:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2300,7 +2389,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2317,16 +2406,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2338,18 +2428,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:53:11 GMT + - Thu, 21 Nov 2024 19:12:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2367,7 +2459,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2384,16 +2476,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2405,18 +2498,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:53:26 GMT + - Thu, 21 Nov 2024 19:12:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2434,7 +2529,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2451,16 +2546,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2472,18 +2568,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:53:41 GMT + - Thu, 21 Nov 2024 19:12:55 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2501,7 +2599,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2518,16 +2616,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2539,18 +2638,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:53:56 GMT + - Thu, 21 Nov 2024 19:13:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2568,7 +2669,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2585,16 +2686,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2606,18 +2708,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:54:11 GMT + - Thu, 21 Nov 2024 19:13:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2635,7 +2739,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2652,16 +2756,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2673,18 +2778,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:54:26 GMT + - Thu, 21 Nov 2024 19:13:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2702,7 +2809,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2719,16 +2826,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2740,18 +2848,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:54:41 GMT + - Thu, 21 Nov 2024 19:13:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2769,7 +2879,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2786,16 +2896,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2807,18 +2918,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:54:56 GMT + - Thu, 21 Nov 2024 19:14:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2836,7 +2949,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2853,16 +2966,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2874,18 +2988,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:55:11 GMT + - Thu, 21 Nov 2024 19:14:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2903,7 +3019,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2920,16 +3036,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2941,18 +3058,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:55:26 GMT + - Thu, 21 Nov 2024 19:14:40 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2970,7 +3089,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2987,16 +3106,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3008,18 +3128,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:55:41 GMT + - Thu, 21 Nov 2024 19:14:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3037,7 +3159,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3054,16 +3176,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3075,18 +3198,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:55:56 GMT + - Thu, 21 Nov 2024 19:15:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3104,7 +3229,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3121,16 +3246,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3142,18 +3268,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:56:11 GMT + - Thu, 21 Nov 2024 19:15:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3171,7 +3299,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3188,16 +3316,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3209,18 +3338,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:56:26 GMT + - Thu, 21 Nov 2024 19:15:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3238,7 +3369,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3255,16 +3386,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3276,18 +3408,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:56:41 GMT + - Thu, 21 Nov 2024 19:15:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3305,7 +3439,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3322,16 +3456,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3343,18 +3478,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:56:56 GMT + - Thu, 21 Nov 2024 19:16:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3372,7 +3509,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3389,16 +3526,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3410,18 +3548,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:57:11 GMT + - Thu, 21 Nov 2024 19:16:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3439,7 +3579,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3456,16 +3596,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3477,18 +3618,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:57:26 GMT + - Thu, 21 Nov 2024 19:16:40 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3506,7 +3649,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3523,16 +3666,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3544,18 +3688,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:57:41 GMT + - Thu, 21 Nov 2024 19:16:55 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3573,7 +3719,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3590,16 +3736,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3611,18 +3758,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:57:56 GMT + - Thu, 21 Nov 2024 19:17:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3640,7 +3789,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3657,16 +3806,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3678,18 +3828,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:58:11 GMT + - Thu, 21 Nov 2024 19:17:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3707,7 +3859,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3724,16 +3876,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3745,18 +3898,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:58:26 GMT + - Thu, 21 Nov 2024 19:17:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3774,7 +3929,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3791,16 +3946,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3812,18 +3968,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:58:41 GMT + - Thu, 21 Nov 2024 19:17:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3841,7 +3999,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3858,16 +4016,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3879,18 +4038,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:58:56 GMT + - Thu, 21 Nov 2024 19:18:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3908,7 +4069,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3925,16 +4086,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3946,18 +4108,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:59:11 GMT + - Thu, 21 Nov 2024 19:18:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3975,7 +4139,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3992,16 +4156,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4013,18 +4178,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:59:26 GMT + - Thu, 21 Nov 2024 19:18:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4042,7 +4209,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4059,16 +4226,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4080,18 +4248,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:59:41 GMT + - Thu, 21 Nov 2024 19:18:56 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4109,7 +4279,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4126,16 +4296,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4147,18 +4318,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 16:59:56 GMT + - Thu, 21 Nov 2024 19:19:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4176,7 +4349,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4193,16 +4366,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4214,18 +4388,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:00:11 GMT + - Thu, 21 Nov 2024 19:19:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4243,7 +4419,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4260,16 +4436,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4281,18 +4458,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:00:26 GMT + - Thu, 21 Nov 2024 19:19:41 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4310,7 +4489,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4327,16 +4506,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4348,18 +4528,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:00:41 GMT + - Thu, 21 Nov 2024 19:19:55 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4377,7 +4559,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4394,16 +4576,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4415,18 +4598,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:00:56 GMT + - Thu, 21 Nov 2024 19:20:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4444,7 +4629,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4461,15 +4646,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-21T19:04:52"},"entity.id":191297,"entity.type":"database","id":{"+gte":884798743}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": + body: '{"data": [{"id": 884798743, "created": "2018-01-02T03:04:05", "seen": false, + "read": false, "percent_complete": 100, "time_remaining": null, "rate": null, + "duration": 905, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-defk16c36c4v5ud", "id": 191297, "type": "database", + "url": "/v4/databases/postgresql/instances/191297"}, "status": "finished", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -4482,18 +4667,20 @@ interactions: - '*' 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: - - "468" + - "474" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:01:11 GMT + - Thu, 21 Nov 2024 19:20:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4511,7 +4698,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4527,17 +4714,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":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/instances?page=1 method: GET response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "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": "a191297-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a191297-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 191297, "label": "go-postgres-testing-defk16c36c4v5ud", "members": {"170.187.238.195": + "primary", "170.187.238.229": "failover", "170.187.238.240": "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": 2, "duration": 4, "frequency": + "weekly", "hour_of_day": 21, "pending": []}, "used_disk_size_gb": 0, "version": + "14.13", "platform": "rdbms-default"}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4549,18 +4739,18 @@ interactions: - '*' 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: - - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:01:26 GMT + - Thu, 21 Nov 2024 19:20:27 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4568,8 +4758,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: @@ -4578,7 +4769,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4594,17 +4785,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":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET + url: https://api.linode.com/v4beta/databases/postgresql/instances/191297 + method: DELETE response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{}' headers: Access-Control-Allow-Credentials: - "true" @@ -4616,8310 +4800,8 @@ interactions: - '*' Access-Control-Expose-Headers: - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:01:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: + Akamai-Internal-Account: - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:01:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:02:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:02:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:02:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:02:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:03:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:03:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:03:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:03:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:04:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:04:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:04:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:04:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:05:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:05:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:05:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:05:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:06:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:06:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:06:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:06:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:07:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:07:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:07:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:07:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:08:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:08:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:08:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:08:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:09:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:09:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:09:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:09:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:10:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:10:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:10:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:10:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:11:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:11:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:11:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:11:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:12:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:12:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:12:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:12:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:13:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:13:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:13:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:13:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:14:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:14:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:14:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:14:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:15:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:15:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:15:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:15:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:16:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:16:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:16:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:16:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:17:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:17:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:17:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:17:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:18:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:18:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:18:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:18:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:19:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:19:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:19:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:19:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:20:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:20:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:20:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:20:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:21:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:21:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:21:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:21:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:22:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:22:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:22:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:22:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:23:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:23:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:23:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:23:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:24:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:24:27 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:24:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:24:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:25:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:25:27 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:25:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:25:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:26:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:26:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:26:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:26:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:27:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:27:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:27:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:27:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:28:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:28:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:28:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:28:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:29:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:29:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:29:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:29:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:30:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:30:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:30:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:30:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:31:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:31:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:31:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:31:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T16:45:40"},"entity.id":133345,"entity.type":"database","id":{"+gte":755284949}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755284949, "created": "2018-01-02T03:04:05", "seen": true, - "read": false, "percent_complete": 100, "time_remaining": null, "rate": null, - "duration": 2360, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133345, "type": "database", "url": - "/v4/databases/postgresql/instances/133345"}, "status": "finished", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "462" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:32:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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/instances?page=1 - method: GET - response: - body: '{"data": [{"id": 133345, "label": "go-postgres-testing-def", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "active", - "port": 5432, "encrypted": false, "allow_list": ["203.0.113.1", "192.0.1.0/24"], - "cluster_size": 3, "hosts": {"primary": "lin-133345-103182-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133345-103182-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {"170.187.251.168": "failover", "170.187.251.240": - "failover", "170.187.251.7": "primary"}, "updates": {"frequency": "weekly", - "duration": 3, "hour_of_day": 2, "day_of_week": 7, "week_of_month": null}, "instance_uri": - "/v4/databases/postgresql/instances/133345"}], "page": 1, "pages": 1, "results": - 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "852" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 17:32: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: - - "400" - 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/133345 - method: DELETE - 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 Cache-Control: - max-age=0, no-cache, no-store Connection: @@ -12931,7 +4813,7 @@ interactions: Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 17:32:28 GMT + - Thu, 21 Nov 2024 19:20:48 GMT Pragma: - no-cache Strict-Transport-Security: @@ -12948,7 +4830,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "1600" X-Xss-Protection: - 1; mode=block status: 200 OK diff --git a/test/integration/fixtures/TestDatabase_MySQL_Suite.yaml b/test/integration/fixtures/TestDatabase_MySQL_Suite.yaml index d52f886e3..69aad4dd0 100644 --- a/test/integration/fixtures/TestDatabase_MySQL_Suite.yaml +++ b/test/integration/fixtures/TestDatabase_MySQL_Suite.yaml @@ -17,260 +17,277 @@ interactions: body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", - "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5, - 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5, - 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678, + "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, + 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, + 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "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": 100, "maximum_linodes_per_pg": 5}, "site_type": - "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud - Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], - "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5, - 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5, - 172.105.11.5", "ipv6": "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": "ca-central", "label": "Toronto, CA", "country": + "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed + Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": + "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5, + 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "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": 100, "maximum_linodes_per_pg": 5}, "site_type": - "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud - Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], - "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5, - 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, - 172.105.161.5", "ipv6": "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-southeast", "label": "Sydney, AU", "country": + "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed + Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": + "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5, + 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5", + "ipv6": "1234::5678, 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": 100, "maximum_linodes_per_pg": 5}, "site_type": - "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", - "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium - Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, - 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, - 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label": + "Washington, DC", "country": "us", "capabilities": ["Linodes", "Block Storage + Encryption", "Backups", "NodeBalancers", "Block Storage", "Object Storage", + "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", + "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, + 139.144.192.60, 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, + 139.144.192.69, 139.144.192.66, 139.144.192.52, 139.144.192.68", "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": 100, "maximum_linodes_per_pg": + "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": - "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", - "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", - "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status": - "ok", "resolvers": {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, - 172.232.0.22, 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", - "ipv6": "1234::5678, 1234::5678, 1234::5678, + "us", "capabilities": ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", + "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement + Group"], "status": "ok", "resolvers": {"ipv4": "172.232.0.17, 172.232.0.16, + 172.232.0.21, 172.232.0.13, 172.232.0.22, 172.232.0.9, 172.232.0.19, 172.232.0.20, + 172.232.0.15, 172.232.0.18", "ipv6": "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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label": - "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status": + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "fr-par", "label": "Paris, FR", "country": "fr", "capabilities": + ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", + "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12", "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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label": - "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": - {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, - 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", - "ipv6": "1234::5678, 1234::5678, 1234::5678, + null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label": + "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Block Storage Encryption", + "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", + "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", + "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19, 172.232.160.21, + 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8, 172.232.160.12, + 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, - 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label": - "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", - "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": - "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, - 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "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": "br-gru", "label": "Sao Paulo, BR", "country": + "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4, + 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10, + 172.233.0.6, 172.233.0.8, 172.233.0.11", "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": 100, "maximum_linodes_per_pg": + "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country": - "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", - "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", - "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38, - 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30, - 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678, + "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], + "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38, 172.233.33.35, + 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30, 172.233.33.37, + 172.233.33.32", "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": 100, "maximum_linodes_per_pg": 5}, "site_type": + {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", - "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed + Databases", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20, 172.232.128.22, 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18, 172.232.128.21, 172.232.128.27", "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": 100, "maximum_linodes_per_pg": 5}, "site_type": + {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", - "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", - "resolvers": {"ipv4": "172.233.111.6, 172.233.111.17, 172.233.111.21, 172.233.111.25, - 172.233.111.19, 172.233.111.12, 172.233.111.26, 172.233.111.16, 172.233.111.18, - 172.233.111.9", "ipv6": "1234::5678, 1234::5678, + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group"], + "status": "ok", "resolvers": {"ipv4": "172.233.111.6,172.233.111.17,172.233.111.21,172.233.111.25,172.233.111.19,172.233.111.12,172.233.111.26,172.233.111.16,172.233.111.18,172.233.111.9", + "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": "in-maa", "label": "Chennai, IN", "country": + "in", "capabilities": ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], + "status": "ok", "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, + 172.232.96.20, 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, + 172.232.96.24", "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": 100, "maximum_linodes_per_pg": 5}, "site_type": - "core"}, {"id": "in-maa", "label": "Chennai, IN", "country": "in", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", - "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", - "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20, - 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24", - "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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label": - "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country": "jp", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU + Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", + "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46, 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38", "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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label": + null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label": "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", - "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": - "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24, + "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": + {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24, 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23", "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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label": - "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", - "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": - {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32, - 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31", - "ipv6": "1234::5678, 1234::5678, 1234::5678, + null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label": + "Miami, FL", "country": "us", "capabilities": ["Linodes", "Block Storage Encryption", + "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium + Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.160.34, + 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32, 172.233.160.28, + 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, - 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label": - "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers", + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "id-cgk", "label": "Jakarta, ID", "country": + "id", "capabilities": ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", - "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": - "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21, + "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": + {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21, 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28", "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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label": - "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", - "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": - "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34, - 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44", - "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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "gb-lon", "label": - "London 2, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", - "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46, 172.236.0.50, - 172.236.0.47, 172.236.0.53, 172.236.0.52, 172.236.0.45, 172.236.0.49, 172.236.0.51, - 172.236.0.54, 172.236.0.48", "ipv6": "1234::5678, 1234::5678, - 1234::5678, 1234::5678, 1234::5678, + null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label": + "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Block Storage + Encryption", "Backups", "NodeBalancers", "Block Storage", "Object Storage", + "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", + "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.128.45, 172.233.128.38, + 172.233.128.53, 172.233.128.37, 172.233.128.34, 172.233.128.36, 172.233.128.33, + 172.233.128.39, 172.233.128.43, 172.233.128.44", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, - 1234::5678, 1234::5678"}, "placement_group_limits": - {"maximum_pgs_per_customer": 100, "maximum_linodes_per_pg": 5}, "site_type": - "core"}, {"id": "au-mel", "label": "Melbourne, AU", "country": "au", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Cloud Firewall", "Vlans", - "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": - "172.236.32.23, 172.236.32.35, 172.236.32.30, 172.236.32.28, 172.236.32.32, - 172.236.32.33, 172.236.32.27, 172.236.32.37, 172.236.32.29, 172.236.32.34", - "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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central", - "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups", - "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block - Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": - {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5, - 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.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": 100, "maximum_linodes_per_pg": 5}, "site_type": - "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud - Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], - "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5, - 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5, - 74.207.242.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": 100, "maximum_linodes_per_pg": - 5}, "site_type": "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country": + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "gb-lon", "label": "London 2, UK", "country": + "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", + "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46,172.236.0.50,172.236.0.47,172.236.0.53,172.236.0.52,172.236.0.45,172.236.0.49,172.236.0.51,172.236.0.54,172.236.0.48", + "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": "au-mel", "label": "Melbourne, AU", "country": + "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", + "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.236.32.23,172.236.32.35,172.236.32.30,172.236.32.28,172.236.32.32,172.236.32.33,172.236.32.27,172.236.32.37,172.236.32.29,172.236.32.34", + "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": "in-bom-2", "label": "Mumbai 2, IN", "country": + "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group"], + "status": "ok", "resolvers": {"ipv4": "172.236.171.41,172.236.171.42,172.236.171.25,172.236.171.44,172.236.171.26,172.236.171.45,172.236.171.24,172.236.171.43,172.236.171.27,172.236.171.28", + "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": "de-fra-2", "label": "Frankfurt 2, DE", "country": + "de", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.236.203.9,172.236.203.16,172.236.203.19,172.236.203.15,172.236.203.17,172.236.203.11,172.236.203.18,172.236.203.14,172.236.203.13,172.236.203.12", + "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": "sg-sin-2", "label": "Singapore 2, SG", "country": + "sg", "capabilities": ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers", + "Block Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", + "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": + {"ipv4": "172.236.129.8,172.236.129.42,172.236.129.41,172.236.129.19,172.236.129.46,172.236.129.23,172.236.129.48,172.236.129.20,172.236.129.21,172.236.129.47", + "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": "jp-tyo-3", "label": "Tokyo 3, JP", "country": + "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", + "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.237.4.15,172.237.4.19,172.237.4.17,172.237.4.21,172.237.4.16,172.237.4.18,172.237.4.23,172.237.4.24,172.237.4.20,172.237.4.14", + "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": "us-central", "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", - "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block - Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": - {"ipv4": "74.207.231.5, 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5, - 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, + "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed + Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": + "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5, 96.126.124.5, + 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label": - "Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "status": + null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-west", + "label": "Fremont, CA", "country": "us", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status": + "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5, 173.255.212.5, + 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5, 74.207.242.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": "us-southeast", "label": "Atlanta, GA", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU + Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", + "Managed Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": + {"ipv4": "74.207.231.5,173.230.128.5,173.230.129.5,173.230.136.5,173.230.140.5,66.228.59.5,66.228.62.5,50.116.35.5,50.116.41.5,23.239.18.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": "us-east", "label": "Newark, NJ", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "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": 100, "maximum_linodes_per_pg": 5}, "site_type": + {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud - Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], - "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": 100, "maximum_linodes_per_pg": - 5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country": - "sg", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", - "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block - Storage Migrations", "Managed Databases", "Metadata"], "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": 100, "maximum_linodes_per_pg": 5}, "site_type": - "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU - Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", - "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5, - 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5, - 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678, + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", + "Placement Group"], "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, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast", - "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups", - "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block - Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": - {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5, - 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.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": 100, "maximum_linodes_per_pg": 5}, "site_type": - "core"}], "page": 1, "pages": 1, "results": 27}' + 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", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", + "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement + Group"], "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": + "de", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status": + "ok", "resolvers": {"ipv4": "139.162.130.5,139.162.131.5,139.162.132.5,139.162.133.5,139.162.134.5,139.162.135.5,139.162.136.5,139.162.137.5,139.162.138.5,139.162.139.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-northeast", "label": "Tokyo 2, JP", "country": + "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed + Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": + "139.162.66.5,139.162.67.5,139.162.68.5,139.162.69.5,139.162.70.5,139.162.71.5,139.162.72.5,139.162.73.5,139.162.74.5,139.162.75.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"}], "page": 1, "pages": 1, "results": 31}' headers: Access-Control-Allow-Credentials: - "true" @@ -282,6 +299,8 @@ interactions: - '*' 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: @@ -291,7 +310,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:05:41 GMT + - Thu, 07 Nov 2024 19:39:29 GMT Pragma: - no-cache Strict-Transport-Security: @@ -310,14 +329,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: '{"label":"go-mysql-test-defi8q3a5p4b65g","region":"ap-west","type":"g6-nanode-1","engine":"mysql/8.0.30","allow_list":["203.0.113.1","192.0.1.0/24"],"replication_type":"semi_synch","cluster_size":3}' + body: '{"label":"go-mysql-test-def0z80aws82tx3","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: @@ -329,14 +348,14 @@ interactions: url: https://api.linode.com/v4beta/databases/mysql/instances method: POST response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g", "type": "g6-nanode-1", - "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "provisioning", - "port": 3306, "encrypted": false, "allow_list": ["203.0.113.1", "192.0.1.0/24"], - "cluster_size": 3, "hosts": {"primary": null, "secondary": null}, "created": - "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - null, "used_disk_size_gb": null, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "weekly", "duration": 3, "hour_of_day": - 0, "day_of_week": null, "week_of_month": null}}' + 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": + "a188785-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": "replica-a188785-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 188785, "label": "go-mysql-test-def0z80aws82tx3", "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": + 8, "pending": []}, "used_disk_size_gb": -1, "version": "8", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -348,18 +367,20 @@ interactions: - '*' 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: - - "623" + - "705" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:05:41 GMT + - Thu, 07 Nov 2024 19:39:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -376,7 +397,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -393,15 +414,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database"}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -414,6 +435,8 @@ interactions: - '*' 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: @@ -425,7 +448,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:05:56 GMT + - Thu, 07 Nov 2024 19:39:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -443,7 +466,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -460,15 +483,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -481,6 +504,8 @@ interactions: - '*' 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: @@ -492,7 +517,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:06:11 GMT + - Thu, 07 Nov 2024 19:40:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -510,7 +535,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -527,15 +552,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -548,6 +573,8 @@ interactions: - '*' 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: @@ -559,7 +586,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:06:26 GMT + - Thu, 07 Nov 2024 19:40:18 GMT Pragma: - no-cache Strict-Transport-Security: @@ -577,7 +604,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -594,15 +621,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -615,6 +642,8 @@ interactions: - '*' 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: @@ -626,7 +655,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:06:41 GMT + - Thu, 07 Nov 2024 19:40:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -644,7 +673,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -661,15 +690,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -682,6 +711,8 @@ interactions: - '*' 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: @@ -693,7 +724,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:06:56 GMT + - Thu, 07 Nov 2024 19:40:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -711,7 +742,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -728,15 +759,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -749,6 +780,8 @@ interactions: - '*' 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: @@ -760,7 +793,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:07:11 GMT + - Thu, 07 Nov 2024 19:41:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -778,7 +811,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -795,15 +828,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -816,6 +849,8 @@ interactions: - '*' 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: @@ -827,7 +862,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:07:26 GMT + - Thu, 07 Nov 2024 19:41:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -845,7 +880,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -862,15 +897,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -883,6 +918,8 @@ interactions: - '*' 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: @@ -894,7 +931,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:07:41 GMT + - Thu, 07 Nov 2024 19:41:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -912,7 +949,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -929,15 +966,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -950,6 +987,8 @@ interactions: - '*' 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: @@ -961,7 +1000,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:07:56 GMT + - Thu, 07 Nov 2024 19:41:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -979,7 +1018,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -996,15 +1035,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1017,6 +1056,8 @@ interactions: - '*' 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: @@ -1028,7 +1069,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:08:11 GMT + - Thu, 07 Nov 2024 19:42:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1046,7 +1087,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1063,15 +1104,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1084,6 +1125,8 @@ interactions: - '*' 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: @@ -1095,7 +1138,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:08:26 GMT + - Thu, 07 Nov 2024 19:42:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1113,7 +1156,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1130,15 +1173,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1151,6 +1194,8 @@ interactions: - '*' 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: @@ -1162,7 +1207,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:08:41 GMT + - Thu, 07 Nov 2024 19:42:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1180,7 +1225,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1197,15 +1242,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1218,6 +1263,8 @@ interactions: - '*' 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: @@ -1229,7 +1276,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:08:56 GMT + - Thu, 07 Nov 2024 19:42:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1247,7 +1294,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1264,15 +1311,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1285,6 +1332,8 @@ interactions: - '*' 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: @@ -1296,7 +1345,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:09:11 GMT + - Thu, 07 Nov 2024 19:43:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1314,7 +1363,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1331,15 +1380,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1352,6 +1401,8 @@ interactions: - '*' 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: @@ -1363,7 +1414,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:09:26 GMT + - Thu, 07 Nov 2024 19:43:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1381,7 +1432,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1398,15 +1449,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1419,6 +1470,8 @@ interactions: - '*' 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: @@ -1430,7 +1483,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:09:41 GMT + - Thu, 07 Nov 2024 19:43:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1448,7 +1501,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1465,15 +1518,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1486,6 +1539,8 @@ interactions: - '*' 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: @@ -1497,7 +1552,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:09:56 GMT + - Thu, 07 Nov 2024 19:43:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1515,7 +1570,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1532,15 +1587,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1553,6 +1608,8 @@ interactions: - '*' 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: @@ -1564,7 +1621,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:10:11 GMT + - Thu, 07 Nov 2024 19:44:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1582,7 +1639,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1599,15 +1656,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1620,6 +1677,8 @@ interactions: - '*' 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: @@ -1631,7 +1690,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:10:26 GMT + - Thu, 07 Nov 2024 19:44:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1649,7 +1708,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1666,15 +1725,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1687,6 +1746,8 @@ interactions: - '*' 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: @@ -1698,7 +1759,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:10:41 GMT + - Thu, 07 Nov 2024 19:44:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1716,7 +1777,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1733,15 +1794,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1754,6 +1815,8 @@ interactions: - '*' 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: @@ -1765,7 +1828,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:10:56 GMT + - Thu, 07 Nov 2024 19:44:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1783,7 +1846,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1800,15 +1863,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1821,6 +1884,8 @@ interactions: - '*' 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: @@ -1832,7 +1897,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:11:11 GMT + - Thu, 07 Nov 2024 19:45:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1850,7 +1915,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1867,15 +1932,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1888,6 +1953,8 @@ interactions: - '*' 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: @@ -1899,7 +1966,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:11:26 GMT + - Thu, 07 Nov 2024 19:45:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1917,7 +1984,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1934,15 +2001,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -1955,6 +2022,8 @@ interactions: - '*' 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: @@ -1966,7 +2035,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:11:41 GMT + - Thu, 07 Nov 2024 19:45:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1984,7 +2053,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2001,15 +2070,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2022,6 +2091,8 @@ interactions: - '*' 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: @@ -2033,7 +2104,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:11:56 GMT + - Thu, 07 Nov 2024 19:45:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2051,7 +2122,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2068,15 +2139,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2089,6 +2160,8 @@ interactions: - '*' 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: @@ -2100,7 +2173,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:12:11 GMT + - Thu, 07 Nov 2024 19:46:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2118,7 +2191,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2135,15 +2208,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2156,6 +2229,8 @@ interactions: - '*' 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: @@ -2167,7 +2242,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:12:26 GMT + - Thu, 07 Nov 2024 19:46:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2185,7 +2260,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2202,15 +2277,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2223,6 +2298,8 @@ interactions: - '*' 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: @@ -2234,7 +2311,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:12:41 GMT + - Thu, 07 Nov 2024 19:46:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2252,7 +2329,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2269,15 +2346,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2290,6 +2367,8 @@ interactions: - '*' 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: @@ -2301,7 +2380,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:12:56 GMT + - Thu, 07 Nov 2024 19:46:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2319,7 +2398,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2336,15 +2415,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2357,6 +2436,8 @@ interactions: - '*' 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: @@ -2368,7 +2449,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:13:11 GMT + - Thu, 07 Nov 2024 19:47:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2386,7 +2467,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2403,15 +2484,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2424,6 +2505,8 @@ interactions: - '*' 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: @@ -2435,7 +2518,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:13:26 GMT + - Thu, 07 Nov 2024 19:47:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2453,7 +2536,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2470,15 +2553,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2491,6 +2574,8 @@ interactions: - '*' 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: @@ -2502,7 +2587,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:13:41 GMT + - Thu, 07 Nov 2024 19:47:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2520,7 +2605,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2537,15 +2622,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2558,6 +2643,8 @@ interactions: - '*' 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: @@ -2569,7 +2656,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:13:56 GMT + - Thu, 07 Nov 2024 19:47:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2587,7 +2674,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2604,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":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2625,6 +2712,8 @@ interactions: - '*' 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: @@ -2636,7 +2725,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:14:11 GMT + - Thu, 07 Nov 2024 19:48:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2654,7 +2743,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2671,15 +2760,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2692,6 +2781,8 @@ interactions: - '*' 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: @@ -2703,7 +2794,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:14:26 GMT + - Thu, 07 Nov 2024 19:48:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2721,7 +2812,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2738,15 +2829,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2759,6 +2850,8 @@ interactions: - '*' 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: @@ -2770,7 +2863,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:14:41 GMT + - Thu, 07 Nov 2024 19:48:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2788,7 +2881,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2805,15 +2898,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2826,6 +2919,8 @@ interactions: - '*' 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: @@ -2837,7 +2932,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:14:57 GMT + - Thu, 07 Nov 2024 19:48:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2855,7 +2950,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2872,15 +2967,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2893,6 +2988,8 @@ interactions: - '*' 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: @@ -2904,7 +3001,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:15:11 GMT + - Thu, 07 Nov 2024 19:49:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2922,7 +3019,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2939,15 +3036,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -2960,6 +3057,8 @@ interactions: - '*' 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: @@ -2971,7 +3070,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:15:26 GMT + - Thu, 07 Nov 2024 19:49:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2989,7 +3088,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3006,15 +3105,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3027,6 +3126,8 @@ interactions: - '*' 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: @@ -3038,7 +3139,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:15:41 GMT + - Thu, 07 Nov 2024 19:49:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3056,7 +3157,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3073,15 +3174,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3094,6 +3195,8 @@ interactions: - '*' 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: @@ -3105,7 +3208,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:15:56 GMT + - Thu, 07 Nov 2024 19:49:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3123,7 +3226,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3140,15 +3243,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3161,6 +3264,8 @@ interactions: - '*' 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: @@ -3172,7 +3277,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:16:11 GMT + - Thu, 07 Nov 2024 19:50:03 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3190,7 +3295,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3207,15 +3312,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3228,6 +3333,8 @@ interactions: - '*' 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: @@ -3239,7 +3346,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:16:26 GMT + - Thu, 07 Nov 2024 19:50:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3257,7 +3364,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3274,15 +3381,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3295,6 +3402,8 @@ interactions: - '*' 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: @@ -3306,7 +3415,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:16:41 GMT + - Thu, 07 Nov 2024 19:50:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3324,7 +3433,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3341,15 +3450,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3362,6 +3471,8 @@ interactions: - '*' 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: @@ -3373,7 +3484,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:16:56 GMT + - Thu, 07 Nov 2024 19:50:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3391,7 +3502,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3408,15 +3519,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3429,6 +3540,8 @@ interactions: - '*' 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: @@ -3440,7 +3553,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:17:11 GMT + - Thu, 07 Nov 2024 19:51:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3458,7 +3571,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3475,15 +3588,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3496,6 +3609,8 @@ interactions: - '*' 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: @@ -3507,7 +3622,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:17:26 GMT + - Thu, 07 Nov 2024 19:51:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3525,7 +3640,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3542,15 +3657,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3563,6 +3678,8 @@ interactions: - '*' 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: @@ -3574,7 +3691,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:17:41 GMT + - Thu, 07 Nov 2024 19:51:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3592,7 +3709,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3609,15 +3726,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3630,6 +3747,8 @@ interactions: - '*' 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: @@ -3641,7 +3760,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:17:56 GMT + - Thu, 07 Nov 2024 19:51:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3659,7 +3778,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3676,15 +3795,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3697,6 +3816,8 @@ interactions: - '*' 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: @@ -3708,7 +3829,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:18:11 GMT + - Thu, 07 Nov 2024 19:52:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3726,7 +3847,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3743,15 +3864,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3764,6 +3885,8 @@ interactions: - '*' 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: @@ -3775,7 +3898,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:18:26 GMT + - Thu, 07 Nov 2024 19:52:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3793,7 +3916,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3810,15 +3933,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3831,6 +3954,8 @@ interactions: - '*' 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: @@ -3842,7 +3967,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:18:41 GMT + - Thu, 07 Nov 2024 19:52:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3860,7 +3985,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3877,15 +4002,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3898,6 +4023,8 @@ interactions: - '*' 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: @@ -3909,7 +4036,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:18:56 GMT + - Thu, 07 Nov 2024 19:52:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3927,7 +4054,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3944,15 +4071,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -3965,6 +4092,8 @@ interactions: - '*' 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: @@ -3976,7 +4105,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:19:11 GMT + - Thu, 07 Nov 2024 19:53:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3994,7 +4123,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4011,15 +4140,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -4032,6 +4161,8 @@ interactions: - '*' 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: @@ -4043,7 +4174,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:19:26 GMT + - Thu, 07 Nov 2024 19:53:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4061,7 +4192,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4078,15 +4209,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -4099,6 +4230,8 @@ interactions: - '*' 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: @@ -4110,7 +4243,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:19:41 GMT + - Thu, 07 Nov 2024 19:53:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4128,7 +4261,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4145,15 +4278,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -4166,6 +4299,8 @@ interactions: - '*' 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: @@ -4177,7 +4312,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:19:56 GMT + - Thu, 07 Nov 2024 19:53:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4195,7 +4330,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4212,15 +4347,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -4233,6 +4368,8 @@ interactions: - '*' 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: @@ -4244,7 +4381,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:20:11 GMT + - Thu, 07 Nov 2024 19:54:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4262,7 +4399,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4279,15 +4416,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -4300,6 +4437,8 @@ interactions: - '*' 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: @@ -4311,7 +4450,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:20:26 GMT + - Thu, 07 Nov 2024 19:54:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4329,7 +4468,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4346,15 +4485,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -4367,6 +4506,8 @@ interactions: - '*' 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: @@ -4378,7 +4519,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:20:41 GMT + - Thu, 07 Nov 2024 19:54:32 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4396,7 +4537,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4413,15 +4554,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -4434,6 +4575,8 @@ interactions: - '*' 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: @@ -4445,7 +4588,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:20:56 GMT + - Thu, 07 Nov 2024 19:54:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4463,7 +4606,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4480,15 +4623,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874490230, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "notification", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -4501,6 +4644,8 @@ interactions: - '*' 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: @@ -4512,7 +4657,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:21:11 GMT + - Thu, 07 Nov 2024 19:55:02 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4530,7 +4675,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4547,15 +4692,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T19:39:29"},"entity.id":188785,"entity.type":"database","id":{"+gte":874490230}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": + body: '{"data": [{"id": 874490230, "created": "2018-01-02T03:04:05", "seen": false, + "read": false, "percent_complete": 100, "time_remaining": null, "rate": null, + "duration": 734, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-mysql-test-def0z80aws82tx3", "id": 188785, "type": "database", + "url": "/v4/databases/mysql/instances/188785"}, "status": "finished", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -4568,18 +4713,20 @@ interactions: - '*' 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: - - "469" + - "463" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:21:26 GMT + - Thu, 07 Nov 2024 19:55:17 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4597,7 +4744,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4613,17 +4760,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":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - 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": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "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": "a188785-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a188785-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 188785, + "label": "go-mysql-test-def0z80aws82tx3", "members": {"194.195.117.153": "failover", + "194.195.117.167": "failover", "194.195.117.93": "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": 6, "duration": 4, "frequency": + "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": 0, "version": + "8.0.30", "platform": "rdbms-default"}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4635,18 +4785,18 @@ interactions: - '*' 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: - - "469" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:21:41 GMT + - Thu, 07 Nov 2024 19:55:19 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4654,8 +4804,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: @@ -4664,7 +4815,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4680,17 +4831,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":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/mysql/instances/188785 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "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": + "a188785-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": "replica-a188785-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 188785, "label": "go-mysql-test-def0z80aws82tx3", "members": {"194.195.117.153": + "failover", "194.195.117.167": "failover", "194.195.117.93": "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": 6, "duration": 4, "frequency": + "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb": 0, "version": + "8.0.30", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -4702,18 +4855,20 @@ interactions: - '*' 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: - - "469" + - "838" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:21:56 GMT + - Thu, 07 Nov 2024 19:55:20 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4722,7 +4877,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: @@ -4731,14 +4886,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"label":"go-mysql-test-def0z80aws82tx3-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: @@ -4747,17 +4902,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":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET + url: https://api.linode.com/v4beta/databases/mysql/instances/188785 + method: PUT response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "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": "a188785-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": + "replica-a188785-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 188785, + "label": "go-mysql-test-def0z80aws82tx3-updated", "members": {"194.195.117.153": + "failover", "194.195.117.167": "failover", "194.195.117.93": "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": + "8.0.30", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -4769,27 +4927,28 @@ interactions: - '*' 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: - - "469" + - "854" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:22:11 GMT + - Thu, 07 Nov 2024 19:55: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: @@ -4798,7 +4957,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4815,16 +4974,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -4836,18 +4990,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:22:26 GMT + - Thu, 07 Nov 2024 19:55:38 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4865,7 +5021,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4882,16 +5038,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -4903,18 +5054,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:22:41 GMT + - Thu, 07 Nov 2024 19:55:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4932,7 +5085,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4949,16 +5102,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -4970,18 +5118,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:22:56 GMT + - Thu, 07 Nov 2024 19:56:08 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4999,7 +5149,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5016,16 +5166,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5037,18 +5182,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:23:11 GMT + - Thu, 07 Nov 2024 19:56:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5066,7 +5213,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5083,16 +5230,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5104,18 +5246,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:23:26 GMT + - Thu, 07 Nov 2024 19:56:38 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5133,7 +5277,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5150,16 +5294,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5171,18 +5310,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:23:41 GMT + - Thu, 07 Nov 2024 19:56:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5200,7 +5341,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5217,16 +5358,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5238,18 +5374,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:23:56 GMT + - Thu, 07 Nov 2024 19:57:08 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5267,7 +5405,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5284,16 +5422,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5305,18 +5438,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:24:11 GMT + - Thu, 07 Nov 2024 19:57:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5334,7 +5469,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5351,16 +5486,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5372,18 +5502,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:24:26 GMT + - Thu, 07 Nov 2024 19:57:38 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5401,7 +5533,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5418,16 +5550,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5439,18 +5566,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:24:41 GMT + - Thu, 07 Nov 2024 19:57:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5468,7 +5597,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5485,16 +5614,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5506,18 +5630,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:24:56 GMT + - Thu, 07 Nov 2024 19:58:08 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5535,7 +5661,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5552,16 +5678,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5573,18 +5694,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:25:11 GMT + - Thu, 07 Nov 2024 19:58:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5602,7 +5725,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5619,16 +5742,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5640,18 +5758,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:25:26 GMT + - Thu, 07 Nov 2024 19:58:38 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5669,7 +5789,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5686,16 +5806,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5707,18 +5822,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:25:41 GMT + - Thu, 07 Nov 2024 19:58:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5736,7 +5853,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5753,16 +5870,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5774,18 +5886,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:25:56 GMT + - Thu, 07 Nov 2024 19:59:08 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5803,7 +5917,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5820,16 +5934,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5841,18 +5950,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:26:11 GMT + - Thu, 07 Nov 2024 19:59:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5870,7 +5981,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5887,16 +5998,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5908,18 +6014,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:26:26 GMT + - Thu, 07 Nov 2024 19:59:38 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5937,7 +6045,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5954,16 +6062,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5975,18 +6078,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:26:41 GMT + - Thu, 07 Nov 2024 19:59:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6004,7 +6109,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6021,16 +6126,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6042,18 +6142,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:26:56 GMT + - Thu, 07 Nov 2024 20:00:08 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6071,7 +6173,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6088,16 +6190,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6109,18 +6206,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:27:11 GMT + - Thu, 07 Nov 2024 20:00:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6138,7 +6237,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6155,16 +6254,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6176,18 +6270,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:27:26 GMT + - Thu, 07 Nov 2024 20:00:38 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6205,7 +6301,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6222,16 +6318,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6243,18 +6334,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:27:41 GMT + - Thu, 07 Nov 2024 20:00:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6272,7 +6365,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6289,16 +6382,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6310,18 +6398,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:27:56 GMT + - Thu, 07 Nov 2024 20:01:08 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6339,7 +6429,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6356,16 +6446,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6377,18 +6462,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:28:11 GMT + - Thu, 07 Nov 2024 20:01:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6406,7 +6493,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6423,16 +6510,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6444,18 +6526,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:28:26 GMT + - Thu, 07 Nov 2024 20:01:38 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6473,7 +6557,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6490,16 +6574,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6511,18 +6590,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:28:41 GMT + - Thu, 07 Nov 2024 20:01:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6540,7 +6621,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6557,16 +6638,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6578,18 +6654,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:28:56 GMT + - Thu, 07 Nov 2024 20:02:08 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6607,7 +6685,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6624,16 +6702,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6645,18 +6718,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:29:11 GMT + - Thu, 07 Nov 2024 20:02:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6674,7 +6749,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6691,16 +6766,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6712,18 +6782,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:29:26 GMT + - Thu, 07 Nov 2024 20:02:38 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6741,7 +6813,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6758,16 +6830,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6779,18 +6846,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:29:41 GMT + - Thu, 07 Nov 2024 20:02:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6808,7 +6877,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6825,16 +6894,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6846,18 +6910,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:29:56 GMT + - Thu, 07 Nov 2024 20:03:08 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6875,7 +6941,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6892,16 +6958,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6913,18 +6974,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:30:11 GMT + - Thu, 07 Nov 2024 20:03:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6942,7 +7005,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6959,16 +7022,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6980,18 +7038,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:30:26 GMT + - Thu, 07 Nov 2024 20:03:38 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7009,7 +7069,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7026,16 +7086,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -7047,18 +7102,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:30:41 GMT + - Thu, 07 Nov 2024 20:03:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7076,7 +7133,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7093,16 +7150,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -7114,18 +7166,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:30:56 GMT + - Thu, 07 Nov 2024 20:04:08 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7143,7 +7197,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7160,16 +7214,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -7181,18 +7230,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:31:11 GMT + - Thu, 07 Nov 2024 20:04:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7210,7 +7261,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7227,16 +7278,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -7248,18 +7294,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:31:26 GMT + - Thu, 07 Nov 2024 20:04:38 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7277,7 +7325,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7294,16 +7342,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -7315,18 +7358,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:31:41 GMT + - Thu, 07 Nov 2024 20:04:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7344,7 +7389,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7361,16 +7406,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -7382,18 +7422,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:31:56 GMT + - Thu, 07 Nov 2024 20:05:08 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7411,7 +7453,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7428,16 +7470,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -7449,18 +7486,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:32:11 GMT + - Thu, 07 Nov 2024 20:05:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7478,7 +7517,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7495,16 +7534,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -7516,18 +7550,20 @@ interactions: - '*' 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: - - "469" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 13:32:26 GMT + - Thu, 07 Nov 2024 20:05:38 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7545,7 +7581,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7562,19011 +7598,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:32:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:32:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:33:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:33:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:33:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:33:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:34:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:34:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:34:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:34:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:35:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:35:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:35:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:35:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:36:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:36:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:36:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:36:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:37:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:37:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:37:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:37:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:38:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:38:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:38:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:38:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:39:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:39:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:39:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:39:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:40:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:40:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:40:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:40:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:41:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:41:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:41:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:41:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:42:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:42:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:42:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:42:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:43:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:43:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:43:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:43:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:44:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:44:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:44:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:44:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:45:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:45:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:45:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:45:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:46:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:46:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:46:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:46:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:47:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:47:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:47:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:47:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:48:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:48:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:48:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:48:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:49:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:49:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:49:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:49:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:50:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:50:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:50:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:50:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:51:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:51:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:51:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:51:56 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "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-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - 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, 03 Jul 2024 13:52:11 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-07-03T13:05:41"},"entity.id":137649,"entity.type":"database","id":{"+gte":765226604}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765226604, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": 100, "time_remaining": null, "rate": null, - "duration": 2660, "action": "database_create", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "finished", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "464" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:52:26 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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?page=1 - method: GET - response: - body: '{"data": [{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "active", "port": 3306, "encrypted": false, "allow_list": ["203.0.113.1", - "192.0.1.0/24"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {"194.195.117.71": "failover", "192.46.209.77": - "failover", "194.195.118.252": "primary"}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "weekly", "duration": 3, "hour_of_day": - 0, "day_of_week": 6, "week_of_month": null}}], "page": 1, "pages": 1, "results": - 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "851" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:52: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g", "type": "g6-nanode-1", - "engine": "mysql", "version": "8.0.30", "region": "ap-west", "status": "active", - "port": 3306, "encrypted": false, "allow_list": ["203.0.113.1", "192.0.1.0/24"], - "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {"194.195.117.71": "failover", "192.46.209.77": - "failover", "194.195.118.252": "primary"}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "weekly", "duration": 3, "hour_of_day": - 0, "day_of_week": 6, "week_of_month": null}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "802" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:52: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: - - "400" - X-Xss-Protection: - - 1; mode=block - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"label":"go-mysql-test-defi8q3a5p4b65g-updated","allow_list":["128.173.205.21","123.177.200.20"],"updates":{"day_of_week":3,"duration":1,"frequency":"monthly","hour_of_day":8,"week_of_month":3}}' - 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/137649 - method: PUT - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:52:30 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: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database"}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:52:45 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:53: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:53:15 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:53:30 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:53:45 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:54: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:54:15 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:54:30 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:54:45 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:55: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:55:15 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:55:30 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:55:45 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:56: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:56:15 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:56:30 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:56:45 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:57: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:57:15 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:57:30 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:57:45 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:58: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:58:15 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:58:30 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:58:45 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:59:01 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:59:15 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:59:30 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 13:59:45 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:00: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:00:15 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:00:30 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:00:45 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:01: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:01:15 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:01:30 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:01:45 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:02: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:02:15 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:02:30 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:02:45 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:03: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:03:15 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:03:30 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:03:45 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:04: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:04:15 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:04:30 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:04:45 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:05: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:05:15 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:05:30 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:05:45 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:06: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:06:15 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:06:30 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:06:45 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:07: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:07:15 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:07:30 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:07:45 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:08: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":137649,"entity.type":"database","id":{"+gte":765269360}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 765269360, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": 100, "time_remaining": null, "rate": null, - "duration": 70, "action": "database_update", "username": "ErikZilber", "entity": - {"label": "go-mysql-test-defi8q3a5p4b65g-updated", "id": 137649, "type": "database", - "url": "/v4/databases/mysql/instances/137649"}, "status": "finished", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "470" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:08:15 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "active", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {"194.195.117.71": "failover", "192.46.209.77": - "failover", "194.195.118.252": "primary"}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "813" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:08:31 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: - - "400" - 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/137649/ssl - method: GET - response: - body: '{"ca_certificate": null}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "24" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:08:31 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: - - "400" - 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/137649/credentials - method: GET - response: - body: '{"username": "linroot", "password": "C9AU.WILGyp0uPQM"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "55" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:08:32 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: - - "400" - 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/137649/credentials/reset - 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 - 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, 03 Jul 2024 14:13:35 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: - - "400" - 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/137649/credentials - method: GET - response: - body: '{"username": "linroot", "password": "9DD_bma2yXwirZyq"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "55" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:13:52 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: - - "400" - 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/137649/patch - 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 - 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, 03 Jul 2024 14:13:53 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:14: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:14: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:14: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:14: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:15:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:15: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:15: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:15: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:16:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:16: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:16: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:16: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:17:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:17: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:17: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:17: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:18:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:18: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:18: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:18: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:19:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:19: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:19: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:19: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:20:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:20: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:20: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:20: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:21:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:21: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:21: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:21: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:22:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:22: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:22: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:22: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:23:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:23: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:23: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:23: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:24:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:24: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:24: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:24: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:25:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:25: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:25: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:25: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:26:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:26: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:26: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:26: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:27:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:27: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 2, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:27: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:27: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:28:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:28: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:28: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:28: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:29:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:29: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:29: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:29: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:30:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:30: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:30: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:30: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:31:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:31: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:31: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:31: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:32:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:32: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:32: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:32: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:33:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:33: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:33: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:33: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:34:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:34: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:34: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:34: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:35:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:35: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:35: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:35: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:36:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:36: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:36: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:36: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:37:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:37: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:37: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:37: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:38:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:38: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:38: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:38: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:39:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:39: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:39: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:39: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:40:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:40: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:40: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:40: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:41:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:41: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:41: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:41: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:42:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:42: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:42: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:42: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:43:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:43: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:43: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:43: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:44:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:44: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:44: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:44: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:45:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:45: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:45: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:45: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:46:09 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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "727" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Wed, 03 Jul 2024 14:46: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: - - "400" - 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/137649 - method: GET - response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -26578,18 +7614,20 @@ interactions: - '*' 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: - - "727" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:46:39 GMT + - Thu, 07 Nov 2024 20:05:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -26598,7 +7636,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -26607,7 +7645,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -26623,18 +7661,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -26646,18 +7678,20 @@ interactions: - '*' 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: - - "727" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:46:54 GMT + - Thu, 07 Nov 2024 20:06:08 GMT Pragma: - no-cache Strict-Transport-Security: @@ -26666,7 +7700,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -26675,7 +7709,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -26691,18 +7725,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -26714,18 +7742,20 @@ interactions: - '*' 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: - - "727" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:47:09 GMT + - Thu, 07 Nov 2024 20:06:26 GMT Pragma: - no-cache Strict-Transport-Security: @@ -26734,7 +7764,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -26743,7 +7773,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -26759,18 +7789,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -26782,18 +7806,20 @@ interactions: - '*' 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: - - "727" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:47:24 GMT + - Thu, 07 Nov 2024 20:06:38 GMT Pragma: - no-cache Strict-Transport-Security: @@ -26802,7 +7828,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -26811,7 +7837,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -26827,18 +7853,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -26850,18 +7870,20 @@ interactions: - '*' 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: - - "727" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:47:39 GMT + - Thu, 07 Nov 2024 20:06:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -26870,7 +7892,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -26879,7 +7901,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -26895,18 +7917,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -26918,18 +7934,20 @@ interactions: - '*' 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: - - "727" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:47:54 GMT + - Thu, 07 Nov 2024 20:07:08 GMT Pragma: - no-cache Strict-Transport-Security: @@ -26938,7 +7956,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -26947,7 +7965,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -26963,18 +7981,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -26986,18 +7998,20 @@ interactions: - '*' 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: - - "727" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:48:09 GMT + - Thu, 07 Nov 2024 20:07:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27006,7 +8020,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -27015,7 +8029,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -27031,18 +8045,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -27054,18 +8062,20 @@ interactions: - '*' 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: - - "727" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:48:24 GMT + - Thu, 07 Nov 2024 20:07:38 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27074,7 +8084,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -27083,7 +8093,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -27099,18 +8109,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -27122,18 +8126,20 @@ interactions: - '*' 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: - - "727" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:48:39 GMT + - Thu, 07 Nov 2024 20:07:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27142,7 +8148,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -27151,7 +8157,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -27167,18 +8173,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -27190,18 +8190,20 @@ interactions: - '*' 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: - - "727" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:48:54 GMT + - Thu, 07 Nov 2024 20:08:08 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27210,7 +8212,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -27219,7 +8221,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -27235,18 +8237,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -27258,18 +8254,20 @@ interactions: - '*' 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: - - "727" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:49:09 GMT + - Thu, 07 Nov 2024 20:08:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27278,7 +8276,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -27287,7 +8285,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -27303,18 +8301,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -27326,18 +8318,20 @@ interactions: - '*' 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: - - "727" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:49:24 GMT + - Thu, 07 Nov 2024 20:08:38 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27346,7 +8340,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -27355,7 +8349,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -27371,18 +8365,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -27394,18 +8382,20 @@ interactions: - '*' 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: - - "727" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:49:39 GMT + - Thu, 07 Nov 2024 20:08:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27414,7 +8404,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -27423,7 +8413,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -27439,18 +8429,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "updating", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -27462,18 +8446,20 @@ interactions: - '*' 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: - - "727" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:49:54 GMT + - Thu, 07 Nov 2024 20:09:08 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27482,7 +8468,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -27491,7 +8477,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -27507,19 +8493,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "active", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {"194.195.117.71": "failover", "192.46.209.77": - "failover", "194.195.118.252": "primary"}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -27531,18 +8510,20 @@ interactions: - '*' 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: - - "812" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:50:09 GMT + - Thu, 07 Nov 2024 20:09:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27551,7 +8532,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -27560,14 +8541,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: '{"label":"mysqlbackupforlinodego","target":"primary"}' + body: "" form: {} headers: Accept: @@ -27576,10 +8557,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649/backups - method: POST + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 + method: GET response: - body: '{}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -27591,26 +8574,29 @@ interactions: - '*' 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" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:50:12 GMT + - Thu, 07 Nov 2024 20:09: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 + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -27619,7 +8605,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -27635,7 +8621,9 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649/backups?page=1 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: body: '{"data": [], "page": 1, "pages": 1, "results": 0}' @@ -27650,6 +8638,8 @@ interactions: - '*' 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: @@ -27661,7 +8651,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:50:28 GMT + - Thu, 07 Nov 2024 20:09:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27670,7 +8660,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_write + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -27679,7 +8669,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -27695,7 +8685,9 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649/backups?page=1 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: body: '{"data": [], "page": 1, "pages": 1, "results": 0}' @@ -27710,6 +8702,8 @@ interactions: - '*' 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: @@ -27721,7 +8715,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:50:43 GMT + - Thu, 07 Nov 2024 20:10:08 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27730,7 +8724,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_write + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -27739,7 +8733,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -27755,7 +8749,9 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649/backups?page=1 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: body: '{"data": [], "page": 1, "pages": 1, "results": 0}' @@ -27770,6 +8766,8 @@ interactions: - '*' 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: @@ -27781,7 +8779,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:50:58 GMT + - Thu, 07 Nov 2024 20:10:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27790,7 +8788,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_write + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -27799,7 +8797,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -27815,7 +8813,9 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649/backups?page=1 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: body: '{"data": [], "page": 1, "pages": 1, "results": 0}' @@ -27830,6 +8830,8 @@ interactions: - '*' 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: @@ -27841,7 +8843,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:51:13 GMT + - Thu, 07 Nov 2024 20:10:38 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27850,7 +8852,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_write + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -27859,7 +8861,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -27875,7 +8877,9 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649/backups?page=1 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: body: '{"data": [], "page": 1, "pages": 1, "results": 0}' @@ -27890,6 +8894,8 @@ interactions: - '*' 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: @@ -27901,7 +8907,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:51:28 GMT + - Thu, 07 Nov 2024 20:10:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27910,7 +8916,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_write + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -27919,7 +8925,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -27935,7 +8941,9 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649/backups?page=1 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: body: '{"data": [], "page": 1, "pages": 1, "results": 0}' @@ -27950,6 +8958,8 @@ interactions: - '*' 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: @@ -27961,7 +8971,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:51:43 GMT + - Thu, 07 Nov 2024 20:11:08 GMT Pragma: - no-cache Strict-Transport-Security: @@ -27970,7 +8980,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_write + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -27979,7 +8989,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -27995,7 +9005,9 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649/backups?page=1 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: body: '{"data": [], "page": 1, "pages": 1, "results": 0}' @@ -28010,6 +9022,8 @@ interactions: - '*' 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: @@ -28021,7 +9035,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:51:58 GMT + - Thu, 07 Nov 2024 20:11:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -28030,7 +9044,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_write + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -28039,7 +9053,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -28055,11 +9069,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649/backups?page=1 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 1441811, "type": "snapshot", "label": "mysqlbackupforlinodego", - "created": "2018-01-02T03:04:05"}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -28071,18 +9086,20 @@ interactions: - '*' 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: - - "153" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:52:13 GMT + - Thu, 07 Nov 2024 20:11:38 GMT Pragma: - no-cache Strict-Transport-Security: @@ -28091,7 +9108,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_write + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -28100,7 +9117,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -28116,11 +9133,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649/backups/1441811 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 1441811, "type": "snapshot", "label": "mysqlbackupforlinodego", - "created": "2018-01-02T03:04:05"}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -28132,18 +9150,20 @@ interactions: - '*' 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: - - "104" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:52:14 GMT + - Thu, 07 Nov 2024 20:11:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -28152,7 +9172,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_write + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -28161,7 +9181,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -28177,18 +9197,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "backing_up", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -28200,18 +9214,20 @@ interactions: - '*' 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: - - "729" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:52:29 GMT + - Thu, 07 Nov 2024 20:12:08 GMT Pragma: - no-cache Strict-Transport-Security: @@ -28220,7 +9236,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -28229,7 +9245,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -28245,18 +9261,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "backing_up", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -28268,18 +9278,20 @@ interactions: - '*' 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: - - "729" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:52:44 GMT + - Thu, 07 Nov 2024 20:12:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -28288,7 +9300,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -28297,7 +9309,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -28313,18 +9325,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "backing_up", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -28336,18 +9342,20 @@ interactions: - '*' 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: - - "729" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:52:59 GMT + - Thu, 07 Nov 2024 20:12:38 GMT Pragma: - no-cache Strict-Transport-Security: @@ -28356,7 +9364,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -28365,7 +9373,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -28381,18 +9389,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "backing_up", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -28404,18 +9406,20 @@ interactions: - '*' 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: - - "729" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:53:14 GMT + - Thu, 07 Nov 2024 20:12:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -28424,7 +9428,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -28433,7 +9437,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -28449,18 +9453,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "backing_up", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -28472,18 +9470,20 @@ interactions: - '*' 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: - - "729" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:53:29 GMT + - Thu, 07 Nov 2024 20:13:08 GMT Pragma: - no-cache Strict-Transport-Security: @@ -28492,7 +9492,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -28501,7 +9501,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -28517,18 +9517,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "backing_up", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -28540,18 +9534,20 @@ interactions: - '*' 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: - - "729" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:53:44 GMT + - Thu, 07 Nov 2024 20:13:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -28560,7 +9556,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -28569,7 +9565,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -28585,18 +9581,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "backing_up", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -28608,18 +9598,20 @@ interactions: - '*' 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: - - "729" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:53:59 GMT + - Thu, 07 Nov 2024 20:13:38 GMT Pragma: - no-cache Strict-Transport-Security: @@ -28628,7 +9620,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -28637,7 +9629,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -28653,18 +9645,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "backing_up", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -28676,18 +9662,20 @@ interactions: - '*' 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: - - "729" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:54:14 GMT + - Thu, 07 Nov 2024 20:13:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -28696,7 +9684,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -28705,7 +9693,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -28721,18 +9709,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "backing_up", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -28744,18 +9726,20 @@ interactions: - '*' 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: - - "729" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:54:29 GMT + - Thu, 07 Nov 2024 20:14:08 GMT Pragma: - no-cache Strict-Transport-Security: @@ -28764,7 +9748,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -28773,7 +9757,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -28789,18 +9773,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "backing_up", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -28812,18 +9790,20 @@ interactions: - '*' 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: - - "729" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:54:45 GMT + - Thu, 07 Nov 2024 20:14:23 GMT Pragma: - no-cache Strict-Transport-Security: @@ -28832,7 +9812,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -28841,7 +9821,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -28857,18 +9837,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "backing_up", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -28880,18 +9854,20 @@ interactions: - '*' 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: - - "729" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:54:59 GMT + - Thu, 07 Nov 2024 20:14:38 GMT Pragma: - no-cache Strict-Transport-Security: @@ -28900,7 +9876,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -28909,7 +9885,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -28925,18 +9901,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "backing_up", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -28948,18 +9918,20 @@ interactions: - '*' 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: - - "729" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:55:14 GMT + - Thu, 07 Nov 2024 20:14:53 GMT Pragma: - no-cache Strict-Transport-Security: @@ -28968,7 +9940,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -28977,7 +9949,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -28993,19 +9965,12 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + X-Filter: + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188785,"entity.type":"database"}' + url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"id": 137649, "label": "go-mysql-test-defi8q3a5p4b65g-updated", "type": - "g6-nanode-1", "engine": "mysql", "version": "8.0.30", "region": "ap-west", - "status": "active", "port": 3306, "encrypted": false, "allow_list": ["128.173.205.21", - "123.177.200.20"], "cluster_size": 3, "hosts": {"primary": "lin-137649-17472-mysql-primary.servers.linodedb.net", - "secondary": "lin-137649-17472-mysql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {"194.195.117.71": "failover", "192.46.209.77": - "failover", "194.195.118.252": "primary"}, "ssl_connection": false, "replication_type": - "semi_synch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -29017,18 +9982,20 @@ interactions: - '*' 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: - - "812" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:55:29 GMT + - Thu, 07 Nov 2024 20:15:08 GMT Pragma: - no-cache Strict-Transport-Security: @@ -29037,7 +10004,7 @@ interactions: - Authorization, X-Filter - Authorization, X-Filter X-Accepted-Oauth-Scopes: - - databases:read_only + - events:read_only X-Content-Type-Options: - nosniff X-Frame-Options: @@ -29046,7 +10013,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -29062,7 +10029,7 @@ interactions: - application/json User-Agent: - linodego/dev https://github.com/linode/linodego - url: https://api.linode.com/v4beta/databases/mysql/instances/137649 + url: https://api.linode.com/v4beta/databases/mysql/instances/188785 method: DELETE response: body: '{}' @@ -29077,6 +10044,8 @@ interactions: - '*' 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: @@ -29088,7 +10057,7 @@ interactions: Content-Type: - application/json Expires: - - Wed, 03 Jul 2024 14:55:47 GMT + - Thu, 07 Nov 2024 20:15:42 GMT Pragma: - no-cache Strict-Transport-Security: @@ -29105,7 +10074,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK diff --git a/test/integration/fixtures/TestDatabase_Postgres_Suite.yaml b/test/integration/fixtures/TestDatabase_Postgres_Suite.yaml index 793283514..6495b8bc5 100644 --- a/test/integration/fixtures/TestDatabase_Postgres_Suite.yaml +++ b/test/integration/fixtures/TestDatabase_Postgres_Suite.yaml @@ -17,241 +17,277 @@ interactions: body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", - "Metadata"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, 172.105.35.5, - 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, 172.105.41.5, - 172.105.42.5, 172.105.43.5", "ipv6": "1234::5678, 1234::5678, + "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.105.34.5, + 172.105.35.5, 172.105.36.5, 172.105.37.5, 172.105.38.5, 172.105.39.5, 172.105.40.5, + 172.105.41.5, 172.105.42.5, 172.105.43.5", "ipv6": "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": 100, "maximum_linodes_per_pg": 5}, "site_type": - "core"}, {"id": "ca-central", "label": "Toronto, CA", "country": "ca", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud - Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], - "status": "ok", "resolvers": {"ipv4": "172.105.0.5, 172.105.3.5, 172.105.4.5, - 172.105.5.5, 172.105.6.5, 172.105.7.5, 172.105.8.5, 172.105.9.5, 172.105.10.5, - 172.105.11.5", "ipv6": "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": "ca-central", "label": "Toronto, CA", "country": + "ca", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed + Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": + "172.105.0.5, 172.105.3.5, 172.105.4.5, 172.105.5.5, 172.105.6.5, 172.105.7.5, + 172.105.8.5, 172.105.9.5, 172.105.10.5, 172.105.11.5", "ipv6": "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": 100, "maximum_linodes_per_pg": 5}, "site_type": - "core"}, {"id": "ap-southeast", "label": "Sydney, AU", "country": "au", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud - Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], - "status": "ok", "resolvers": {"ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5, - 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, - 172.105.161.5", "ipv6": "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-southeast", "label": "Sydney, AU", "country": + "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed + Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": + "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5, + 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5", + "ipv6": "1234::5678, 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": 100, "maximum_linodes_per_pg": 5}, "site_type": - "core"}, {"id": "us-iad", "label": "Washington, DC", "country": "us", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", - "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium - Plans"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, 139.144.192.60, - 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, 139.144.192.69, - 139.144.192.66, 139.144.192.52, 139.144.192.68", "ipv6": "1234::5678, + 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": + null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-iad", "label": + "Washington, DC", "country": "us", "capabilities": ["Linodes", "Block Storage + Encryption", "Backups", "NodeBalancers", "Block Storage", "Object Storage", + "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", + "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "139.144.192.62, + 139.144.192.60, 139.144.192.61, 139.144.192.53, 139.144.192.54, 139.144.192.67, + 139.144.192.69, 139.144.192.66, 139.144.192.52, 139.144.192.68", "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": 100, "maximum_linodes_per_pg": + "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-ord", "label": "Chicago, IL", "country": - "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", - "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", - "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status": - "ok", "resolvers": {"ipv4": "172.232.0.17, 172.232.0.16, 172.232.0.21, 172.232.0.13, - 172.232.0.22, 172.232.0.9, 172.232.0.19, 172.232.0.20, 172.232.0.15, 172.232.0.18", - "ipv6": "1234::5678, 1234::5678, 1234::5678, + "us", "capabilities": ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", + "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement + Group"], "status": "ok", "resolvers": {"ipv4": "172.232.0.17, 172.232.0.16, + 172.232.0.21, 172.232.0.13, 172.232.0.22, 172.232.0.9, 172.232.0.19, 172.232.0.20, + 172.232.0.15, 172.232.0.18", "ipv6": "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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "fr-par", "label": - "Paris, FR", "country": "fr", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium Plans"], "status": + 1234::5678, 1234::5678"}, "placement_group_limits": + {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "fr-par", "label": "Paris, FR", "country": "fr", "capabilities": + ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", + "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.32.21, 172.232.32.23, 172.232.32.17, 172.232.32.18, 172.232.32.16, 172.232.32.22, 172.232.32.20, 172.232.32.14, 172.232.32.11, 172.232.32.12", "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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label": - "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": - {"ipv4": "172.232.160.19, 172.232.160.21, 172.232.160.17, 172.232.160.15, 172.232.160.18, - 172.232.160.8, 172.232.160.12, 172.232.160.11, 172.232.160.14, 172.232.160.16", - "ipv6": "1234::5678, 1234::5678, 1234::5678, + null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-sea", "label": + "Seattle, WA", "country": "us", "capabilities": ["Linodes", "Block Storage Encryption", + "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes", + "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", + "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.160.19, 172.232.160.21, + 172.232.160.17, 172.232.160.15, 172.232.160.18, 172.232.160.8, 172.232.160.12, + 172.232.160.11, 172.232.160.14, 172.232.160.16", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, - 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "br-gru", "label": - "Sao Paulo, BR", "country": "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", - "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": - "172.233.0.4, 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, - 172.233.0.10, 172.233.0.6, 172.233.0.8, 172.233.0.11", "ipv6": "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": "br-gru", "label": "Sao Paulo, BR", "country": + "br", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.0.4, + 172.233.0.9, 172.233.0.7, 172.233.0.12, 172.233.0.5, 172.233.0.13, 172.233.0.10, + 172.233.0.6, 172.233.0.8, 172.233.0.11", "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": 100, "maximum_linodes_per_pg": + "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "nl-ams", "label": "Amsterdam, NL", "country": - "nl", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", - "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", - "Premium Plans"], "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38, - 172.233.33.35, 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30, - 172.233.33.37, 172.233.33.32", "ipv6": "1234::5678, 1234::5678, + "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], + "status": "ok", "resolvers": {"ipv4": "172.233.33.36, 172.233.33.38, 172.233.33.35, + 172.233.33.39, 172.233.33.34, 172.233.33.33, 172.233.33.31, 172.233.33.30, 172.233.33.37, + 172.233.33.32", "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": 100, "maximum_linodes_per_pg": 5}, "site_type": + {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "se-sto", "label": "Stockholm, SE", "country": "se", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", - "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", + ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed + Databases", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.232.128.24, 172.232.128.26, 172.232.128.20, 172.232.128.22, 172.232.128.25, 172.232.128.19, 172.232.128.23, 172.232.128.18, 172.232.128.21, 172.232.128.27", "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": 100, "maximum_linodes_per_pg": 5}, "site_type": + {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "es-mad", "label": "Madrid, ES", "country": "es", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", - "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", - "resolvers": {"ipv4": "172.233.111.6, 172.233.111.17, 172.233.111.21, 172.233.111.25, - 172.233.111.19, 172.233.111.12, 172.233.111.26, 172.233.111.16, 172.233.111.18, - 172.233.111.9", "ipv6": "1234::5678, 1234::5678, + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group"], + "status": "ok", "resolvers": {"ipv4": "172.233.111.6,172.233.111.17,172.233.111.21,172.233.111.25,172.233.111.19,172.233.111.12,172.233.111.26,172.233.111.16,172.233.111.18,172.233.111.9", + "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": "in-maa", "label": "Chennai, IN", "country": + "in", "capabilities": ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", + "VPCs", "Managed Databases", "Metadata", "Premium Plans", "Placement Group"], + "status": "ok", "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, + 172.232.96.20, 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, + 172.232.96.24", "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": 100, "maximum_linodes_per_pg": 5}, "site_type": - "core"}, {"id": "in-maa", "label": "Chennai, IN", "country": "in", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", - "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", - "resolvers": {"ipv4": "172.232.96.17, 172.232.96.26, 172.232.96.19, 172.232.96.20, - 172.232.96.25, 172.232.96.21, 172.232.96.18, 172.232.96.22, 172.232.96.23, 172.232.96.24", - "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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "jp-osa", "label": - "Osaka, JP", "country": "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": + {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": + "core"}, {"id": "jp-osa", "label": "Osaka, JP", "country": "jp", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU + Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", + "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.64.44, 172.233.64.43, 172.233.64.37, 172.233.64.40, 172.233.64.46, 172.233.64.41, 172.233.64.39, 172.233.64.42, 172.233.64.45, 172.233.64.38", "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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label": + null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "it-mil", "label": "Milan, IT", "country": "it", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", - "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": - "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24, + "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": + {"ipv4": "172.232.192.19, 172.232.192.18, 172.232.192.16, 172.232.192.20, 172.232.192.24, 172.232.192.21, 172.232.192.22, 172.232.192.17, 172.232.192.15, 172.232.192.23", "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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label": - "Miami, FL", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", - "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": - {"ipv4": "172.233.160.34, 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32, - 172.233.160.28, 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31", - "ipv6": "1234::5678, 1234::5678, 1234::5678, + null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-mia", "label": + "Miami, FL", "country": "us", "capabilities": ["Linodes", "Block Storage Encryption", + "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", + "Cloud Firewall", "Vlans", "VPCs", "Managed Databases", "Metadata", "Premium + Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.160.34, + 172.233.160.27, 172.233.160.30, 172.233.160.29, 172.233.160.32, 172.233.160.28, + 172.233.160.33, 172.233.160.26, 172.233.160.25, 172.233.160.31", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, - 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "id-cgk", "label": - "Jakarta, ID", "country": "id", "capabilities": ["Linodes", "Backups", "NodeBalancers", + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "id-cgk", "label": "Jakarta, ID", "country": + "id", "capabilities": ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", - "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": - "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21, + "VPCs", "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": + {"ipv4": "172.232.224.23, 172.232.224.32, 172.232.224.26, 172.232.224.27, 172.232.224.21, 172.232.224.24, 172.232.224.22, 172.232.224.20, 172.232.224.31, 172.232.224.28", "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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label": - "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "Kubernetes", "Cloud Firewall", "Vlans", - "VPCs", "Metadata", "Premium Plans"], "status": "ok", "resolvers": {"ipv4": - "172.233.128.45, 172.233.128.38, 172.233.128.53, 172.233.128.37, 172.233.128.34, - 172.233.128.36, 172.233.128.33, 172.233.128.39, 172.233.128.43, 172.233.128.44", - "ipv6": "1234::5678, 1234::5678, 1234::5678, + null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-lax", "label": + "Los Angeles, CA", "country": "us", "capabilities": ["Linodes", "Block Storage + Encryption", "Backups", "NodeBalancers", "Block Storage", "Object Storage", + "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", + "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.233.128.45, 172.233.128.38, + 172.233.128.53, 172.233.128.37, 172.233.128.34, 172.233.128.36, 172.233.128.33, + 172.233.128.39, 172.233.128.43, 172.233.128.44", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, - 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-central", - "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups", - "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block - Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": - {"ipv4": "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5, - 96.126.124.5, 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.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": 100, "maximum_linodes_per_pg": 5}, "site_type": - "core"}, {"id": "us-west", "label": "Fremont, CA", "country": "us", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud - Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], - "status": "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5, - 173.255.212.5, 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5, - 74.207.242.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": 100, "maximum_linodes_per_pg": - 5}, "site_type": "core"}, {"id": "us-southeast", "label": "Atlanta, GA", "country": + 1234::5678, 1234::5678, 1234::5678"}, + "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": + 5}, "site_type": "core"}, {"id": "gb-lon", "label": "London 2, UK", "country": + "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", + "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.236.0.46,172.236.0.50,172.236.0.47,172.236.0.53,172.236.0.52,172.236.0.45,172.236.0.49,172.236.0.51,172.236.0.54,172.236.0.48", + "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": "au-mel", "label": "Melbourne, AU", "country": + "au", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", + "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.236.32.23,172.236.32.35,172.236.32.30,172.236.32.28,172.236.32.32,172.236.32.33,172.236.32.27,172.236.32.37,172.236.32.29,172.236.32.34", + "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": "in-bom-2", "label": "Mumbai 2, IN", "country": + "in", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", "Placement Group"], + "status": "ok", "resolvers": {"ipv4": "172.236.171.41,172.236.171.42,172.236.171.25,172.236.171.44,172.236.171.26,172.236.171.45,172.236.171.24,172.236.171.43,172.236.171.27,172.236.171.28", + "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": "de-fra-2", "label": "Frankfurt 2, DE", "country": + "de", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", + "Premium Plans", "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.236.203.9,172.236.203.16,172.236.203.19,172.236.203.15,172.236.203.17,172.236.203.11,172.236.203.18,172.236.203.14,172.236.203.13,172.236.203.12", + "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": "sg-sin-2", "label": "Singapore 2, SG", "country": + "sg", "capabilities": ["Linodes", "Block Storage Encryption", "Backups", "NodeBalancers", + "Block Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", + "Metadata", "Premium Plans", "Placement Group"], "status": "ok", "resolvers": + {"ipv4": "172.236.129.8,172.236.129.42,172.236.129.41,172.236.129.19,172.236.129.46,172.236.129.23,172.236.129.48,172.236.129.20,172.236.129.21,172.236.129.47", + "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": "jp-tyo-3", "label": "Tokyo 3, JP", "country": + "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Kubernetes", "Cloud Firewall", "Vlans", "VPCs", "Metadata", "Premium Plans", + "Placement Group"], "status": "ok", "resolvers": {"ipv4": "172.237.4.15,172.237.4.19,172.237.4.17,172.237.4.21,172.237.4.16,172.237.4.18,172.237.4.23,172.237.4.24,172.237.4.20,172.237.4.14", + "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": "us-central", "label": "Dallas, TX", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", - "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block - Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": - {"ipv4": "74.207.231.5, 173.230.128.5, 173.230.129.5, 173.230.136.5, 173.230.140.5, - 66.228.59.5, 66.228.62.5, 50.116.35.5, 50.116.41.5, 23.239.18.5", "ipv6": "1234::5678, + "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed + Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": + "72.14.179.5, 72.14.188.5, 173.255.199.5, 66.228.53.5, 96.126.122.5, 96.126.124.5, + 96.126.127.5, 198.58.107.5, 198.58.111.5, 23.239.24.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": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-east", "label": - "Newark, NJ", "country": "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", - "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", - "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], "status": + null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "us-west", + "label": "Fremont, CA", "country": "us", "capabilities": ["Linodes", "Backups", + "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status": + "ok", "resolvers": {"ipv4": "173.230.145.5, 173.230.147.5, 173.230.155.5, 173.255.212.5, + 173.255.219.5, 173.255.241.5, 173.255.243.5, 173.255.244.5, 74.207.241.5, 74.207.242.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": "us-southeast", "label": "Atlanta, GA", "country": "us", "capabilities": + ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU + Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", + "Managed Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": + {"ipv4": "74.207.231.5,173.230.128.5,173.230.129.5,173.230.136.5,173.230.140.5,66.228.59.5,66.228.62.5,50.116.35.5,50.116.41.5,23.239.18.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": "us-east", "label": "Newark, NJ", "country": + "us", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "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": 100, "maximum_linodes_per_pg": 5}, "site_type": + {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west", "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud - Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata"], - "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": 100, "maximum_linodes_per_pg": - 5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country": - "sg", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", - "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block - Storage Migrations", "Managed Databases", "Metadata"], "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": 100, "maximum_linodes_per_pg": 5}, "site_type": - "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country": "de", "capabilities": - ["Linodes", "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU - Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", - "Managed Databases", "Metadata"], "status": "ok", "resolvers": {"ipv4": "139.162.130.5, - 139.162.131.5, 139.162.132.5, 139.162.133.5, 139.162.134.5, 139.162.135.5, 139.162.136.5, - 139.162.137.5, 139.162.138.5, 139.162.139.5", "ipv6": "1234::5678, 1234::5678, + Firewall", "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", + "Placement Group"], "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, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer": - 100, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "ap-northeast", - "label": "Tokyo, JP", "country": "jp", "capabilities": ["Linodes", "Backups", - "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall", "Vlans", "Block - Storage Migrations", "Managed Databases", "Metadata"], "status": "ok", "resolvers": - {"ipv4": "139.162.66.5, 139.162.67.5, 139.162.68.5, 139.162.69.5, 139.162.70.5, - 139.162.71.5, 139.162.72.5, 139.162.73.5, 139.162.74.5, 139.162.75.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": 100, "maximum_linodes_per_pg": 5}, "site_type": - "core"}], "page": 1, "pages": 1, "results": 25}' + 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", "Backups", "NodeBalancers", + "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", + "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement + Group"], "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": + "de", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block + Storage Migrations", "Managed Databases", "Metadata", "Placement Group"], "status": + "ok", "resolvers": {"ipv4": "139.162.130.5,139.162.131.5,139.162.132.5,139.162.133.5,139.162.134.5,139.162.135.5,139.162.136.5,139.162.137.5,139.162.138.5,139.162.139.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-northeast", "label": "Tokyo 2, JP", "country": + "jp", "capabilities": ["Linodes", "Backups", "NodeBalancers", "Block Storage", + "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations", "Managed + Databases", "Metadata", "Placement Group"], "status": "ok", "resolvers": {"ipv4": + "139.162.66.5,139.162.67.5,139.162.68.5,139.162.69.5,139.162.70.5,139.162.71.5,139.162.72.5,139.162.73.5,139.162.74.5,139.162.75.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"}], "page": 1, "pages": 1, "results": 31}' headers: Access-Control-Allow-Credentials: - "true" @@ -263,6 +299,8 @@ interactions: - '*' 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: @@ -272,7 +310,7 @@ interactions: Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:20:02 GMT + - Thu, 07 Nov 2024 16:41:11 GMT Pragma: - no-cache Strict-Transport-Security: @@ -291,14 +329,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: '{"label":"go-postgres-testing-def","region":"ap-west","type":"g6-nanode-1","engine":"postgresql/14.6","allow_list":["203.0.113.1","192.0.1.0/24"],"cluster_size":3,"replication_type":"asynch"}' + body: '{"label":"go-postgres-testing-def82s23d3hd1bh","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: @@ -310,14 +348,14 @@ interactions: url: https://api.linode.com/v4beta/databases/postgresql/instances method: POST response: - body: '{"id": 133403, "label": "go-postgres-testing-def", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "provisioning", - "port": 5432, "encrypted": false, "allow_list": ["203.0.113.1", "192.0.1.0/24"], - "cluster_size": 3, "hosts": {"primary": null, "secondary": null}, "created": - "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - null, "used_disk_size_gb": null, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "weekly", "duration": 3, "hour_of_day": 0, - "day_of_week": null, "week_of_month": null}, "replication_commit_type": "local"}' + 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": + "a188778-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": "replica-a188778-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 188778, "label": "go-postgres-testing-def82s23d3hd1bh", "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": 7, "duration": 4, "frequency": "weekly", "hour_of_day": + 11, "pending": []}, "used_disk_size_gb": -1, "version": "14", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -329,18 +367,20 @@ interactions: - '*' 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: - - "652" + - "718" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:20:02 GMT + - Thu, 07 Nov 2024 16:41:13 GMT Pragma: - no-cache Strict-Transport-Security: @@ -357,7 +397,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -374,16 +414,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database"}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -395,18 +436,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:20:17 GMT + - Thu, 07 Nov 2024 16:41:28 GMT Pragma: - no-cache Strict-Transport-Security: @@ -424,7 +467,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -441,16 +484,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -462,18 +506,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:20:32 GMT + - Thu, 07 Nov 2024 16:41:43 GMT Pragma: - no-cache Strict-Transport-Security: @@ -491,7 +537,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -508,16 +554,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -529,18 +576,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:20:47 GMT + - Thu, 07 Nov 2024 16:41:58 GMT Pragma: - no-cache Strict-Transport-Security: @@ -558,7 +607,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -575,16 +624,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -596,18 +646,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:21:02 GMT + - Thu, 07 Nov 2024 16:42:14 GMT Pragma: - no-cache Strict-Transport-Security: @@ -625,7 +677,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -642,16 +694,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -663,18 +716,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:21:17 GMT + - Thu, 07 Nov 2024 16:42:28 GMT Pragma: - no-cache Strict-Transport-Security: @@ -692,7 +747,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -709,16 +764,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -730,18 +786,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:21:32 GMT + - Thu, 07 Nov 2024 16:42:43 GMT Pragma: - no-cache Strict-Transport-Security: @@ -759,7 +817,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -776,16 +834,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -797,18 +856,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:21:47 GMT + - Thu, 07 Nov 2024 16:42:58 GMT Pragma: - no-cache Strict-Transport-Security: @@ -826,7 +887,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -843,16 +904,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -864,18 +926,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:22:02 GMT + - Thu, 07 Nov 2024 16:43:13 GMT Pragma: - no-cache Strict-Transport-Security: @@ -893,7 +957,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -910,16 +974,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -931,18 +996,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:22:17 GMT + - Thu, 07 Nov 2024 16:43:28 GMT Pragma: - no-cache Strict-Transport-Security: @@ -960,7 +1027,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -977,16 +1044,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -998,18 +1066,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:22:32 GMT + - Thu, 07 Nov 2024 16:43:44 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1027,7 +1097,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1044,16 +1114,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1065,18 +1136,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:22:47 GMT + - Thu, 07 Nov 2024 16:43:58 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1094,7 +1167,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1111,16 +1184,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1132,18 +1206,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:23:02 GMT + - Thu, 07 Nov 2024 16:44:13 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1161,7 +1237,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1178,16 +1254,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1199,18 +1276,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:23:17 GMT + - Thu, 07 Nov 2024 16:44:28 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1228,7 +1307,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1245,16 +1324,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1266,18 +1346,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:23:32 GMT + - Thu, 07 Nov 2024 16:44:43 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1295,7 +1377,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1312,16 +1394,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1333,18 +1416,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:23:47 GMT + - Thu, 07 Nov 2024 16:44:58 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1362,7 +1447,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1379,16 +1464,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1400,18 +1486,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:24:02 GMT + - Thu, 07 Nov 2024 16:45:13 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1429,7 +1517,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1446,16 +1534,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1467,18 +1556,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:24:17 GMT + - Thu, 07 Nov 2024 16:45:28 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1496,7 +1587,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1513,16 +1604,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1534,18 +1626,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:24:32 GMT + - Thu, 07 Nov 2024 16:45:43 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1563,7 +1657,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1580,16 +1674,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1601,18 +1696,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:24:47 GMT + - Thu, 07 Nov 2024 16:45:58 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1630,7 +1727,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1647,16 +1744,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1668,18 +1766,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:25:02 GMT + - Thu, 07 Nov 2024 16:46:13 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1697,7 +1797,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1714,16 +1814,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1735,18 +1836,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:25:17 GMT + - Thu, 07 Nov 2024 16:46:28 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1764,7 +1867,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1781,16 +1884,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1802,18 +1906,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:25:32 GMT + - Thu, 07 Nov 2024 16:46:43 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1831,7 +1937,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1848,16 +1954,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1869,18 +1976,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:25:47 GMT + - Thu, 07 Nov 2024 16:46:58 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1898,7 +2007,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1915,16 +2024,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -1936,18 +2046,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:26:02 GMT + - Thu, 07 Nov 2024 16:47:13 GMT Pragma: - no-cache Strict-Transport-Security: @@ -1965,7 +2077,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -1982,16 +2094,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2003,18 +2116,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:26:17 GMT + - Thu, 07 Nov 2024 16:47:28 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2032,7 +2147,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2049,16 +2164,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2070,18 +2186,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:26:32 GMT + - Thu, 07 Nov 2024 16:47:43 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2099,7 +2217,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2116,16 +2234,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2137,18 +2256,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:26:47 GMT + - Thu, 07 Nov 2024 16:47:58 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2166,7 +2287,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2183,16 +2304,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2204,18 +2326,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:27:02 GMT + - Thu, 07 Nov 2024 16:48:13 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2233,7 +2357,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2250,16 +2374,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2271,18 +2396,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:27:17 GMT + - Thu, 07 Nov 2024 16:48:28 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2300,7 +2427,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2317,16 +2444,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2338,18 +2466,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:27:32 GMT + - Thu, 07 Nov 2024 16:48:43 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2367,7 +2497,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2384,16 +2514,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2405,18 +2536,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:27:47 GMT + - Thu, 07 Nov 2024 16:48:58 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2434,7 +2567,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2451,16 +2584,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2472,18 +2606,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:28:02 GMT + - Thu, 07 Nov 2024 16:49:13 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2501,7 +2637,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2518,16 +2654,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2539,18 +2676,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:28:17 GMT + - Thu, 07 Nov 2024 16:49:28 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2568,7 +2707,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2585,16 +2724,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2606,18 +2746,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:28:32 GMT + - Thu, 07 Nov 2024 16:49:43 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2635,7 +2777,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2652,16 +2794,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2673,18 +2816,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:28:47 GMT + - Thu, 07 Nov 2024 16:49:58 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2702,7 +2847,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2719,16 +2864,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2740,18 +2886,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:29:02 GMT + - Thu, 07 Nov 2024 16:50:13 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2769,7 +2917,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2786,16 +2934,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2807,18 +2956,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:29:17 GMT + - Thu, 07 Nov 2024 16:50:28 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2836,7 +2987,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2853,16 +3004,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2874,18 +3026,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:29:32 GMT + - Thu, 07 Nov 2024 16:50:43 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2903,7 +3057,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2920,16 +3074,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -2941,18 +3096,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:29:47 GMT + - Thu, 07 Nov 2024 16:50:58 GMT Pragma: - no-cache Strict-Transport-Security: @@ -2970,7 +3127,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -2987,16 +3144,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3008,18 +3166,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:30:02 GMT + - Thu, 07 Nov 2024 16:51:13 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3037,7 +3197,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3054,16 +3214,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3075,18 +3236,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:30:17 GMT + - Thu, 07 Nov 2024 16:51:28 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3104,7 +3267,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3121,16 +3284,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3142,18 +3306,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:30:32 GMT + - Thu, 07 Nov 2024 16:51:43 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3171,7 +3337,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3188,16 +3354,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3209,18 +3376,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:30:47 GMT + - Thu, 07 Nov 2024 16:51:58 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3238,7 +3407,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3255,16 +3424,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3276,18 +3446,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:31:02 GMT + - Thu, 07 Nov 2024 16:52:13 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3305,7 +3477,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3322,16 +3494,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3343,18 +3516,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:31:17 GMT + - Thu, 07 Nov 2024 16:52:28 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3372,7 +3547,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3389,16 +3564,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3410,18 +3586,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:31:32 GMT + - Thu, 07 Nov 2024 16:52:43 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3439,7 +3617,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3456,16 +3634,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3477,18 +3656,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:31:47 GMT + - Thu, 07 Nov 2024 16:52:58 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3506,7 +3687,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3523,16 +3704,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3544,18 +3726,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:32:02 GMT + - Thu, 07 Nov 2024 16:53:13 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3573,7 +3757,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3590,16 +3774,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3611,18 +3796,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:32:17 GMT + - Thu, 07 Nov 2024 16:53:28 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3640,7 +3827,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3657,16 +3844,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3678,18 +3866,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:32:32 GMT + - Thu, 07 Nov 2024 16:53:43 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3707,7 +3897,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3724,16 +3914,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3745,18 +3936,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:32:47 GMT + - Thu, 07 Nov 2024 16:53:58 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3774,7 +3967,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3791,16 +3984,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3812,18 +4006,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:33:02 GMT + - Thu, 07 Nov 2024 16:54:13 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3841,7 +4037,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3858,16 +4054,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3879,18 +4076,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:33:17 GMT + - Thu, 07 Nov 2024 16:54:28 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3908,7 +4107,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3925,16 +4124,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -3946,18 +4146,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:33:32 GMT + - Thu, 07 Nov 2024 16:54:43 GMT Pragma: - no-cache Strict-Transport-Security: @@ -3975,7 +4177,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -3992,16 +4194,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4013,18 +4216,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:33:47 GMT + - Thu, 07 Nov 2024 16:54:58 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4042,7 +4247,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4059,16 +4264,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4080,18 +4286,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:34:02 GMT + - Thu, 07 Nov 2024 16:55:13 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4109,7 +4317,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4126,16 +4334,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4147,18 +4356,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:34:17 GMT + - Thu, 07 Nov 2024 16:55:28 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4176,7 +4387,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4193,16 +4404,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4214,18 +4426,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:34:32 GMT + - Thu, 07 Nov 2024 16:55:43 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4243,7 +4457,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4260,16 +4474,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4281,18 +4496,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:34:47 GMT + - Thu, 07 Nov 2024 16:55:58 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4310,7 +4527,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4327,16 +4544,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4348,18 +4566,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:35:02 GMT + - Thu, 07 Nov 2024 16:56:13 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4377,7 +4597,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4394,16 +4614,17 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + "duration": null, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "notification", + "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": + 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4415,18 +4636,20 @@ interactions: - '*' 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: - - "468" + - "480" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:35:17 GMT + - Thu, 07 Nov 2024 16:56:28 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4444,7 +4667,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4461,15 +4684,15 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-11-07T16:41:10"},"entity.id":188778,"entity.type":"database","id":{"+gte":874386798}}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": + body: '{"data": [{"id": 874386798, "created": "2018-01-02T03:04:05", "seen": false, + "read": false, "percent_complete": 100, "time_remaining": null, "rate": null, + "duration": 713, "action": "database_create", "username": "ErikZilber", "entity": + {"label": "go-postgres-testing-def82s23d3hd1bh", "id": 188778, "type": "database", + "url": "/v4/databases/postgresql/instances/188778"}, "status": "finished", "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: @@ -4482,18 +4705,20 @@ interactions: - '*' 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: - - "468" + - "474" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:35:32 GMT + - Thu, 07 Nov 2024 16:56:43 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4511,7 +4736,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4527,17 +4752,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":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - 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": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "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": "a188778-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a188778-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 188778, "label": "go-postgres-testing-def82s23d3hd1bh", "members": {"172.104.207.132": + "failover", "172.105.47.148": "primary", "172.105.56.28": "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": 7, "duration": 4, "frequency": + "weekly", "hour_of_day": 11, "pending": []}, "used_disk_size_gb": 0, "version": + "14.13", "platform": "rdbms-default"}], "page": 1, "pages": 1, "results": 1}' headers: Access-Control-Allow-Credentials: - "true" @@ -4549,18 +4777,18 @@ interactions: - '*' 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: - - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:35:47 GMT + - Thu, 07 Nov 2024 16:56:45 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4568,8 +4796,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: @@ -4578,7 +4807,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4594,17 +4823,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":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 + url: https://api.linode.com/v4beta/databases/postgresql/instances/188778 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "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": + "a188778-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": "replica-a188778-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 188778, "label": "go-postgres-testing-def82s23d3hd1bh", "members": {"172.104.207.132": + "failover", "172.105.47.148": "primary", "172.105.56.28": "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": 7, "duration": 4, "frequency": + "weekly", "hour_of_day": 11, "pending": []}, "used_disk_size_gb": 0, "version": + "14.13", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -4616,18 +4847,20 @@ interactions: - '*' 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: - - "468" + - "847" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:36:02 GMT + - Thu, 07 Nov 2024 16:56:47 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4636,7 +4869,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: @@ -4645,14 +4878,14 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"label":"go-postgres-testing-def82s23d3hd1bh-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: @@ -4661,17 +4894,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":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET + url: https://api.linode.com/v4beta/databases/postgresql/instances/188778 + method: PUT response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "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": "a188778-akamai-prod-5782758-default.g2a.akamaidb.net", + "standby": "replica-a188778-akamai-prod-5782758-default.g2a.akamaidb.net"}, + "id": 188778, "label": "go-postgres-testing-def82s23d3hd1bh-updated", "members": + {"172.104.207.132": "failover", "172.105.47.148": "primary", "172.105.56.28": + "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.13", "platform": "rdbms-default"}' headers: Access-Control-Allow-Credentials: - "true" @@ -4683,27 +4919,27 @@ interactions: - '*' 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: - - "468" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:36:17 GMT + - Thu, 07 Nov 2024 16:56:50 GMT Pragma: - no-cache Strict-Transport-Security: - max-age=31536000 Vary: - Authorization, X-Filter - - Authorization, X-Filter + - Accept-Encoding X-Accepted-Oauth-Scopes: - - events:read_only + - databases:read_write X-Content-Type-Options: - nosniff X-Frame-Options: @@ -4712,7 +4948,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4729,16 +4965,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -4750,18 +4981,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:36:32 GMT + - Thu, 07 Nov 2024 16:57:05 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4779,7 +5012,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4796,16 +5029,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -4817,18 +5045,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:36:47 GMT + - Thu, 07 Nov 2024 16:57:20 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4846,7 +5076,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4863,16 +5093,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -4884,18 +5109,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:37:02 GMT + - Thu, 07 Nov 2024 16:57:35 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4913,7 +5140,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4930,16 +5157,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -4951,18 +5173,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:37:17 GMT + - Thu, 07 Nov 2024 16:57:50 GMT Pragma: - no-cache Strict-Transport-Security: @@ -4980,7 +5204,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -4997,16 +5221,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5018,18 +5237,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:37:32 GMT + - Thu, 07 Nov 2024 16:58:05 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5047,7 +5268,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5064,16 +5285,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5085,18 +5301,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:37:47 GMT + - Thu, 07 Nov 2024 16:58:20 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5114,7 +5332,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5131,16 +5349,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5152,18 +5365,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:38:02 GMT + - Thu, 07 Nov 2024 16:58:35 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5181,7 +5396,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5198,16 +5413,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5219,18 +5429,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:38:17 GMT + - Thu, 07 Nov 2024 16:58:50 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5248,7 +5460,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5265,16 +5477,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5286,18 +5493,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:38:32 GMT + - Thu, 07 Nov 2024 16:59:05 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5315,7 +5524,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5332,16 +5541,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5353,18 +5557,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:38:47 GMT + - Thu, 07 Nov 2024 16:59:20 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5382,7 +5588,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5399,16 +5605,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5420,18 +5621,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:39:02 GMT + - Thu, 07 Nov 2024 16:59:35 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5449,7 +5652,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5466,16 +5669,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5487,18 +5685,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:39:18 GMT + - Thu, 07 Nov 2024 16:59:50 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5516,7 +5716,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5533,16 +5733,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5554,18 +5749,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:39:32 GMT + - Thu, 07 Nov 2024 17:00:05 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5583,7 +5780,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5600,16 +5797,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5621,18 +5813,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:39:47 GMT + - Thu, 07 Nov 2024 17:00:20 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5650,7 +5844,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5667,16 +5861,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5688,18 +5877,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:40:02 GMT + - Thu, 07 Nov 2024 17:00:35 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5717,7 +5908,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5734,16 +5925,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5755,18 +5941,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:40:17 GMT + - Thu, 07 Nov 2024 17:00:50 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5784,7 +5972,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5801,16 +5989,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5822,18 +6005,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:40:32 GMT + - Thu, 07 Nov 2024 17:01:05 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5851,7 +6036,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5868,16 +6053,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5889,18 +6069,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:40:47 GMT + - Thu, 07 Nov 2024 17:01:20 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5918,7 +6100,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -5935,16 +6117,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -5956,18 +6133,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:41:02 GMT + - Thu, 07 Nov 2024 17:01:35 GMT Pragma: - no-cache Strict-Transport-Security: @@ -5985,7 +6164,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6002,16 +6181,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6023,18 +6197,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:41:17 GMT + - Thu, 07 Nov 2024 17:01:50 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6052,7 +6228,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6069,16 +6245,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6090,18 +6261,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:41:32 GMT + - Thu, 07 Nov 2024 17:02:05 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6119,7 +6292,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6136,16 +6309,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6157,18 +6325,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:41:47 GMT + - Thu, 07 Nov 2024 17:02:20 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6186,7 +6356,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6203,16 +6373,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6224,18 +6389,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:42:02 GMT + - Thu, 07 Nov 2024 17:02:35 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6253,7 +6420,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6270,16 +6437,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6291,18 +6453,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:42:17 GMT + - Thu, 07 Nov 2024 17:02:50 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6320,7 +6484,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6337,16 +6501,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6358,18 +6517,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:42:32 GMT + - Thu, 07 Nov 2024 17:03:05 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6387,7 +6548,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6404,16 +6565,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6425,18 +6581,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:42:47 GMT + - Thu, 07 Nov 2024 17:03:20 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6454,7 +6612,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6471,16 +6629,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6492,18 +6645,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:43:02 GMT + - Thu, 07 Nov 2024 17:03:35 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6521,7 +6676,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6538,16 +6693,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6559,18 +6709,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:43:17 GMT + - Thu, 07 Nov 2024 17:03:50 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6588,7 +6740,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6605,16 +6757,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6626,18 +6773,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:43:32 GMT + - Thu, 07 Nov 2024 17:04:05 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6655,7 +6804,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6672,16 +6821,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6693,18 +6837,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:43:47 GMT + - Thu, 07 Nov 2024 17:04:20 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6722,7 +6868,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6739,16 +6885,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6760,18 +6901,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:44:02 GMT + - Thu, 07 Nov 2024 17:04:35 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6789,7 +6932,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6806,16 +6949,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6827,18 +6965,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:44:17 GMT + - Thu, 07 Nov 2024 17:04:50 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6856,7 +6996,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6873,16 +7013,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6894,18 +7029,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:44:32 GMT + - Thu, 07 Nov 2024 17:05:05 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6923,7 +7060,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -6940,16 +7077,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -6961,18 +7093,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:44:47 GMT + - Thu, 07 Nov 2024 17:05:20 GMT Pragma: - no-cache Strict-Transport-Security: @@ -6990,7 +7124,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7007,16 +7141,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -7028,18 +7157,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:45:02 GMT + - Thu, 07 Nov 2024 17:05:35 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7057,7 +7188,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7074,16 +7205,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -7095,18 +7221,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:45:17 GMT + - Thu, 07 Nov 2024 17:05:50 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7124,7 +7252,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7141,16 +7269,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -7162,18 +7285,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:45:32 GMT + - Thu, 07 Nov 2024 17:06:05 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7191,7 +7316,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7208,16 +7333,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -7229,18 +7349,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:45:47 GMT + - Thu, 07 Nov 2024 17:06:20 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7258,7 +7380,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7275,16 +7397,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -7296,18 +7413,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:46:02 GMT + - Thu, 07 Nov 2024 17:06:35 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7325,7 +7444,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7342,16 +7461,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -7363,18 +7477,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:46:17 GMT + - Thu, 07 Nov 2024 17:06:50 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7392,7 +7508,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7409,16 +7525,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -7430,18 +7541,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:46:32 GMT + - Thu, 07 Nov 2024 17:07:05 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7459,7 +7572,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7476,16 +7589,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -7497,18 +7605,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:46:47 GMT + - Thu, 07 Nov 2024 17:07:20 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7526,7 +7636,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7543,16 +7653,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -7564,18 +7669,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:47:02 GMT + - Thu, 07 Nov 2024 17:07:35 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7593,7 +7700,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7610,16 +7717,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -7631,18 +7733,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:47:17 GMT + - Thu, 07 Nov 2024 17:07:50 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7660,7 +7764,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7677,16 +7781,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -7698,18 +7797,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:47:32 GMT + - Thu, 07 Nov 2024 17:08:05 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7727,7 +7828,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7744,16 +7845,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -7765,18 +7861,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:47:47 GMT + - Thu, 07 Nov 2024 17:08:20 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7794,7 +7892,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7811,16 +7909,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -7832,18 +7925,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:48:02 GMT + - Thu, 07 Nov 2024 17:08:35 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7861,7 +7956,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7878,16 +7973,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -7899,18 +7989,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:48:17 GMT + - Thu, 07 Nov 2024 17:08:50 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7928,7 +8020,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -7945,16 +8037,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -7966,18 +8053,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:48:32 GMT + - Thu, 07 Nov 2024 17:09:05 GMT Pragma: - no-cache Strict-Transport-Security: @@ -7995,7 +8084,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8012,16 +8101,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -8033,18 +8117,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:48:47 GMT + - Thu, 07 Nov 2024 17:09:20 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8062,7 +8148,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8079,16 +8165,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -8100,18 +8181,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:49:02 GMT + - Thu, 07 Nov 2024 17:09:35 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8129,7 +8212,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8146,16 +8229,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -8167,18 +8245,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:49:17 GMT + - Thu, 07 Nov 2024 17:09:50 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8196,7 +8276,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8213,16 +8293,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -8234,18 +8309,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:49:32 GMT + - Thu, 07 Nov 2024 17:10:05 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8263,7 +8340,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8280,16 +8357,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -8301,18 +8373,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:49:47 GMT + - Thu, 07 Nov 2024 17:10:20 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8330,7 +8404,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8347,16 +8421,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -8368,18 +8437,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:50:02 GMT + - Thu, 07 Nov 2024 17:10:35 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8397,7 +8468,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8414,16 +8485,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -8435,18 +8501,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:50:17 GMT + - Thu, 07 Nov 2024 17:10:50 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8464,7 +8532,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8481,16 +8549,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -8502,18 +8565,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:50:32 GMT + - Thu, 07 Nov 2024 17:11:05 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8531,7 +8596,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8548,16 +8613,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -8569,18 +8629,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:50:47 GMT + - Thu, 07 Nov 2024 17:11:20 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8598,7 +8660,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8615,16 +8677,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -8636,18 +8693,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:51:02 GMT + - Thu, 07 Nov 2024 17:11:35 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8665,7 +8724,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8682,16 +8741,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -8703,18 +8757,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:51:17 GMT + - Thu, 07 Nov 2024 17:11:50 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8732,7 +8788,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8749,16 +8805,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -8770,18 +8821,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:51:32 GMT + - Thu, 07 Nov 2024 17:12:05 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8799,7 +8852,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8816,16 +8869,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -8837,18 +8885,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:51:47 GMT + - Thu, 07 Nov 2024 17:12:20 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8866,7 +8916,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8883,16 +8933,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -8904,18 +8949,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:52:02 GMT + - Thu, 07 Nov 2024 17:12:35 GMT Pragma: - no-cache Strict-Transport-Security: @@ -8933,7 +8980,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -8950,16 +8997,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -8971,18 +9013,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:52:17 GMT + - Thu, 07 Nov 2024 17:12:50 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9000,7 +9044,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9017,16 +9061,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -9038,18 +9077,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:52:32 GMT + - Thu, 07 Nov 2024 17:13:05 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9067,7 +9108,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9084,16 +9125,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -9105,18 +9141,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:52:47 GMT + - Thu, 07 Nov 2024 17:13:20 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9134,7 +9172,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9151,16 +9189,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -9172,18 +9205,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:53:02 GMT + - Thu, 07 Nov 2024 17:13:35 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9201,7 +9236,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9218,16 +9253,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -9239,18 +9269,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:53:17 GMT + - Thu, 07 Nov 2024 17:13:50 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9268,7 +9300,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9285,16 +9317,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -9306,18 +9333,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:53:32 GMT + - Thu, 07 Nov 2024 17:14:06 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9335,7 +9364,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9352,16 +9381,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -9373,18 +9397,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:53:47 GMT + - Thu, 07 Nov 2024 17:14:20 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9402,7 +9428,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9419,16 +9445,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -9440,18 +9461,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:54:02 GMT + - Thu, 07 Nov 2024 17:14:35 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9469,7 +9492,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9486,16 +9509,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -9507,18 +9525,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:54:17 GMT + - Thu, 07 Nov 2024 17:14:50 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9536,7 +9556,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9553,16 +9573,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -9574,18 +9589,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:54:32 GMT + - Thu, 07 Nov 2024 17:15:05 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9603,7 +9620,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9620,16 +9637,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -9641,18 +9653,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:54:47 GMT + - Thu, 07 Nov 2024 17:15:20 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9670,7 +9684,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9687,16 +9701,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -9708,18 +9717,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:55:02 GMT + - Thu, 07 Nov 2024 17:15:36 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9737,7 +9748,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9754,16 +9765,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -9775,18 +9781,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:55:17 GMT + - Thu, 07 Nov 2024 17:15:50 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9804,7 +9812,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9821,16 +9829,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -9842,18 +9845,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:55:32 GMT + - Thu, 07 Nov 2024 17:16:05 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9871,7 +9876,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9888,16 +9893,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -9909,18 +9909,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:55:47 GMT + - Thu, 07 Nov 2024 17:16:20 GMT Pragma: - no-cache Strict-Transport-Security: @@ -9938,7 +9940,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -9955,16 +9957,11 @@ interactions: User-Agent: - linodego/dev https://github.com/linode/linodego X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' + - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":188778,"entity.type":"database"}' url: https://api.linode.com/v4beta/account/events?page=1 method: GET response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{"data": [], "page": 1, "pages": 1, "results": 0}' headers: Access-Control-Allow-Credentials: - "true" @@ -9976,18 +9973,20 @@ interactions: - '*' 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: - - "468" + - "49" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:56:02 GMT + - Thu, 07 Nov 2024 17:16:35 GMT Pragma: - no-cache Strict-Transport-Security: @@ -10005,7 +10004,7 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" X-Xss-Protection: - 1; mode=block status: 200 OK @@ -10021,17 +10020,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":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET + url: https://api.linode.com/v4beta/databases/postgresql/instances/188778 + method: DELETE response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' + body: '{}' headers: Access-Control-Allow-Credentials: - "true" @@ -10043,27 +10035,28 @@ interactions: - '*' 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: - - "468" + - "2" Content-Security-Policy: - default-src 'none' Content-Type: - application/json Expires: - - Mon, 24 Jun 2024 19:56:17 GMT + - Thu, 07 Nov 2024 17:17:11 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: @@ -10072,13237 +10065,9 @@ interactions: X-Oauth-Scopes: - '*' X-Ratelimit-Limit: - - "400" + - "800" 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 19:56:32 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 19:56:47 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 19:57:02 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 19:57: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 19:57:32 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 19:57:47 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 19:58:02 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 19:58: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 19:58:32 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 19:58:47 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 19:59:02 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 19:59: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 19:59:32 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 19:59:47 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:00:02 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:00: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:00:32 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:00:47 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:01:02 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:01: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:01:32 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:01:47 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:02:02 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:02: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:02:32 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:02:47 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:03:02 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:03: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:03:32 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:03:47 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:04:03 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:04: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:04:32 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:04:47 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:05:02 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:05: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:05:32 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:05:47 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:06:02 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "notification", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "468" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:06: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"2024-06-24T19:20:02"},"entity.id":133403,"entity.type":"database","id":{"+gte":755430480}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755430480, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": 100, "time_remaining": null, "rate": null, - "duration": 2398, "action": "database_create", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def", "id": 133403, "type": "database", "url": - "/v4/databases/postgresql/instances/133403"}, "status": "finished", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "463" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:06:32 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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?page=1 - method: GET - response: - body: '{"data": [{"id": 133403, "label": "go-postgres-testing-def", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "active", - "port": 5432, "encrypted": false, "allow_list": ["203.0.113.1", "192.0.1.0/24"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {"170.187.249.150": "primary", "170.187.249.245": - "failover", "139.144.1.196": "failover"}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "weekly", "duration": 3, "hour_of_day": 0, - "day_of_week": 7, "week_of_month": null}, "replication_commit_type": "local"}], - "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:06:32 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - - Accept-Encoding - X-Accepted-Oauth-Scopes: - - databases:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "active", - "port": 5432, "encrypted": false, "allow_list": ["203.0.113.1", "192.0.1.0/24"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {"170.187.249.150": "primary", "170.187.249.245": - "failover", "139.144.1.196": "failover"}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "weekly", "duration": 3, "hour_of_day": 0, - "day_of_week": 7, "week_of_month": null}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "833" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:06:33 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: - - "400" - X-Xss-Protection: - - 1; mode=block - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"label":"go-postgres-testing-def-updated","allow_list":["128.173.205.21","123.177.200.20"],"updates":{"day_of_week":3,"duration":1,"frequency":"monthly","hour_of_day":8,"week_of_month":3}}' - 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/133403 - method: PUT - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:06:35 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: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":133403,"entity.type":"database"}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755472150, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": null, "time_remaining": null, "rate": null, - "duration": null, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def-updated", "id": 133403, "type": "database", - "url": "/v4/databases/postgresql/instances/133403"}, "status": "notification", - "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results": - 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "476" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:06:50 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - events:read_only - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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 - X-Filter: - - '{"+order":"desc","+order_by":"created","action":"database_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":133403,"entity.type":"database","id":{"+gte":755472150}}' - url: https://api.linode.com/v4beta/account/events?page=1 - method: GET - response: - body: '{"data": [{"id": 755472150, "created": "2018-01-02T03:04:05", "seen": false, - "read": false, "percent_complete": 100, "time_remaining": null, "rate": null, - "duration": 29, "action": "database_update", "username": "lgarber-dx", "entity": - {"label": "go-postgres-testing-def-updated", "id": 133403, "type": "database", - "url": "/v4/databases/postgresql/instances/133403"}, "status": "finished", "secondary_entity": - null, "message": ""}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "469" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:07: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 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "active", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {"170.187.249.150": "primary", "170.187.249.245": - "failover", "139.144.1.196": "failover"}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "844" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:07:21 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: - - "400" - 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/133403/ssl - method: GET - response: - body: '{"ca_certificate": null}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "24" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:07:21 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: - - "400" - 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/133403/credentials - method: GET - response: - body: '{"username": "linpostgres", "password": "Pebm73oJqGDF$IoD"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "59" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:07:22 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: - - "400" - 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/133403/credentials/reset - 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 - 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: - - Mon, 24 Jun 2024 20:12:24 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: - - "400" - 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/133403/credentials - method: GET - response: - body: '{"username": "linpostgres", "password": "ehCx3wLk5RMtee$S"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "59" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:12: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: - - "400" - 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/133403/patch - 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 - 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: - - Mon, 24 Jun 2024 20:17:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:17:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:18:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:18:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:18:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:18:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:19:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:19:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:19:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:19:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:20:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:20:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:20:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:20:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:21:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:21:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:21:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:21:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:22:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:22:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:22:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:22:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:23:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:23:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:23:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:23:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:24:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:24:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:24:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:24:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:25:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:25:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:25:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:25:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:26:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:26:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:26:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:26:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:27:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:27:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 0, "used_disk_size_gb": 0, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "758" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:27:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:27:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:28:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:28:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:28:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:28:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:29:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:29:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:29:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:29:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:30:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:30:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:30:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:30:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:31:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:31:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:31:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:31:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:32:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:32:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:32:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:32:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:33:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:33:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:33:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:33:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:34:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:34:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:34:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:34:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:35:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:35:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:35:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:35:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:36:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:36:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:36:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:36:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:37:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:37:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:37:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:37:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:38:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:38:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:38:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:38:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:39:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:39:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:39:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:39:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:40:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:40:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:40:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:40:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:41:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:41:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:41:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:41:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:42:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:42:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:42:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:42:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:43:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:43:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:43:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:43:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:44:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:44:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:44:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:44:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:45:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:45:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:45:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:45:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:46:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:46:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:46:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:46:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:47:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:47:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:47:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:47:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:48:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:48:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:48:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:48:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:49:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:49:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:49:43 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:49:58 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:50:13 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "updating", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:50:28 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "active", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {"170.187.249.150": "primary", "170.187.249.245": - "failover", "139.144.1.196": "failover"}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "845" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:50:43 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: - - "400" - X-Xss-Protection: - - 1; mode=block - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"label":"postgresbackupforlinodego","target":"primary"}' - 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/133403/backups - 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 - 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: - - Mon, 24 Jun 2024 20:50:46 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: - - "400" - 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/133403/backups?page=1 - method: GET - response: - body: '{"data": [], "page": 1, "pages": 1, "results": 0}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "49" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:51:02 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - 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: - - "400" - 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/133403/backups?page=1 - method: GET - response: - body: '{"data": [], "page": 1, "pages": 1, "results": 0}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "49" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:51:17 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - 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: - - "400" - 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/133403/backups?page=1 - method: GET - response: - body: '{"data": [], "page": 1, "pages": 1, "results": 0}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "49" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:51:32 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - 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: - - "400" - 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/133403/backups?page=1 - method: GET - response: - body: '{"data": [], "page": 1, "pages": 1, "results": 0}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "49" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:51:47 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - 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: - - "400" - 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/133403/backups?page=1 - method: GET - response: - body: '{"data": [], "page": 1, "pages": 1, "results": 0}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "49" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:52:02 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - 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: - - "400" - 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/133403/backups?page=1 - method: GET - response: - body: '{"data": [], "page": 1, "pages": 1, "results": 0}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "49" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:52:17 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - 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: - - "400" - 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/133403/backups?page=1 - method: GET - response: - body: '{"data": [], "page": 1, "pages": 1, "results": 0}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "49" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:52:32 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - 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: - - "400" - 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/133403/backups?page=1 - method: GET - response: - body: '{"data": [{"id": 1425482, "type": "snapshot", "label": "postgresbackupforlinodego", - "created": "2018-01-02T03:04:05"}], "page": 1, "pages": 1, "results": 1}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "156" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:52:47 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - 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: - - "400" - 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/133403/backups/1425482 - method: GET - response: - body: '{"id": 1425482, "type": "snapshot", "label": "postgresbackupforlinodego", - "created": "2018-01-02T03:04:05"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "107" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:52:49 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "backing_up", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "761" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:53:04 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: - - "400" - 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/133403 - method: GET - response: - body: '{"id": 133403, "label": "go-postgres-testing-def-updated", "type": "g6-nanode-1", - "engine": "postgresql", "version": "14.6", "region": "ap-west", "status": "active", - "port": 5432, "encrypted": false, "allow_list": ["128.173.205.21", "123.177.200.20"], - "cluster_size": 3, "hosts": {"primary": "lin-133403-103239-pgsql-primary.servers.linodedb.net", - "secondary": "lin-133403-103239-pgsql-primary-private.servers.linodedb.net"}, - "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05", "total_disk_size_gb": - 15, "used_disk_size_gb": 1, "members": {"170.187.249.150": "primary", "170.187.249.245": - "failover", "139.144.1.196": "failover"}, "ssl_connection": false, "replication_type": - "asynch", "updates": {"frequency": "monthly", "duration": 1, "hour_of_day": - 8, "day_of_week": 3, "week_of_month": 3}, "replication_commit_type": "local"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "845" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 20:53:19 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: - - "400" - 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/133403 - method: DELETE - 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 - 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: - - Mon, 24 Jun 2024 20:53:36 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: - - "400" - X-Xss-Protection: - - 1; mode=block - status: 200 OK - code: 200 - duration: "" \ No newline at end of file diff --git a/test/integration/fixtures/TestDatabase_Type.yaml b/test/integration/fixtures/TestDatabase_Type.yaml index dd692c428..b0ae98e54 100644 --- a/test/integration/fixtures/TestDatabase_Type.yaml +++ b/test/integration/fixtures/TestDatabase_Type.yaml @@ -1,255 +1,237 @@ --- version: 1 interactions: - - 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/types?page=1 - method: GET - response: - body: '{"page": 1, "pages": 1, "results": 19, "data": [{"id": "g6-nanode-1", "label": - "DBaaS - Nanode 1GB", "engines": {"mysql": [{"quantity": 1, "price": {"hourly": - 0.0225, "monthly": 15.0}}, {"quantity": 2, "price": {"hourly": 0.0375, "monthly": - 25.0}}, {"quantity": 3, "price": {"hourly": 0.0525, "monthly": 35.0}}], "postgresql": - [{"quantity": 1, "price": {"hourly": 0.0225, "monthly": 15.0}}, {"quantity": - 2, "price": {"hourly": 0.0375, "monthly": 25.0}}, {"quantity": 3, "price": {"hourly": - 0.0525, "monthly": 35.0}}]}, "memory": 1024, "disk": 25600, "vcpus": 1, "class": - "nanode"}, {"id": "g6-standard-1", "label": "DBaaS - Linode 2GB", "engines": - {"mysql": [{"quantity": 1, "price": {"hourly": 0.045, "monthly": 30.0}}, {"quantity": - 2, "price": {"hourly": 0.075, "monthly": 50.0}}, {"quantity": 3, "price": {"hourly": - 0.105, "monthly": 70.0}}], "postgresql": [{"quantity": 1, "price": {"hourly": - 0.045, "monthly": 30.0}}, {"quantity": 2, "price": {"hourly": 0.075, "monthly": - 50.0}}, {"quantity": 3, "price": {"hourly": 0.105, "monthly": 70.0}}]}, "memory": - 2048, "disk": 51200, "vcpus": 1, "class": "standard"}, {"id": "g6-standard-2", - "label": "DBaaS - Linode 4GB", "engines": {"mysql": [{"quantity": 1, "price": - {"hourly": 0.09, "monthly": 60.0}}, {"quantity": 2, "price": {"hourly": 0.15, - "monthly": 100.0}}, {"quantity": 3, "price": {"hourly": 0.21, "monthly": 140.0}}], - "postgresql": [{"quantity": 1, "price": {"hourly": 0.09, "monthly": 60.0}}, - {"quantity": 2, "price": {"hourly": 0.15, "monthly": 100.0}}, {"quantity": 3, - "price": {"hourly": 0.21, "monthly": 140.0}}]}, "memory": 4096, "disk": 81920, - "vcpus": 2, "class": "standard"}, {"id": "g6-standard-4", "label": "DBaaS - - Linode 8GB", "engines": {"mysql": [{"quantity": 1, "price": {"hourly": 0.18, - "monthly": 120.0}}, {"quantity": 2, "price": {"hourly": 0.3, "monthly": 200.0}}, - {"quantity": 3, "price": {"hourly": 0.42, "monthly": 280.0}}], "postgresql": - [{"quantity": 1, "price": {"hourly": 0.18, "monthly": 120.0}}, {"quantity": - 2, "price": {"hourly": 0.3, "monthly": 200.0}}, {"quantity": 3, "price": {"hourly": - 0.42, "monthly": 280.0}}]}, "memory": 8192, "disk": 163840, "vcpus": 4, "class": - "standard"}, {"id": "g6-standard-6", "label": "DBaaS - Linode 16GB", "engines": - {"mysql": [{"quantity": 1, "price": {"hourly": 0.36, "monthly": 240.0}}, {"quantity": - 2, "price": {"hourly": 0.6, "monthly": 400.0}}, {"quantity": 3, "price": {"hourly": - 0.84, "monthly": 560.0}}], "postgresql": [{"quantity": 1, "price": {"hourly": - 0.36, "monthly": 240.0}}, {"quantity": 2, "price": {"hourly": 0.6, "monthly": - 400.0}}, {"quantity": 3, "price": {"hourly": 0.84, "monthly": 560.0}}]}, "memory": - 16384, "disk": 327680, "vcpus": 6, "class": "standard"}, {"id": "g6-standard-8", - "label": "DBaaS - Linode 32GB", "engines": {"mysql": [{"quantity": 1, "price": - {"hourly": 0.72, "monthly": 480.0}}, {"quantity": 2, "price": {"hourly": 1.2, - "monthly": 800.0}}, {"quantity": 3, "price": {"hourly": 1.68, "monthly": 1120.0}}], - "postgresql": [{"quantity": 1, "price": {"hourly": 0.72, "monthly": 480.0}}, - {"quantity": 2, "price": {"hourly": 1.2, "monthly": 800.0}}, {"quantity": 3, - "price": {"hourly": 1.68, "monthly": 1120.0}}]}, "memory": 32768, "disk": 655360, - "vcpus": 8, "class": "standard"}, {"id": "g6-standard-16", "label": "DBaaS - - Linode 64GB", "engines": {"mysql": [{"quantity": 1, "price": {"hourly": 1.44, - "monthly": 960.0}}, {"quantity": 2, "price": {"hourly": 2.4, "monthly": 1600.0}}, - {"quantity": 3, "price": {"hourly": 3.336, "monthly": 2224.0}}], "postgresql": - [{"quantity": 1, "price": {"hourly": 1.44, "monthly": 960.0}}, {"quantity": - 2, "price": {"hourly": 2.4, "monthly": 1600.0}}, {"quantity": 3, "price": {"hourly": - 3.336, "monthly": 2224.0}}]}, "memory": 65536, "disk": 1310720, "vcpus": 16, - "class": "standard"}, {"id": "g6-standard-20", "label": "DBaaS - Linode 96GB", - "engines": {"mysql": [{"quantity": 1, "price": {"hourly": 2.16, "monthly": 1440.0}}, - {"quantity": 2, "price": {"hourly": 3.6, "monthly": 2400.0}}, {"quantity": 3, - "price": {"hourly": 5.04, "monthly": 3360.0}}], "postgresql": [{"quantity": - 1, "price": {"hourly": 2.16, "monthly": 1440.0}}, {"quantity": 2, "price": {"hourly": - 3.6, "monthly": 2400.0}}, {"quantity": 3, "price": {"hourly": 5.04, "monthly": - 3360.0}}]}, "memory": 98304, "disk": 1966080, "vcpus": 20, "class": "standard"}, - {"id": "g6-standard-24", "label": "DBaaS - Linode 128GB", "engines": {"mysql": - [{"quantity": 1, "price": {"hourly": 2.88, "monthly": 1920.0}}, {"quantity": - 2, "price": {"hourly": 4.8, "monthly": 3200.0}}, {"quantity": 3, "price": {"hourly": - 6.72, "monthly": 4480.0}}], "postgresql": [{"quantity": 1, "price": {"hourly": - 2.88, "monthly": 1920.0}}, {"quantity": 2, "price": {"hourly": 4.8, "monthly": - 3200.0}}, {"quantity": 3, "price": {"hourly": 6.72, "monthly": 4480.0}}]}, "memory": - 131072, "disk": 2621440, "vcpus": 24, "class": "standard"}, {"id": "g6-standard-32", - "label": "DBaaS - Linode 192GB", "engines": {"mysql": [{"quantity": 1, "price": - {"hourly": 4.32, "monthly": 2880.0}}, {"quantity": 2, "price": {"hourly": 7.2, - "monthly": 4800.0}}, {"quantity": 3, "price": {"hourly": 10.08, "monthly": 6720.0}}], - "postgresql": [{"quantity": 1, "price": {"hourly": 4.32, "monthly": 2880.0}}, - {"quantity": 2, "price": {"hourly": 7.2, "monthly": 4800.0}}, {"quantity": 3, - "price": {"hourly": 10.08, "monthly": 6720.0}}]}, "memory": 196608, "disk": - 3932160, "vcpus": 32, "class": "standard"}, {"id": "g6-dedicated-2", "label": - "DBaaS - Dedicated 4GB", "engines": {"mysql": [{"quantity": 1, "price": {"hourly": - 0.0975, "monthly": 65.0}}, {"quantity": 2, "price": {"hourly": 0.195, "monthly": - 130.0}}, {"quantity": 3, "price": {"hourly": 0.2925, "monthly": 195.0}}], "postgresql": - [{"quantity": 1, "price": {"hourly": 0.0975, "monthly": 65.0}}, {"quantity": - 2, "price": {"hourly": 0.195, "monthly": 130.0}}, {"quantity": 3, "price": {"hourly": - 0.2925, "monthly": 195.0}}]}, "memory": 4096, "disk": 81920, "vcpus": 2, "class": - "dedicated"}, {"id": "g6-dedicated-4", "label": "DBaaS - Dedicated 8GB", "engines": - {"mysql": [{"quantity": 1, "price": {"hourly": 0.195, "monthly": 130.0}}, {"quantity": - 2, "price": {"hourly": 0.39, "monthly": 260.0}}, {"quantity": 3, "price": {"hourly": - 0.585, "monthly": 390.0}}], "postgresql": [{"quantity": 1, "price": {"hourly": - 0.195, "monthly": 130.0}}, {"quantity": 2, "price": {"hourly": 0.39, "monthly": - 260.0}}, {"quantity": 3, "price": {"hourly": 0.585, "monthly": 390.0}}]}, "memory": - 8192, "disk": 163840, "vcpus": 4, "class": "dedicated"}, {"id": "g6-dedicated-8", - "label": "DBaaS - Dedicated 16GB", "engines": {"mysql": [{"quantity": 1, "price": - {"hourly": 0.39, "monthly": 260.0}}, {"quantity": 2, "price": {"hourly": 0.78, - "monthly": 520.0}}, {"quantity": 3, "price": {"hourly": 1.17, "monthly": 780.0}}], - "postgresql": [{"quantity": 1, "price": {"hourly": 0.39, "monthly": 260.0}}, - {"quantity": 2, "price": {"hourly": 0.78, "monthly": 520.0}}, {"quantity": 3, - "price": {"hourly": 1.17, "monthly": 780.0}}]}, "memory": 16384, "disk": 327680, - "vcpus": 8, "class": "dedicated"}, {"id": "g6-dedicated-16", "label": "DBaaS - - Dedicated 32GB", "engines": {"mysql": [{"quantity": 1, "price": {"hourly": - 0.78, "monthly": 520.0}}, {"quantity": 2, "price": {"hourly": 1.56, "monthly": - 1040.0}}, {"quantity": 3, "price": {"hourly": 2.34, "monthly": 1560.0}}], "postgresql": - [{"quantity": 1, "price": {"hourly": 0.78, "monthly": 520.0}}, {"quantity": - 2, "price": {"hourly": 1.56, "monthly": 1040.0}}, {"quantity": 3, "price": {"hourly": - 2.34, "monthly": 1560.0}}]}, "memory": 32768, "disk": 655360, "vcpus": 16, "class": - "dedicated"}, {"id": "g6-dedicated-32", "label": "DBaaS - Dedicated 64GB", "engines": - {"mysql": [{"quantity": 1, "price": {"hourly": 1.56, "monthly": 1040.0}}, {"quantity": - 2, "price": {"hourly": 3.12, "monthly": 2080.0}}, {"quantity": 3, "price": {"hourly": - 4.68, "monthly": 3120.0}}], "postgresql": [{"quantity": 1, "price": {"hourly": - 1.56, "monthly": 1040.0}}, {"quantity": 2, "price": {"hourly": 3.12, "monthly": - 2080.0}}, {"quantity": 3, "price": {"hourly": 4.68, "monthly": 3120.0}}]}, "memory": - 65536, "disk": 1310720, "vcpus": 32, "class": "dedicated"}, {"id": "g6-dedicated-48", - "label": "DBaaS - Dedicated 96GB", "engines": {"mysql": [{"quantity": 1, "price": - {"hourly": 2.34, "monthly": 1560.0}}, {"quantity": 2, "price": {"hourly": 4.68, - "monthly": 3120.0}}, {"quantity": 3, "price": {"hourly": 7.02, "monthly": 4680.0}}], - "postgresql": [{"quantity": 1, "price": {"hourly": 2.34, "monthly": 1560.0}}, - {"quantity": 2, "price": {"hourly": 4.68, "monthly": 3120.0}}, {"quantity": - 3, "price": {"hourly": 7.02, "monthly": 4680.0}}]}, "memory": 98304, "disk": - 1966080, "vcpus": 48, "class": "dedicated"}, {"id": "g6-dedicated-50", "label": - "DBaaS - Dedicated 128GB", "engines": {"mysql": [{"quantity": 1, "price": {"hourly": - 3.12, "monthly": 2080.0}}, {"quantity": 2, "price": {"hourly": 6.24, "monthly": - 4160.0}}, {"quantity": 3, "price": {"hourly": 9.36, "monthly": 6240.0}}], "postgresql": - [{"quantity": 1, "price": {"hourly": 3.12, "monthly": 2080.0}}, {"quantity": - 2, "price": {"hourly": 6.24, "monthly": 4160.0}}, {"quantity": 3, "price": {"hourly": - 9.36, "monthly": 6240.0}}]}, "memory": 131072, "disk": 2560000, "vcpus": 50, - "class": "dedicated"}, {"id": "g6-dedicated-56", "label": "DBaaS - Dedicated - 256GB", "engines": {"mysql": [{"quantity": 1, "price": {"hourly": 6.24, "monthly": - 4160.0}}, {"quantity": 2, "price": {"hourly": 12.48, "monthly": 8320.0}}, {"quantity": - 3, "price": {"hourly": 18.72, "monthly": 12480.0}}], "postgresql": [{"quantity": - 1, "price": {"hourly": 6.24, "monthly": 4160.0}}, {"quantity": 2, "price": {"hourly": - 12.48, "monthly": 8320.0}}, {"quantity": 3, "price": {"hourly": 18.72, "monthly": - 12480.0}}]}, "memory": 262144, "disk": 5120000, "vcpus": 56, "class": "dedicated"}, - {"id": "g6-dedicated-64", "label": "DBaaS - Dedicated 512GB", "engines": {"mysql": - [{"quantity": 1, "price": {"hourly": 12.48, "monthly": 8320.0}}, {"quantity": - 2, "price": {"hourly": 24.96, "monthly": 16640.0}}, {"quantity": 3, "price": - {"hourly": 37.44, "monthly": 24960.0}}], "postgresql": [{"quantity": 1, "price": - {"hourly": 12.48, "monthly": 8320.0}}, {"quantity": 2, "price": {"hourly": 24.96, - "monthly": 16640.0}}, {"quantity": 3, "price": {"hourly": 37.44, "monthly": - 24960.0}}]}, "memory": 524288, "disk": 7372800, "vcpus": 64, "class": "dedicated"}]}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 16:45:40 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - - Accept-Encoding - X-Accepted-Oauth-Scopes: - - '*' - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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/types/g6-nanode-1 - method: GET - response: - body: '{"id": "g6-nanode-1", "label": "DBaaS - Nanode 1GB", "engines": {"mysql": - [{"quantity": 1, "price": {"hourly": 0.0225, "monthly": 15.0}}, {"quantity": - 2, "price": {"hourly": 0.0375, "monthly": 25.0}}, {"quantity": 3, "price": {"hourly": - 0.0525, "monthly": 35.0}}], "postgresql": [{"quantity": 1, "price": {"hourly": - 0.0225, "monthly": 15.0}}, {"quantity": 2, "price": {"hourly": 0.0375, "monthly": - 25.0}}, {"quantity": 3, "price": {"hourly": 0.0525, "monthly": 35.0}}]}, "memory": - 1024, "disk": 25600, "vcpus": 1, "class": "nanode"}' - 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 - Cache-Control: - - max-age=0, no-cache, no-store - Connection: - - keep-alive - Content-Length: - - "532" - Content-Security-Policy: - - default-src 'none' - Content-Type: - - application/json - Expires: - - Mon, 24 Jun 2024 16:45:41 GMT - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000 - Vary: - - Authorization, X-Filter - - Authorization, X-Filter - X-Accepted-Oauth-Scopes: - - '*' - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - - DENY - X-Oauth-Scopes: - - '*' - X-Ratelimit-Limit: - - "400" - 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/types?page=1 + method: GET + response: + body: '{"data": [{"class": "nanode", "disk": 9216, "engines": {"mysql": [{"price": + {"hourly": 0.024, "monthly": 16.0}, "quantity": 1}, {"price": {"hourly": 0.055, + "monthly": 37.0}, "quantity": 3}], "postgresql": [{"price": {"hourly": 0.024, + "monthly": 16.0}, "quantity": 1}, {"price": {"hourly": 0.055, "monthly": 37.0}, + "quantity": 3}]}, "id": "g6-nanode-1", "label": "DBaaS - Nanode 1GB", "memory": + 1024, "vcpus": 1}, {"class": "standard", "disk": 30720, "engines": {"mysql": + [{"price": {"hourly": 0.047, "monthly": 32.0}, "quantity": 1}, {"price": {"hourly": + 0.11, "monthly": 74.0}, "quantity": 3}], "postgresql": [{"price": {"hourly": + 0.047, "monthly": 32.0}, "quantity": 1}, {"price": {"hourly": 0.11, "monthly": + 74.0}, "quantity": 3}]}, "id": "g6-standard-1", "label": "DBaaS - Linode 2GB", + "memory": 2048, "vcpus": 1}, {"class": "standard", "disk": 59392, "engines": + {"mysql": [{"price": {"hourly": 0.094, "monthly": 63.0}, "quantity": 1}, {"price": + {"hourly": 0.22, "monthly": 147.0}, "quantity": 3}], "postgresql": [{"price": + {"hourly": 0.094, "monthly": 63.0}, "quantity": 1}, {"price": {"hourly": 0.22, + "monthly": 147.0}, "quantity": 3}]}, "id": "g6-standard-2", "label": "DBaaS + - Linode 4GB", "memory": 4096, "vcpus": 2}, {"class": "standard", "disk": 133120, + "engines": {"mysql": [{"price": {"hourly": 0.189, "monthly": 126.0}, "quantity": + 1}, {"price": {"hourly": 0.441, "monthly": 294.0}, "quantity": 3}], "postgresql": + [{"price": {"hourly": 0.189, "monthly": 126.0}, "quantity": 1}, {"price": {"hourly": + 0.441, "monthly": 294.0}, "quantity": 3}]}, "id": "g6-standard-4", "label": + "DBaaS - Linode 8GB", "memory": 8192, "vcpus": 4}, {"class": "standard", "disk": + 286720, "engines": {"mysql": [{"price": {"hourly": 0.378, "monthly": 252.0}, + "quantity": 1}, {"price": {"hourly": 0.882, "monthly": 588.0}, "quantity": 3}], + "postgresql": [{"price": {"hourly": 0.378, "monthly": 252.0}, "quantity": 1}, + {"price": {"hourly": 0.882, "monthly": 588.0}, "quantity": 3}]}, "id": "g6-standard-6", + "label": "DBaaS - Linode 16GB", "memory": 16384, "vcpus": 6}, {"class": "standard", + "disk": 589824, "engines": {"mysql": [{"price": {"hourly": 0.756, "monthly": + 504.0}, "quantity": 1}, {"price": {"hourly": 1.764, "monthly": 1176.0}, "quantity": + 3}], "postgresql": [{"price": {"hourly": 0.756, "monthly": 504.0}, "quantity": + 1}, {"price": {"hourly": 1.764, "monthly": 1176.0}, "quantity": 3}]}, "id": + "g6-standard-8", "label": "DBaaS - Linode 32GB", "memory": 32768, "vcpus": 8}, + {"class": "standard", "disk": 1206272, "engines": {"mysql": [{"price": {"hourly": + 1.512, "monthly": 1008.0}, "quantity": 1}, {"price": {"hourly": 3.528, "monthly": + 2352.0}, "quantity": 3}], "postgresql": [{"price": {"hourly": 1.512, "monthly": + 1008.0}, "quantity": 1}, {"price": {"hourly": 3.528, "monthly": 2352.0}, "quantity": + 3}]}, "id": "g6-standard-16", "label": "DBaaS - Linode 64GB", "memory": 65536, + "vcpus": 16}, {"class": "standard", "disk": 1830912, "engines": {"mysql": [{"price": + {"hourly": 2.268, "monthly": 1512.0}, "quantity": 1}, {"price": {"hourly": 5.317, + "monthly": 3545.0}, "quantity": 3}], "postgresql": [{"price": {"hourly": 2.268, + "monthly": 1512.0}, "quantity": 1}, {"price": {"hourly": 5.317, "monthly": 3545.0}, + "quantity": 3}]}, "id": "g6-standard-20", "label": "DBaaS - Linode 96GB", "memory": + 98304, "vcpus": 20}, {"class": "standard", "disk": 2439168, "engines": {"mysql": + [{"price": {"hourly": 3.024, "monthly": 2016.0}, "quantity": 1}, {"price": {"hourly": + 7.09, "monthly": 4726.0}, "quantity": 3}], "postgresql": [{"price": {"hourly": + 3.024, "monthly": 2016.0}, "quantity": 1}, {"price": {"hourly": 7.09, "monthly": + 4726.0}, "quantity": 3}]}, "id": "g6-standard-24", "label": "DBaaS - Linode + 128GB", "memory": 131072, "vcpus": 24}, {"class": "standard", "disk": 3686400, + "engines": {"mysql": [{"price": {"hourly": 4.536, "monthly": 3025.0}, "quantity": + 1}, {"price": {"hourly": 10.634, "monthly": 7090.0}, "quantity": 3}], "postgresql": + [{"price": {"hourly": 4.536, "monthly": 3025.0}, "quantity": 1}, {"price": {"hourly": + 10.634, "monthly": 7090.0}, "quantity": 3}]}, "id": "g6-standard-32", "label": + "DBaaS - Linode 192GB", "memory": 196608, "vcpus": 32}, {"class": "dedicated", + "disk": 59392, "engines": {"mysql": [{"price": {"hourly": 0.102, "monthly": + 68.0}, "quantity": 1}, {"price": {"hourly": 0.214, "monthly": 143.0}, "quantity": + 2}, {"price": {"hourly": 0.307, "monthly": 206.0}, "quantity": 3}], "postgresql": + [{"price": {"hourly": 0.102, "monthly": 68.0}, "quantity": 1}, {"price": {"hourly": + 0.214, "monthly": 143.0}, "quantity": 2}, {"price": {"hourly": 0.307, "monthly": + 206.0}, "quantity": 3}]}, "id": "g6-dedicated-2", "label": "DBaaS - Dedicated + 4GB", "memory": 4096, "vcpus": 2}, {"class": "dedicated", "disk": 133120, "engines": + {"mysql": [{"price": {"hourly": 0.204, "monthly": 136.0}, "quantity": 1}, {"price": + {"hourly": 0.427, "monthly": 285.0}, "quantity": 2}, {"price": {"hourly": 0.615, + "monthly": 410.0}, "quantity": 3}], "postgresql": [{"price": {"hourly": 0.204, + "monthly": 136.0}, "quantity": 1}, {"price": {"hourly": 0.427, "monthly": 285.0}, + "quantity": 2}, {"price": {"hourly": 0.615, "monthly": 410.0}, "quantity": 3}]}, + "id": "g6-dedicated-4", "label": "DBaaS - Dedicated 8GB", "memory": 8192, "vcpus": + 4}, {"class": "dedicated", "disk": 286720, "engines": {"mysql": [{"price": {"hourly": + 0.409, "monthly": 273.0}, "quantity": 1}, {"price": {"hourly": 0.885, "monthly": + 590.0}, "quantity": 2}, {"price": {"hourly": 1.228, "monthly": 819.0}, "quantity": + 3}], "postgresql": [{"price": {"hourly": 0.409, "monthly": 273.0}, "quantity": + 1}, {"price": {"hourly": 0.885, "monthly": 590.0}, "quantity": 2}, {"price": + {"hourly": 1.228, "monthly": 819.0}, "quantity": 3}]}, "id": "g6-dedicated-8", + "label": "DBaaS - Dedicated 16GB", "memory": 16384, "vcpus": 6}, {"class": "dedicated", + "disk": 589824, "engines": {"mysql": [{"price": {"hourly": 0.819, "monthly": + 546.0}, "quantity": 1}, {"price": {"hourly": 1.752, "monthly": 1168.0}, "quantity": + 2}, {"price": {"hourly": 2.457, "monthly": 1638.0}, "quantity": 3}], "postgresql": + [{"price": {"hourly": 0.819, "monthly": 546.0}, "quantity": 1}, {"price": {"hourly": + 1.752, "monthly": 1168.0}, "quantity": 2}, {"price": {"hourly": 2.457, "monthly": + 1638.0}, "quantity": 3}]}, "id": "g6-dedicated-16", "label": "DBaaS - Dedicated + 32GB", "memory": 32768, "vcpus": 8}, {"class": "dedicated", "disk": 1206272, + "engines": {"mysql": [{"price": {"hourly": 1.759, "monthly": 1173.0}, "quantity": + 1}, {"price": {"hourly": 3.547, "monthly": 2365.0}, "quantity": 2}, {"price": + {"hourly": 5.188, "monthly": 3459.0}, "quantity": 3}], "postgresql": [{"price": + {"hourly": 1.759, "monthly": 1173.0}, "quantity": 1}, {"price": {"hourly": 3.547, + "monthly": 2365.0}, "quantity": 2}, {"price": {"hourly": 5.188, "monthly": 3459.0}, + "quantity": 3}]}, "id": "g6-dedicated-32", "label": "DBaaS - Dedicated 64GB", + "memory": 65536, "vcpus": 16}, {"class": "dedicated", "disk": 1830912, "engines": + {"mysql": [{"price": {"hourly": 2.639, "monthly": 1759.0}, "quantity": 1}, {"price": + {"hourly": 5.448, "monthly": 3632.0}, "quantity": 2}, {"price": {"hourly": 7.792, + "monthly": 5195.0}, "quantity": 3}], "postgresql": [{"price": {"hourly": 2.639, + "monthly": 1759.0}, "quantity": 1}, {"price": {"hourly": 5.448, "monthly": 3632.0}, + "quantity": 2}, {"price": {"hourly": 7.792, "monthly": 5195.0}, "quantity": + 3}]}, "id": "g6-dedicated-48", "label": "DBaaS - Dedicated 96GB", "memory": + 98304, "vcpus": 20}, {"class": "dedicated", "disk": 2379776, "engines": {"mysql": + [{"price": {"hourly": 3.511, "monthly": 2341.0}, "quantity": 1}, {"price": {"hourly": + 7.132, "monthly": 4755.0}, "quantity": 2}, {"price": {"hourly": 10.108, "monthly": + 6739.0}, "quantity": 3}], "postgresql": [{"price": {"hourly": 3.511, "monthly": + 2341.0}, "quantity": 1}, {"price": {"hourly": 7.132, "monthly": 4755.0}, "quantity": + 2}, {"price": {"hourly": 10.108, "monthly": 6739.0}, "quantity": 3}]}, "id": + "g6-dedicated-50", "label": "DBaaS - Dedicated 128GB", "memory": 131072, "vcpus": + 50}, {"class": "dedicated", "disk": 4816896, "engines": {"mysql": [{"price": + {"hourly": 7.032, "monthly": 4684.0}, "quantity": 1}, {"price": {"hourly": 13.677, + "monthly": 9118.0}, "quantity": 2}, {"price": {"hourly": 20.329, "monthly": + 13553.0}, "quantity": 3}], "postgresql": [{"price": {"hourly": 7.032, "monthly": + 4684.0}, "quantity": 1}, {"price": {"hourly": 13.677, "monthly": 9118.0}, "quantity": + 2}, {"price": {"hourly": 20.329, "monthly": 13553.0}, "quantity": 3}]}, "id": + "g6-dedicated-56", "label": "DBaaS - Dedicated 256GB", "memory": 262144, "vcpus": + 56}], "page": 1, "pages": 1, "results": 18}' + 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-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Thu, 21 Nov 2024 18:51:30 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + - Accept-Encoding + X-Accepted-Oauth-Scopes: + - '*' + 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/types/g6-nanode-1 + method: GET + response: + body: '{"class": "nanode", "disk": 9216, "engines": {"mysql": [{"price": {"hourly": + 0.024, "monthly": 16.0}, "quantity": 1}, {"price": {"hourly": 0.055, "monthly": + 37.0}, "quantity": 3}], "postgresql": [{"price": {"hourly": 0.024, "monthly": + 16.0}, "quantity": 1}, {"price": {"hourly": 0.055, "monthly": 37.0}, "quantity": + 3}]}, "id": "g6-nanode-1", "label": "DBaaS - Nanode 1GB", "memory": 1024, "vcpus": + 1}' + 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: + - "401" + Content-Security-Policy: + - default-src 'none' + Content-Type: + - application/json + Expires: + - Thu, 21 Nov 2024 18:51:31 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization, X-Filter + - Authorization, X-Filter + X-Accepted-Oauth-Scopes: + - '*' + 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: "" diff --git a/test/integration/mysql_test.go b/test/integration/mysql_test.go index d1fbbaa06..25c571118 100644 --- a/test/integration/mysql_test.go +++ b/test/integration/mysql_test.go @@ -43,14 +43,11 @@ func TestDatabase_MySQL_Suite(t *testing.T) { t.Errorf("got wrong db from GetMySQLDatabase: %v", db) } - week := 3 - updatedWindow := linodego.DatabaseMaintenanceWindow{ - DayOfWeek: linodego.DatabaseMaintenanceDayWednesday, - Duration: 1, - Frequency: linodego.DatabaseMaintenanceFrequencyMonthly, - HourOfDay: 8, - WeekOfMonth: &week, + DayOfWeek: linodego.DatabaseMaintenanceDayWednesday, + Duration: 4, + Frequency: linodego.DatabaseMaintenanceFrequencyWeekly, + HourOfDay: 8, } allowList := []string{"128.173.205.21", "123.177.200.20"} @@ -130,45 +127,6 @@ func TestDatabase_MySQL_Suite(t *testing.T) { linodego.DatabaseStatusActive, 2400); err != nil { t.Fatalf("failed to wait for database updating: %s", err) } - - backupLabel := "mysqlbackupforlinodego" - backupOptions := linodego.MySQLBackupCreateOptions{ - Label: backupLabel, - Target: linodego.MySQLDatabaseTargetPrimary, - } - - if err := client.CreateMySQLDatabaseBackup(context.Background(), database.ID, backupOptions); err != nil { - t.Errorf("failed to create db backup: %v", err) - } - - backup, err := client.WaitForMySQLDatabaseBackup(context.Background(), database.ID, backupLabel, 1200) - if err != nil { - t.Fatalf("failed to wait for backup: %s", err) - } - - if backup.Label != backupLabel { - t.Fatalf("backup label mismatch: %v != %v", backupLabel, backup.Label) - } - - backup, err = client.GetMySQLDatabaseBackup(context.Background(), database.ID, backup.ID) - if err != nil { - t.Errorf("failed to get backup %d for db: %v", backup.ID, err) - } - - if backup.Label != backupLabel { - t.Fatalf("backup label mismatch: %v != %v", backupLabel, backup.Label) - } - - if backup.Created == nil { - t.Fatalf("expected value for created, got nil") - } - - // Wait for the DB to re-enter active status after backup - 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) - } } type mysqlDatabaseModifier func(options *linodego.MySQLCreateOptions) @@ -179,15 +137,14 @@ func createMySQLDatabase(t *testing.T, client *linodego.Client, t.Helper() createOpts := linodego.MySQLCreateOptions{ - Label: "go-mysql-test-def" + randLabel(), - Region: getRegionsWithCaps(t, client, []string{"Managed Databases"})[0], - Type: "g6-nanode-1", - Engine: "mysql/8.0.30", - Encrypted: false, - ClusterSize: 3, - ReplicationType: "semi_synch", - SSLConnection: false, - AllowList: []string{"203.0.113.1", "192.0.1.0/24"}, + Label: "go-mysql-test-def" + randLabel(), + Region: getRegionsWithCaps(t, client, []string{"Managed Databases"})[0], + Type: "g6-nanode-1", + Engine: "mysql/8", + Encrypted: false, + ClusterSize: 3, + SSLConnection: false, + AllowList: []string{"203.0.113.1", "192.0.1.0/24"}, } for _, modifier := range databaseMofidiers { @@ -242,7 +199,7 @@ func setupMySQLDatabase(t *testing.T, databaseMofidiers []mysqlDatabaseModifier, } _, err = client.WaitForEventFinished(context.Background(), database.ID, linodego.EntityDatabase, - linodego.ActionDatabaseCreate, now, 3600) + linodego.ActionDatabaseCreate, now, 5400) if err != nil { t.Fatalf("failed to wait for db create event: %s", err) } diff --git a/test/integration/postgres_test.go b/test/integration/postgres_test.go index b7be2ae8d..34e83f369 100644 --- a/test/integration/postgres_test.go +++ b/test/integration/postgres_test.go @@ -43,14 +43,11 @@ func TestDatabase_Postgres_Suite(t *testing.T) { t.Errorf("got wrong db from GetPostgresDatabase: %v", db) } - week := 3 - updatedWindow := linodego.DatabaseMaintenanceWindow{ - DayOfWeek: linodego.DatabaseMaintenanceDayWednesday, - Duration: 1, - Frequency: linodego.DatabaseMaintenanceFrequencyMonthly, - HourOfDay: 8, - WeekOfMonth: &week, + DayOfWeek: linodego.DatabaseMaintenanceDayWednesday, + Duration: 4, + Frequency: linodego.DatabaseMaintenanceFrequencyWeekly, + HourOfDay: 8, } allowList := []string{"128.173.205.21", "123.177.200.20"} @@ -134,41 +131,6 @@ func TestDatabase_Postgres_Suite(t *testing.T) { linodego.DatabaseStatusActive, 2400); err != nil { t.Fatalf("failed to wait for database updating: %s", err) } - - backupLabel := "postgresbackupforlinodego" - backupOptions := linodego.PostgresBackupCreateOptions{ - Label: backupLabel, - Target: linodego.PostgresDatabaseTargetPrimary, - } - - if err := client.CreatePostgresDatabaseBackup(context.Background(), database.ID, backupOptions); err != nil { - t.Errorf("failed to create db backup: %v", err) - } - - backup, err := client.WaitForPostgresDatabaseBackup(context.Background(), database.ID, backupLabel, 1200) - if err != nil { - t.Fatalf("failed to wait for backup: %s", err) - } - - if backup.Label != backupLabel { - t.Fatalf("backup label mismatch: %v != %v", backupLabel, backup.Label) - } - - backup, err = client.GetPostgresDatabaseBackup(context.Background(), database.ID, backup.ID) - if err != nil { - t.Errorf("failed to get backup %d for db: %v", backup.ID, err) - } - - if backup.Label != backupLabel { - t.Fatalf("backup label mismatch: %v != %v", backupLabel, backup.Label) - } - - // Wait for the DB to re-enter active status before final deletion - if err := client.WaitForDatabaseStatus( - context.Background(), database.ID, linodego.DatabaseEngineTypePostgres, - linodego.DatabaseStatusActive, 2400); err != nil { - t.Fatalf("failed to wait for database updating: %s", err) - } } type postgresDatabaseModifier func(options *linodego.PostgresCreateOptions) @@ -179,15 +141,14 @@ func createPostgresDatabase(t *testing.T, client *linodego.Client, t.Helper() createOpts := linodego.PostgresCreateOptions{ - Label: "go-postgres-testing-def" + randLabel(), - Region: getRegionsWithCaps(t, client, []string{"Managed Databases"})[0], - Type: "g6-nanode-1", - Engine: "postgresql/14.6", - Encrypted: false, - SSLConnection: false, - ClusterSize: 3, - ReplicationType: linodego.PostgresReplicationAsynch, - AllowList: []string{"203.0.113.1", "192.0.1.0/24"}, + Label: "go-postgres-testing-def" + randLabel(), + Region: getRegionsWithCaps(t, client, []string{"Managed Databases"})[0], + Type: "g6-nanode-1", + Engine: "postgresql/14", + Encrypted: false, + SSLConnection: false, + ClusterSize: 3, + AllowList: []string{"203.0.113.1", "192.0.1.0/24"}, } for _, modifier := range databaseMofidiers { modifier(&createOpts)