diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
index 06c9cab3f..f44a9a603 100644
--- a/.github/workflows/codeql.yml
+++ b/.github/workflows/codeql.yml
@@ -13,16 +13,8 @@ jobs:
name: Analyze (${{ matrix.language }})
runs-on: ubuntu-latest
permissions:
- # required for all workflows
security-events: write
- # required to fetch internal or private CodeQL packs
- packages: read
-
- # only required for workflows in private repositories
- actions: read
- contents: read
-
strategy:
fail-fast: false
matrix:
diff --git a/databases.go b/databases.go
index c665da775..08ad9453b 100644
--- a/databases.go
+++ b/databases.go
@@ -13,6 +13,8 @@ type (
DatabaseDayOfWeek int
DatabaseMaintenanceFrequency string
DatabaseStatus string
+ DatabasePlatform string
+ DatabaseMemberType string
)
const (
@@ -50,24 +52,45 @@ const (
DatabaseStatusBackingUp DatabaseStatus = "backing_up"
)
+const (
+ DatabasePlatformRDBMSLegacy DatabasePlatform = "rdbms-legacy"
+ DatabasePlatformRDBMSDefault DatabasePlatform = "rdbms-default"
+)
+
+const (
+ DatabaseMemberTypePrimary DatabaseMemberType = "primary"
+ DatabaseMemberTypeFailover DatabaseMemberType = "failover"
+)
+
// 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"`
+ Platform DatabasePlatform `json:"platform"`
+ Fork *DatabaseFork `json:"fork"`
+
+ // Members has dynamic keys so it is a map
+ Members map[string]DatabaseMemberType `json:"members"`
+
+ // Deprecated: ReplicationType is a deprecated property, as it is no longer supported in DBaaS V2.
+ ReplicationType string `json:"replication_type"`
+ // Deprecated: SSLConnection is a deprecated property, as it is no longer supported in DBaaS V2.
+ SSLConnection bool `json:"ssl_connection"`
+ // Deprecated: Encrypted is a deprecated property, as it is no longer supported 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:"-"`
+ OldestRestoreTime *time.Time `json:"-"`
}
// DatabaseHost for Primary/Secondary of Database
@@ -85,11 +108,21 @@ 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 []DatabaseMaintenanceWindowPending `json:"pending,omitempty"`
+
+ // Deprecated: WeekOfMonth is a deprecated property, as it is no longer supported in DBaaS V2.
+ WeekOfMonth *int `json:"week_of_month,omitempty"`
+}
+
+type DatabaseMaintenanceWindowPending struct {
+ Deadline *time.Time `json:"-"`
+ Description string `json:"description"`
+ PlannedFor *time.Time `json:"-"`
}
// DatabaseType is information about the supported Database Types by Linode Managed Databases
@@ -120,13 +153,20 @@ 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:"-,omitempty"`
+}
+
func (d *Database) UnmarshalJSON(b []byte) error {
type Mask Database
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),
}
@@ -137,6 +177,45 @@ func (d *Database) UnmarshalJSON(b []byte) error {
d.Created = (*time.Time)(p.Created)
d.Updated = (*time.Time)(p.Updated)
+ d.OldestRestoreTime = (*time.Time)(p.OldestRestoreTime)
+ return nil
+}
+
+func (d *DatabaseFork) UnmarshalJSON(b []byte) error {
+ type Mask DatabaseFork
+
+ p := struct {
+ *Mask
+ RestoreTime *parseabletime.ParseableTime `json:"restore_time"`
+ }{
+ Mask: (*Mask)(d),
+ }
+
+ if err := json.Unmarshal(b, &p); err != nil {
+ return err
+ }
+
+ d.RestoreTime = (*time.Time)(p.RestoreTime)
+ return nil
+}
+
+func (d *DatabaseMaintenanceWindowPending) UnmarshalJSON(b []byte) error {
+ type Mask DatabaseMaintenanceWindowPending
+
+ p := struct {
+ *Mask
+ Deadline *parseabletime.ParseableTime `json:"deadline"`
+ PlannedFor *parseabletime.ParseableTime `json:"planned_for"`
+ }{
+ Mask: (*Mask)(d),
+ }
+
+ if err := json.Unmarshal(b, &p); err != nil {
+ return err
+ }
+
+ d.Deadline = (*time.Time)(p.Deadline)
+ d.PlannedFor = (*time.Time)(p.PlannedFor)
return nil
}
diff --git a/go.mod b/go.mod
index 75c0827f9..176c02b89 100644
--- a/go.mod
+++ b/go.mod
@@ -1,12 +1,12 @@
module github.com/linode/linodego
require (
- github.com/go-resty/resty/v2 v2.16.2
+ github.com/go-resty/resty/v2 v2.16.3
github.com/google/go-cmp v0.6.0
github.com/google/go-querystring v1.1.0
github.com/jarcoal/httpmock v1.3.1
- golang.org/x/net v0.33.0
- golang.org/x/oauth2 v0.24.0
+ golang.org/x/net v0.34.0
+ golang.org/x/oauth2 v0.25.0
golang.org/x/text v0.21.0
gopkg.in/ini.v1 v1.66.6
)
diff --git a/go.sum b/go.sum
index 0e2ab2402..b5df2164e 100644
--- a/go.sum
+++ b/go.sum
@@ -1,7 +1,7 @@
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
-github.com/go-resty/resty/v2 v2.16.2 h1:CpRqTjIzq/rweXUt9+GxzzQdlkqMdt8Lm/fuK/CAbAg=
-github.com/go-resty/resty/v2 v2.16.2/go.mod h1:0fHAoK7JoBy/Ch36N8VFeMsK7xQOHhvWaC3iOktwmIU=
+github.com/go-resty/resty/v2 v2.16.3 h1:zacNT7lt4b8M/io2Ahj6yPypL7bqx9n1iprfQuodV+E=
+github.com/go-resty/resty/v2 v2.16.3/go.mod h1:hkJtXbA2iKHzJheXYvQ8snQES5ZLGKMwQ07xAwp/fiA=
github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
@@ -15,10 +15,10 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
-golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I=
-golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4=
-golang.org/x/oauth2 v0.24.0 h1:KTBBxWqUa0ykRPLtV69rRto9TLXcqYkeswu48x/gvNE=
-golang.org/x/oauth2 v0.24.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=
+golang.org/x/net v0.34.0 h1:Mb7Mrk043xzHgnRM88suvJFwzVrRfHEHJEl5/71CKw0=
+golang.org/x/net v0.34.0/go.mod h1:di0qlW3YNM5oh6GqDGQr92MyTozJPmybPK4Ev/Gm31k=
+golang.org/x/oauth2 v0.25.0 h1:CY4y7XT9v0cRI9oupztF8AgiIu99L/ksR/Xp/6jrZ70=
+golang.org/x/oauth2 v0.25.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=
golang.org/x/text v0.21.0 h1:zyQAAkrwaneQ066sspRyJaG9VNi/YJ1NfzcGB3hZ/qo=
golang.org/x/text v0.21.0/go.mod h1:4IBbMaMmOPCJ8SecivzSH54+73PCFmPWxNTLm+vZkEQ=
golang.org/x/time v0.6.0 h1:eTDhh4ZXt5Qf0augr54TN6suAUudPcawVZeIAPU7D4U=
diff --git a/go.work b/go.work
index 9f6d7df5e..ae3c9f159 100644
--- a/go.work
+++ b/go.work
@@ -1,4 +1,4 @@
-go 1.22
+go 1.22.0
use (
.
diff --git a/go.work.sum b/go.work.sum
index 53a5cdc01..091549699 100644
--- a/go.work.sum
+++ b/go.work.sum
@@ -47,9 +47,15 @@ golang.org/x/crypto v0.30.0 h1:RwoQn3GkWiMkzlX562cLB7OxWvjH1L8xutO2WoJcRoY=
golang.org/x/crypto v0.30.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk=
golang.org/x/crypto v0.31.0 h1:ihbySMvVjLAeSH1IbfcRTkD/iNscyz8rGzjF/E5hV6U=
golang.org/x/crypto v0.31.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk=
+golang.org/x/crypto v0.32.0 h1:euUpcYgM8WcP71gNpTqQCn6rC2t6ULUPiOzfWaXVVfc=
+golang.org/x/crypto v0.32.0/go.mod h1:ZnnJkOaASj8g0AjIduWNlq2NRxL0PlBrbKVyZ6V/Ugc=
golang.org/x/mod v0.17.0 h1:zY54UmvipHiNd+pm+m0x9KhZ9hl1/7QNMyxXbc6ICqA=
golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
+golang.org/x/mod v0.22.0 h1:D4nJWe9zXqHOmWqj4VMOJhvzj7bEZg4wEYa759z1pH4=
+golang.org/x/mod v0.22.0/go.mod h1:6SkKJ3Xj0I0BrPOZoBy3bdMptDDU9oJrpohJ3eWZ1fY=
golang.org/x/net v0.27.0/go.mod h1:dDi0PyhWNoiUOrAS8uXv/vnScO4wnHQO4mj9fn/RytE=
+golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4=
+golang.org/x/oauth2 v0.24.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=
golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M=
golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ=
diff --git a/instances.go b/instances.go
index d996bef70..bdbbc4831 100644
--- a/instances.go
+++ b/instances.go
@@ -72,11 +72,12 @@ type Instance struct {
// InstanceSpec represents a linode spec
type InstanceSpec struct {
- Disk int `json:"disk"`
- Memory int `json:"memory"`
- VCPUs int `json:"vcpus"`
- Transfer int `json:"transfer"`
- GPUs int `json:"gpus"`
+ Disk int `json:"disk"`
+ Memory int `json:"memory"`
+ VCPUs int `json:"vcpus"`
+ Transfer int `json:"transfer"`
+ GPUs int `json:"gpus"`
+ AcceleratedDevices int `json:"accelerated_devices"`
}
// InstanceAlert represents a metric alert
@@ -486,15 +487,13 @@ type InstanceUpgradeOptions struct {
// UpgradeInstance upgrades a Linode to its next generation.
func (c *Client) UpgradeInstance(ctx context.Context, linodeID int, opts InstanceUpgradeOptions) error {
e := formatAPIPath("linode/instances/%d/mutate", linodeID)
- _, err := doPOSTRequest[Instance](ctx, c, e, opts)
- return err
+ return doPOSTRequestNoResponseBody(ctx, c, e, opts)
}
// MigrateInstance - Migrate an instance
func (c *Client) MigrateInstance(ctx context.Context, linodeID int, opts InstanceMigrateOptions) error {
e := formatAPIPath("linode/instances/%d/migrate", linodeID)
- _, err := doPOSTRequest[Instance](ctx, c, e, opts)
- return err
+ return doPOSTRequestNoResponseBody(ctx, c, e, opts)
}
// simpleInstanceAction is a helper for Instance actions that take no parameters
diff --git a/k8s/go.mod b/k8s/go.mod
index 4995246d3..6061829ef 100644
--- a/k8s/go.mod
+++ b/k8s/go.mod
@@ -14,7 +14,7 @@ require (
github.com/go-openapi/jsonpointer v0.19.6 // indirect
github.com/go-openapi/jsonreference v0.20.2 // indirect
github.com/go-openapi/swag v0.22.3 // indirect
- github.com/go-resty/resty/v2 v2.16.2 // indirect
+ github.com/go-resty/resty/v2 v2.16.3 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/gnostic-models v0.6.8 // indirect
@@ -29,15 +29,15 @@ require (
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/spf13/pflag v1.0.5 // indirect
- golang.org/x/net v0.33.0 // indirect
- golang.org/x/oauth2 v0.24.0 // indirect
- golang.org/x/sys v0.28.0 // indirect
- golang.org/x/term v0.27.0 // indirect
+ golang.org/x/net v0.34.0 // indirect
+ golang.org/x/oauth2 v0.25.0 // indirect
+ golang.org/x/sys v0.29.0 // indirect
+ golang.org/x/term v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
golang.org/x/time v0.6.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
- gopkg.in/ini.v1 v1.66.6 // indirect
+ gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
k8s.io/klog/v2 v2.110.1 // indirect
@@ -51,3 +51,5 @@ require (
replace github.com/linode/linodego => ../
go 1.22
+
+toolchain go1.22.1
diff --git a/k8s/go.sum b/k8s/go.sum
index 79451d89a..da4f02285 100644
--- a/k8s/go.sum
+++ b/k8s/go.sum
@@ -12,8 +12,8 @@ github.com/go-openapi/jsonreference v0.20.2 h1:3sVjiK66+uXK/6oQ8xgcRKcFgQ5KXa2Kv
github.com/go-openapi/jsonreference v0.20.2/go.mod h1:Bl1zwGIM8/wsvqjsOQLJ/SH+En5Ap4rVB5KVcIDZG2k=
github.com/go-openapi/swag v0.22.3 h1:yMBqmnQ0gyZvEb/+KzuWZOXgllrXT4SADYbvDaXHv/g=
github.com/go-openapi/swag v0.22.3/go.mod h1:UzaqsxGiab7freDnrUUra0MwWfN/q7tE4j+VcZ0yl14=
-github.com/go-resty/resty/v2 v2.16.2 h1:CpRqTjIzq/rweXUt9+GxzzQdlkqMdt8Lm/fuK/CAbAg=
-github.com/go-resty/resty/v2 v2.16.2/go.mod h1:0fHAoK7JoBy/Ch36N8VFeMsK7xQOHhvWaC3iOktwmIU=
+github.com/go-resty/resty/v2 v2.16.3 h1:zacNT7lt4b8M/io2Ahj6yPypL7bqx9n1iprfQuodV+E=
+github.com/go-resty/resty/v2 v2.16.3/go.mod h1:hkJtXbA2iKHzJheXYvQ8snQES5ZLGKMwQ07xAwp/fiA=
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 h1:tfuBGBXKqDEevZMzYi5KSi8KkcZtzBcTgAUUtapy0OI=
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572/go.mod h1:9Pwr4B2jHnOSGXyyzV8ROjYa2ojvAY6HCGYYfMoC3Ls=
github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=
@@ -91,20 +91,20 @@ golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
-golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I=
-golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4=
-golang.org/x/oauth2 v0.24.0 h1:KTBBxWqUa0ykRPLtV69rRto9TLXcqYkeswu48x/gvNE=
-golang.org/x/oauth2 v0.24.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=
+golang.org/x/net v0.34.0 h1:Mb7Mrk043xzHgnRM88suvJFwzVrRfHEHJEl5/71CKw0=
+golang.org/x/net v0.34.0/go.mod h1:di0qlW3YNM5oh6GqDGQr92MyTozJPmybPK4Ev/Gm31k=
+golang.org/x/oauth2 v0.25.0 h1:CY4y7XT9v0cRI9oupztF8AgiIu99L/ksR/Xp/6jrZ70=
+golang.org/x/oauth2 v0.25.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA=
-golang.org/x/sys v0.28.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
-golang.org/x/term v0.27.0 h1:WP60Sv1nlK1T6SupCHbXzSaN0b9wUmsPoRS9b61A23Q=
-golang.org/x/term v0.27.0/go.mod h1:iMsnZpn0cago0GOrHO2+Y7u7JPn5AylBrcoWkElMTSM=
+golang.org/x/sys v0.29.0 h1:TPYlXGxvx1MGTn2GiZDhnjPA9wZzZeGKHHmKhHYvgaU=
+golang.org/x/sys v0.29.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
+golang.org/x/term v0.28.0 h1:/Ts8HFuMR2E6IP/jlo7QVLZHggjKQbhu/7H0LJFr3Gg=
+golang.org/x/term v0.28.0/go.mod h1:Sw/lC2IAUZ92udQNf3WodGtn4k/XoLyZoh8v/8uiwek=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/text v0.21.0 h1:zyQAAkrwaneQ066sspRyJaG9VNi/YJ1NfzcGB3hZ/qo=
@@ -128,8 +128,8 @@ gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntN
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=
gopkg.in/inf.v0 v0.9.1 h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc=
gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw=
-gopkg.in/ini.v1 v1.66.6 h1:LATuAqN/shcYAOkv3wl2L4rkaKqkcgTBQjOyYDvcPKI=
-gopkg.in/ini.v1 v1.66.6/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=
+gopkg.in/ini.v1 v1.67.0 h1:Dgnx+6+nfE+IfzjUEISNeydPJh9AXNNsWbGP9KzCsOA=
+gopkg.in/ini.v1 v1.67.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=
gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
diff --git a/lke_clusters.go b/lke_clusters.go
index a6d5042de..d4fea0a7f 100644
--- a/lke_clusters.go
+++ b/lke_clusters.go
@@ -28,6 +28,9 @@ type LKECluster struct {
K8sVersion string `json:"k8s_version"`
Tags []string `json:"tags"`
ControlPlane LKEClusterControlPlane `json:"control_plane"`
+
+ // NOTE: Tier may not currently be available to all users and can only be used with v4beta.
+ Tier string `json:"tier"`
}
// LKEClusterCreateOptions fields are those accepted by CreateLKECluster
@@ -38,6 +41,9 @@ type LKEClusterCreateOptions struct {
K8sVersion string `json:"k8s_version"`
Tags []string `json:"tags,omitempty"`
ControlPlane *LKEClusterControlPlaneOptions `json:"control_plane,omitempty"`
+
+ // NOTE: Tier may not currently be available to all users and can only be used with v4beta.
+ Tier string `json:"tier,omitempty"`
}
// LKEClusterUpdateOptions fields are those accepted by UpdateLKECluster
diff --git a/mysql.go b/mysql.go
index f69f32f25..25926a369 100644
--- a/mysql.go
+++ b/mysql.go
@@ -19,23 +19,34 @@ 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"`
+ Platform DatabasePlatform `json:"platform"`
+
+ // Members has dynamic keys so it is a map
+ Members map[string]DatabaseMemberType `json:"members"`
+
+ // Deprecated: ReplicationType is a deprecated property, as it is no longer supported in DBaaS V2.
+ ReplicationType string `json:"replication_type"`
+ // Deprecated: SSLConnection is a deprecated property, as it is no longer supported in DBaaS V2.
+ SSLConnection bool `json:"ssl_connection"`
+ // Deprecated: Encrypted is a deprecated property, as it is no longer supported 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:"-"`
+ Updates DatabaseMaintenanceWindow `json:"updates"`
+ Fork *DatabaseFork `json:"fork"`
+ OldestRestoreTime *time.Time `json:"-"`
}
func (d *MySQLDatabase) UnmarshalJSON(b []byte) error {
@@ -43,8 +54,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,30 +67,42 @@ 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"`
+
+ // Deprecated: ReplicationType is a deprecated property, as it is no longer supported in DBaaS V2.
+ ReplicationType string `json:"replication_type,omitempty"`
+ // Deprecated: Encrypted is a deprecated property, as it is no longer supported in DBaaS V2.
+ Encrypted bool `json:"encrypted,omitempty"`
+ // Deprecated: SSLConnection is a deprecated property, as it is no longer supported in DBaaS V2.
+ SSLConnection bool `json:"ssl_connection,omitempty"`
+
+ Fork *DatabaseFork `json:"fork,omitempty"`
}
// MySQLUpdateOptions fields are used when altering the existing MySQL Database
type MySQLUpdateOptions struct {
- Label string `json:"label,omitempty"`
- AllowList *[]string `json:"allow_list,omitempty"`
- Updates *DatabaseMaintenanceWindow `json:"updates,omitempty"`
+ Label string `json:"label,omitempty"`
+ AllowList *[]string `json:"allow_list,omitempty"`
+ Updates *DatabaseMaintenanceWindow `json:"updates,omitempty"`
+ Type string `json:"type,omitempty"`
+ ClusterSize int `json:"cluster_size,omitempty"`
+ Version string `json:"version,omitempty"`
}
// MySQLDatabaseBackup is information for interacting with a backup for the existing MySQL Database
+// Deprecated: MySQLDatabaseBackup is a deprecated struct, as the backup endpoints are no longer supported in DBaaS V2.
+// In DBaaS V2, databases can be backed up via database forking.
type MySQLDatabaseBackup struct {
ID int `json:"id"`
Label string `json:"label"`
@@ -87,6 +111,8 @@ type MySQLDatabaseBackup struct {
}
// MySQLBackupCreateOptions are options used for CreateMySQLDatabaseBackup(...)
+// Deprecated: MySQLBackupCreateOptions is a deprecated struct, as the backup endpoints are no longer supported in DBaaS V2.
+// In DBaaS V2, databases can be backed up via database forking.
type MySQLBackupCreateOptions struct {
Label string `json:"label"`
Target MySQLDatabaseTarget `json:"target"`
@@ -132,6 +158,8 @@ func (c *Client) ListMySQLDatabases(ctx context.Context, opts *ListOptions) ([]M
}
// ListMySQLDatabaseBackups lists all MySQL Database Backups associated with the given MySQL Database
+// Deprecated: ListMySQLDatabaseBackups is a deprecated method, as the backup endpoints are no longer supported in DBaaS V2.
+// In DBaaS V2, databases can be backed up via database forking.
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 +239,8 @@ func (c *Client) ResetMySQLDatabaseCredentials(ctx context.Context, databaseID i
}
// GetMySQLDatabaseBackup returns a specific MySQL Database Backup with the given ids
+// Deprecated: GetMySQLDatabaseBackup is a deprecated method, as the backup endpoints are no longer supported in DBaaS V2.
+// In DBaaS V2, databases can be backed up via database forking.
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 +252,8 @@ func (c *Client) GetMySQLDatabaseBackup(ctx context.Context, databaseID int, bac
}
// RestoreMySQLDatabaseBackup returns the given MySQL Database with the given Backup
+// Deprecated: RestoreMySQLDatabaseBackup is a deprecated method, as the backup endpoints are no longer supported in DBaaS V2.
+// In DBaaS V2, databases can be backed up via database forking.
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 +261,8 @@ func (c *Client) RestoreMySQLDatabaseBackup(ctx context.Context, databaseID int,
}
// CreateMySQLDatabaseBackup creates a snapshot for the given MySQL database
+// Deprecated: CreateMySQLDatabaseBackup is a deprecated method, as the backup endpoints are no longer supported in DBaaS V2.
+// In DBaaS V2, databases can be backed up via database forking.
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/object_storage_bucket_certs.go b/object_storage_bucket_certs.go
index e09d2337c..249ce590c 100644
--- a/object_storage_bucket_certs.go
+++ b/object_storage_bucket_certs.go
@@ -4,35 +4,44 @@ import (
"context"
)
+// Deprecated: Please use ObjectStorageBucketCertV2 for all new implementations.
type ObjectStorageBucketCert struct {
SSL bool `json:"ssl"`
}
+type ObjectStorageBucketCertV2 struct {
+ SSL *bool `json:"ssl"`
+}
+
type ObjectStorageBucketCertUploadOptions struct {
Certificate string `json:"certificate"`
PrivateKey string `json:"private_key"`
}
// UploadObjectStorageBucketCert uploads a TLS/SSL Cert to be used with an Object Storage Bucket.
+// Deprecated: Please use UploadObjectStorageBucketCertV2 for all new implementations.
func (c *Client) UploadObjectStorageBucketCert(ctx context.Context, clusterOrRegionID, bucket string, opts ObjectStorageBucketCertUploadOptions) (*ObjectStorageBucketCert, error) {
e := formatAPIPath("object-storage/buckets/%s/%s/ssl", clusterOrRegionID, bucket)
- response, err := doPOSTRequest[ObjectStorageBucketCert](ctx, c, e, opts)
- if err != nil {
- return nil, err
- }
-
- return response, nil
+ return doPOSTRequest[ObjectStorageBucketCert](ctx, c, e, opts)
}
// GetObjectStorageBucketCert gets an ObjectStorageBucketCert
+// Deprecated: Please use GetObjectStorageBucketCertV2 for all new implementations.
func (c *Client) GetObjectStorageBucketCert(ctx context.Context, clusterOrRegionID, bucket string) (*ObjectStorageBucketCert, error) {
e := formatAPIPath("object-storage/buckets/%s/%s/ssl", clusterOrRegionID, bucket)
- response, err := doGETRequest[ObjectStorageBucketCert](ctx, c, e)
- if err != nil {
- return nil, err
- }
+ return doGETRequest[ObjectStorageBucketCert](ctx, c, e)
+}
- return response, nil
+// UploadObjectStorageBucketCert uploads a TLS/SSL Cert to be used with an Object Storage Bucket.
+func (c *Client) UploadObjectStorageBucketCertV2(ctx context.Context, clusterOrRegionID, bucket string, opts ObjectStorageBucketCertUploadOptions) (*ObjectStorageBucketCertV2, error) {
+ e := formatAPIPath("object-storage/buckets/%s/%s/ssl", clusterOrRegionID, bucket)
+ return doPOSTRequest[ObjectStorageBucketCertV2](ctx, c, e, opts)
+}
+
+// GetObjectStorageBucketCertV2 gets an ObjectStorageBucketCert
+func (c *Client) GetObjectStorageBucketCertV2(ctx context.Context, clusterOrRegionID, bucket string) (*ObjectStorageBucketCertV2, error) {
+ e := formatAPIPath("object-storage/buckets/%s/%s/ssl", clusterOrRegionID, bucket)
+ return doGETRequest[ObjectStorageBucketCertV2](ctx, c, e)
}
// DeleteObjectStorageBucketCert deletes an ObjectStorageBucketCert
diff --git a/object_storage_buckets.go b/object_storage_buckets.go
index d29a8fbb5..43068d5a1 100644
--- a/object_storage_buckets.go
+++ b/object_storage_buckets.go
@@ -24,10 +24,12 @@ type ObjectStorageBucket struct {
Cluster string `json:"cluster"`
Region string `json:"region"`
- Created *time.Time `json:"-"`
- Hostname string `json:"hostname"`
- Objects int `json:"objects"`
- Size int `json:"size"`
+ S3Endpoint string `json:"s3_endpoint"`
+ EndpointType ObjectStorageEndpointType `json:"endpoint_type"`
+ Created *time.Time `json:"-"`
+ Hostname string `json:"hostname"`
+ Objects int `json:"objects"`
+ Size int `json:"size"`
}
// ObjectStorageBucketAccess holds Object Storage access info
@@ -36,6 +38,13 @@ type ObjectStorageBucketAccess struct {
CorsEnabled bool `json:"cors_enabled"`
}
+type ObjectStorageBucketAccessV2 struct {
+ ACL ObjectStorageACL `json:"acl"`
+ ACLXML string `json:"acl_xml"`
+ CorsEnabled *bool `json:"cors_enabled"`
+ CorsXML *string `json:"cors_xml"`
+}
+
// ObjectStorageBucketContent holds the content of an ObjectStorageBucket
type ObjectStorageBucketContent struct {
Data []ObjectStorageBucketContentData `json:"data"`
@@ -82,7 +91,9 @@ type ObjectStorageBucketCreateOptions struct {
Cluster string `json:"cluster,omitempty"`
Region string `json:"region,omitempty"`
- Label string `json:"label"`
+ Label string `json:"label"`
+ S3Endpoint string `json:"s3_endpoint,omitempty"`
+ EndpointType ObjectStorageEndpointType `json:"endpoint_type,omitempty"`
ACL ObjectStorageACL `json:"acl,omitempty"`
CorsEnabled *bool `json:"cors_enabled,omitempty"`
@@ -115,55 +126,31 @@ const (
// ListObjectStorageBuckets lists ObjectStorageBuckets
func (c *Client) ListObjectStorageBuckets(ctx context.Context, opts *ListOptions) ([]ObjectStorageBucket, error) {
- response, err := getPaginatedResults[ObjectStorageBucket](ctx, c, "object-storage/buckets", opts)
- if err != nil {
- return nil, err
- }
-
- return response, nil
+ return getPaginatedResults[ObjectStorageBucket](ctx, c, "object-storage/buckets", opts)
}
// ListObjectStorageBucketsInCluster lists all ObjectStorageBuckets of a cluster
func (c *Client) ListObjectStorageBucketsInCluster(ctx context.Context, opts *ListOptions, clusterOrRegionID string) ([]ObjectStorageBucket, error) {
- response, err := getPaginatedResults[ObjectStorageBucket](ctx, c, formatAPIPath("object-storage/buckets/%s", clusterOrRegionID), opts)
- if err != nil {
- return nil, err
- }
-
- return response, nil
+ return getPaginatedResults[ObjectStorageBucket](ctx, c, formatAPIPath("object-storage/buckets/%s", clusterOrRegionID), opts)
}
// GetObjectStorageBucket gets the ObjectStorageBucket with the provided label
func (c *Client) GetObjectStorageBucket(ctx context.Context, clusterOrRegionID, label string) (*ObjectStorageBucket, error) {
e := formatAPIPath("object-storage/buckets/%s/%s", clusterOrRegionID, label)
- response, err := doGETRequest[ObjectStorageBucket](ctx, c, e)
- if err != nil {
- return nil, err
- }
-
- return response, nil
+ return doGETRequest[ObjectStorageBucket](ctx, c, e)
}
// CreateObjectStorageBucket creates an ObjectStorageBucket
func (c *Client) CreateObjectStorageBucket(ctx context.Context, opts ObjectStorageBucketCreateOptions) (*ObjectStorageBucket, error) {
e := "object-storage/buckets"
- response, err := doPOSTRequest[ObjectStorageBucket](ctx, c, e, opts)
- if err != nil {
- return nil, err
- }
-
- return response, nil
+ return doPOSTRequest[ObjectStorageBucket](ctx, c, e, opts)
}
// GetObjectStorageBucketAccess gets the current access config for a bucket
+// Deprecated: use GetObjectStorageBucketAccessV2 for new implementations
func (c *Client) GetObjectStorageBucketAccess(ctx context.Context, clusterOrRegionID, label string) (*ObjectStorageBucketAccess, error) {
e := formatAPIPath("object-storage/buckets/%s/%s/access", clusterOrRegionID, label)
- response, err := doGETRequest[ObjectStorageBucketAccess](ctx, c, e)
- if err != nil {
- return nil, err
- }
-
- return response, nil
+ return doGETRequest[ObjectStorageBucketAccess](ctx, c, e)
}
// UpdateObjectStorageBucketAccess updates the access configuration for an ObjectStorageBucket
@@ -174,11 +161,16 @@ func (c *Client) UpdateObjectStorageBucketAccess(ctx context.Context, clusterOrR
return err
}
+// GetObjectStorageBucketAccess gets the current access config for a bucket
+func (c *Client) GetObjectStorageBucketAccessV2(ctx context.Context, clusterOrRegionID, label string) (*ObjectStorageBucketAccessV2, error) {
+ e := formatAPIPath("object-storage/buckets/%s/%s/access", clusterOrRegionID, label)
+ return doGETRequest[ObjectStorageBucketAccessV2](ctx, c, e)
+}
+
// DeleteObjectStorageBucket deletes the ObjectStorageBucket with the specified label
func (c *Client) DeleteObjectStorageBucket(ctx context.Context, clusterOrRegionID, label string) error {
e := formatAPIPath("object-storage/buckets/%s/%s", clusterOrRegionID, label)
- err := doDELETERequest(ctx, c, e)
- return err
+ return doDELETERequest(ctx, c, e)
}
// Lists the contents of the specified ObjectStorageBucket
diff --git a/object_storage_endpoints.go b/object_storage_endpoints.go
new file mode 100644
index 000000000..635091948
--- /dev/null
+++ b/object_storage_endpoints.go
@@ -0,0 +1,26 @@
+package linodego
+
+import "context"
+
+// NotificationType constants start with Notification and include all known Linode API Notification Types.
+type ObjectStorageEndpointType string
+
+// NotificationType constants represent the actions that cause a Notification. New types may be added in the future.
+const (
+ ObjectStorageEndpointE0 ObjectStorageEndpointType = "E0"
+ ObjectStorageEndpointE1 ObjectStorageEndpointType = "E1"
+ ObjectStorageEndpointE2 ObjectStorageEndpointType = "E2"
+ ObjectStorageEndpointE3 ObjectStorageEndpointType = "E3"
+)
+
+// ObjectStorageEndpoint represents a linode object storage endpoint object
+type ObjectStorageEndpoint struct {
+ Region string `json:"region"`
+ S3Endpoint *string `json:"s3_endpoint"`
+ EndpointType ObjectStorageEndpointType `json:"endpoint_type"`
+}
+
+// ListObjectStorageEndpoints lists all endpoints in all regions
+func (c *Client) ListObjectStorageEndpoints(ctx context.Context, opts *ListOptions) ([]ObjectStorageEndpoint, error) {
+ return getPaginatedResults[ObjectStorageEndpoint](ctx, c, "object-storage/endpoints", opts)
+}
diff --git a/object_storage_keys.go b/object_storage_keys.go
index d6127db30..f10dd9d6d 100644
--- a/object_storage_keys.go
+++ b/object_storage_keys.go
@@ -5,8 +5,9 @@ import (
)
type ObjectStorageKeyRegion struct {
- ID string `json:"id"`
- S3Endpoint string `json:"s3_endpoint"`
+ ID string `json:"id"`
+ S3Endpoint string `json:"s3_endpoint"`
+ EndpointType ObjectStorageEndpointType `json:"endpoint_type"`
}
// ObjectStorageKey represents a linode object storage key object
diff --git a/object_storage_object.go b/object_storage_object.go
index ac289f3f1..61fd93e14 100644
--- a/object_storage_object.go
+++ b/object_storage_object.go
@@ -17,11 +17,17 @@ type ObjectStorageObjectURL struct {
Exists bool `json:"exists"`
}
+// Deprecated: Please use ObjectStorageObjectACLConfigV2 for all new implementations.
type ObjectStorageObjectACLConfig struct {
ACL string `json:"acl"`
ACLXML string `json:"acl_xml"`
}
+type ObjectStorageObjectACLConfigV2 struct {
+ ACL *string `json:"acl"`
+ ACLXML *string `json:"acl_xml"`
+}
+
type ObjectStorageObjectACLConfigUpdateOptions struct {
Name string `json:"name"`
ACL string `json:"acl"`
@@ -29,18 +35,27 @@ type ObjectStorageObjectACLConfigUpdateOptions struct {
func (c *Client) CreateObjectStorageObjectURL(ctx context.Context, objectID, label string, opts ObjectStorageObjectURLCreateOptions) (*ObjectStorageObjectURL, error) {
e := formatAPIPath("object-storage/buckets/%s/%s/object-url", objectID, label)
- response, err := doPOSTRequest[ObjectStorageObjectURL](ctx, c, e, opts)
- return response, err
+ return doPOSTRequest[ObjectStorageObjectURL](ctx, c, e, opts)
}
+// Deprecated: use GetObjectStorageObjectACLConfigV2 for new implementations
func (c *Client) GetObjectStorageObjectACLConfig(ctx context.Context, objectID, label, object string) (*ObjectStorageObjectACLConfig, error) {
e := formatAPIPath("object-storage/buckets/%s/%s/object-acl?name=%s", objectID, label, object)
- response, err := doGETRequest[ObjectStorageObjectACLConfig](ctx, c, e)
- return response, err
+ return doGETRequest[ObjectStorageObjectACLConfig](ctx, c, e)
}
+// Deprecated: use UpdateObjectStorageObjectACLConfigV2 for new implementations
func (c *Client) UpdateObjectStorageObjectACLConfig(ctx context.Context, objectID, label string, opts ObjectStorageObjectACLConfigUpdateOptions) (*ObjectStorageObjectACLConfig, error) {
e := formatAPIPath("object-storage/buckets/%s/%s/object-acl", objectID, label)
- response, err := doPUTRequest[ObjectStorageObjectACLConfig](ctx, c, e, opts)
- return response, err
+ return doPUTRequest[ObjectStorageObjectACLConfig](ctx, c, e, opts)
+}
+
+func (c *Client) GetObjectStorageObjectACLConfigV2(ctx context.Context, objectID, label, object string) (*ObjectStorageObjectACLConfigV2, error) {
+ e := formatAPIPath("object-storage/buckets/%s/%s/object-acl?name=%s", objectID, label, object)
+ return doGETRequest[ObjectStorageObjectACLConfigV2](ctx, c, e)
+}
+
+func (c *Client) UpdateObjectStorageObjectACLConfigV2(ctx context.Context, objectID, label string, opts ObjectStorageObjectACLConfigUpdateOptions) (*ObjectStorageObjectACLConfigV2, error) {
+ e := formatAPIPath("object-storage/buckets/%s/%s/object-acl", objectID, label)
+ return doPUTRequest[ObjectStorageObjectACLConfigV2](ctx, c, e, opts)
}
diff --git a/postgres.go b/postgres.go
index 19c32f79a..18c5492fa 100644
--- a/postgres.go
+++ b/postgres.go
@@ -35,24 +35,37 @@ 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"`
+ AllowList []string `json:"allow_list"`
+ Port int `json:"port"`
+
+ ClusterSize int `json:"cluster_size"`
+ Platform DatabasePlatform `json:"platform"`
+
+ // Members has dynamic keys so it is a map
+ Members map[string]DatabaseMemberType `json:"members"`
+
+ // Deprecated: ReplicationCommitType is a deprecated property, as it is no longer supported in DBaaS V2.
+ ReplicationCommitType PostgresCommitType `json:"replication_commit_type"`
+ // Deprecated: ReplicationType is a deprecated property, as it is no longer supported in DBaaS V2.
+ ReplicationType PostgresReplicationType `json:"replication_type"`
+ // Deprecated: SSLConnection is a deprecated property, as it is no longer supported in DBaaS V2.
+ SSLConnection bool `json:"ssl_connection"`
+ // Deprecated: Encrypted is a deprecated property, as it is no longer supported in DBaaS V2.
+ Encrypted bool `json:"encrypted"`
+
+ 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 +73,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,28 +86,39 @@ 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"`
+
+ // Deprecated: Encrypted is a deprecated property, as it is no longer supported in DBaaS V2.
+ Encrypted bool `json:"encrypted,omitempty"`
+ // Deprecated: SSLConnection is a deprecated property, as it is no longer supported in DBaaS V2.
+ SSLConnection bool `json:"ssl_connection,omitempty"`
+ // Deprecated: ReplicationType is a deprecated property, as it is no longer supported in DBaaS V2.
+ ReplicationType PostgresReplicationType `json:"replication_type,omitempty"`
+ // Deprecated: ReplicationCommitType is a deprecated property, as it is no longer supported in DBaaS V2.
+ ReplicationCommitType PostgresCommitType `json:"replication_commit_type,omitempty"`
+
+ Fork *DatabaseFork `json:"fork,omitempty"`
}
// PostgresUpdateOptions fields are used when altering the existing Postgres Database
type PostgresUpdateOptions struct {
- Label string `json:"label,omitempty"`
- AllowList *[]string `json:"allow_list,omitempty"`
- Updates *DatabaseMaintenanceWindow `json:"updates,omitempty"`
+ Label string `json:"label,omitempty"`
+ AllowList *[]string `json:"allow_list,omitempty"`
+ Updates *DatabaseMaintenanceWindow `json:"updates,omitempty"`
+ Type string `json:"type,omitempty"`
+ ClusterSize int `json:"cluster_size,omitempty"`
+ Version string `json:"version,omitempty"`
}
// PostgresDatabaseSSL is the SSL Certificate to access the Linode Managed Postgres Database
@@ -114,6 +139,8 @@ func (c *Client) ListPostgresDatabases(ctx context.Context, opts *ListOptions) (
}
// PostgresDatabaseBackup is information for interacting with a backup for the existing Postgres Database
+// Deprecated: PostgresDatabaseBackup is a deprecated struct, as the backup endpoints are no longer supported in DBaaS V2.
+// In DBaaS V2, databases can be backed up via database forking.
type PostgresDatabaseBackup struct {
ID int `json:"id"`
Label string `json:"label"`
@@ -140,12 +167,16 @@ func (d *PostgresDatabaseBackup) UnmarshalJSON(b []byte) error {
}
// PostgresBackupCreateOptions are options used for CreatePostgresDatabaseBackup(...)
+// Deprecated: PostgresBackupCreateOptions is a deprecated struct, as the backup endpoints are no longer supported in DBaaS V2.
+// In DBaaS V2, databases can be backed up via database forking.
type PostgresBackupCreateOptions struct {
Label string `json:"label"`
Target PostgresDatabaseTarget `json:"target"`
}
// ListPostgresDatabaseBackups lists all Postgres Database Backups associated with the given Postgres Database
+// Deprecated: ListPostgresDatabaseBackups is a deprecated method, as the backup endpoints are no longer supported in DBaaS V2.
+// In DBaaS V2, databases can be backed up via database forking.
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 +239,8 @@ func (c *Client) GetPostgresDatabaseSSL(ctx context.Context, databaseID int) (*P
}
// GetPostgresDatabaseBackup returns a specific Postgres Database Backup with the given ids
+// Deprecated: GetPostgresDatabaseBackup is a deprecated method, as the backup endpoints are no longer supported in DBaaS V2.
+// In DBaaS V2, databases can be backed up via database forking.
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 +248,8 @@ func (c *Client) GetPostgresDatabaseBackup(ctx context.Context, databaseID int,
}
// RestorePostgresDatabaseBackup returns the given Postgres Database with the given Backup
+// Deprecated: RestorePostgresDatabaseBackup is a deprecated method, as the backup endpoints are no longer supported in DBaaS V2.
+// In DBaaS V2, databases can be backed up via database forking.
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 +257,8 @@ func (c *Client) RestorePostgresDatabaseBackup(ctx context.Context, databaseID i
}
// CreatePostgresDatabaseBackup creates a snapshot for the given Postgres database
+// Deprecated: CreatePostgresDatabaseBackup is a deprecated method, as the backup endpoints are no longer supported in DBaaS V2.
+// In DBaaS V2, databases can be backed up via database forking.
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/regions.go b/regions.go
index 908a4fa8a..9669ae8a2 100644
--- a/regions.go
+++ b/regions.go
@@ -10,32 +10,39 @@ import (
// Defined as strings rather than a custom type to avoid breaking change.
// Can be changed in the potential v2 version.
const (
- CapabilityLinodes string = "Linodes"
- CapabilityNodeBalancers string = "NodeBalancers"
- CapabilityBlockStorage string = "Block Storage"
- CapabilityObjectStorage string = "Object Storage"
- CapabilityObjectStorageRegions string = "Object Storage Access Key Regions"
- CapabilityLKE string = "Kubernetes"
- CapabilityLkeHaControlPlanes string = "LKE HA Control Planes"
- CapabilityCloudFirewall string = "Cloud Firewall"
- CapabilityGPU string = "GPU Linodes"
- CapabilityVlans string = "Vlans"
- CapabilityVPCs string = "VPCs"
- CapabilityVPCsExtra string = "VPCs Extra"
- CapabilityMachineImages string = "Machine Images"
- CapabilityBareMetal string = "Bare Metal"
- CapabilityDBAAS string = "Managed Databases"
- CapabilityBlockStorageMigrations string = "Block Storage Migrations"
- CapabilityMetadata string = "Metadata"
- CapabilityPremiumPlans string = "Premium Plans"
- CapabilityEdgePlans string = "Edge Plans"
- CapabilityLKEControlPlaneACL string = "LKE Network Access Control List (IP ACL)"
- CapabilityACLB string = "Akamai Cloud Load Balancer"
- CapabilitySupportTicketSeverity string = "Support Ticket Severity"
- CapabilityBackups string = "Backups"
- CapabilityPlacementGroup string = "Placement Group"
- CapabilityDiskEncryption string = "Disk Encryption"
- CapabilityBlockStorageEncryption string = "Block Storage Encryption"
+ CapabilityACLB string = "Akamai Cloud Load Balancer"
+ CapabilityBackups string = "Backups"
+ CapabilityBareMetal string = "Bare Metal"
+ CapabilityBlockStorage string = "Block Storage"
+ CapabilityBlockStorageEncryption string = "Block Storage Encryption"
+ CapabilityBlockStorageMigrations string = "Block Storage Migrations"
+ CapabilityCloudFirewall string = "Cloud Firewall"
+ CapabilityDBAAS string = "Managed Databases"
+ CapabilityDiskEncryption string = "Disk Encryption"
+ CapabilityEdgePlans string = "Edge Plans"
+ CapabilityGPU string = "GPU Linodes"
+ CapabilityKubernetesEnterprise string = "Kubernetes Enterprise"
+ CapabilityLKE string = "Kubernetes"
+ CapabilityLKEControlPlaneACL string = "LKE Network Access Control List (IP ACL)"
+ CapabilityLinodes string = "Linodes"
+ CapabilityLkeHaControlPlanes string = "LKE HA Control Planes"
+ CapabilityMachineImages string = "Machine Images"
+ CapabilityMetadata string = "Metadata"
+ CapabilityNodeBalancers string = "NodeBalancers"
+ CapabilityObjectStorage string = "Object Storage"
+ CapabilityObjectStorageAccessKeyRegions string = "Object Storage Access Key Regions"
+ CapabilityObjectStorageEndpointTypes string = "Object Storage Endpoint Types"
+ CapabilityPlacementGroup string = "Placement Group"
+ CapabilityPremiumPlans string = "Premium Plans"
+ CapabilityQuadraT1UVPU string = "NETINT Quadra T1U"
+ CapabilitySupportTicketSeverity string = "Support Ticket Severity"
+ CapabilityVPCs string = "VPCs"
+ CapabilityVPCsExtra string = "VPCs Extra"
+ CapabilityVlans string = "Vlans"
+
+ // Deprecated: CapabilityObjectStorageRegions constant has been
+ // renamed to `CapabilityObjectStorageAccessKeyRegions`.
+ CapabilityObjectStorageRegions string = CapabilityObjectStorageAccessKeyRegions
)
// Region-related endpoints have a custom expiry time as the
diff --git a/request_helpers.go b/request_helpers.go
index 152a26433..28ed21499 100644
--- a/request_helpers.go
+++ b/request_helpers.go
@@ -149,6 +149,18 @@ func doPOSTRequest[T, O any](
return r.Result().(*T), nil
}
+// doPOSTRequest runs a POST request using the given client, API endpoint,
+// and options/body. It expects only empty response from the endpoint.
+func doPOSTRequestNoResponseBody[T any](
+ ctx context.Context,
+ client *Client,
+ endpoint string,
+ options ...T,
+) error {
+ _, err := doPOSTRequest[any, T](ctx, client, endpoint, options...)
+ return err
+}
+
// doPUTRequest runs a PUT request using the given client, API endpoint,
// and options/body.
func doPUTRequest[T, O any](
diff --git a/test/go.mod b/test/go.mod
index 2bacf2452..95de5c84a 100644
--- a/test/go.mod
+++ b/test/go.mod
@@ -7,8 +7,9 @@ require (
github.com/linode/linodego v1.33.0
github.com/linode/linodego/k8s v0.0.0-00010101000000-000000000000
github.com/stretchr/testify v1.10.0
- golang.org/x/net v0.33.0
- golang.org/x/oauth2 v0.24.0
+ golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67
+ golang.org/x/net v0.34.0
+ golang.org/x/oauth2 v0.25.0
k8s.io/client-go v0.29.4
)
@@ -19,7 +20,7 @@ require (
github.com/go-openapi/jsonpointer v0.19.6 // indirect
github.com/go-openapi/jsonreference v0.20.2 // indirect
github.com/go-openapi/swag v0.22.3 // indirect
- github.com/go-resty/resty/v2 v2.16.2 // indirect
+ github.com/go-resty/resty/v2 v2.16.3 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/gnostic-models v0.6.8 // indirect
@@ -36,13 +37,13 @@ require (
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/objx v0.5.2 // indirect
- golang.org/x/sys v0.28.0 // indirect
- golang.org/x/term v0.27.0 // indirect
+ golang.org/x/sys v0.29.0 // indirect
+ golang.org/x/term v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
golang.org/x/time v0.6.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
- gopkg.in/ini.v1 v1.66.6 // indirect
+ gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
k8s.io/api v0.29.4 // indirect
@@ -55,7 +56,9 @@ require (
sigs.k8s.io/yaml v1.3.0 // indirect
)
-go 1.22
+go 1.22.0
+
+toolchain go1.22.1
replace github.com/linode/linodego => ../
diff --git a/test/go.sum b/test/go.sum
index b3714baf7..1379b7892 100644
--- a/test/go.sum
+++ b/test/go.sum
@@ -14,8 +14,8 @@ github.com/go-openapi/jsonreference v0.20.2 h1:3sVjiK66+uXK/6oQ8xgcRKcFgQ5KXa2Kv
github.com/go-openapi/jsonreference v0.20.2/go.mod h1:Bl1zwGIM8/wsvqjsOQLJ/SH+En5Ap4rVB5KVcIDZG2k=
github.com/go-openapi/swag v0.22.3 h1:yMBqmnQ0gyZvEb/+KzuWZOXgllrXT4SADYbvDaXHv/g=
github.com/go-openapi/swag v0.22.3/go.mod h1:UzaqsxGiab7freDnrUUra0MwWfN/q7tE4j+VcZ0yl14=
-github.com/go-resty/resty/v2 v2.16.2 h1:CpRqTjIzq/rweXUt9+GxzzQdlkqMdt8Lm/fuK/CAbAg=
-github.com/go-resty/resty/v2 v2.16.2/go.mod h1:0fHAoK7JoBy/Ch36N8VFeMsK7xQOHhvWaC3iOktwmIU=
+github.com/go-resty/resty/v2 v2.16.3 h1:zacNT7lt4b8M/io2Ahj6yPypL7bqx9n1iprfQuodV+E=
+github.com/go-resty/resty/v2 v2.16.3/go.mod h1:hkJtXbA2iKHzJheXYvQ8snQES5ZLGKMwQ07xAwp/fiA=
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 h1:tfuBGBXKqDEevZMzYi5KSi8KkcZtzBcTgAUUtapy0OI=
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572/go.mod h1:9Pwr4B2jHnOSGXyyzV8ROjYa2ojvAY6HCGYYfMoC3Ls=
github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=
@@ -92,26 +92,28 @@ github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9dec
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
+golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67 h1:1UoZQm6f0P/ZO0w1Ri+f+ifG/gXhegadRdwBIXEFWDo=
+golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67/go.mod h1:qj5a5QZpwLU2NLQudwIN5koi3beDhSAlJwa67PuM98c=
golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
-golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I=
-golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4=
-golang.org/x/oauth2 v0.24.0 h1:KTBBxWqUa0ykRPLtV69rRto9TLXcqYkeswu48x/gvNE=
-golang.org/x/oauth2 v0.24.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=
+golang.org/x/net v0.34.0 h1:Mb7Mrk043xzHgnRM88suvJFwzVrRfHEHJEl5/71CKw0=
+golang.org/x/net v0.34.0/go.mod h1:di0qlW3YNM5oh6GqDGQr92MyTozJPmybPK4Ev/Gm31k=
+golang.org/x/oauth2 v0.25.0 h1:CY4y7XT9v0cRI9oupztF8AgiIu99L/ksR/Xp/6jrZ70=
+golang.org/x/oauth2 v0.25.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA=
-golang.org/x/sys v0.28.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
-golang.org/x/term v0.27.0 h1:WP60Sv1nlK1T6SupCHbXzSaN0b9wUmsPoRS9b61A23Q=
-golang.org/x/term v0.27.0/go.mod h1:iMsnZpn0cago0GOrHO2+Y7u7JPn5AylBrcoWkElMTSM=
+golang.org/x/sys v0.29.0 h1:TPYlXGxvx1MGTn2GiZDhnjPA9wZzZeGKHHmKhHYvgaU=
+golang.org/x/sys v0.29.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
+golang.org/x/term v0.28.0 h1:/Ts8HFuMR2E6IP/jlo7QVLZHggjKQbhu/7H0LJFr3Gg=
+golang.org/x/term v0.28.0/go.mod h1:Sw/lC2IAUZ92udQNf3WodGtn4k/XoLyZoh8v/8uiwek=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/text v0.21.0 h1:zyQAAkrwaneQ066sspRyJaG9VNi/YJ1NfzcGB3hZ/qo=
@@ -122,8 +124,8 @@ golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGm
golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
-golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d h1:vU5i/LfpvrRCpgM/VPfJLg5KjxD3E+hfT1SH+d9zLwg=
-golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d/go.mod h1:aiJjzUbINMkxbQROHiO6hDPo2LHcIPhhQsa9DLh0yGk=
+golang.org/x/tools v0.28.0 h1:WuB6qZ4RPCQo5aP3WdKZS7i595EdWqWR8vqJTlwTVK8=
+golang.org/x/tools v0.28.0/go.mod h1:dcIOrVd3mfQKTgrDVQHqCPMWy6lnhfhtX3hLXYVLfRw=
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
@@ -135,8 +137,8 @@ gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntN
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=
gopkg.in/inf.v0 v0.9.1 h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc=
gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw=
-gopkg.in/ini.v1 v1.66.6 h1:LATuAqN/shcYAOkv3wl2L4rkaKqkcgTBQjOyYDvcPKI=
-gopkg.in/ini.v1 v1.66.6/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=
+gopkg.in/ini.v1 v1.67.0 h1:Dgnx+6+nfE+IfzjUEISNeydPJh9AXNNsWbGP9KzCsOA=
+gopkg.in/ini.v1 v1.67.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=
gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
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/TestDatabase_Engine.yaml b/test/integration/fixtures/TestDatabase_Engine.yaml
index d747169b0..d4c6847a6 100644
--- a/test/integration/fixtures/TestDatabase_Engine.yaml
+++ b/test/integration/fixtures/TestDatabase_Engine.yaml
@@ -1,127 +1,132 @@
---
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"}, {"engine": "postgresql", "id": "postgresql/17", "version": "17"}], "page":
+ 1, "pages": 1, "results": 6}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - "431"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Fri, 27 Dec 2024 18:13:13 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:
+ - Fri, 27 Dec 2024 18:13:13 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..340d8ee6b 100644
--- a/test/integration/fixtures/TestDatabase_List.yaml
+++ b/test/integration/fixtures/TestDatabase_List.yaml
@@ -15,243 +15,248 @@ 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",
- "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":
+ ["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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium 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", "Kubernetes Enterprise", "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", "Kubernetes Enterprise", "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", "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed
+ Databases", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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":
- "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,
+ "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Kubernetes Enterprise", "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",
+ "Kubernetes Enterprise", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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",
+ "Kubernetes Enterprise", "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", "Kubernetes Enterprise", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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",
+ "Kubernetes Enterprise", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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", "Kubernetes Enterprise",
+ "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", "Kubernetes Enterprise",
+ "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", "GPU Linodes", "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", "Kubernetes
+ Enterprise", "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, 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",
+ 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", "Disk Encryption", "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"],
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5,
+ 96.126.106.5, 50.116.53.5, 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5,
+ 97.107.133.4, 207.192.69.4, 207.192.69.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west",
+ "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
"status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5,
176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20,
109.74.194.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "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": "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,
- 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}'
+ "sg", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country":
+ "de", "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": "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 +268,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 +279,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 24 Jun 2024 16:45:41 GMT
+ - Fri, 27 Dec 2024 18:13:15 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -291,14 +298,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-defmz284gre14d6","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 +317,14 @@ 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":
+ "a200263-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": "replica-a200263-akamai-prod-5782758-default.g2a.akamaidb.net"},
+ "id": 200263, "label": "go-postgres-testing-defmz284gre14d6", "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": 4, "duration": 4, "frequency": "weekly", "hour_of_day":
+ 2, "pending": []}, "used_disk_size_gb": null, "version": "14", "platform": "rdbms-default"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -329,18 +336,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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"
+ - "719"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 24 Jun 2024 16:45:41 GMT
+ - Fri, 27 Dec 2024 18:13:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -357,7 +366,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -374,16 +383,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-12-27T18:13:15"},"entity.id":200263,"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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -395,18 +405,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:13:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -424,7 +436,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -441,16 +453,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -462,18 +475,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:13:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -491,7 +506,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -508,16 +523,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -529,18 +545,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:14:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -558,7 +576,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -575,16 +593,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -596,18 +615,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:14:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -625,7 +646,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -642,16 +663,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -663,18 +685,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:14:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -692,7 +716,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -709,16 +733,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -730,18 +755,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:14:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -759,7 +786,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -776,16 +803,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -797,18 +825,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:15:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -826,7 +856,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -843,16 +873,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -864,18 +895,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:15:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -893,7 +926,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -910,16 +943,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -931,18 +965,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:15:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -960,7 +996,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -977,16 +1013,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -998,18 +1035,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:15:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1027,7 +1066,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1044,16 +1083,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1065,18 +1105,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:16:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1094,7 +1136,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1111,16 +1153,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1132,18 +1175,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:16:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1161,7 +1206,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1178,16 +1223,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1199,18 +1245,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:16:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1228,7 +1276,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1245,16 +1293,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1266,18 +1315,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:16:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1295,7 +1346,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1312,16 +1363,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1333,18 +1385,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:17:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1362,7 +1416,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1379,16 +1433,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1400,18 +1455,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:17:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1429,7 +1486,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1446,16 +1503,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1467,18 +1525,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:17:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1496,7 +1556,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1513,16 +1573,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1534,18 +1595,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:17:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1563,7 +1626,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1580,16 +1643,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1601,18 +1665,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:18:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1630,7 +1696,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1647,16 +1713,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1668,18 +1735,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:18:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1697,7 +1766,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1714,16 +1783,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1735,18 +1805,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:18:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1764,7 +1836,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1781,16 +1853,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1802,18 +1875,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:18:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1831,7 +1906,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1848,16 +1923,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1869,18 +1945,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:19:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1898,7 +1976,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1915,16 +1993,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1936,18 +2015,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:19:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1965,7 +2046,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1982,16 +2063,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2003,18 +2085,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:19:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2032,7 +2116,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2049,16 +2133,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2070,18 +2155,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:19:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2099,7 +2186,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2116,16 +2203,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2137,18 +2225,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:20:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2166,7 +2256,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2183,16 +2273,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2204,18 +2295,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:20:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2233,7 +2326,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2250,16 +2343,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2271,18 +2365,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:20:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2300,7 +2396,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2317,16 +2413,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2338,18 +2435,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:20:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2367,7 +2466,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2384,16 +2483,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2405,18 +2505,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:21:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2434,7 +2536,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2451,16 +2553,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2472,18 +2575,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:21:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2501,7 +2606,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2518,16 +2623,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2539,18 +2645,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:21:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2568,7 +2676,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2585,16 +2693,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2606,18 +2715,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:21:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2635,7 +2746,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2652,16 +2763,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2673,18 +2785,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:22:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2702,7 +2816,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2719,16 +2833,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2740,18 +2855,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:22:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2769,7 +2886,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2786,16 +2903,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2807,18 +2925,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:22:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2836,7 +2956,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2853,16 +2973,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2874,18 +2995,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:22:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2903,7 +3026,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2920,16 +3043,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2941,18 +3065,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:23:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2970,7 +3096,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2987,16 +3113,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3008,18 +3135,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:23:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3037,7 +3166,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3054,16 +3183,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3075,18 +3205,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:23:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3104,7 +3236,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3121,16 +3253,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3142,18 +3275,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:23:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3171,7 +3306,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3188,16 +3323,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3209,18 +3345,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:24:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3238,7 +3376,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3255,16 +3393,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3276,18 +3415,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:24:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3305,7 +3446,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3322,16 +3463,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3343,18 +3485,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:24:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3372,7 +3516,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3389,16 +3533,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3410,18 +3555,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:24:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3439,7 +3586,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3456,16 +3603,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3477,18 +3625,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:25:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3506,7 +3656,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3523,16 +3673,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3544,18 +3695,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:25:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3573,7 +3726,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3590,16 +3743,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3611,18 +3765,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:25:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3640,7 +3796,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3657,16 +3813,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3678,18 +3835,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:25:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3707,7 +3866,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3724,16 +3883,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3745,18 +3905,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:26:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3774,7 +3936,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3791,16 +3953,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3812,18 +3975,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:26:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3841,7 +4006,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3858,16 +4023,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3879,18 +4045,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:26:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3908,7 +4076,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3925,16 +4093,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3946,18 +4115,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:26:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3975,7 +4146,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3992,16 +4163,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -4013,18 +4185,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:27:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4042,7 +4216,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4059,16 +4233,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -4080,18 +4255,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:27:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4109,7 +4286,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4126,16 +4303,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -4147,18 +4325,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:27:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4176,7 +4356,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4193,16 +4373,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -4214,18 +4395,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:27:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4243,7 +4426,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4260,16 +4443,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -4281,18 +4465,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:28:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4310,7 +4496,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4327,16 +4513,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -4348,18 +4535,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:28:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4377,7 +4566,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4394,16 +4583,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -4415,18 +4605,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:28:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4444,7 +4636,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4461,16 +4653,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -4482,18 +4675,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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:01:11 GMT
+ - Fri, 27 Dec 2024 18:28:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4511,7 +4706,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4528,15 +4723,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-12-27T18:13:15"},"entity.id":200263,"entity.type":"database","id":{"+gte":912366309}}'
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": 912366309, "created": "2018-01-02T03:04:05", "seen": false,
+ "read": false, "percent_complete": 100, "time_remaining": null, "rate": null,
+ "duration": 910, "action": "database_create", "username": "ErikZilber", "entity":
+ {"label": "go-postgres-testing-defmz284gre14d6", "id": 200263, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200263"}, "status": "finished", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -4549,18 +4744,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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:26 GMT
+ - Fri, 27 Dec 2024 18:29:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4578,7 +4775,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4594,17 +4791,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": "a200263-akamai-prod-5782758-default.g2a.akamaidb.net",
+ "standby": "replica-a200263-akamai-prod-5782758-default.g2a.akamaidb.net"},
+ "id": 200263, "label": "go-postgres-testing-defmz284gre14d6", "members": {"172.105.39.173":
+ "failover", "172.105.39.198": "failover", "172.105.63.39": "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": 4, "duration": 4, "frequency":
+ "weekly", "hour_of_day": 2, "pending": []}, "used_disk_size_gb": 0, "version":
+ "14.15", "platform": "rdbms-default"}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -4616,18 +4816,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:41 GMT
+ - Fri, 27 Dec 2024 18:29:05 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4635,8 +4835,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:
@@ -4645,7 +4846,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4661,17 +4862,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/200263
+ 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"
@@ -4683,8243 +4877,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: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:
+ 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: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 +4890,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 24 Jun 2024 17:32:28 GMT
+ - Fri, 27 Dec 2024 18:29:22 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -12948,7 +4907,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..7ea57b4ae 100644
--- a/test/integration/fixtures/TestDatabase_MySQL_Suite.yaml
+++ b/test/integration/fixtures/TestDatabase_MySQL_Suite.yaml
@@ -15,262 +15,248 @@ 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",
- "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":
+ ["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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium 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", "Kubernetes Enterprise", "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", "Kubernetes Enterprise", "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", "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed
+ Databases", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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": "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,
- 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":
- "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,
+ "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Kubernetes Enterprise", "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",
+ "Kubernetes Enterprise", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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",
+ "Kubernetes Enterprise", "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", "Kubernetes Enterprise", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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",
+ "Kubernetes Enterprise", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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", "Kubernetes Enterprise",
+ "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", "Kubernetes Enterprise",
+ "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", "GPU Linodes", "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", "Kubernetes
+ Enterprise", "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, 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",
+ 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", "Disk Encryption", "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"],
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5,
+ 96.126.106.5, 50.116.53.5, 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5,
+ 97.107.133.4, 207.192.69.4, 207.192.69.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west",
+ "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
"status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5,
176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20,
109.74.194.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "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": "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,
- 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}'
+ "sg", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country":
+ "de", "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": "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"
@@ -282,6 +268,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 +279,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:05:41 GMT
+ - Fri, 27 Dec 2024 18:29:22 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -310,14 +298,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-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-def6kh795oq6v2s","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 +317,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":
+ "a200265-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": "replica-a200265-akamai-prod-5782758-default.g2a.akamaidb.net"},
+ "id": 200265, "label": "go-mysql-test-def6kh795oq6v2s", "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":
+ 21, "pending": []}, "used_disk_size_gb": null, "version": "8", "platform": "rdbms-default"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -348,18 +336,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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"
+ - "708"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:05:41 GMT
+ - Fri, 27 Dec 2024 18:29:25 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -376,7 +366,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -393,15 +383,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-12-27T18:29:22"},"entity.id":200265,"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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -414,6 +404,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 +417,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:05:56 GMT
+ - Fri, 27 Dec 2024 18:29:40 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -443,7 +435,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -460,15 +452,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -481,6 +473,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 +486,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:06:11 GMT
+ - Fri, 27 Dec 2024 18:29:55 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -510,7 +504,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -527,15 +521,15 @@ interactions:
User-Agent:
- linodego/dev https://github.com/linode/linodego
X-Filter:
- - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -548,6 +542,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 +555,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:06:26 GMT
+ - Fri, 27 Dec 2024 18:30:10 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -577,7 +573,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -594,15 +590,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -615,6 +611,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 +624,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:06:41 GMT
+ - Fri, 27 Dec 2024 18:30:25 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -644,7 +642,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -661,15 +659,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -682,6 +680,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 +693,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:06:56 GMT
+ - Fri, 27 Dec 2024 18:30:40 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -711,7 +711,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -728,15 +728,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -749,6 +749,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 +762,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:07:11 GMT
+ - Fri, 27 Dec 2024 18:30:55 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -778,7 +780,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -795,15 +797,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -816,6 +818,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 +831,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:07:26 GMT
+ - Fri, 27 Dec 2024 18:31:10 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -845,7 +849,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -862,15 +866,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -883,6 +887,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 +900,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:07:41 GMT
+ - Fri, 27 Dec 2024 18:31:25 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -912,7 +918,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -929,15 +935,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -950,6 +956,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 +969,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:07:56 GMT
+ - Fri, 27 Dec 2024 18:31:40 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -979,7 +987,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -996,15 +1004,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1017,6 +1025,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 +1038,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:08:11 GMT
+ - Fri, 27 Dec 2024 18:31:55 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1046,7 +1056,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1063,15 +1073,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1084,6 +1094,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 +1107,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:08:26 GMT
+ - Fri, 27 Dec 2024 18:32:10 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1113,7 +1125,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1130,15 +1142,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1151,6 +1163,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 +1176,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:08:41 GMT
+ - Fri, 27 Dec 2024 18:32:25 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1180,7 +1194,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1197,15 +1211,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1218,6 +1232,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 +1245,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:08:56 GMT
+ - Fri, 27 Dec 2024 18:32:40 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1247,7 +1263,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1264,15 +1280,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1285,6 +1301,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 +1314,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:09:11 GMT
+ - Fri, 27 Dec 2024 18:32:55 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1314,7 +1332,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1331,15 +1349,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1352,6 +1370,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 +1383,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:09:26 GMT
+ - Fri, 27 Dec 2024 18:33:10 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1381,7 +1401,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1398,15 +1418,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1419,6 +1439,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 +1452,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:09:41 GMT
+ - Fri, 27 Dec 2024 18:33:25 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1448,7 +1470,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1465,15 +1487,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1486,6 +1508,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 +1521,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:09:56 GMT
+ - Fri, 27 Dec 2024 18:33:40 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1515,7 +1539,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1532,15 +1556,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1553,6 +1577,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 +1590,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:10:11 GMT
+ - Fri, 27 Dec 2024 18:33:55 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1582,7 +1608,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1599,15 +1625,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1620,6 +1646,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 +1659,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:10:26 GMT
+ - Fri, 27 Dec 2024 18:34:10 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1649,7 +1677,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1666,15 +1694,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1687,6 +1715,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 +1728,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:10:41 GMT
+ - Fri, 27 Dec 2024 18:34:25 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1716,7 +1746,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1733,15 +1763,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1754,6 +1784,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 +1797,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:10:56 GMT
+ - Fri, 27 Dec 2024 18:34:40 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1783,7 +1815,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1800,15 +1832,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1821,6 +1853,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 +1866,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:11:11 GMT
+ - Fri, 27 Dec 2024 18:34:55 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1850,7 +1884,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1867,15 +1901,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1888,6 +1922,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 +1935,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:11:26 GMT
+ - Fri, 27 Dec 2024 18:35:10 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1917,7 +1953,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1934,15 +1970,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -1955,6 +1991,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 +2004,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:11:41 GMT
+ - Fri, 27 Dec 2024 18:35:25 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1984,7 +2022,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2001,15 +2039,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -2022,6 +2060,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 +2073,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:11:56 GMT
+ - Fri, 27 Dec 2024 18:35:40 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2051,7 +2091,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2068,15 +2108,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -2089,6 +2129,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 +2142,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:12:11 GMT
+ - Fri, 27 Dec 2024 18:35:55 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2118,7 +2160,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2135,15 +2177,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -2156,6 +2198,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 +2211,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:12:26 GMT
+ - Fri, 27 Dec 2024 18:36:10 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2185,7 +2229,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2202,15 +2246,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -2223,6 +2267,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 +2280,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:12:41 GMT
+ - Fri, 27 Dec 2024 18:36:25 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2252,7 +2298,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2269,15 +2315,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -2290,6 +2336,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 +2349,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:12:56 GMT
+ - Fri, 27 Dec 2024 18:36:40 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2319,7 +2367,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2336,15 +2384,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -2357,6 +2405,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 +2418,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:13:11 GMT
+ - Fri, 27 Dec 2024 18:36:55 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2386,7 +2436,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2403,15 +2453,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -2424,6 +2474,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 +2487,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:13:26 GMT
+ - Fri, 27 Dec 2024 18:37:10 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2453,7 +2505,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2470,15 +2522,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -2491,6 +2543,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 +2556,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:13:41 GMT
+ - Fri, 27 Dec 2024 18:37:25 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2520,7 +2574,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2537,15 +2591,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -2558,6 +2612,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 +2625,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:13:56 GMT
+ - Fri, 27 Dec 2024 18:37:40 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2587,7 +2643,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2604,15 +2660,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -2625,6 +2681,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 +2694,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:14:11 GMT
+ - Fri, 27 Dec 2024 18:37:55 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2654,7 +2712,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2671,15 +2729,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -2692,6 +2750,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 +2763,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:14:26 GMT
+ - Fri, 27 Dec 2024 18:38:10 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2721,7 +2781,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2738,15 +2798,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -2759,6 +2819,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 +2832,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:14:41 GMT
+ - Fri, 27 Dec 2024 18:38:25 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2788,7 +2850,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2805,15 +2867,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -2826,6 +2888,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 +2901,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:14:57 GMT
+ - Fri, 27 Dec 2024 18:38:40 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2855,7 +2919,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2872,15 +2936,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -2893,6 +2957,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 +2970,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:15:11 GMT
+ - Fri, 27 Dec 2024 18:38:55 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2922,7 +2988,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2939,15 +3005,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -2960,6 +3026,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 +3039,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:15:26 GMT
+ - Fri, 27 Dec 2024 18:39:10 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2989,7 +3057,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3006,15 +3074,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -3027,6 +3095,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 +3108,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:15:41 GMT
+ - Fri, 27 Dec 2024 18:39:25 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3056,7 +3126,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3073,15 +3143,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -3094,6 +3164,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 +3177,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:15:56 GMT
+ - Fri, 27 Dec 2024 18:39:40 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3123,7 +3195,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3140,15 +3212,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -3161,6 +3233,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 +3246,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:16:11 GMT
+ - Fri, 27 Dec 2024 18:39:55 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3190,7 +3264,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3207,15 +3281,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -3228,6 +3302,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 +3315,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:16:26 GMT
+ - Fri, 27 Dec 2024 18:40:10 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3257,7 +3333,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3274,15 +3350,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -3295,6 +3371,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 +3384,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:16:41 GMT
+ - Fri, 27 Dec 2024 18:40:25 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3324,7 +3402,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3341,15 +3419,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -3362,6 +3440,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 +3453,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:16:56 GMT
+ - Fri, 27 Dec 2024 18:40:40 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3391,7 +3471,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3408,15 +3488,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -3429,6 +3509,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 +3522,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:17:11 GMT
+ - Fri, 27 Dec 2024 18:40:55 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3458,7 +3540,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3475,15 +3557,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -3496,6 +3578,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 +3591,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:17:26 GMT
+ - Fri, 27 Dec 2024 18:41:10 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3525,7 +3609,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3542,15 +3626,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -3563,6 +3647,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 +3660,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:17:41 GMT
+ - Fri, 27 Dec 2024 18:41:25 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3592,7 +3678,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3609,15 +3695,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -3630,6 +3716,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 +3729,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:17:56 GMT
+ - Fri, 27 Dec 2024 18:41:40 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3659,7 +3747,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3676,15 +3764,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -3697,6 +3785,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 +3798,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:18:11 GMT
+ - Fri, 27 Dec 2024 18:41:55 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3726,7 +3816,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3743,15 +3833,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -3764,6 +3854,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 +3867,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:18:26 GMT
+ - Fri, 27 Dec 2024 18:42:10 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3793,7 +3885,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3810,15 +3902,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -3831,6 +3923,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 +3936,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:18:41 GMT
+ - Fri, 27 Dec 2024 18:42:25 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3860,7 +3954,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3877,15 +3971,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -3898,6 +3992,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 +4005,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:18:56 GMT
+ - Fri, 27 Dec 2024 18:42:40 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3927,7 +4023,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3944,15 +4040,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -3965,6 +4061,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 +4074,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:19:11 GMT
+ - Fri, 27 Dec 2024 18:42:55 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3994,7 +4092,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4011,15 +4109,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -4032,6 +4130,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 +4143,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:19:26 GMT
+ - Fri, 27 Dec 2024 18:43:10 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4061,7 +4161,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4078,15 +4178,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -4099,6 +4199,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 +4212,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:19:41 GMT
+ - Fri, 27 Dec 2024 18:43:25 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4128,7 +4230,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4145,15 +4247,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -4166,6 +4268,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 +4281,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:19:56 GMT
+ - Fri, 27 Dec 2024 18:43:40 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4195,7 +4299,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4212,15 +4316,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -4233,6 +4337,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 +4350,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:20:11 GMT
+ - Fri, 27 Dec 2024 18:43:55 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4262,7 +4368,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4279,15 +4385,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -4300,6 +4406,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 +4419,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:20:26 GMT
+ - Fri, 27 Dec 2024 18:44:10 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4329,7 +4437,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4346,15 +4454,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -4367,6 +4475,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 +4488,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:20:41 GMT
+ - Fri, 27 Dec 2024 18:44:26 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4396,7 +4506,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4413,15 +4523,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -4434,6 +4544,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 +4557,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:20:56 GMT
+ - Fri, 27 Dec 2024 18:44:40 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4463,7 +4575,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4480,15 +4592,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "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-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "notification", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -4501,6 +4613,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 +4626,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:21:11 GMT
+ - Fri, 27 Dec 2024 18:44:55 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4530,7 +4644,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4547,15 +4661,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-12-27T18:29:22"},"entity.id":200265,"entity.type":"database","id":{"+gte":912374734}}'
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": 912374734, "created": "2018-01-02T03:04:05", "seen": false,
+ "read": false, "percent_complete": 100, "time_remaining": null, "rate": null,
+ "duration": 901, "action": "database_create", "username": "ErikZilber", "entity":
+ {"label": "go-mysql-test-def6kh795oq6v2s", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "finished", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -4568,18 +4682,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:45:10 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4597,7 +4713,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4613,17 +4729,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": "a200265-akamai-prod-5782758-default.g2a.akamaidb.net", "standby":
+ "replica-a200265-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 200265,
+ "label": "go-mysql-test-def6kh795oq6v2s", "members": {"172.105.57.113": "failover",
+ "45.79.121.154": "failover", "45.79.123.218": "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": 21, "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 +4754,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
+ - Fri, 27 Dec 2024 18:45:12 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4654,8 +4773,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 +4784,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4680,17 +4800,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/200265
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":
+ "a200265-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": "replica-a200265-akamai-prod-5782758-default.g2a.akamaidb.net"},
+ "id": 200265, "label": "go-mysql-test-def6kh795oq6v2s", "members": {"172.105.57.113":
+ "failover", "45.79.121.154": "failover", "45.79.123.218": "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": 21, "pending": []}, "used_disk_size_gb": 0, "version":
+ "8.0.30", "platform": "rdbms-default"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -4702,18 +4824,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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"
+ - "835"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:21:56 GMT
+ - Fri, 27 Dec 2024 18:45:13 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4722,7 +4846,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 +4855,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: ""
+ body: '{"label":"go-mysql-test-def6kh795oq6v2s-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 +4871,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/200265
+ 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": "a200265-akamai-prod-5782758-default.g2a.akamaidb.net", "standby":
+ "replica-a200265-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 200265,
+ "label": "go-mysql-test-def6kh795oq6v2s-updated", "members": {"172.105.57.113":
+ "failover", "45.79.121.154": "failover", "45.79.123.218": "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 +4896,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"
+ - "850"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:22:11 GMT
+ - Fri, 27 Dec 2024 18:45:16 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 +4926,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4815,15 +4943,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_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":200265,"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":
+ body: '{"data": [{"id": 912383061, "created": "2018-01-02T03:04:05", "seen": false,
+ "read": false, "percent_complete": 100, "time_remaining": null, "rate": null,
+ "duration": 0, "action": "database_update", "username": "ErikZilber", "entity":
+ {"label": "go-mysql-test-def6kh795oq6v2s-updated", "id": 200265, "type": "database",
+ "url": "/v4/databases/mysql/instances/200265"}, "status": "finished", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -4836,6 +4964,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:
@@ -4847,7 +4977,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:22:26 GMT
+ - Fri, 27 Dec 2024 18:45:31 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4865,7 +4995,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4881,17 +5011,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/200265
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": ["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": "a200265-akamai-prod-5782758-default.g2a.akamaidb.net", "standby":
+ "replica-a200265-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 200265,
+ "label": "go-mysql-test-def6kh795oq6v2s-updated", "members": {"172.105.57.113":
+ "failover", "45.79.121.154": "failover", "45.79.123.218": "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"
@@ -4903,18 +5036,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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"
+ - "850"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:22:41 GMT
+ - Fri, 27 Dec 2024 18:45:47 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4923,7 +5058,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:
@@ -4932,7 +5067,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4948,17 +5083,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-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/200265/ssl
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: '{"ca_certificate": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUVRVENDQXFtZ0F3SUJBZ0lVSGw2WFlseHA0MTFpVUMwU294VkYzUmpkUXpBd0RRWUpLb1pJaHZjTkFRRU0KQlFBd09qRTRNRFlHQTFVRUF3d3ZZakF3TkRoaU4yRXRPR0ZrWVMwMFpUWXlMV0UyTXprdFpEazROakU1WXpJeApaR1ZsSUZCeWIycGxZM1FnUTBFd0hoY05NalF4TVRBMk1Ua3hOVFV5V2hjTk16UXhNVEEwTVRreE5UVXlXakE2Ck1UZ3dOZ1lEVlFRRERDOWlNREEwT0dJM1lTMDRZV1JoTFRSbE5qSXRZVFl6T1Mxa09UZzJNVGxqTWpGa1pXVWcKVUhKdmFtVmpkQ0JEUVRDQ0FhSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnR1BBRENDQVlvQ2dnR0JBTXUrMXNuVQpYdXplSUI3U05ReUE5K0JFdkFJYzNKeThRVm1aTmRYWFdVRzUvZlZ3SXZsdVNwaW40SVZuSFpGclJadjNXdmM5CllQbTRQdmxBZEZFcy9qek4wZ3RhNnlVeEJES09YRHBJVksxZU0xbHIrUWNvczQ1blk2cWVXa2xBOThGbFFPQkYKWkk1elkvVU1vLzk3WElINmVQVllzeWQ2dHM0MEp0SjBDYUcyVXBBSUJuOU5QYnRJTFk1a1ZkRGlVdHFSbm55MQpHdmY3N2M3ZkxVYVRkWi9TRUwveGl0S1B5M24zZGFaOG5qUmMzNXlLbWthOElxZXlIS3NqNVc4azMvem1UVlB0Clkvc3ZPcGVCOU5FeHMvenlZZzJFOHp3bGtzUDZwTE85N0hnWXdLNFJPcmZHMUJYLzVFZUhkL29xbHB2dnBLdzUKRklMUVpWRk9jVGFyTm5XdERwa2VKRW5zWmpFd0Y2MTJzNjZHei9GYzF4N1RSdkhEMmQ0MXE0M1pvOXN6bHpETwprWkxrOXZSNUxlZmFSaW9uUnJlYktSR1NzK0tuQlN0aTA0UlpsSGt0ZzZ0dmN1MHdIT05OdG1RODVRTUcvMTJKClJEcXZsMG1IQTR3cXNDUi9RK3Zkc3k3MkprWEFIakFpd0o1bzBwdVNEYTBzUVZzSHdlaGlXakkrelFJREFRQUIKb3o4d1BUQWRCZ05WSFE0RUZnUVVXVDg4RVhSaWRSSmFtOUtkK3RtU3BwTjI0aVF3RHdZRFZSMFRCQWd3QmdFQgovd0lCQURBTEJnTlZIUThFQkFNQ0FRWXdEUVlKS29aSWh2Y05BUUVNQlFBRGdnR0JBSjVKZWRRczJPUG9kd0pZClVzdDdhVWZUNFp1TWhEaWJEditBckdBblAzL3Rsa3JJeEMzMjhoai9ET1gvM3NSUm9xRDVEZm1IMUtBMGkxZEsKcU9QN0pIaUI4dkYrT2Q1MjgvMzFTeFg0cmlpRll5MlozQStHQ2xMRFYyTks3QXBjZXZSL09MUmdSKys5ZElmMQppVHRIczNpd2FNYUtBQ1JaaDFVcTMzU0hURE5URkhVVVJVbGUrM0YvS1J0YllCS1VHa3Vob3lzbE14TXM1aHFiCk5sdlZBdU8yY21ucHl0WWIrcmhseE5BWjZYMjdlODNnd21idUROcjdXaGJRd0xkN1U3Wnh3VlZWYitHTkxlYUkKQU5oMURsOXZLWnRRTFdjNExVZnQxZWZCbzR1MnlwSjRRckd6aHI4alVrQUhRWE4vSzgzaDVqQ2hXRzZjeUozQwpIRm9rZkdhdnF3MkdVS1AyRVc0SkJVQ0VaMTRYUEpjYW9HeTNEQmd3WDUxZ1VTMUsySlR2a0NrMXl0ckh4NzZqCkloMFVJZnFvTS9rNEw1K0Z2YmxsS1ZYaHhoSllBSVg2TndVRzlZRklhR1BUdVZUREFFQlV6L3lWd2VnUmNZcGcKWm0zMDJTbGMrWDlmamwrR2VQN3JWbWtBTmwyOHRYL1VVZG1SeTFlS1BxeDlQZGVEQ2c9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg=="}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -4970,18 +5098,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:22:56 GMT
+ - Fri, 27 Dec 2024 18:45:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4989,8 +5117,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:
@@ -4999,7 +5128,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -5015,17 +5144,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-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/200265/credentials
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: '{"password": "@S3cur3P@s5w0rd", "username": "username"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -5037,18 +5159,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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"
+ - "64"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:23:11 GMT
+ - Fri, 27 Dec 2024 18:45:49 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -5057,7 +5181,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:
@@ -5066,7 +5190,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -5082,17 +5206,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-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/200265/credentials/reset
+ method: POST
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: '{}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -5104,27 +5221,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"
+ - "2"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:23:26 GMT
+ - Fri, 27 Dec 2024 18:50:51 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:
@@ -5133,7 +5251,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -5149,17 +5267,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-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/200265/credentials
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: '{"password": "@N3wS3cur3P@s5w0rd", "username": "username"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -5171,18 +5282,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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"
+ - "64"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:23:41 GMT
+ - Fri, 27 Dec 2024 18:51:08 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -5191,7 +5304,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:
@@ -5200,7 +5313,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -5216,17 +5329,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-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/200265/patch
+ method: POST
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: '{}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -5238,27 +5344,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"
+ - "2"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:23:56 GMT
+ - Fri, 27 Dec 2024 18: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
+ - databases:read_write
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@@ -5267,7 +5374,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -5283,17 +5390,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/200265
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": ["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": "a200265-akamai-prod-5782758-default.g2a.akamaidb.net", "standby":
+ "replica-a200265-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 200265,
+ "label": "go-mysql-test-def6kh795oq6v2s-updated", "members": {"172.105.57.113":
+ "failover", "45.79.121.154": "failover", "45.79.123.218": "primary"}, "oldest_restore_time":
+ "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection":
+ true, "status": "updating", "total_disk_size_gb": 9, "type": "g6-nanode-1",
+ "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration":
+ 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb":
+ 0, "version": "8.0.30", "platform": "rdbms-default"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -5305,18 +5415,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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"
+ - "852"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:24:11 GMT
+ - Fri, 27 Dec 2024 18:51:27 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -5325,7 +5437,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:
@@ -5334,7 +5446,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -5350,17 +5462,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/200265
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": ["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": "a200265-akamai-prod-5782758-default.g2a.akamaidb.net", "standby":
+ "replica-a200265-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 200265,
+ "label": "go-mysql-test-def6kh795oq6v2s-updated", "members": {"172.105.57.113":
+ "failover", "45.79.121.154": "failover", "45.79.123.218": "primary"}, "oldest_restore_time":
+ "2018-01-02T03:04:05", "port": 18319, "region": "ap-west", "ssl_connection":
+ true, "status": "updating", "total_disk_size_gb": 9, "type": "g6-nanode-1",
+ "updated": "2018-01-02T03:04:05", "updates": {"day_of_week": 3, "duration":
+ 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb":
+ 0, "version": "8.0.30", "platform": "rdbms-default"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -5372,18 +5487,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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"
+ - "852"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:24:26 GMT
+ - Fri, 27 Dec 2024 18:51:43 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -5392,7 +5509,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:
@@ -5401,7 +5518,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -5417,17 +5534,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/200265
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": ["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": "a200265-akamai-prod-5782758-default.g2a.akamaidb.net", "standby":
+ "replica-a200265-akamai-prod-5782758-default.g2a.akamaidb.net"}, "id": 200265,
+ "label": "go-mysql-test-def6kh795oq6v2s-updated", "members": {"172.105.57.113":
+ "failover", "45.79.121.154": "failover", "45.79.123.218": "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"
@@ -5439,18 +5559,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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"
+ - "850"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 13:24:41 GMT
+ - Fri, 27 Dec 2024 18:51:58 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -5459,7 +5581,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:
@@ -5468,7 +5590,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -5484,17 +5606,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-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/200265
+ method: DELETE
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: '{}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -5506,23577 +5621,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:
- - "469"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Wed, 03 Jul 2024 13: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:
+ 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-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: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-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:25: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: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-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: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-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: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-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: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-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: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-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: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-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: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-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: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-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: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-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: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-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: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-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: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-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: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-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: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-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: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-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: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-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: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-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: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-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: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-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: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-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: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-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: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-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: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-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: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-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: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-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: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-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: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:32: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: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}}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-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: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:46: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:47: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:47: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:47: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:47: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:48: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:48: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:48: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:48: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:49: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:49: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:49: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:49: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": "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}}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "812"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Wed, 03 Jul 2024 14:50: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: '{"label":"mysqlbackupforlinodego","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/mysql/instances/137649/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:
- - Wed, 03 Jul 2024 14:50:12 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/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:
- - Wed, 03 Jul 2024 14: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_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/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:
- - Wed, 03 Jul 2024 14: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_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/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:
- - Wed, 03 Jul 2024 14:50:58 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/mysql/instances/137649/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:
- - Wed, 03 Jul 2024 14:51:13 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/mysql/instances/137649/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:
- - Wed, 03 Jul 2024 14:51:28 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/mysql/instances/137649/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:
- - Wed, 03 Jul 2024 14:51:43 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/mysql/instances/137649/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:
- - Wed, 03 Jul 2024 14:51:58 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/mysql/instances/137649/backups?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}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "153"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Wed, 03 Jul 2024 14:52:13 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/mysql/instances/137649/backups/1441811
- method: GET
- response:
- body: '{"id": 1441811, "type": "snapshot", "label": "mysqlbackupforlinodego",
- "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:
- - "104"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Wed, 03 Jul 2024 14:52:14 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/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": "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}}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "729"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Wed, 03 Jul 2024 14:52:29 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - databases:read_only
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- 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": "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}}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "729"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Wed, 03 Jul 2024 14:52:44 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - databases:read_only
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- 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": "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}}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "729"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Wed, 03 Jul 2024 14:52:59 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - databases:read_only
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- 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": "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}}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "729"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Wed, 03 Jul 2024 14:53:14 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - databases:read_only
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- 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": "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}}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "729"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Wed, 03 Jul 2024 14:53:29 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - databases:read_only
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- 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": "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}}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "729"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Wed, 03 Jul 2024 14:53:44 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - databases:read_only
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- 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": "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}}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "729"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Wed, 03 Jul 2024 14:53:59 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - databases:read_only
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- 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": "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}}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "729"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Wed, 03 Jul 2024 14:54:14 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - databases:read_only
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- 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": "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}}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "729"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Wed, 03 Jul 2024 14:54:29 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - databases:read_only
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- 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": "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}}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "729"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Wed, 03 Jul 2024 14:54:45 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - databases:read_only
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- 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": "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}}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "729"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Wed, 03 Jul 2024 14:54:59 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - databases:read_only
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- 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": "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}}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "729"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Wed, 03 Jul 2024 14:55:14 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - databases:read_only
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- 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":
- 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}}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-Methods:
- - HEAD, GET, OPTIONS, POST, PUT, DELETE
- Access-Control-Allow-Origin:
- - '*'
- Access-Control-Expose-Headers:
- - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "812"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Wed, 03 Jul 2024 14:55:29 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - databases:read_only
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- 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: 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:
@@ -29088,7 +5634,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 03 Jul 2024 14:55:47 GMT
+ - Fri, 27 Dec 2024 18:52:15 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -29105,7 +5651,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_Postgres_Suite.yaml b/test/integration/fixtures/TestDatabase_Postgres_Suite.yaml
index 793283514..b502f41c5 100644
--- a/test/integration/fixtures/TestDatabase_Postgres_Suite.yaml
+++ b/test/integration/fixtures/TestDatabase_Postgres_Suite.yaml
@@ -15,243 +15,248 @@ 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",
- "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":
+ ["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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium 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", "Kubernetes Enterprise", "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", "Kubernetes Enterprise", "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", "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed
+ Databases", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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":
- "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,
+ "nl", "capabilities": ["Linodes", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Kubernetes Enterprise", "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",
+ "Kubernetes Enterprise", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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",
+ "Kubernetes Enterprise", "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", "Kubernetes Enterprise", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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",
+ "Kubernetes Enterprise", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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", "Kubernetes Enterprise",
+ "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", "Kubernetes Enterprise",
+ "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", "GPU Linodes", "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", "Kubernetes
+ Enterprise", "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, 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",
+ 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", "Disk Encryption", "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"],
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5,
+ 96.126.106.5, 50.116.53.5, 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5,
+ 97.107.133.4, 207.192.69.4, 207.192.69.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west",
+ "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
"status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5,
176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20,
109.74.194.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
- "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": "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,
- 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}'
+ "sg", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country":
+ "de", "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": "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 +268,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 +279,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 24 Jun 2024 19:20:02 GMT
+ - Fri, 27 Dec 2024 18:52:15 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -291,14 +298,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-deft6059oepv0s8","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 +317,15 @@ 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":
+ "a200266-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": "replica-a200266-akamai-prod-5782758-default.g2a.akamaidb.net"},
+ "id": 200266, "label": "go-postgres-testing-deft6059oepv0s8", "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": 1, "duration": 4, "frequency": "weekly", "hour_of_day":
+ 10, "pending": []}, "used_disk_size_gb": null, "version": "14", "platform":
+ "rdbms-default"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -329,18 +337,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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 19:20:02 GMT
+ - Fri, 27 Dec 2024 18:52:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -357,7 +367,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -374,16 +384,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-12-27T18:52:15"},"entity.id":200266,"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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -395,18 +406,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:52:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -424,7 +437,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -441,16 +454,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -462,18 +476,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:52:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -491,7 +507,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -508,16 +524,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -529,18 +546,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:53:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -558,7 +577,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -575,16 +594,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -596,18 +616,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:53:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -625,7 +647,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -642,16 +664,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -663,18 +686,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:53:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -692,7 +717,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -709,16 +734,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -730,18 +756,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:53:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -759,7 +787,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -776,16 +804,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -797,18 +826,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:54:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -826,7 +857,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -843,16 +874,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -864,18 +896,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:54:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -893,7 +927,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -910,16 +944,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -931,18 +966,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:54:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -960,7 +997,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -977,16 +1014,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -998,18 +1036,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:54:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1027,7 +1067,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1044,16 +1084,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1065,18 +1106,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:55:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1094,7 +1137,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1111,16 +1154,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1132,18 +1176,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:55:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1161,7 +1207,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1178,16 +1224,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1199,18 +1246,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:55:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1228,7 +1277,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1245,16 +1294,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1266,18 +1316,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:55:49 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1295,7 +1347,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1312,16 +1364,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1333,18 +1386,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:56:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1362,7 +1417,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1379,16 +1434,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1400,18 +1456,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:56:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1429,7 +1487,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1446,16 +1504,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1467,18 +1526,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:56:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1496,7 +1557,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1513,16 +1574,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1534,18 +1596,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:56:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1563,7 +1627,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1580,16 +1644,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1601,18 +1666,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:57:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1630,7 +1697,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1647,16 +1714,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1668,18 +1736,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:57:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1697,7 +1767,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1714,16 +1784,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1735,18 +1806,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:57:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1764,7 +1837,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1781,16 +1854,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1802,18 +1876,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:57:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1831,7 +1907,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1848,16 +1924,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1869,18 +1946,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:58:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1898,7 +1977,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1915,16 +1994,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -1936,18 +2016,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:58:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -1965,7 +2047,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -1982,16 +2064,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2003,18 +2086,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:58:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2032,7 +2117,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2049,16 +2134,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2070,18 +2156,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:58:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2099,7 +2187,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2116,16 +2204,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2137,18 +2226,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:59:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2166,7 +2257,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2183,16 +2274,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2204,18 +2296,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:59:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2233,7 +2327,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2250,16 +2344,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2271,18 +2366,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:59:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2300,7 +2397,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2317,16 +2414,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2338,18 +2436,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 18:59:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2367,7 +2467,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2384,16 +2484,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2405,18 +2506,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:00:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2434,7 +2537,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2451,16 +2554,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2472,18 +2576,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:00:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2501,7 +2607,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2518,16 +2624,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2539,18 +2646,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:00:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2568,7 +2677,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2585,16 +2694,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2606,18 +2716,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:00:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2635,7 +2747,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2652,16 +2764,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2673,18 +2786,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:01:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2702,7 +2817,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2719,16 +2834,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2740,18 +2856,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:01:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2769,7 +2887,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2786,16 +2904,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2807,18 +2926,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:01:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2836,7 +2957,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2853,16 +2974,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2874,18 +2996,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:01:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2903,7 +3027,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2920,16 +3044,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -2941,18 +3066,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:02:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -2970,7 +3097,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -2987,16 +3114,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3008,18 +3136,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:02:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3037,7 +3167,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3054,16 +3184,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3075,18 +3206,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:02:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3104,7 +3237,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3121,16 +3254,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3142,18 +3276,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:02:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3171,7 +3307,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3188,16 +3324,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3209,18 +3346,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:03:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3238,7 +3377,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3255,16 +3394,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3276,18 +3416,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:03:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3305,7 +3447,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3322,16 +3464,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3343,18 +3486,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:03:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3372,7 +3517,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3389,16 +3534,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3410,18 +3556,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:03:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3439,7 +3587,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3456,16 +3604,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3477,18 +3626,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:04:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3506,7 +3657,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3523,16 +3674,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3544,18 +3696,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:04:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3573,7 +3727,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3590,16 +3744,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3611,18 +3766,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:04:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3640,7 +3797,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3657,16 +3814,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3678,18 +3836,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:04:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3707,7 +3867,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3724,16 +3884,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3745,18 +3906,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:05:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3774,7 +3937,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3791,16 +3954,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3812,18 +3976,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:05:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3841,7 +4007,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3858,16 +4024,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3879,18 +4046,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:05:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3908,7 +4077,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3925,16 +4094,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -3946,18 +4116,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:05:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -3975,7 +4147,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -3992,16 +4164,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -4013,18 +4186,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:06:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4042,7 +4217,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4059,16 +4234,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -4080,18 +4256,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:06:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4109,7 +4287,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4126,16 +4304,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -4147,18 +4326,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:06:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4176,7 +4357,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4193,16 +4374,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -4214,18 +4396,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:06:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4243,7 +4427,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4260,16 +4444,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -4281,18 +4466,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:07:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4310,7 +4497,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4327,16 +4514,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -4348,18 +4536,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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
+ - Fri, 27 Dec 2024 19:07:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4377,7 +4567,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4394,16 +4584,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -4415,85 +4606,20 @@ 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 19:35: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:
+ Akamai-Internal-Account:
- '*'
- Access-Control-Expose-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"
+ - "480"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 24 Jun 2024 19:35:32 GMT
+ - Fri, 27 Dec 2024 19:07:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4511,7 +4637,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4528,16 +4654,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
"read": 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-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "notification",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -4549,85 +4676,20 @@ 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 19:35: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:
+ Akamai-Internal-Account:
- '*'
- Access-Control-Expose-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"
+ - "480"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 24 Jun 2024 19:36:02 GMT
+ - Fri, 27 Dec 2024 19:07:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4645,7 +4707,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4662,15 +4724,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-12-27T18:52:15"},"entity.id":200266,"entity.type":"database","id":{"+gte":912387218}}'
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": 912387218, "created": "2018-01-02T03:04:05", "seen": false,
+ "read": false, "percent_complete": 100, "time_remaining": null, "rate": null,
+ "duration": 910, "action": "database_create", "username": "ErikZilber", "entity":
+ {"label": "go-postgres-testing-deft6059oepv0s8", "id": 200266, "type": "database",
+ "url": "/v4/databases/postgresql/instances/200266"}, "status": "finished", "secondary_entity":
null, "message": ""}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
@@ -4683,18 +4745,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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:36:17 GMT
+ - Fri, 27 Dec 2024 19:08:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4712,7 +4776,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4728,17 +4792,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": "a200266-akamai-prod-5782758-default.g2a.akamaidb.net",
+ "standby": "replica-a200266-akamai-prod-5782758-default.g2a.akamaidb.net"},
+ "id": 200266, "label": "go-postgres-testing-deft6059oepv0s8", "members": {"172.105.61.120":
+ "primary", "172.105.61.128": "failover", "172.105.61.156": "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": 1, "duration": 4, "frequency":
+ "weekly", "hour_of_day": 10, "pending": []}, "used_disk_size_gb": 0, "version":
+ "14.15", "platform": "rdbms-default"}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -4750,18 +4817,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:36:32 GMT
+ - Fri, 27 Dec 2024 19:08:05 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4769,8 +4836,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:
@@ -4779,7 +4847,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4795,17 +4863,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/200266
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":
+ "a200266-akamai-prod-5782758-default.g2a.akamaidb.net", "standby": "replica-a200266-akamai-prod-5782758-default.g2a.akamaidb.net"},
+ "id": 200266, "label": "go-postgres-testing-deft6059oepv0s8", "members": {"172.105.61.120":
+ "primary", "172.105.61.128": "failover", "172.105.61.156": "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": 1, "duration": 4, "frequency":
+ "weekly", "hour_of_day": 10, "pending": []}, "used_disk_size_gb": 0, "version":
+ "14.15", "platform": "rdbms-default"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -4817,18 +4887,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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:47 GMT
+ - Fri, 27 Dec 2024 19:08:06 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4837,7 +4909,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:
@@ -4846,14 +4918,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: ""
+ body: '{"label":"go-postgres-testing-deft6059oepv0s8-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:
@@ -4862,17 +4934,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/200266
+ 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": "a200266-akamai-prod-5782758-default.g2a.akamaidb.net",
+ "standby": "replica-a200266-akamai-prod-5782758-default.g2a.akamaidb.net"},
+ "id": 200266, "label": "go-postgres-testing-deft6059oepv0s8-updated", "members":
+ {"172.105.61.120": "primary", "172.105.61.128": "failover", "172.105.61.156":
+ "failover"}, "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region":
+ "ap-west", "ssl_connection": true, "status": "active", "total_disk_size_gb":
+ 9, "type": "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week":
+ 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb":
+ 0, "version": "14.15", "platform": "rdbms-default"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -4884,27 +4959,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:37:02 GMT
+ - Fri, 27 Dec 2024 19:08:08 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:
@@ -4913,7 +4988,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4930,16 +5005,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_update","created":{"+gte":"2018-01-02T03:04:05"},"entity.id":200266,"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": [{"id": 912394123, "created": "2018-01-02T03:04:05", "seen": false,
+ "read": false, "percent_complete": 100, "time_remaining": null, "rate": null,
+ "duration": 0, "action": "database_update", "username": "ErikZilber", "entity":
+ {"label": "go-postgres-testing-deft6059oepv0s8-updated", "id": 200266, "type":
+ "database", "url": "/v4/databases/postgresql/instances/200266"}, "status": "finished",
+ "secondary_entity": null, "message": ""}], "page": 1, "pages": 1, "results":
+ 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -4951,18 +5027,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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:37:17 GMT
+ - Fri, 27 Dec 2024 19:08:23 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -4980,7 +5058,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -4996,17 +5074,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/200266
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": ["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": "a200266-akamai-prod-5782758-default.g2a.akamaidb.net",
+ "standby": "replica-a200266-akamai-prod-5782758-default.g2a.akamaidb.net"},
+ "id": 200266, "label": "go-postgres-testing-deft6059oepv0s8-updated", "members":
+ {"172.105.61.120": "primary", "172.105.61.128": "failover", "172.105.61.156":
+ "failover"}, "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region":
+ "ap-west", "ssl_connection": true, "status": "active", "total_disk_size_gb":
+ 9, "type": "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week":
+ 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb":
+ 0, "version": "14.15", "platform": "rdbms-default"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -5018,18 +5099,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:37:32 GMT
+ - Fri, 27 Dec 2024 19:08:40 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -5037,8 +5118,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:
@@ -5047,7 +5129,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -5063,17 +5145,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
+ url: https://api.linode.com/v4beta/databases/postgresql/instances/200266/ssl
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: '{"ca_certificate": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUVRVENDQXFtZ0F3SUJBZ0lVSGw2WFlseHA0MTFpVUMwU294VkYzUmpkUXpBd0RRWUpLb1pJaHZjTkFRRU0KQlFBd09qRTRNRFlHQTFVRUF3d3ZZakF3TkRoaU4yRXRPR0ZrWVMwMFpUWXlMV0UyTXprdFpEazROakU1WXpJeApaR1ZsSUZCeWIycGxZM1FnUTBFd0hoY05NalF4TVRBMk1Ua3hOVFV5V2hjTk16UXhNVEEwTVRreE5UVXlXakE2Ck1UZ3dOZ1lEVlFRRERDOWlNREEwT0dJM1lTMDRZV1JoTFRSbE5qSXRZVFl6T1Mxa09UZzJNVGxqTWpGa1pXVWcKVUhKdmFtVmpkQ0JEUVRDQ0FhSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnR1BBRENDQVlvQ2dnR0JBTXUrMXNuVQpYdXplSUI3U05ReUE5K0JFdkFJYzNKeThRVm1aTmRYWFdVRzUvZlZ3SXZsdVNwaW40SVZuSFpGclJadjNXdmM5CllQbTRQdmxBZEZFcy9qek4wZ3RhNnlVeEJES09YRHBJVksxZU0xbHIrUWNvczQ1blk2cWVXa2xBOThGbFFPQkYKWkk1elkvVU1vLzk3WElINmVQVllzeWQ2dHM0MEp0SjBDYUcyVXBBSUJuOU5QYnRJTFk1a1ZkRGlVdHFSbm55MQpHdmY3N2M3ZkxVYVRkWi9TRUwveGl0S1B5M24zZGFaOG5qUmMzNXlLbWthOElxZXlIS3NqNVc4azMvem1UVlB0Clkvc3ZPcGVCOU5FeHMvenlZZzJFOHp3bGtzUDZwTE85N0hnWXdLNFJPcmZHMUJYLzVFZUhkL29xbHB2dnBLdzUKRklMUVpWRk9jVGFyTm5XdERwa2VKRW5zWmpFd0Y2MTJzNjZHei9GYzF4N1RSdkhEMmQ0MXE0M1pvOXN6bHpETwprWkxrOXZSNUxlZmFSaW9uUnJlYktSR1NzK0tuQlN0aTA0UlpsSGt0ZzZ0dmN1MHdIT05OdG1RODVRTUcvMTJKClJEcXZsMG1IQTR3cXNDUi9RK3Zkc3k3MkprWEFIakFpd0o1bzBwdVNEYTBzUVZzSHdlaGlXakkrelFJREFRQUIKb3o4d1BUQWRCZ05WSFE0RUZnUVVXVDg4RVhSaWRSSmFtOUtkK3RtU3BwTjI0aVF3RHdZRFZSMFRCQWd3QmdFQgovd0lCQURBTEJnTlZIUThFQkFNQ0FRWXdEUVlKS29aSWh2Y05BUUVNQlFBRGdnR0JBSjVKZWRRczJPUG9kd0pZClVzdDdhVWZUNFp1TWhEaWJEditBckdBblAzL3Rsa3JJeEMzMjhoai9ET1gvM3NSUm9xRDVEZm1IMUtBMGkxZEsKcU9QN0pIaUI4dkYrT2Q1MjgvMzFTeFg0cmlpRll5MlozQStHQ2xMRFYyTks3QXBjZXZSL09MUmdSKys5ZElmMQppVHRIczNpd2FNYUtBQ1JaaDFVcTMzU0hURE5URkhVVVJVbGUrM0YvS1J0YllCS1VHa3Vob3lzbE14TXM1aHFiCk5sdlZBdU8yY21ucHl0WWIrcmhseE5BWjZYMjdlODNnd21idUROcjdXaGJRd0xkN1U3Wnh3VlZWYitHTkxlYUkKQU5oMURsOXZLWnRRTFdjNExVZnQxZWZCbzR1MnlwSjRRckd6aHI4alVrQUhRWE4vSzgzaDVqQ2hXRzZjeUozQwpIRm9rZkdhdnF3MkdVS1AyRVc0SkJVQ0VaMTRYUEpjYW9HeTNEQmd3WDUxZ1VTMUsySlR2a0NrMXl0ckh4NzZqCkloMFVJZnFvTS9rNEw1K0Z2YmxsS1ZYaHhoSllBSVg2TndVRzlZRklhR1BUdVZUREFFQlV6L3lWd2VnUmNZcGcKWm0zMDJTbGMrWDlmamwrR2VQN3JWbWtBTmwyOHRYL1VVZG1SeTFlS1BxeDlQZGVEQ2c9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg=="}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -5085,18 +5160,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:37:47 GMT
+ - Fri, 27 Dec 2024 19:08:41 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -5104,8 +5179,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:
@@ -5114,7 +5190,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -5130,17 +5206,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
+ url: https://api.linode.com/v4beta/databases/postgresql/instances/200266/credentials
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: '{"password": "@S3cur3P@s5w0rd", "username": "username"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -5152,18 +5221,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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"
+ - "64"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 24 Jun 2024 19:38:02 GMT
+ - Fri, 27 Dec 2024 19:08:42 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -5172,7 +5243,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:
@@ -5181,7 +5252,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -5197,17 +5268,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/200266/credentials/reset
+ method: POST
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"
@@ -5219,27 +5283,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:38:17 GMT
+ - Fri, 27 Dec 2024 19:13:44 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:
@@ -5248,7 +5313,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -5264,17 +5329,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
+ url: https://api.linode.com/v4beta/databases/postgresql/instances/200266/credentials
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: '{"password": "@N3wS3cur3P@s5w0rd", "username": "username"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -5286,18 +5344,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-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"
+ - "64"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 24 Jun 2024 19:38:32 GMT
+ - Fri, 27 Dec 2024 19:14:00 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -5306,7 +5366,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:
@@ -5315,7 +5375,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -5331,17 +5391,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/200266/patch
+ method: POST
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"
@@ -5353,27 +5406,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:38:47 GMT
+ - Fri, 27 Dec 2024 19:19: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
+ - databases:read_write
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@@ -5382,7 +5436,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -5398,17 +5452,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/200266
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": ["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": "a200266-akamai-prod-5782758-default.g2a.akamaidb.net",
+ "standby": "replica-a200266-akamai-prod-5782758-default.g2a.akamaidb.net"},
+ "id": 200266, "label": "go-postgres-testing-deft6059oepv0s8-updated", "members":
+ {"172.105.61.120": "primary", "172.105.61.128": "failover", "172.105.61.156":
+ "failover"}, "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region":
+ "ap-west", "ssl_connection": true, "status": "updating", "total_disk_size_gb":
+ 9, "type": "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week":
+ 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb":
+ 0, "version": "14.15", "platform": "rdbms-default"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -5420,18 +5477,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:39:02 GMT
+ - Fri, 27 Dec 2024 19:19:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -5439,8 +5496,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:
@@ -5449,7 +5507,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -5465,17 +5523,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/200266
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": ["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": "a200266-akamai-prod-5782758-default.g2a.akamaidb.net",
+ "standby": "replica-a200266-akamai-prod-5782758-default.g2a.akamaidb.net"},
+ "id": 200266, "label": "go-postgres-testing-deft6059oepv0s8-updated", "members":
+ {"172.105.61.120": "primary", "172.105.61.128": "failover", "172.105.61.156":
+ "failover"}, "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region":
+ "ap-west", "ssl_connection": true, "status": "updating", "total_disk_size_gb":
+ 9, "type": "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week":
+ 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb":
+ 0, "version": "14.15", "platform": "rdbms-default"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -5487,18 +5548,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:39:18 GMT
+ - Fri, 27 Dec 2024 19:19:34 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -5506,8 +5567,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:
@@ -5516,7 +5578,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -5532,17 +5594,20 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- X-Filter:
- - '{"+order":"desc","+order_by":"created","action":"database_create","created":{"+gte":"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/200266
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": ["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": "a200266-akamai-prod-5782758-default.g2a.akamaidb.net",
+ "standby": "replica-a200266-akamai-prod-5782758-default.g2a.akamaidb.net"},
+ "id": 200266, "label": "go-postgres-testing-deft6059oepv0s8-updated", "members":
+ {"172.105.61.120": "primary", "172.105.61.128": "failover", "172.105.61.156":
+ "failover"}, "oldest_restore_time": "2018-01-02T03:04:05", "port": 18319, "region":
+ "ap-west", "ssl_connection": true, "status": "active", "total_disk_size_gb":
+ 9, "type": "g6-nanode-1", "updated": "2018-01-02T03:04:05", "updates": {"day_of_week":
+ 3, "duration": 4, "frequency": "weekly", "hour_of_day": 8, "pending": []}, "used_disk_size_gb":
+ 0, "version": "14.15", "platform": "rdbms-default"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -5554,18 +5619,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:39:32 GMT
+ - Fri, 27 Dec 2024 19:19:49 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -5573,8 +5638,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:
@@ -5583,7 +5649,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -5599,17 +5665,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/200266
+ 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"
@@ -5621,27 +5680,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:39:47 GMT
+ - Fri, 27 Dec 2024 19:20:06 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:
@@ -5650,17659 +5710,9 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "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
- 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:40: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:40: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:40: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:40: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:41: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:41: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:41: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:41: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:42: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:42: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:42: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:42: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:43: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:43: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:43: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:43: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:44: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:44: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:44: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:44: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:45: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:45:17 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - events:read_only
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "400"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- Accept:
- - 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:45: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:45: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:46: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:46: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:46: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:46: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:47: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:47: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:47: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:47: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:48: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:48: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:48: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:48: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:49: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:49: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:49: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:49: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:50: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:50: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:50: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:50: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:51: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:51: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:51: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:51: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:52: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:52: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:52: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:52: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:53: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:53: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:53: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:53: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:54: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:54: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:54: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:54: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:55: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:55: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:55: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:55: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:56: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:56: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: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..e326b506f 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:
+ - Fri, 27 Dec 2024 18:13:14 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:
+ - Fri, 27 Dec 2024 18:13:15 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/TestInstance_GetMonthlyTransfer.yaml b/test/integration/fixtures/TestInstance_GetMonthlyTransfer.yaml
index bd3ae7167..c9f93dfdc 100644
--- a/test/integration/fixtures/TestInstance_GetMonthlyTransfer.yaml
+++ b/test/integration/fixtures/TestInstance_GetMonthlyTransfer.yaml
@@ -1,20 +1,20 @@
---
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/regions?page=1
- method: GET
- response:
- body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
+ - request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/regions?page=1
+ method: GET
+ response:
+ body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
["Linodes", "Disk Encryption", "Backups", "NodeBalancers", "Block Storage",
"GPU Linodes", "Kubernetes", "Cloud Firewall", "Vlans", "Block Storage Migrations",
"Managed Databases", "Metadata", "Placement Group", "StackScripts"], "status":
@@ -38,128 +38,174 @@ interactions:
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", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium 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", "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",
+ "Kubernetes", "Kubernetes Enterprise", "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",
+ "Kubernetes", "Kubernetes Enterprise", "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", "Managed Databases", "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",
+ "Kubernetes", "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed
+ Databases", "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", "Managed Databases", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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", "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",
+ "Kubernetes Enterprise", "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",
+ "Kubernetes Enterprise", "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", "Managed Databases", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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",
+ "Kubernetes Enterprise", "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",
+ "Kubernetes", "Kubernetes Enterprise", "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", "Managed Databases", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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",
+ "Kubernetes Enterprise", "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", "Managed Databases", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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", "Managed Databases", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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":
+ 5}, "site_type": "core"}, {"id": "nz-akl-1", "label": "Auckland, NZ", "country":
+ "nz", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata", "Distributed
+ Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ 0, "maximum_linodes_per_pg": 0}, "site_type": "distributed"}, {"id": "us-den-1",
+ "label": "Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud Firewall",
+ "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers": {"ipv4":
+ "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": 0, "maximum_linodes_per_pg":
+ 0}, "site_type": "distributed"}, {"id": "de-ham-1", "label": "Hamburg, DE",
+ "country": "de", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata",
+ "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ 0, "maximum_linodes_per_pg": 0}, "site_type": "distributed"}, {"id": "fr-mrs-1",
+ "label": "Marseille, FR", "country": "fr", "capabilities": ["Linodes", "Cloud
+ Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": 0, "maximum_linodes_per_pg":
+ 0}, "site_type": "distributed"}, {"id": "za-jnb-1", "label": "Johannesburg,
+ ZA", "country": "za", "capabilities": ["Linodes", "Cloud Firewall", "Vlans",
+ "Metadata", "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ 0, "maximum_linodes_per_pg": 0}, "site_type": "distributed"}, {"id": "my-kul-1",
+ "label": "Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes", "Cloud
+ Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": 0, "maximum_linodes_per_pg":
+ 0}, "site_type": "distributed"}, {"id": "co-bog-1", "label": "Bogot\u00e1, CO",
+ "country": "co", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata",
+ "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ 0, "maximum_linodes_per_pg": 0}, "site_type": "distributed"}, {"id": "mx-qro-1",
+ "label": "Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok",
+ "resolvers": {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": 0, "maximum_linodes_per_pg":
+ 0}, "site_type": "distributed"}, {"id": "us-hou-1", "label": "Houston, TX",
+ "country": "us", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata",
+ "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ 0, "maximum_linodes_per_pg": 0}, "site_type": "distributed"}, {"id": "cl-scl-1",
+ "label": "Santiago, CL", "country": "cl", "capabilities": ["Linodes", "Cloud
+ Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": 0, "maximum_linodes_per_pg":
+ 0}, "site_type": "distributed"}, {"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",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Kubernetes Enterprise",
+ "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",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Kubernetes Enterprise",
+ "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":
@@ -179,9 +225,10 @@ interactions:
"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",
+ "Backups", "NodeBalancers", "Block Storage", "GPU Linodes", "Kubernetes", "Kubernetes
+ Enterprise", "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":
@@ -254,311 +301,311 @@ interactions:
"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"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-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:
- - Tue, 07 Jan 2025 16:19:06 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: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-ee60azd71j69","firewall_id":1510886,"booted":false}'
- form: {}
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances
- method: POST
- response:
- body: '{"id": 69712812, "label": "go-test-ins-wo-disk-ee60azd71j69", "group":
+ 5}, "site_type": "core"}], "page": 1, "pages": 1, "results": 41}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - Tue, 07 Jan 2025 19:19:41 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: '{"region":"ap-west","type":"g6-nanode-1","label":"go-test-ins-wo-disk-82h66wye5mm4","firewall_id":1511962,"booted":false}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances
+ method: POST
+ response:
+ body: '{"id": 69723651, "label": "go-test-ins-wo-disk-82h66wye5mm4", "group":
"", "status": "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
- "type": "g6-nanode-1", "ipv4": ["194.195.118.24"], "ipv6": "1234::5678/128",
+ "type": "g6-nanode-1", "ipv4": ["192.46.214.209"], "ipv6": "1234::5678/128",
"image": null, "region": "ap-west", "site_type": "core", "specs": {"disk": 25600,
"memory": 1024, "vcpus": 1, "gpus": 0, "transfer": 1000, "accelerated_devices":
0}, "alerts": {"cpu": 90, "network_in": 10, "network_out": 10, "transfer_quota":
- 80, "io": 10000}, "backups": {"enabled": true, "available": false, "schedule":
+ 80, "io": 10000}, "backups": {"enabled": false, "available": false, "schedule":
{"day": null, "window": null}, "last_successful": null}, "hypervisor": "kvm",
- "watchdog_enabled": true, "tags": [], "host_uuid": "e2551e83bb2abde04e4b5c778193e1c642125379",
+ "watchdog_enabled": true, "tags": [], "host_uuid": "7b28a1cae3a173cea8589fbeff8f3229a94680bc",
"has_user_data": false, "placement_group": null, "disk_encryption": "enabled",
- "lke_cluster_id": null, "capabilities": []}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-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:
- - Tue, 07 Jan 2025 16:19:07 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:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "8"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: '{"label":"go-test-conf-3xs61k51a6ma","devices":{},"interfaces":null}'
- form: {}
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/69712812/configs
- method: POST
- response:
- body: '{"id": 73078053, "label": "go-test-conf-3xs61k51a6ma", "helpers": {"updatedb_disabled":
+ "lke_cluster_id": null, "capabilities": ["SMTP Enabled"]}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - Tue, 07 Jan 2025 19:19:42 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:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "8"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+ - request:
+ body: '{"label":"go-test-conf-u2i0c11lf28a","devices":{},"interfaces":null}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances/69723651/configs
+ method: POST
+ response:
+ body: '{"id": 73089161, "label": "go-test-conf-u2i0c11lf28a", "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,
"sdf": null, "sdg": null, "sdh": null}, "initrd": null, "run_level": "default",
"virt_mode": "paravirt", "interfaces": []}'
- headers:
- Access-Control-Allow-Credentials:
- - "true"
- Access-Control-Allow-Headers:
- - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
- Access-Control-Allow-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:
- - "539"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Tue, 07 Jan 2025 16:19:07 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - linodes:read_write
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "1600"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/69712812/transfer/2025/1
- method: GET
- response:
- body: '{"bytes_in": 0, "bytes_out": 0, "bytes_total": 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
- Akamai-Internal-Account:
- - '*'
- 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:
- - Tue, 07 Jan 2025 16:19:08 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - linodes:read_only
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "1600"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
-- request:
- body: ""
- form: {}
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/linode/instances/69712812
- 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
- Akamai-Internal-Account:
- - '*'
- Cache-Control:
- - max-age=0, no-cache, no-store
- Connection:
- - keep-alive
- Content-Length:
- - "2"
- Content-Security-Policy:
- - default-src 'none'
- Content-Type:
- - application/json
- Expires:
- - Tue, 07 Jan 2025 16:19:10 GMT
- Pragma:
- - no-cache
- Strict-Transport-Security:
- - max-age=31536000
- Vary:
- - Authorization, X-Filter
- X-Accepted-Oauth-Scopes:
- - linodes:read_write
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- - DENY
- X-Oauth-Scopes:
- - '*'
- X-Ratelimit-Limit:
- - "1600"
- X-Xss-Protection:
- - 1; mode=block
- status: 200 OK
- code: 200
- duration: ""
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - "539"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Tue, 07 Jan 2025 19:19:42 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+ - request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances/69723651/transfer/2025/1
+ method: GET
+ response:
+ body: '{"bytes_in": 0, "bytes_out": 0, "bytes_total": 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
+ Akamai-Internal-Account:
+ - '*'
+ 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:
+ - Tue, 07 Jan 2025 19:19:42 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+ - request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances/69723651
+ 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
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "2"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Tue, 07 Jan 2025 19:19:44 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
\ No newline at end of file
diff --git a/test/integration/fixtures/TestInstance_withVPU.yaml b/test/integration/fixtures/TestInstance_withVPU.yaml
new file mode 100644
index 000000000..72b52adb1
--- /dev/null
+++ b/test/integration/fixtures/TestInstance_withVPU.yaml
@@ -0,0 +1,433 @@
+---
+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/regions?page=1
+ method: GET
+ response:
+ body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
+ ["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", "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", "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", "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", "Object 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", "Object 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", "Object Storage", "GPU Linodes",
+ "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", "Object 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", "Object 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", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5,
+ 96.126.106.5, 50.116.53.5, 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5,
+ 97.107.133.4, 207.192.69.4, 207.192.69.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west",
+ "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5,
+ 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20,
+ 109.74.194.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country":
+ "sg", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country":
+ "de", "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": "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"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - Tue, 17 Dec 2024 21:17:55 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: '{"region":"us-lax","type":"g1-accelerated-netint-vpu-t1u1-s","label":"go-inst-test-create-vpu","root_pass":"*;m69FwMc01;1xhofX*Hh[S?G$zO678in4I\u0026d)w9k5E!7^80ZK2B`JkV\u003e\u003e5I;Fi-","image":"linode/debian12","firewall_id":1384634,"booted":false}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances
+ method: POST
+ response:
+ body: '{"id": 68664304, "label": "go-inst-test-create-vpu", "group": "", "status":
+ "provisioning", "created": "2018-01-02T03:04:05", "updated": "2018-01-02T03:04:05",
+ "type": "g1-accelerated-netint-vpu-t1u1-s", "ipv4": ["172.235.54.133"], "ipv6":
+ "1234::5678/128", "image": "linode/debian12", "region":
+ "us-lax", "site_type": "core", "specs": {"disk": 204800, "memory": 16384, "vcpus":
+ 8, "gpus": 0, "transfer": 0, "accelerated_devices": 1}, "alerts": {"cpu": 720,
+ "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": "c7ddd1b17f8d9fe4b82fa29a2ae05811a400fae2", "has_user_data":
+ false, "placement_group": null, "disk_encryption": "enabled", "lke_cluster_id":
+ null, "capabilities": ["Block Storage Encryption"]}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - Tue, 17 Dec 2024 21:17:56 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:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "8"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/linode/instances/68664304
+ 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
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "2"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Tue, 17 Dec 2024 21:17:57 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - linodes:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
diff --git a/test/integration/fixtures/TestLKECluster_Enterprise_smoke.yaml b/test/integration/fixtures/TestLKECluster_Enterprise_smoke.yaml
new file mode 100644
index 000000000..79eebf6f3
--- /dev/null
+++ b/test/integration/fixtures/TestLKECluster_Enterprise_smoke.yaml
@@ -0,0 +1,496 @@
+---
+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/regions?page=1
+ method: GET
+ response:
+ body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
+ ["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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium 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", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Kubernetes Enterprise", "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", "Kubernetes Enterprise", "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", "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed
+ Databases", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Kubernetes Enterprise", "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",
+ "Kubernetes Enterprise", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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",
+ "Kubernetes Enterprise", "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", "Kubernetes Enterprise", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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",
+ "Kubernetes Enterprise", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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", "Kubernetes Enterprise",
+ "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", "Kubernetes Enterprise",
+ "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", "GPU Linodes", "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", "Kubernetes
+ Enterprise", "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", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5,
+ 96.126.106.5, 50.116.53.5, 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5,
+ 97.107.133.4, 207.192.69.4, 207.192.69.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west",
+ "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5,
+ 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20,
+ 109.74.194.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country":
+ "sg", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country":
+ "de", "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": "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"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - Tue, 07 Jan 2025 18:17:27 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: '{"node_pools":[{"count":1,"type":"g6-standard-2","disks":null,"tags":["test"],"labels":null,"taints":null}],"label":"go-test-def","region":"us-lax","k8s_version":"v1.31.1+lke1","tags":["testing"],"tier":"enterprise"}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/lke/clusters
+ method: POST
+ response:
+ body: '{"id": 308002, "status": "ready", "created": "2018-01-02T03:04:05", "updated":
+ "2018-01-02T03:04:05", "label": "go-test-def", "region": "us-lax", "k8s_version":
+ "v1.31.1+lke1", "tier": "enterprise", "control_plane": {"high_availability":
+ true}, "tags": ["testing"]}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - "265"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Tue, 07 Jan 2025 18:17:31 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - lke:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/lke/clusters/308002
+ method: GET
+ response:
+ body: '{"id": 308002, "status": "ready", "created": "2018-01-02T03:04:05", "updated":
+ "2018-01-02T03:04:05", "label": "go-test-def", "region": "us-lax", "k8s_version":
+ "v1.31.1+lke1", "tier": "enterprise", "control_plane": {"high_availability":
+ true}, "tags": ["testing"]}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - "265"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Tue, 07 Jan 2025 18:17:31 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - lke:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/lke/clusters/308002
+ 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
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "2"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Tue, 07 Jan 2025 18:17:32 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - lke:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
diff --git a/test/integration/fixtures/TestObjectStorageBucketCert.yaml b/test/integration/fixtures/TestObjectStorageBucketCert.yaml
index 21ad4a17c..4f2026682 100644
--- a/test/integration/fixtures/TestObjectStorageBucketCert.yaml
+++ b/test/integration/fixtures/TestObjectStorageBucketCert.yaml
@@ -2,7 +2,86 @@
version: 1
interactions:
- request:
- body: '{"cluster":"us-east-1","label":"linode-obj-bucket-cert-test.xyz"}'
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/object-storage/endpoints?page=1
+ method: GET
+ response:
+ body: '{"pages": 1, "page": 1, "results": 18, "data": [{"region": "fr-par", "endpoint_type":
+ "E1", "s3_endpoint": "fr-par-1.linodeobjects.com"}, {"region": "ap-south", "endpoint_type":
+ "E0", "s3_endpoint": "ap-south-1.linodeobjects.com"}, {"region": "us-sea", "endpoint_type":
+ "E1", "s3_endpoint": "us-sea-1.linodeobjects.com"}, {"region": "us-east", "endpoint_type":
+ "E0", "s3_endpoint": "us-east-1.linodeobjects.com"}, {"region": "us-southeast",
+ "endpoint_type": "E0", "s3_endpoint": "us-southeast-1.linodeobjects.com"}, {"region":
+ "jp-osa", "endpoint_type": "E1", "s3_endpoint": "jp-osa-1.linodeobjects.com"},
+ {"region": "br-gru", "endpoint_type": "E1", "s3_endpoint": "br-gru-1.linodeobjects.com"},
+ {"region": "us-ord", "endpoint_type": "E1", "s3_endpoint": "us-ord-1.linodeobjects.com"},
+ {"region": "us-iad", "endpoint_type": "E1", "s3_endpoint": "us-iad-1.linodeobjects.com"},
+ {"region": "se-sto", "endpoint_type": "E1", "s3_endpoint": "se-sto-1.linodeobjects.com"},
+ {"region": "it-mil", "endpoint_type": "E1", "s3_endpoint": "it-mil-1.linodeobjects.com"},
+ {"region": "us-lax", "endpoint_type": "E1", "s3_endpoint": "us-lax-1.linodeobjects.com"},
+ {"region": "nl-ams", "endpoint_type": "E1", "s3_endpoint": "nl-ams-1.linodeobjects.com"},
+ {"region": "us-mia", "endpoint_type": "E1", "s3_endpoint": "us-mia-1.linodeobjects.com"},
+ {"region": "eu-central", "endpoint_type": "E0", "s3_endpoint": "eu-central-1.linodeobjects.com"},
+ {"region": "in-maa", "endpoint_type": "E1", "s3_endpoint": "in-maa-1.linodeobjects.com"},
+ {"region": "es-mad", "endpoint_type": "E1", "s3_endpoint": "es-mad-1.linodeobjects.com"},
+ {"region": "id-cgk", "endpoint_type": "E1", "s3_endpoint": "id-cgk-1.linodeobjects.com"}]}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - Wed, 08 Jan 2025 07:13:19 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ - Accept-Encoding
+ X-Accepted-Oauth-Scopes:
+ - object_storage:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"fr-par","label":"linode-obj-bucket-cert-test.xyz","endpoint_type":"E1"}'
form: {}
headers:
Accept:
@@ -14,9 +93,134 @@ interactions:
url: https://api.linode.com/v4beta/object-storage/buckets
method: POST
response:
- body: '{"hostname": "linode-obj-bucket-cert-test.xyz.us-east-1.linodeobjects.com",
+ body: '{"hostname": "linode-obj-bucket-cert-test.xyz.fr-par-1.linodeobjects.com",
"label": "linode-obj-bucket-cert-test.xyz", "created": "2018-01-02T03:04:05",
- "region": "us-east", "cluster": "us-east-1", "size": 0, "objects": 0}'
+ "region": "fr-par", "cluster": "fr-par-1", "size": 0, "objects": 0, "endpoint_type":
+ "E1", "s3_endpoint": "fr-par-1.linodeobjects.com"}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - "288"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 08 Jan 2025 07:13:22 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - object_storage:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"certificate":"-----BEGIN CERTIFICATE-----\nMIIF3DCCA8QCCQC0dUFu1HvjazANBgkqhkiG9w0BAQsFADCBrzELMAkGA1UEBhMC\nVVMxCzAJBgNVBAgMAlBBMRUwEwYDVQQHDAxQaGlsYWRlbHBoaWExDzANBgNVBAoM\nBkxpbm9kZTELMAkGA1UECwwCRFgxKDAmBgNVBAMMH2xpbm9kZS1vYmotYnVja2V0\nLWNlcnQtdGVzdC54eXoxNDAyBgkqhkiG9w0BCQEWJWFkbWluQGxpbm9kZS1vYmot\nYnVja2V0LWNlcnQtdGVzdC54eXowHhcNMjAxMDA1MTg0MDUyWhcNMjExMDA1MTg0\nMDUyWjCBrzELMAkGA1UEBhMCVVMxCzAJBgNVBAgMAlBBMRUwEwYDVQQHDAxQaGls\nYWRlbHBoaWExDzANBgNVBAoMBkxpbm9kZTELMAkGA1UECwwCRFgxKDAmBgNVBAMM\nH2xpbm9kZS1vYmotYnVja2V0LWNlcnQtdGVzdC54eXoxNDAyBgkqhkiG9w0BCQEW\nJWFkbWluQGxpbm9kZS1vYmotYnVja2V0LWNlcnQtdGVzdC54eXowggIiMA0GCSqG\nSIb3DQEBAQUAA4ICDwAwggIKAoICAQCy4LqfRYXE314e6YkpR1BbKPH8ohO4lcMt\n+YzMUNlOC1KUktGjX8pWk4wAXYar7Mxccmbbh68pgE8iSio8V97CdQb8O64OQmre\n/y33z7Yts37/6mH5mBnfeiilVHOenQmh+4400tvF1jljU8MZSg6sLM4ZEBhfcT0V\n3yqxAwwzV8vk0t7uLRCMuDI5B4h4ZCsheCkA2roF4RGUG6KwGzf+dLSKzBcjy5ho\nh4huzp5jDYer7S86dV6/9Gwzh8CPhVaixbymHGoMbJM8lUtc/hFI+J8WVh/qLTKQ\nCcqvoZ96QU0LX2ib+ElvCMGl/UrznpHZUrGkLPfnnoxK/vKBNycJsENtWno9KgtN\nfsdmYy/blxNRW/qpi+l92f3zbjjpRqJ/oyA+hsSMn19O/v3O4wz+YS55xnVeEPIf\nfOq6VJ9BfVdXPPRp33sllM8EVWuS4ry3oJKI1CFTlhV7eU1RpJmbc5X8GhytiD2M\ngIrVlYzJTftSHw7J3v0orRD6SxI9enXI4o4pS1MMxRNb+ZQDvwx3ZujxjFXe3+qI\nkme3ih+Vl9W9rDeKAd95ciII9CxBqOvsso8zqDAEV25fn3tutk/7hQNMqv0APAah\nLo/eY1NK9i9YVJknVSzWBkE2MUyvpfFhiw6TPYh88qH+wN3CznWaCtXiAjH3kbOk\n6y2OmI8+4QIDAQABMA0GCSqGSIb3DQEBCwUAA4ICAQCP2UawP8GDWxyMOsHDPqKp\nPtedCxPpEPsQm8KMnt5KJ55NFqTcpARz1miHXT1aBedu9IoqxvTP4g8BQ4QFjP2s\nddNu2WKqnwyzkCtnB2zOrOKlvUtRAZ4x2iyhKNqls6D7I4tw22HMbTzW2TVeuGVa\noiRtawFcUsjSAcarRw6swLTln+BK54dWa9E5hiulBoHLosMWCEyUDrUnaiB+2+7C\nbsExYZTXRlii7YPSr46zPmte2iKa1+b0g5DXkzSazWp+R/dlGYp84uLWk71e4b/9\nSo1pIitPasCJHgO/ii9nIcmDXarkaGT5CEUP8WPp6mLY5W9NxgF2czdz6AMJa3P9\n2jNd4J1VFl8k+LDZ4GnwHGhyL3h3lFUmmoQV/0YVoXmA59SxE2JPvc2d1V6xh2gz\nyg2M+xcKliSXxshhAopsSSoEp5g3II2mCvzeSxwsXa4Ob5c5TJNdXslm1pugRCbB\ntjFNh70wZmCq+jY8C+vGsDwkf/5UeAd+c+14s3bwsBfWqZBGokVxyf/UWHtsWlVn\np3USWBwLxEWyQIioMmj4O6wROZeyePDlFDVky4hzTCrTS6EFIqkGBs5RneCHhTN0\ngNHFG8Ixql6mybJAwopvWGEL+7E4pbNdbhmgVvf2YEQuMZBCM7fGdBsRNkTs6jIA\n/8soO6buQgQoCq3GFbodZA==\n-----END
+ CERTIFICATE-----\n","private_key":"-----BEGIN PRIVATE KEY-----\nMIIJQgIBADANBgkqhkiG9w0BAQEFAASCCSwwggkoAgEAAoICAQCy4LqfRYXE314e\n6YkpR1BbKPH8ohO4lcMt+YzMUNlOC1KUktGjX8pWk4wAXYar7Mxccmbbh68pgE8i\nSio8V97CdQb8O64OQmre/y33z7Yts37/6mH5mBnfeiilVHOenQmh+4400tvF1jlj\nU8MZSg6sLM4ZEBhfcT0V3yqxAwwzV8vk0t7uLRCMuDI5B4h4ZCsheCkA2roF4RGU\nG6KwGzf+dLSKzBcjy5hoh4huzp5jDYer7S86dV6/9Gwzh8CPhVaixbymHGoMbJM8\nlUtc/hFI+J8WVh/qLTKQCcqvoZ96QU0LX2ib+ElvCMGl/UrznpHZUrGkLPfnnoxK\n/vKBNycJsENtWno9KgtNfsdmYy/blxNRW/qpi+l92f3zbjjpRqJ/oyA+hsSMn19O\n/v3O4wz+YS55xnVeEPIffOq6VJ9BfVdXPPRp33sllM8EVWuS4ry3oJKI1CFTlhV7\neU1RpJmbc5X8GhytiD2MgIrVlYzJTftSHw7J3v0orRD6SxI9enXI4o4pS1MMxRNb\n+ZQDvwx3ZujxjFXe3+qIkme3ih+Vl9W9rDeKAd95ciII9CxBqOvsso8zqDAEV25f\nn3tutk/7hQNMqv0APAahLo/eY1NK9i9YVJknVSzWBkE2MUyvpfFhiw6TPYh88qH+\nwN3CznWaCtXiAjH3kbOk6y2OmI8+4QIDAQABAoICAElFboxhMPtEt8wXwzxqXssI\niZ7/UO6yQeHqL7ddgrXKQ4hiX4b5bOtrwtQ/ezOfatKPdfyEpsZsLX4RPR28rJ2g\nzDyzwYdLw3UWt+Cjb69msCXp/zn7CNYWtuGKJ1YYY2K7pTOUD7wJFTbPj8IjKMF0\nFPQFOMaXnvr/kAA0DGJXm0he7DxJr1bE+KWNpWQTO+uYycr0zXAtEkNF0q0qaRRM\n/8s+8FeURRjEM6mX7x8J4sIVBNyASVB9sXimKcVgS+2e67hrOTFfpCwTx2wPEkt+\ns8O1gZst6mE/8Ythu+6bIxD+gt4opQPbZV810ubZ1Epd6jAiz2VL95Gcvv8Y9V7+\nEGfqeeiHqQkIkhSNO6Aqui/QBHEIuXlDvh6/Q23ln/AeniHFktYASK2WtbtzXON5\n3yL0d8S5ndCLYMch1uv1V+JQ67Y5JJYTAh+fev7uyZy7qLGnAjUoRnwRofwgig6a\nlKOf9aMlLJnIJSHlyzqni5wnVdO1y/RGMsE/BdJ15+F9LGYm/sy56VPsjU9rELIa\n9UGLAWNiEZQDQLgApZl8rawXVlANwW/iesxgAh4eZlaFXvaGtK72KcETBfn+jt8m\n2/LUbh4BL2O4F2OJ2F8+DET6JGDrNDBkcsSxYmtgtRpJjrV76MvjSli8uRAlaEd7\nR3n3ztdOEX25VeFExsdFAoIBAQDhFInwMNTY+phF57o/R6FNyLHQGkNz2w4pYXkR\nA6C4wgBDfwk/S/Sub16w4H6sr0C7MDw7t2cpmMhe+BG4V4a5sX+AjSSdMFBS/pgI\nuFgeJGBG1evyvp+8SycH7oojf106UH6gERpHmW0WMDf1r8Nueriw9DOKKqL1sJtx\nw/Diq2/8z2m5ESxL6SrEzagHmjliaNwBpwUlh5P2EMQzNTljE1fnEKl2E6LW35o0\nx4zoi3y57HtKcLNtD/GsvRYU8zjHDkDq2tUXwzxCVWmiTs3+NQVTEscJAgAahvbu\nJZ7hEXzmCR6sjoQIWCHc9Wusf/zt2XNiXYIKUJAQxv9sOgabAoIBAQDLc2Cxlz36\n3KcOGkfpWl9cGmS0t8FCOvOVV++7eNiWv0kKVdbwqqJYExmX4jmv2E1LfQ4G1vAh\nGtG7YN0rEzwLWiqd/frNLgMya7lYuCpWzxCNDoHIAtBvjPhyHRFFhLayxSsxRZLT\nPnKo2u9NjhPpm7RD+4b9uy++61jkDXK//ezI47oJWxCOxfyzaeejV8Iu9jHwKJ1o\nNpebAdPnlXU3itxaXvJIZiguHtNioTs1E6Ik433AC3Tb57Xy57lGXnOORm5Ximel\naJsB9dsh9rKsNScp+9VSD0ef7Cr8oZH0gOI+pmNnnXt+cOxH9Du4lvBql59QR9FY\nMbbigpvtJ6ozAoIBAG588ZV5sxJsOVGfhhrII9OWIEtCiTgXISWJFrAWctAfU5fO\nhZCPzaXPP9Fd8nD8eq8o53h8+GQ//qQ37CLsvFLtYeSN5JpQ/C0xkxo8u+zX+Hbt\nTizUDH+W+Kr5GtCAFhipKO+UVa0uEJGiy+WMCUhzb7RVu/MoKOSodDXtdJMgixG0\nE3boijEdXYRMXB6XQ3IefVlGTs10d1qEMnvctbX/6degoz82Nmp6Sy17g50n0+tE\nveT12+4+tGkSTQOtvYJhadaf45kNmsgJO5iUTKRsDJgSEKhIVhqvhAm1Z/+d4Qzf\nDzKvpvqdoMnho6CDF3r+kpiHxG0hzQafWQUcmt8CggEARD1461hNY71rEyHhiPXV\nEnGP4cXYvrxDQ45xTLJmA3o5p4vPQn4ZYe1WIkmxC7hDhNR3RfgGJzR1sKH2zSHw\ne+ZMcR3lZ7jNPbZAPu/W07M0W/vHsCyxeRkRpET3rBetqBzWNfqeGtjRYK2+oobL\nSwn81uihCK4mf6U09ZlFKfyj1WX82nJ/BUSHVC5rkbA348SUT3dwBKp7A3UDfKP2\n4yBidLVwErShOYcBZA2sbEsfkbv0S9wL4E7CCq2KyX2YyNn63MYBqcuCYo/yZlv2\n5igV8NEVZibV4WA3svEGoboxKM5qfTCnYWvC9QeImIuYLEibGTRdlXVnYGZqoosx\nXQKCAQEAmEbm8o37QaSMWYu/hixusHWprPRpEcz8qMmpenCTUeE7xgKeJupSx/2u\ns5WSGJy7U6jlmocMOsZ3/nPWNG219uWMUWz2REKi99KOHU7dT8N0OPigNzDBJFKe\nuJpHU2wWkg9CJtkDlQt+4/JP3gzskwpooRvUaEbsQkM0G/A1SMVSyYPuzBui3+E7\nHMuBpZsWkNKLh0hjC5i7YBZYtXGYPG2JCEE4mpiV8ClxTvmijsr8sYUOtnmIBXfG\n0fcsLA4W7xYCUqr74LA1dMQd6f8T00mZycR5eh0wXJ68i5QEotBTGS8ibTilUJbx\n7aJXvW2Q3oCt1sF576QNr9rLxhHl8A==\n-----END
+ PRIVATE KEY-----\n"}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/object-storage/buckets/fr-par/linode-obj-bucket-cert-test.xyz/ssl
+ method: POST
+ response:
+ body: '{"ssl": true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - "13"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 08 Jan 2025 07:13:24 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - object_storage:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/object-storage/buckets/fr-par/linode-obj-bucket-cert-test.xyz/ssl
+ method: DELETE
+ response:
+ body: '{}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -28,18 +232,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "223"
+ - "2"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:13:23 GMT
+ - Wed, 08 Jan 2025 07:13:26 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -56,7 +262,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -74,7 +280,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/object-storage/buckets/us-east-1/linode-obj-bucket-cert-test.xyz/ssl
+ url: https://api.linode.com/v4beta/object-storage/buckets/fr-par/linode-obj-bucket-cert-test.xyz/ssl
method: POST
response:
body: '{"ssl": true}'
@@ -89,6 +295,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:
@@ -100,7 +308,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:13:24 GMT
+ - Wed, 08 Jan 2025 07:13:29 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -117,7 +325,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -133,7 +341,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/object-storage/buckets/us-east-1/linode-obj-bucket-cert-test.xyz/ssl
+ url: https://api.linode.com/v4beta/object-storage/buckets/fr-par/linode-obj-bucket-cert-test.xyz/ssl
method: GET
response:
body: '{"ssl": true}'
@@ -148,6 +356,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:
@@ -159,7 +369,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:13:25 GMT
+ - Wed, 08 Jan 2025 07:13:31 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -177,7 +387,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -193,7 +403,69 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/object-storage/buckets/us-east-1/linode-obj-bucket-cert-test.xyz/ssl
+ url: https://api.linode.com/v4beta/object-storage/buckets/fr-par/linode-obj-bucket-cert-test.xyz/ssl
+ method: GET
+ response:
+ body: '{"ssl": true}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - "13"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 08 Jan 2025 07:13:33 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - object_storage:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/object-storage/buckets/fr-par/linode-obj-bucket-cert-test.xyz/ssl
method: DELETE
response:
body: '{}'
@@ -208,6 +480,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:
@@ -219,7 +493,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:13:26 GMT
+ - Wed, 08 Jan 2025 07:13:34 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -236,7 +510,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -252,7 +526,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/object-storage/buckets/us-east-1/linode-obj-bucket-cert-test.xyz
+ url: https://api.linode.com/v4beta/object-storage/buckets/fr-par/linode-obj-bucket-cert-test.xyz
method: DELETE
response:
body: '{}'
@@ -267,6 +541,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:
@@ -278,7 +554,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:13:28 GMT
+ - Wed, 08 Jan 2025 07:13:38 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -295,7 +571,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/TestObjectStorageBucket_Access_Get.yaml b/test/integration/fixtures/TestObjectStorageBucket_Access_Get.yaml
index 8c72c1fb2..074365933 100644
--- a/test/integration/fixtures/TestObjectStorageBucket_Access_Get.yaml
+++ b/test/integration/fixtures/TestObjectStorageBucket_Access_Get.yaml
@@ -2,7 +2,86 @@
version: 1
interactions:
- request:
- body: '{"cluster":"us-east-1","label":"go-bucket-test-def","acl":"authenticated-read","cors_enabled":false}'
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/object-storage/endpoints?page=1
+ method: GET
+ response:
+ body: '{"pages": 1, "page": 1, "results": 18, "data": [{"region": "us-iad", "endpoint_type":
+ "E1", "s3_endpoint": "us-iad-1.linodeobjects.com"}, {"region": "in-maa", "endpoint_type":
+ "E1", "s3_endpoint": "in-maa-1.linodeobjects.com"}, {"region": "us-east", "endpoint_type":
+ "E0", "s3_endpoint": "us-east-1.linodeobjects.com"}, {"region": "eu-central",
+ "endpoint_type": "E0", "s3_endpoint": "eu-central-1.linodeobjects.com"}, {"region":
+ "us-mia", "endpoint_type": "E1", "s3_endpoint": "us-mia-1.linodeobjects.com"},
+ {"region": "br-gru", "endpoint_type": "E1", "s3_endpoint": "br-gru-1.linodeobjects.com"},
+ {"region": "fr-par", "endpoint_type": "E1", "s3_endpoint": "fr-par-1.linodeobjects.com"},
+ {"region": "nl-ams", "endpoint_type": "E1", "s3_endpoint": "nl-ams-1.linodeobjects.com"},
+ {"region": "se-sto", "endpoint_type": "E1", "s3_endpoint": "se-sto-1.linodeobjects.com"},
+ {"region": "us-sea", "endpoint_type": "E1", "s3_endpoint": "us-sea-1.linodeobjects.com"},
+ {"region": "jp-osa", "endpoint_type": "E1", "s3_endpoint": "jp-osa-1.linodeobjects.com"},
+ {"region": "ap-south", "endpoint_type": "E0", "s3_endpoint": "ap-south-1.linodeobjects.com"},
+ {"region": "us-ord", "endpoint_type": "E1", "s3_endpoint": "us-ord-1.linodeobjects.com"},
+ {"region": "id-cgk", "endpoint_type": "E1", "s3_endpoint": "id-cgk-1.linodeobjects.com"},
+ {"region": "us-lax", "endpoint_type": "E1", "s3_endpoint": "us-lax-1.linodeobjects.com"},
+ {"region": "es-mad", "endpoint_type": "E1", "s3_endpoint": "es-mad-1.linodeobjects.com"},
+ {"region": "it-mil", "endpoint_type": "E1", "s3_endpoint": "it-mil-1.linodeobjects.com"},
+ {"region": "us-southeast", "endpoint_type": "E0", "s3_endpoint": "us-southeast-1.linodeobjects.com"}]}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - Wed, 08 Jan 2025 07:40:53 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ - Accept-Encoding
+ X-Accepted-Oauth-Scopes:
+ - object_storage:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"us-iad","label":"go-bucket-test-def","endpoint_type":"E1","acl":"authenticated-read","cors_enabled":false}'
form: {}
headers:
Accept:
@@ -14,9 +93,10 @@ interactions:
url: https://api.linode.com/v4beta/object-storage/buckets
method: POST
response:
- body: '{"hostname": "go-bucket-test-def.us-east-1.linodeobjects.com", "label":
- "go-bucket-test-def", "created": "2018-01-02T03:04:05", "region": "us-east",
- "cluster": "us-east-1", "size": 0, "objects": 0}'
+ body: '{"hostname": "go-bucket-test-def.us-iad-1.linodeobjects.com", "label":
+ "go-bucket-test-def", "created": "2018-01-02T03:04:05", "region": "us-iad",
+ "cluster": "us-iad-1", "size": 0, "objects": 0, "endpoint_type": "E1", "s3_endpoint":
+ "us-iad-1.linodeobjects.com"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -28,18 +108,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "197"
+ - "262"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:14:08 GMT
+ - Wed, 08 Jan 2025 07:40:55 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -56,7 +138,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -72,12 +154,12 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/object-storage/buckets/us-east-1/go-bucket-test-def/access
+ url: https://api.linode.com/v4beta/object-storage/buckets/us-iad/go-bucket-test-def/access
method: GET
response:
- body: '{"acl": "authenticated-read", "acl_xml": "640757b5-ebe9-45b1-abd5-581f215ef89e640757b5-ebe9-45b1-abd5-581f215ef89ec9539a32-3ece-47dd-a9a4-40bbfa5a2936c9539a32-3ece-47dd-a9a4-40bbfa5a2936http://acs.amazonaws.com/groups/global/AuthenticatedUsersREAD640757b5-ebe9-45b1-abd5-581f215ef89e640757b5-ebe9-45b1-abd5-581f215ef89eFULL_CONTROL",
+ xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:type=\"CanonicalUser\">c9539a32-3ece-47dd-a9a4-40bbfa5a2936c9539a32-3ece-47dd-a9a4-40bbfa5a2936FULL_CONTROL",
"cors_enabled": false, "cors_xml": null}'
headers:
Access-Control-Allow-Credentials:
@@ -90,6 +172,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:
@@ -101,7 +185,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:14:09 GMT
+ - Wed, 08 Jan 2025 07:40:57 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -119,7 +203,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -135,7 +219,72 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/object-storage/buckets/us-east-1/go-bucket-test-def
+ url: https://api.linode.com/v4beta/object-storage/buckets/us-iad/go-bucket-test-def/access
+ method: GET
+ response:
+ body: '{"acl": "authenticated-read", "acl_xml": "c9539a32-3ece-47dd-a9a4-40bbfa5a2936c9539a32-3ece-47dd-a9a4-40bbfa5a2936http://acs.amazonaws.com/groups/global/AuthenticatedUsersREADc9539a32-3ece-47dd-a9a4-40bbfa5a2936c9539a32-3ece-47dd-a9a4-40bbfa5a2936FULL_CONTROL",
+ "cors_enabled": false, "cors_xml": 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
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "808"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 08 Jan 2025 07:40:58 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - object_storage:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/object-storage/buckets/us-iad-1/go-bucket-test-def
method: DELETE
response:
body: '{}'
@@ -150,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:
@@ -161,7 +312,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:14:13 GMT
+ - Wed, 08 Jan 2025 07:41:08 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -178,7 +329,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/TestObjectStorageBucket_Access_Update.yaml b/test/integration/fixtures/TestObjectStorageBucket_Access_Update.yaml
index ceed13b48..f16513000 100644
--- a/test/integration/fixtures/TestObjectStorageBucket_Access_Update.yaml
+++ b/test/integration/fixtures/TestObjectStorageBucket_Access_Update.yaml
@@ -2,7 +2,86 @@
version: 1
interactions:
- request:
- body: '{"cluster":"us-east-1","label":"go-bucket-test-def"}'
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/object-storage/endpoints?page=1
+ method: GET
+ response:
+ body: '{"pages": 1, "page": 1, "results": 18, "data": [{"region": "us-lax", "endpoint_type":
+ "E1", "s3_endpoint": "us-lax-1.linodeobjects.com"}, {"region": "us-southeast",
+ "endpoint_type": "E0", "s3_endpoint": "us-southeast-1.linodeobjects.com"}, {"region":
+ "in-maa", "endpoint_type": "E1", "s3_endpoint": "in-maa-1.linodeobjects.com"},
+ {"region": "jp-osa", "endpoint_type": "E1", "s3_endpoint": "jp-osa-1.linodeobjects.com"},
+ {"region": "nl-ams", "endpoint_type": "E1", "s3_endpoint": "nl-ams-1.linodeobjects.com"},
+ {"region": "it-mil", "endpoint_type": "E1", "s3_endpoint": "it-mil-1.linodeobjects.com"},
+ {"region": "fr-par", "endpoint_type": "E1", "s3_endpoint": "fr-par-1.linodeobjects.com"},
+ {"region": "us-ord", "endpoint_type": "E1", "s3_endpoint": "us-ord-1.linodeobjects.com"},
+ {"region": "us-iad", "endpoint_type": "E1", "s3_endpoint": "us-iad-1.linodeobjects.com"},
+ {"region": "br-gru", "endpoint_type": "E1", "s3_endpoint": "br-gru-1.linodeobjects.com"},
+ {"region": "ap-south", "endpoint_type": "E0", "s3_endpoint": "ap-south-1.linodeobjects.com"},
+ {"region": "es-mad", "endpoint_type": "E1", "s3_endpoint": "es-mad-1.linodeobjects.com"},
+ {"region": "eu-central", "endpoint_type": "E0", "s3_endpoint": "eu-central-1.linodeobjects.com"},
+ {"region": "se-sto", "endpoint_type": "E1", "s3_endpoint": "se-sto-1.linodeobjects.com"},
+ {"region": "us-east", "endpoint_type": "E0", "s3_endpoint": "us-east-1.linodeobjects.com"},
+ {"region": "us-mia", "endpoint_type": "E1", "s3_endpoint": "us-mia-1.linodeobjects.com"},
+ {"region": "id-cgk", "endpoint_type": "E1", "s3_endpoint": "id-cgk-1.linodeobjects.com"},
+ {"region": "us-sea", "endpoint_type": "E1", "s3_endpoint": "us-sea-1.linodeobjects.com"}]}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - Wed, 08 Jan 2025 06:03:41 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ - Accept-Encoding
+ X-Accepted-Oauth-Scopes:
+ - object_storage:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: '{"region":"us-lax","label":"go-bucket-test-def","endpoint_type":"E1"}'
form: {}
headers:
Accept:
@@ -14,9 +93,10 @@ interactions:
url: https://api.linode.com/v4beta/object-storage/buckets
method: POST
response:
- body: '{"hostname": "go-bucket-test-def.us-east-1.linodeobjects.com", "label":
- "go-bucket-test-def", "created": "2018-01-02T03:04:05", "region": "us-east",
- "cluster": "us-east-1", "size": 0, "objects": 0}'
+ body: '{"hostname": "go-bucket-test-def.us-lax-1.linodeobjects.com", "label":
+ "go-bucket-test-def", "created": "2018-01-02T03:04:05", "region": "us-lax",
+ "cluster": "us-lax-1", "size": 0, "objects": 0, "endpoint_type": "E1", "s3_endpoint":
+ "us-lax-1.linodeobjects.com"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -28,18 +108,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "197"
+ - "262"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:14:14 GMT
+ - Wed, 08 Jan 2025 06:03:42 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -56,7 +138,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -72,7 +154,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/object-storage/buckets/us-east-1/go-bucket-test-def/access
+ url: https://api.linode.com/v4beta/object-storage/buckets/us-lax/go-bucket-test-def/access
method: POST
response:
body: '{}'
@@ -87,6 +169,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:
@@ -98,7 +182,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:14:16 GMT
+ - Wed, 08 Jan 2025 06:03:43 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -115,7 +199,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -131,11 +215,11 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/object-storage/buckets/us-east-1/go-bucket-test-def/access
+ url: https://api.linode.com/v4beta/object-storage/buckets/us-lax/go-bucket-test-def/access
method: GET
response:
- body: '{"acl": "private", "acl_xml": "640757b5-ebe9-45b1-abd5-581f215ef89e640757b5-ebe9-45b1-abd5-581f215ef89e640757b5-ebe9-45b1-abd5-581f215ef89e640757b5-ebe9-45b1-abd5-581f215ef89eFULL_CONTROL",
+ body: '{"acl": "private", "acl_xml": "c9539a32-3ece-47dd-a9a4-40bbfa5a2936c9539a32-3ece-47dd-a9a4-40bbfa5a2936c9539a32-3ece-47dd-a9a4-40bbfa5a2936c9539a32-3ece-47dd-a9a4-40bbfa5a2936FULL_CONTROL",
"cors_enabled": false, "cors_xml": null}'
headers:
Access-Control-Allow-Credentials:
@@ -148,6 +232,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:
@@ -159,7 +245,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:14:17 GMT
+ - Wed, 08 Jan 2025 06:03:45 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -177,7 +263,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -193,7 +279,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/object-storage/buckets/us-east-1/go-bucket-test-def
+ url: https://api.linode.com/v4beta/object-storage/buckets/us-lax-1/go-bucket-test-def
method: DELETE
response:
body: '{}'
@@ -208,6 +294,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:
@@ -219,7 +307,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:14:19 GMT
+ - Wed, 08 Jan 2025 06:03:48 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -236,7 +324,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/TestObjectStorageBucket_Create.yaml b/test/integration/fixtures/TestObjectStorageBucket_Create.yaml
index 545774bd0..2a4753831 100644
--- a/test/integration/fixtures/TestObjectStorageBucket_Create.yaml
+++ b/test/integration/fixtures/TestObjectStorageBucket_Create.yaml
@@ -2,7 +2,7 @@
version: 1
interactions:
- request:
- body: '{"cluster":"us-east-1","label":"go-bucket-test-def"}'
+ body: '{"region":"us-east","label":"go-bucket-test-def"}'
form: {}
headers:
Accept:
@@ -16,7 +16,8 @@ interactions:
response:
body: '{"hostname": "go-bucket-test-def.us-east-1.linodeobjects.com", "label":
"go-bucket-test-def", "created": "2018-01-02T03:04:05", "region": "us-east",
- "cluster": "us-east-1", "size": 0, "objects": 0}'
+ "cluster": "us-east-1", "size": 0, "objects": 0, "endpoint_type": "E0", "s3_endpoint":
+ "us-east-1.linodeobjects.com"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -28,18 +29,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "197"
+ - "266"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:13:32 GMT
+ - Wed, 08 Jan 2025 06:02:49 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -56,7 +59,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -87,6 +90,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:
@@ -98,7 +103,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:13:34 GMT
+ - Wed, 08 Jan 2025 06:02:53 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -115,7 +120,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/TestObjectStorageBucket_GetFound.yaml b/test/integration/fixtures/TestObjectStorageBucket_GetFound.yaml
index 02fbb1ad2..eb8fb4b5c 100644
--- a/test/integration/fixtures/TestObjectStorageBucket_GetFound.yaml
+++ b/test/integration/fixtures/TestObjectStorageBucket_GetFound.yaml
@@ -2,7 +2,7 @@
version: 1
interactions:
- request:
- body: '{"cluster":"us-east-1","label":"go-bucket-test-def"}'
+ body: '{"region":"us-east","label":"go-bucket-test-def"}'
form: {}
headers:
Accept:
@@ -16,7 +16,8 @@ interactions:
response:
body: '{"hostname": "go-bucket-test-def.us-east-1.linodeobjects.com", "label":
"go-bucket-test-def", "created": "2018-01-02T03:04:05", "region": "us-east",
- "cluster": "us-east-1", "size": 0, "objects": 0}'
+ "cluster": "us-east-1", "size": 0, "objects": 0, "endpoint_type": "E0", "s3_endpoint":
+ "us-east-1.linodeobjects.com"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -28,18 +29,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "197"
+ - "266"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:13:40 GMT
+ - Wed, 08 Jan 2025 06:03:13 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -56,7 +59,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -77,7 +80,8 @@ interactions:
response:
body: '{"hostname": "go-bucket-test-def.us-east-1.linodeobjects.com", "label":
"go-bucket-test-def", "created": "2018-01-02T03:04:05", "region": "us-east",
- "cluster": "us-east-1", "size": 0, "objects": 0}'
+ "cluster": "us-east-1", "size": 0, "objects": 0, "endpoint_type": "E0", "s3_endpoint":
+ "us-east-1.linodeobjects.com"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -89,18 +93,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "197"
+ - "266"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:13:41 GMT
+ - Wed, 08 Jan 2025 06:03:14 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -118,7 +124,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -149,6 +155,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:
@@ -160,7 +168,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:13:43 GMT
+ - Wed, 08 Jan 2025 06:03:17 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -177,7 +185,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/TestObjectStorageBucket_GetMissing.yaml b/test/integration/fixtures/TestObjectStorageBucket_GetMissing.yaml
index 8ebab68ed..b5864d11b 100644
--- a/test/integration/fixtures/TestObjectStorageBucket_GetMissing.yaml
+++ b/test/integration/fixtures/TestObjectStorageBucket_GetMissing.yaml
@@ -2,7 +2,7 @@
version: 1
interactions:
- request:
- body: '{"cluster":"us-east-1","label":"go-bucket-test-def"}'
+ body: '{"region":"us-east","label":"go-bucket-test-def"}'
form: {}
headers:
Accept:
@@ -16,7 +16,8 @@ interactions:
response:
body: '{"hostname": "go-bucket-test-def.us-east-1.linodeobjects.com", "label":
"go-bucket-test-def", "created": "2018-01-02T03:04:05", "region": "us-east",
- "cluster": "us-east-1", "size": 0, "objects": 0}'
+ "cluster": "us-east-1", "size": 0, "objects": 0, "endpoint_type": "E0", "s3_endpoint":
+ "us-east-1.linodeobjects.com"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -28,18 +29,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "197"
+ - "266"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:13:36 GMT
+ - Wed, 08 Jan 2025 06:03:07 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -56,7 +59,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -83,6 +86,8 @@ interactions:
- HEAD, GET, OPTIONS, POST, PUT, DELETE
Access-Control-Allow-Origin:
- '*'
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
@@ -92,7 +97,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:13:36 GMT
+ - Wed, 08 Jan 2025 06:03:07 GMT
Pragma:
- no-cache
Vary:
@@ -104,7 +109,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
status: 404 Not Found
code: 404
duration: ""
@@ -133,6 +138,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:
@@ -144,7 +151,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:13:38 GMT
+ - Wed, 08 Jan 2025 06:03:11 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -161,7 +168,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/TestObjectStorageBucket_Regional.yaml b/test/integration/fixtures/TestObjectStorageBucket_Regional.yaml
index 3c632d9c2..55aaf10c0 100644
--- a/test/integration/fixtures/TestObjectStorageBucket_Regional.yaml
+++ b/test/integration/fixtures/TestObjectStorageBucket_Regional.yaml
@@ -15,264 +15,291 @@ 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", "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":
+ 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", "Managed Databases", "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", "Managed Databases", "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", "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":
- "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": "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,
- 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", "Kubernetes", "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", "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-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": 100,
- "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",
+ "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", "Managed Databases", "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", "Managed Databases", "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", "Managed Databases", "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", "Managed Databases", "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": "nz-akl-1", "label": "Auckland, NZ", "country":
+ "nz", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata", "Distributed
+ Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ 0, "maximum_linodes_per_pg": 0}, "site_type": "distributed"}, {"id": "us-den-1",
+ "label": "Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud Firewall",
+ "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers": {"ipv4":
+ "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": 0, "maximum_linodes_per_pg":
+ 0}, "site_type": "distributed"}, {"id": "de-ham-1", "label": "Hamburg, DE",
+ "country": "de", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata",
+ "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ 0, "maximum_linodes_per_pg": 0}, "site_type": "distributed"}, {"id": "fr-mrs-1",
+ "label": "Marseille, FR", "country": "fr", "capabilities": ["Linodes", "Cloud
+ Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": 0, "maximum_linodes_per_pg":
+ 0}, "site_type": "distributed"}, {"id": "za-jnb-1", "label": "Johannesburg,
+ ZA", "country": "za", "capabilities": ["Linodes", "Cloud Firewall", "Vlans",
+ "Metadata", "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ 0, "maximum_linodes_per_pg": 0}, "site_type": "distributed"}, {"id": "my-kul-1",
+ "label": "Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes", "Cloud
+ Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": 0, "maximum_linodes_per_pg":
+ 0}, "site_type": "distributed"}, {"id": "co-bog-1", "label": "Bogot\u00e1, CO",
+ "country": "co", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata",
+ "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ 0, "maximum_linodes_per_pg": 0}, "site_type": "distributed"}, {"id": "mx-qro-1",
+ "label": "Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok",
+ "resolvers": {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": 0, "maximum_linodes_per_pg":
+ 0}, "site_type": "distributed"}, {"id": "us-hou-1", "label": "Houston, TX",
+ "country": "us", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata",
+ "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ 0, "maximum_linodes_per_pg": 0}, "site_type": "distributed"}, {"id": "cl-scl-1",
+ "label": "Santiago, CL", "country": "cl", "capabilities": ["Linodes", "Cloud
+ Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": 0, "maximum_linodes_per_pg":
+ 0}, "site_type": "distributed"}, {"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", "GPU Linodes", "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"], "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,
+ 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"}, "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",
+ 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", "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": "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", "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":
- 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", "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,
+ 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": "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, 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",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west",
+ "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5,
+ 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20,
+ 109.74.194.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country":
+ "sg", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country":
+ "de", "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": "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"], "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}'
+ "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": 41}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -284,6 +311,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:
@@ -293,7 +322,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 09 Jul 2024 16:09:34 GMT
+ - Wed, 08 Jan 2025 06:02:53 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -312,7 +341,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -333,7 +362,8 @@ interactions:
response:
body: '{"hostname": "go-bucket-test-def.us-iad-1.linodeobjects.com", "label":
"go-bucket-test-def", "created": "2018-01-02T03:04:05", "region": "us-iad",
- "cluster": "us-iad-1", "size": 0, "objects": 0}'
+ "cluster": "us-iad-1", "size": 0, "objects": 0, "endpoint_type": "E1", "s3_endpoint":
+ "us-iad-1.linodeobjects.com"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -345,18 +375,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "194"
+ - "262"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Tue, 09 Jul 2024 16:09:36 GMT
+ - Wed, 08 Jan 2025 06:02:55 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -373,7 +405,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -394,7 +426,8 @@ interactions:
response:
body: '{"hostname": "go-bucket-test-def.us-iad-1.linodeobjects.com", "label":
"go-bucket-test-def", "created": "2018-01-02T03:04:05", "region": "us-iad",
- "cluster": "us-iad-1", "size": 0, "objects": 0}'
+ "cluster": "us-iad-1", "size": 0, "objects": 0, "endpoint_type": "E1", "s3_endpoint":
+ "us-iad-1.linodeobjects.com"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -406,18 +439,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "194"
+ - "262"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Tue, 09 Jul 2024 16:09:37 GMT
+ - Wed, 08 Jan 2025 06:02:56 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -435,7 +470,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -466,6 +501,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:
@@ -477,7 +514,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Tue, 09 Jul 2024 16:09:41 GMT
+ - Wed, 08 Jan 2025 06:03:05 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -494,7 +531,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/TestObjectStorageBucketsInCluster_List.yaml b/test/integration/fixtures/TestObjectStorageBucketsInCluster_List.yaml
index 20dfdc732..9e0cc3b02 100644
--- a/test/integration/fixtures/TestObjectStorageBucketsInCluster_List.yaml
+++ b/test/integration/fixtures/TestObjectStorageBucketsInCluster_List.yaml
@@ -2,7 +2,7 @@
version: 1
interactions:
- request:
- body: '{"cluster":"us-east-1","label":"go-bucket-test-def"}'
+ body: '{"region":"us-east","label":"go-bucket-test-def"}'
form: {}
headers:
Accept:
@@ -16,7 +16,8 @@ interactions:
response:
body: '{"hostname": "go-bucket-test-def.us-east-1.linodeobjects.com", "label":
"go-bucket-test-def", "created": "2018-01-02T03:04:05", "region": "us-east",
- "cluster": "us-east-1", "size": 0, "objects": 0}'
+ "cluster": "us-east-1", "size": 0, "objects": 0, "endpoint_type": "E0", "s3_endpoint":
+ "us-east-1.linodeobjects.com"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -28,18 +29,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "197"
+ - "266"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:14:03 GMT
+ - Wed, 08 Jan 2025 06:03:28 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -56,7 +59,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -77,8 +80,8 @@ interactions:
response:
body: '{"data": [{"hostname": "go-bucket-test-def.us-east-1.linodeobjects.com",
"label": "go-bucket-test-def", "created": "2018-01-02T03:04:05", "region": "us-east",
- "cluster": "us-east-1", "size": 0, "objects": 0}], "page": 1, "pages": 1, "results":
- 1}'
+ "cluster": "us-east-1", "size": 0, "objects": 0, "endpoint_type": "E0", "s3_endpoint":
+ "us-east-1.linodeobjects.com"}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -90,18 +93,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "246"
+ - "315"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:14:04 GMT
+ - Wed, 08 Jan 2025 06:03:29 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -119,7 +124,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -150,6 +155,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:
@@ -161,7 +168,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:14:06 GMT
+ - Wed, 08 Jan 2025 06:03:33 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -178,7 +185,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/TestObjectStorageBuckets_List.yaml b/test/integration/fixtures/TestObjectStorageBuckets_List.yaml
index 7a2f035af..c7c62d065 100644
--- a/test/integration/fixtures/TestObjectStorageBuckets_List.yaml
+++ b/test/integration/fixtures/TestObjectStorageBuckets_List.yaml
@@ -2,7 +2,7 @@
version: 1
interactions:
- request:
- body: '{"cluster":"us-east-1","label":"go-bucket-test-def"}'
+ body: '{"region":"us-east","label":"go-bucket-test-def"}'
form: {}
headers:
Accept:
@@ -16,7 +16,8 @@ interactions:
response:
body: '{"hostname": "go-bucket-test-def.us-east-1.linodeobjects.com", "label":
"go-bucket-test-def", "created": "2018-01-02T03:04:05", "region": "us-east",
- "cluster": "us-east-1", "size": 0, "objects": 0}'
+ "cluster": "us-east-1", "size": 0, "objects": 0, "endpoint_type": "E0", "s3_endpoint":
+ "us-east-1.linodeobjects.com"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -28,18 +29,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "197"
+ - "266"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:13:45 GMT
+ - Wed, 08 Jan 2025 06:03:18 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -56,7 +59,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -77,8 +80,8 @@ interactions:
response:
body: '{"data": [{"hostname": "go-bucket-test-def.us-east-1.linodeobjects.com",
"label": "go-bucket-test-def", "created": "2018-01-02T03:04:05", "region": "us-east",
- "cluster": "us-east-1", "size": 0, "objects": 0}], "page": 1, "pages": 1, "results":
- 1}'
+ "cluster": "us-east-1", "size": 0, "objects": 0, "endpoint_type": "E0", "s3_endpoint":
+ "us-east-1.linodeobjects.com"}], "page": 1, "pages": 1, "results": 1}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -90,18 +93,20 @@ interactions:
- '*'
Access-Control-Expose-Headers:
- X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
Cache-Control:
- max-age=0, no-cache, no-store
Connection:
- keep-alive
Content-Length:
- - "246"
+ - "315"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:13:59 GMT
+ - Wed, 08 Jan 2025 06:03:20 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -119,7 +124,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -150,6 +155,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:
@@ -161,7 +168,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:14:01 GMT
+ - Wed, 08 Jan 2025 06:03:26 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -178,7 +185,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/TestObjectStorageClusters_List.yaml b/test/integration/fixtures/TestObjectStorageClusters_List.yaml
index 9b221313b..c6df53d93 100644
--- a/test/integration/fixtures/TestObjectStorageClusters_List.yaml
+++ b/test/integration/fixtures/TestObjectStorageClusters_List.yaml
@@ -49,8 +49,22 @@ interactions:
"region": "us-mia", "status": "available", "domain": "us-mia-1.linodeobjects.com",
"static_site_domain": "website-us-mia-1.linodeobjects.com"}, {"id": "es-mad-1",
"region": "es-mad", "status": "available", "domain": "es-mad-1.linodeobjects.com",
- "static_site_domain": "website-es-mad-1.linodeobjects.com"}], "page": 1, "pages":
- 1, "results": 18}'
+ "static_site_domain": "website-es-mad-1.linodeobjects.com"}, {"id": "us-iad-10",
+ "region": "us-iad", "status": "available", "domain": "us-iad-10.linodeobjects.com",
+ "static_site_domain": "website-us-iad-10.linodeobjects.com"}, {"id": "us-sea-9",
+ "region": "us-sea", "status": "hidden", "domain": "us-sea-9.linodeobjects.com",
+ "static_site_domain": "website-us-sea-9.linodeobjects.com"}, {"id": "au-mel-1",
+ "region": "au-mel", "status": "hidden", "domain": "au-mel-1.linodeobjects.com",
+ "static_site_domain": "website-au-mel-1.linodeobjects.com"}, {"id": "gb-lon-1",
+ "region": "gb-lon", "status": "hidden", "domain": "gb-lon-1.linodeobjects.com",
+ "static_site_domain": "website-gb-lon-1.linodeobjects.com"}, {"id": "in-bom-1",
+ "region": "in-bom-2", "status": "hidden", "domain": "in-bom-1.linodeobjects.com",
+ "static_site_domain": "website-in-bom-1.linodeobjects.com"}, {"id": "de-fra-1",
+ "region": "de-fra-2", "status": "hidden", "domain": "de-fra-1.linodeobjects.com",
+ "static_site_domain": "website-de-fra-1.linodeobjects.com"}, {"id": "sg-sin-1",
+ "region": "sg-sin-2", "status": "hidden", "domain": "sg-sin-1.linodeobjects.com",
+ "static_site_domain": "website-sg-sin-1.linodeobjects.com"}], "page": 1, "pages":
+ 1, "results": 25}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -62,6 +76,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:
@@ -71,7 +87,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Mon, 08 Jul 2024 15:14:20 GMT
+ - Wed, 08 Jan 2025 06:03:49 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -90,7 +106,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/TestObjectStorageKey_GetFound.yaml b/test/integration/fixtures/TestObjectStorageKey_GetFound.yaml
index 381d241f6..eded32ffc 100644
--- a/test/integration/fixtures/TestObjectStorageKey_GetFound.yaml
+++ b/test/integration/fixtures/TestObjectStorageKey_GetFound.yaml
@@ -14,22 +14,27 @@ interactions:
url: https://api.linode.com/v4beta/object-storage/keys
method: POST
response:
- body: '{"id": 1171496, "label": "go-test-def", "access_key": "[SANITIZED]", "secret_key":
- "[SANITIZED]", "limited": false, "bucket_access": null, "regions": [{"id": "us-southeast",
- "s3_endpoint": "us-southeast-1.linodeobjects.com"}, {"id": "us-east", "s3_endpoint":
- "us-east-1.linodeobjects.com"}, {"id": "ap-south", "s3_endpoint": "ap-south-1.linodeobjects.com"},
- {"id": "eu-central", "s3_endpoint": "eu-central-1.linodeobjects.com"}, {"id":
- "us-iad", "s3_endpoint": "us-iad-1.linodeobjects.com"}, {"id": "us-ord", "s3_endpoint":
- "us-ord-1.linodeobjects.com"}, {"id": "fr-par", "s3_endpoint": "fr-par-1.linodeobjects.com"},
- {"id": "us-sea", "s3_endpoint": "us-sea-1.linodeobjects.com"}, {"id": "br-gru",
- "s3_endpoint": "br-gru-1.linodeobjects.com"}, {"id": "nl-ams", "s3_endpoint":
- "nl-ams-1.linodeobjects.com"}, {"id": "se-sto", "s3_endpoint": "se-sto-1.linodeobjects.com"},
- {"id": "es-mad", "s3_endpoint": "es-mad-1.linodeobjects.com"}, {"id": "in-maa",
- "s3_endpoint": "in-maa-1.linodeobjects.com"}, {"id": "jp-osa", "s3_endpoint":
- "jp-osa-1.linodeobjects.com"}, {"id": "it-mil", "s3_endpoint": "it-mil-1.linodeobjects.com"},
- {"id": "us-mia", "s3_endpoint": "us-mia-1.linodeobjects.com"}, {"id": "id-cgk",
- "s3_endpoint": "id-cgk-1.linodeobjects.com"}, {"id": "us-lax", "s3_endpoint":
- "us-lax-1.linodeobjects.com"}]}'
+ body: '{"id": 1654583, "label": "go-test-def", "access_key": "[SANITIZED]", "secret_key":
+ "[SANITIZED]", "limited": false, "bucket_access": null, "regions": [{"id": "ap-south",
+ "s3_endpoint": "ap-south-1.linodeobjects.com", "endpoint_type": "E0"}, {"id":
+ "br-gru", "s3_endpoint": "br-gru-1.linodeobjects.com", "endpoint_type": "E1"},
+ {"id": "es-mad", "s3_endpoint": "es-mad-1.linodeobjects.com", "endpoint_type":
+ "E1"}, {"id": "eu-central", "s3_endpoint": "eu-central-1.linodeobjects.com",
+ "endpoint_type": "E0"}, {"id": "fr-par", "s3_endpoint": "fr-par-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "id-cgk", "s3_endpoint": "id-cgk-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "in-maa", "s3_endpoint": "in-maa-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "it-mil", "s3_endpoint": "it-mil-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "jp-osa", "s3_endpoint": "jp-osa-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "nl-ams", "s3_endpoint": "nl-ams-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "se-sto", "s3_endpoint": "se-sto-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-east", "s3_endpoint": "us-east-1.linodeobjects.com",
+ "endpoint_type": "E0"}, {"id": "us-iad", "s3_endpoint": "us-iad-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-lax", "s3_endpoint": "us-lax-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-mia", "s3_endpoint": "us-mia-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-ord", "s3_endpoint": "us-ord-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-sea", "s3_endpoint": "us-sea-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-southeast", "s3_endpoint": "us-southeast-1.linodeobjects.com",
+ "endpoint_type": "E0"}]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -52,7 +57,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 10 Jul 2024 18:00:49 GMT
+ - Wed, 08 Jan 2025 06:03:51 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -70,7 +75,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -86,25 +91,30 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/object-storage/keys/1171496
+ url: https://api.linode.com/v4beta/object-storage/keys/1654583
method: GET
response:
- body: '{"id": 1171496, "label": "go-test-def", "access_key": "[SANITIZED]", "secret_key":
- "[REDACTED]", "limited": false, "bucket_access": null, "regions": [{"id": "us-southeast",
- "s3_endpoint": "us-southeast-1.linodeobjects.com"}, {"id": "us-east", "s3_endpoint":
- "us-east-1.linodeobjects.com"}, {"id": "ap-south", "s3_endpoint": "ap-south-1.linodeobjects.com"},
- {"id": "eu-central", "s3_endpoint": "eu-central-1.linodeobjects.com"}, {"id":
- "us-iad", "s3_endpoint": "us-iad-1.linodeobjects.com"}, {"id": "us-ord", "s3_endpoint":
- "us-ord-1.linodeobjects.com"}, {"id": "fr-par", "s3_endpoint": "fr-par-1.linodeobjects.com"},
- {"id": "us-sea", "s3_endpoint": "us-sea-1.linodeobjects.com"}, {"id": "br-gru",
- "s3_endpoint": "br-gru-1.linodeobjects.com"}, {"id": "nl-ams", "s3_endpoint":
- "nl-ams-1.linodeobjects.com"}, {"id": "se-sto", "s3_endpoint": "se-sto-1.linodeobjects.com"},
- {"id": "es-mad", "s3_endpoint": "es-mad-1.linodeobjects.com"}, {"id": "in-maa",
- "s3_endpoint": "in-maa-1.linodeobjects.com"}, {"id": "jp-osa", "s3_endpoint":
- "jp-osa-1.linodeobjects.com"}, {"id": "it-mil", "s3_endpoint": "it-mil-1.linodeobjects.com"},
- {"id": "us-mia", "s3_endpoint": "us-mia-1.linodeobjects.com"}, {"id": "id-cgk",
- "s3_endpoint": "id-cgk-1.linodeobjects.com"}, {"id": "us-lax", "s3_endpoint":
- "us-lax-1.linodeobjects.com"}]}'
+ body: '{"id": 1654583, "label": "go-test-def", "access_key": "[SANITIZED]", "secret_key":
+ "[REDACTED]", "limited": false, "bucket_access": null, "regions": [{"id": "ap-south",
+ "s3_endpoint": "ap-south-1.linodeobjects.com", "endpoint_type": "E0"}, {"id":
+ "br-gru", "s3_endpoint": "br-gru-1.linodeobjects.com", "endpoint_type": "E1"},
+ {"id": "es-mad", "s3_endpoint": "es-mad-1.linodeobjects.com", "endpoint_type":
+ "E1"}, {"id": "eu-central", "s3_endpoint": "eu-central-1.linodeobjects.com",
+ "endpoint_type": "E0"}, {"id": "fr-par", "s3_endpoint": "fr-par-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "id-cgk", "s3_endpoint": "id-cgk-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "in-maa", "s3_endpoint": "in-maa-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "it-mil", "s3_endpoint": "it-mil-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "jp-osa", "s3_endpoint": "jp-osa-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "nl-ams", "s3_endpoint": "nl-ams-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "se-sto", "s3_endpoint": "se-sto-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-east", "s3_endpoint": "us-east-1.linodeobjects.com",
+ "endpoint_type": "E0"}, {"id": "us-iad", "s3_endpoint": "us-iad-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-lax", "s3_endpoint": "us-lax-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-mia", "s3_endpoint": "us-mia-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-ord", "s3_endpoint": "us-ord-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-sea", "s3_endpoint": "us-sea-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-southeast", "s3_endpoint": "us-southeast-1.linodeobjects.com",
+ "endpoint_type": "E0"}]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -127,7 +137,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 10 Jul 2024 18:00:49 GMT
+ - Wed, 08 Jan 2025 06:03:52 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -146,7 +156,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -162,7 +172,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/object-storage/keys/1171496
+ url: https://api.linode.com/v4beta/object-storage/keys/1654583
method: DELETE
response:
body: '{}'
@@ -190,7 +200,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 10 Jul 2024 18:00:55 GMT
+ - Wed, 08 Jan 2025 06:03:53 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -207,7 +217,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/TestObjectStorageKey_GetMissing.yaml b/test/integration/fixtures/TestObjectStorageKey_GetMissing.yaml
index 079f20040..3ed97bae6 100644
--- a/test/integration/fixtures/TestObjectStorageKey_GetMissing.yaml
+++ b/test/integration/fixtures/TestObjectStorageKey_GetMissing.yaml
@@ -33,7 +33,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 10 Jul 2024 18:00:47 GMT
+ - Wed, 08 Jan 2025 06:03:49 GMT
Pragma:
- no-cache
Vary:
@@ -45,7 +45,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
status: 404 Not Found
code: 404
duration: ""
diff --git a/test/integration/fixtures/TestObjectStorageKey_List.yaml b/test/integration/fixtures/TestObjectStorageKey_List.yaml
index 5776beaa7..8d76c9713 100644
--- a/test/integration/fixtures/TestObjectStorageKey_List.yaml
+++ b/test/integration/fixtures/TestObjectStorageKey_List.yaml
@@ -14,22 +14,27 @@ interactions:
url: https://api.linode.com/v4beta/object-storage/keys
method: POST
response:
- body: '{"id": 1174001, "label": "go-test-def", "access_key": "[SANITIZED]", "secret_key":
- "[SANITIZED]", "limited": false, "bucket_access": null, "regions": [{"id": "us-southeast",
- "s3_endpoint": "us-southeast-1.linodeobjects.com"}, {"id": "us-east", "s3_endpoint":
- "us-east-1.linodeobjects.com"}, {"id": "ap-south", "s3_endpoint": "ap-south-1.linodeobjects.com"},
- {"id": "eu-central", "s3_endpoint": "eu-central-1.linodeobjects.com"}, {"id":
- "us-iad", "s3_endpoint": "us-iad-1.linodeobjects.com"}, {"id": "us-ord", "s3_endpoint":
- "us-ord-1.linodeobjects.com"}, {"id": "fr-par", "s3_endpoint": "fr-par-1.linodeobjects.com"},
- {"id": "us-sea", "s3_endpoint": "us-sea-1.linodeobjects.com"}, {"id": "br-gru",
- "s3_endpoint": "br-gru-1.linodeobjects.com"}, {"id": "nl-ams", "s3_endpoint":
- "nl-ams-1.linodeobjects.com"}, {"id": "se-sto", "s3_endpoint": "se-sto-1.linodeobjects.com"},
- {"id": "es-mad", "s3_endpoint": "es-mad-1.linodeobjects.com"}, {"id": "in-maa",
- "s3_endpoint": "in-maa-1.linodeobjects.com"}, {"id": "jp-osa", "s3_endpoint":
- "jp-osa-1.linodeobjects.com"}, {"id": "it-mil", "s3_endpoint": "it-mil-1.linodeobjects.com"},
- {"id": "us-mia", "s3_endpoint": "us-mia-1.linodeobjects.com"}, {"id": "id-cgk",
- "s3_endpoint": "id-cgk-1.linodeobjects.com"}, {"id": "us-lax", "s3_endpoint":
- "us-lax-1.linodeobjects.com"}]}'
+ body: '{"id": 1654585, "label": "go-test-def", "access_key": "[SANITIZED]", "secret_key":
+ "[SANITIZED]", "limited": false, "bucket_access": null, "regions": [{"id": "ap-south",
+ "s3_endpoint": "ap-south-1.linodeobjects.com", "endpoint_type": "E0"}, {"id":
+ "br-gru", "s3_endpoint": "br-gru-1.linodeobjects.com", "endpoint_type": "E1"},
+ {"id": "es-mad", "s3_endpoint": "es-mad-1.linodeobjects.com", "endpoint_type":
+ "E1"}, {"id": "eu-central", "s3_endpoint": "eu-central-1.linodeobjects.com",
+ "endpoint_type": "E0"}, {"id": "fr-par", "s3_endpoint": "fr-par-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "id-cgk", "s3_endpoint": "id-cgk-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "in-maa", "s3_endpoint": "in-maa-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "it-mil", "s3_endpoint": "it-mil-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "jp-osa", "s3_endpoint": "jp-osa-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "nl-ams", "s3_endpoint": "nl-ams-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "se-sto", "s3_endpoint": "se-sto-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-east", "s3_endpoint": "us-east-1.linodeobjects.com",
+ "endpoint_type": "E0"}, {"id": "us-iad", "s3_endpoint": "us-iad-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-lax", "s3_endpoint": "us-lax-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-mia", "s3_endpoint": "us-mia-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-ord", "s3_endpoint": "us-ord-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-sea", "s3_endpoint": "us-sea-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-southeast", "s3_endpoint": "us-southeast-1.linodeobjects.com",
+ "endpoint_type": "E0"}]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -52,7 +57,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 14:24:38 GMT
+ - Wed, 08 Jan 2025 06:03:59 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -70,7 +75,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -89,22 +94,27 @@ interactions:
url: https://api.linode.com/v4beta/object-storage/keys?page=1
method: GET
response:
- body: '{"pages": 1, "page": 1, "results": 1, "data": [{"id": 1174001, "label":
+ body: '{"pages": 1, "page": 1, "results": 1, "data": [{"id": 1654585, "label":
"go-test-def", "access_key": "[SANITIZED]", "secret_key": "[REDACTED]", "limited":
- false, "bucket_access": null, "regions": [{"id": "us-southeast", "s3_endpoint":
- "us-southeast-1.linodeobjects.com"}, {"id": "us-east", "s3_endpoint": "us-east-1.linodeobjects.com"},
- {"id": "ap-south", "s3_endpoint": "ap-south-1.linodeobjects.com"}, {"id": "eu-central",
- "s3_endpoint": "eu-central-1.linodeobjects.com"}, {"id": "us-iad", "s3_endpoint":
- "us-iad-1.linodeobjects.com"}, {"id": "us-ord", "s3_endpoint": "us-ord-1.linodeobjects.com"},
- {"id": "fr-par", "s3_endpoint": "fr-par-1.linodeobjects.com"}, {"id": "us-sea",
- "s3_endpoint": "us-sea-1.linodeobjects.com"}, {"id": "br-gru", "s3_endpoint":
- "br-gru-1.linodeobjects.com"}, {"id": "nl-ams", "s3_endpoint": "nl-ams-1.linodeobjects.com"},
- {"id": "se-sto", "s3_endpoint": "se-sto-1.linodeobjects.com"}, {"id": "es-mad",
- "s3_endpoint": "es-mad-1.linodeobjects.com"}, {"id": "in-maa", "s3_endpoint":
- "in-maa-1.linodeobjects.com"}, {"id": "jp-osa", "s3_endpoint": "jp-osa-1.linodeobjects.com"},
- {"id": "it-mil", "s3_endpoint": "it-mil-1.linodeobjects.com"}, {"id": "us-mia",
- "s3_endpoint": "us-mia-1.linodeobjects.com"}, {"id": "id-cgk", "s3_endpoint":
- "id-cgk-1.linodeobjects.com"}, {"id": "us-lax", "s3_endpoint": "us-lax-1.linodeobjects.com"}]}]}'
+ false, "bucket_access": null, "regions": [{"id": "ap-south", "s3_endpoint":
+ "ap-south-1.linodeobjects.com", "endpoint_type": "E0"}, {"id": "br-gru", "s3_endpoint":
+ "br-gru-1.linodeobjects.com", "endpoint_type": "E1"}, {"id": "es-mad", "s3_endpoint":
+ "es-mad-1.linodeobjects.com", "endpoint_type": "E1"}, {"id": "eu-central", "s3_endpoint":
+ "eu-central-1.linodeobjects.com", "endpoint_type": "E0"}, {"id": "fr-par", "s3_endpoint":
+ "fr-par-1.linodeobjects.com", "endpoint_type": "E1"}, {"id": "id-cgk", "s3_endpoint":
+ "id-cgk-1.linodeobjects.com", "endpoint_type": "E1"}, {"id": "in-maa", "s3_endpoint":
+ "in-maa-1.linodeobjects.com", "endpoint_type": "E1"}, {"id": "it-mil", "s3_endpoint":
+ "it-mil-1.linodeobjects.com", "endpoint_type": "E1"}, {"id": "jp-osa", "s3_endpoint":
+ "jp-osa-1.linodeobjects.com", "endpoint_type": "E1"}, {"id": "nl-ams", "s3_endpoint":
+ "nl-ams-1.linodeobjects.com", "endpoint_type": "E1"}, {"id": "se-sto", "s3_endpoint":
+ "se-sto-1.linodeobjects.com", "endpoint_type": "E1"}, {"id": "us-east", "s3_endpoint":
+ "us-east-1.linodeobjects.com", "endpoint_type": "E0"}, {"id": "us-iad", "s3_endpoint":
+ "us-iad-1.linodeobjects.com", "endpoint_type": "E1"}, {"id": "us-lax", "s3_endpoint":
+ "us-lax-1.linodeobjects.com", "endpoint_type": "E1"}, {"id": "us-mia", "s3_endpoint":
+ "us-mia-1.linodeobjects.com", "endpoint_type": "E1"}, {"id": "us-ord", "s3_endpoint":
+ "us-ord-1.linodeobjects.com", "endpoint_type": "E1"}, {"id": "us-sea", "s3_endpoint":
+ "us-sea-1.linodeobjects.com", "endpoint_type": "E1"}, {"id": "us-southeast",
+ "s3_endpoint": "us-southeast-1.linodeobjects.com", "endpoint_type": "E0"}]}]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -127,7 +137,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 14:24:38 GMT
+ - Wed, 08 Jan 2025 06:04:00 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -146,7 +156,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -162,7 +172,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/object-storage/keys/1174001
+ url: https://api.linode.com/v4beta/object-storage/keys/1654585
method: DELETE
response:
body: '{}'
@@ -190,7 +200,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 14:24:43 GMT
+ - Wed, 08 Jan 2025 06:04:01 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -207,7 +217,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/TestObjectStorageKey_Update.yaml b/test/integration/fixtures/TestObjectStorageKey_Update.yaml
index 68e3af555..f9804cc6b 100644
--- a/test/integration/fixtures/TestObjectStorageKey_Update.yaml
+++ b/test/integration/fixtures/TestObjectStorageKey_Update.yaml
@@ -14,22 +14,27 @@ interactions:
url: https://api.linode.com/v4beta/object-storage/keys
method: POST
response:
- body: '{"id": 1171498, "label": "go-test-def", "access_key": "[SANITIZED]", "secret_key":
- "[SANITIZED]", "limited": false, "bucket_access": null, "regions": [{"id": "us-southeast",
- "s3_endpoint": "us-southeast-1.linodeobjects.com"}, {"id": "us-east", "s3_endpoint":
- "us-east-1.linodeobjects.com"}, {"id": "ap-south", "s3_endpoint": "ap-south-1.linodeobjects.com"},
- {"id": "eu-central", "s3_endpoint": "eu-central-1.linodeobjects.com"}, {"id":
- "us-iad", "s3_endpoint": "us-iad-1.linodeobjects.com"}, {"id": "us-ord", "s3_endpoint":
- "us-ord-1.linodeobjects.com"}, {"id": "fr-par", "s3_endpoint": "fr-par-1.linodeobjects.com"},
- {"id": "us-sea", "s3_endpoint": "us-sea-1.linodeobjects.com"}, {"id": "br-gru",
- "s3_endpoint": "br-gru-1.linodeobjects.com"}, {"id": "nl-ams", "s3_endpoint":
- "nl-ams-1.linodeobjects.com"}, {"id": "se-sto", "s3_endpoint": "se-sto-1.linodeobjects.com"},
- {"id": "es-mad", "s3_endpoint": "es-mad-1.linodeobjects.com"}, {"id": "in-maa",
- "s3_endpoint": "in-maa-1.linodeobjects.com"}, {"id": "jp-osa", "s3_endpoint":
- "jp-osa-1.linodeobjects.com"}, {"id": "it-mil", "s3_endpoint": "it-mil-1.linodeobjects.com"},
- {"id": "us-mia", "s3_endpoint": "us-mia-1.linodeobjects.com"}, {"id": "id-cgk",
- "s3_endpoint": "id-cgk-1.linodeobjects.com"}, {"id": "us-lax", "s3_endpoint":
- "us-lax-1.linodeobjects.com"}]}'
+ body: '{"id": 1654584, "label": "go-test-def", "access_key": "[SANITIZED]", "secret_key":
+ "[SANITIZED]", "limited": false, "bucket_access": null, "regions": [{"id": "ap-south",
+ "s3_endpoint": "ap-south-1.linodeobjects.com", "endpoint_type": "E0"}, {"id":
+ "br-gru", "s3_endpoint": "br-gru-1.linodeobjects.com", "endpoint_type": "E1"},
+ {"id": "es-mad", "s3_endpoint": "es-mad-1.linodeobjects.com", "endpoint_type":
+ "E1"}, {"id": "eu-central", "s3_endpoint": "eu-central-1.linodeobjects.com",
+ "endpoint_type": "E0"}, {"id": "fr-par", "s3_endpoint": "fr-par-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "id-cgk", "s3_endpoint": "id-cgk-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "in-maa", "s3_endpoint": "in-maa-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "it-mil", "s3_endpoint": "it-mil-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "jp-osa", "s3_endpoint": "jp-osa-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "nl-ams", "s3_endpoint": "nl-ams-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "se-sto", "s3_endpoint": "se-sto-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-east", "s3_endpoint": "us-east-1.linodeobjects.com",
+ "endpoint_type": "E0"}, {"id": "us-iad", "s3_endpoint": "us-iad-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-lax", "s3_endpoint": "us-lax-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-mia", "s3_endpoint": "us-mia-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-ord", "s3_endpoint": "us-ord-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-sea", "s3_endpoint": "us-sea-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-southeast", "s3_endpoint": "us-southeast-1.linodeobjects.com",
+ "endpoint_type": "E0"}]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -52,7 +57,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 10 Jul 2024 18:00:57 GMT
+ - Wed, 08 Jan 2025 06:03:55 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -70,7 +75,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -86,25 +91,30 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/object-storage/keys/1171498
+ url: https://api.linode.com/v4beta/object-storage/keys/1654584
method: PUT
response:
- body: '{"id": 1171498, "label": "go-test-def_r", "access_key": "[SANITIZED]",
+ body: '{"id": 1654584, "label": "go-test-def_r", "access_key": "[SANITIZED]",
"secret_key": "[REDACTED]", "limited": false, "bucket_access": null, "regions":
- [{"id": "us-southeast", "s3_endpoint": "us-southeast-1.linodeobjects.com"},
- {"id": "us-east", "s3_endpoint": "us-east-1.linodeobjects.com"}, {"id": "ap-south",
- "s3_endpoint": "ap-south-1.linodeobjects.com"}, {"id": "eu-central", "s3_endpoint":
- "eu-central-1.linodeobjects.com"}, {"id": "us-iad", "s3_endpoint": "us-iad-1.linodeobjects.com"},
- {"id": "us-ord", "s3_endpoint": "us-ord-1.linodeobjects.com"}, {"id": "fr-par",
- "s3_endpoint": "fr-par-1.linodeobjects.com"}, {"id": "us-sea", "s3_endpoint":
- "us-sea-1.linodeobjects.com"}, {"id": "br-gru", "s3_endpoint": "br-gru-1.linodeobjects.com"},
- {"id": "nl-ams", "s3_endpoint": "nl-ams-1.linodeobjects.com"}, {"id": "se-sto",
- "s3_endpoint": "se-sto-1.linodeobjects.com"}, {"id": "es-mad", "s3_endpoint":
- "es-mad-1.linodeobjects.com"}, {"id": "in-maa", "s3_endpoint": "in-maa-1.linodeobjects.com"},
- {"id": "jp-osa", "s3_endpoint": "jp-osa-1.linodeobjects.com"}, {"id": "it-mil",
- "s3_endpoint": "it-mil-1.linodeobjects.com"}, {"id": "us-mia", "s3_endpoint":
- "us-mia-1.linodeobjects.com"}, {"id": "id-cgk", "s3_endpoint": "id-cgk-1.linodeobjects.com"},
- {"id": "us-lax", "s3_endpoint": "us-lax-1.linodeobjects.com"}]}'
+ [{"id": "ap-south", "s3_endpoint": "ap-south-1.linodeobjects.com", "endpoint_type":
+ "E0"}, {"id": "br-gru", "s3_endpoint": "br-gru-1.linodeobjects.com", "endpoint_type":
+ "E1"}, {"id": "es-mad", "s3_endpoint": "es-mad-1.linodeobjects.com", "endpoint_type":
+ "E1"}, {"id": "eu-central", "s3_endpoint": "eu-central-1.linodeobjects.com",
+ "endpoint_type": "E0"}, {"id": "fr-par", "s3_endpoint": "fr-par-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "id-cgk", "s3_endpoint": "id-cgk-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "in-maa", "s3_endpoint": "in-maa-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "it-mil", "s3_endpoint": "it-mil-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "jp-osa", "s3_endpoint": "jp-osa-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "nl-ams", "s3_endpoint": "nl-ams-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "se-sto", "s3_endpoint": "se-sto-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-east", "s3_endpoint": "us-east-1.linodeobjects.com",
+ "endpoint_type": "E0"}, {"id": "us-iad", "s3_endpoint": "us-iad-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-lax", "s3_endpoint": "us-lax-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-mia", "s3_endpoint": "us-mia-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-ord", "s3_endpoint": "us-ord-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-sea", "s3_endpoint": "us-sea-1.linodeobjects.com",
+ "endpoint_type": "E1"}, {"id": "us-southeast", "s3_endpoint": "us-southeast-1.linodeobjects.com",
+ "endpoint_type": "E0"}]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -127,7 +137,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 10 Jul 2024 18:00:58 GMT
+ - Wed, 08 Jan 2025 06:03:56 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -145,7 +155,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -161,7 +171,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/object-storage/keys/1171498
+ url: https://api.linode.com/v4beta/object-storage/keys/1654584
method: DELETE
response:
body: '{}'
@@ -189,7 +199,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 10 Jul 2024 18:01:03 GMT
+ - Wed, 08 Jan 2025 06:03:57 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -206,7 +216,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/TestObjectStorageKeys_Limited.yaml b/test/integration/fixtures/TestObjectStorageKeys_Limited.yaml
index fec2a5e37..1b0984136 100644
--- a/test/integration/fixtures/TestObjectStorageKeys_Limited.yaml
+++ b/test/integration/fixtures/TestObjectStorageKeys_Limited.yaml
@@ -14,11 +14,12 @@ interactions:
url: https://api.linode.com/v4beta/object-storage/keys
method: POST
response:
- body: '{"id": 1174003, "label": "go-test-def", "access_key": "[SANITIZED]", "secret_key":
+ body: '{"id": 1654586, "label": "go-test-def", "access_key": "[SANITIZED]", "secret_key":
"[SANITIZED]", "limited": true, "bucket_access": [{"cluster": "us-east-1", "bucket_name":
"go-bucket-test-def", "permissions": "read_only", "region": "us-east"}, {"cluster":
"us-east-1", "bucket_name": "go-bucket-test-def", "permissions": "read_write",
- "region": "us-east"}], "regions": [{"id": "us-east", "s3_endpoint": "us-east-1.linodeobjects.com"}]}'
+ "region": "us-east"}], "regions": [{"id": "us-east", "s3_endpoint": "us-east-1.linodeobjects.com",
+ "endpoint_type": "E0"}]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -37,13 +38,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "474"
+ - "497"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 14:24:47 GMT
+ - Wed, 08 Jan 2025 06:04:05 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -60,7 +61,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -76,7 +77,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/object-storage/keys/1174003
+ url: https://api.linode.com/v4beta/object-storage/keys/1654586
method: DELETE
response:
body: '{}'
@@ -104,7 +105,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 14:24:48 GMT
+ - Wed, 08 Jan 2025 06:04:07 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -121,7 +122,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/TestObjectStorageKeys_Limited_Bucket.yaml b/test/integration/fixtures/TestObjectStorageKeys_Limited_Bucket.yaml
index bd023d88d..1c01b5723 100644
--- a/test/integration/fixtures/TestObjectStorageKeys_Limited_Bucket.yaml
+++ b/test/integration/fixtures/TestObjectStorageKeys_Limited_Bucket.yaml
@@ -2,7 +2,7 @@
version: 1
interactions:
- request:
- body: '{"cluster":"us-east-1","label":"go-bucket-test-def"}'
+ body: '{"region":"us-east","label":"go-bucket-test-def"}'
form: {}
headers:
Accept:
@@ -16,7 +16,8 @@ interactions:
response:
body: '{"hostname": "go-bucket-test-def.us-east-1.linodeobjects.com", "label":
"go-bucket-test-def", "created": "2018-01-02T03:04:05", "region": "us-east",
- "cluster": "us-east-1", "size": 0, "objects": 0}'
+ "cluster": "us-east-1", "size": 0, "objects": 0, "endpoint_type": "E0", "s3_endpoint":
+ "us-east-1.linodeobjects.com"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -35,13 +36,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "197"
+ - "266"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 14:24:45 GMT
+ - Wed, 08 Jan 2025 06:04:03 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -58,7 +59,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -102,7 +103,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 14:24:52 GMT
+ - Wed, 08 Jan 2025 06:04:10 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -119,7 +120,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/TestObjectStorageKeys_Regional_Limited.yaml b/test/integration/fixtures/TestObjectStorageKeys_Regional_Limited.yaml
index ab0dd8557..b43393d9d 100644
--- a/test/integration/fixtures/TestObjectStorageKeys_Regional_Limited.yaml
+++ b/test/integration/fixtures/TestObjectStorageKeys_Regional_Limited.yaml
@@ -15,264 +15,291 @@ 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", "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":
+ 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", "Managed Databases", "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", "Managed Databases", "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", "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":
- "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": "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,
- 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", "Kubernetes", "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", "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-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": 100,
- "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",
+ "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", "Managed Databases", "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", "Managed Databases", "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", "Managed Databases", "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", "Managed Databases", "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": "nz-akl-1", "label": "Auckland, NZ", "country":
+ "nz", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata", "Distributed
+ Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ 0, "maximum_linodes_per_pg": 0}, "site_type": "distributed"}, {"id": "us-den-1",
+ "label": "Denver, CO", "country": "us", "capabilities": ["Linodes", "Cloud Firewall",
+ "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers": {"ipv4":
+ "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": 0, "maximum_linodes_per_pg":
+ 0}, "site_type": "distributed"}, {"id": "de-ham-1", "label": "Hamburg, DE",
+ "country": "de", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata",
+ "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ 0, "maximum_linodes_per_pg": 0}, "site_type": "distributed"}, {"id": "fr-mrs-1",
+ "label": "Marseille, FR", "country": "fr", "capabilities": ["Linodes", "Cloud
+ Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": 0, "maximum_linodes_per_pg":
+ 0}, "site_type": "distributed"}, {"id": "za-jnb-1", "label": "Johannesburg,
+ ZA", "country": "za", "capabilities": ["Linodes", "Cloud Firewall", "Vlans",
+ "Metadata", "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ 0, "maximum_linodes_per_pg": 0}, "site_type": "distributed"}, {"id": "my-kul-1",
+ "label": "Kuala Lumpur, MY", "country": "my", "capabilities": ["Linodes", "Cloud
+ Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": 0, "maximum_linodes_per_pg":
+ 0}, "site_type": "distributed"}, {"id": "co-bog-1", "label": "Bogot\u00e1, CO",
+ "country": "co", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata",
+ "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ 0, "maximum_linodes_per_pg": 0}, "site_type": "distributed"}, {"id": "mx-qro-1",
+ "label": "Quer\u00e9taro, MX", "country": "mx", "capabilities": ["Linodes",
+ "Cloud Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok",
+ "resolvers": {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": 0, "maximum_linodes_per_pg":
+ 0}, "site_type": "distributed"}, {"id": "us-hou-1", "label": "Houston, TX",
+ "country": "us", "capabilities": ["Linodes", "Cloud Firewall", "Vlans", "Metadata",
+ "Distributed Plans"], "status": "ok", "resolvers": {"ipv4": "173.223.100.53,173.223.101.53",
+ "ipv6": "1234::5678,1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ 0, "maximum_linodes_per_pg": 0}, "site_type": "distributed"}, {"id": "cl-scl-1",
+ "label": "Santiago, CL", "country": "cl", "capabilities": ["Linodes", "Cloud
+ Firewall", "Vlans", "Metadata", "Distributed Plans"], "status": "ok", "resolvers":
+ {"ipv4": "173.223.100.53,173.223.101.53", "ipv6": "1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": 0, "maximum_linodes_per_pg":
+ 0}, "site_type": "distributed"}, {"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", "GPU Linodes", "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"], "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,
+ 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"}, "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",
+ 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", "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": "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", "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":
- 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", "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,
+ 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": "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, 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",
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west",
+ "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5,
+ 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20,
+ 109.74.194.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country":
+ "sg", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country":
+ "de", "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": "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"], "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}'
+ "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": 41}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -295,7 +322,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 14:24:53 GMT
+ - Wed, 08 Jan 2025 06:04:11 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -314,7 +341,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -335,7 +362,8 @@ interactions:
response:
body: '{"hostname": "go-bucket-test-def.us-iad-1.linodeobjects.com", "label":
"go-bucket-test-def", "created": "2018-01-02T03:04:05", "region": "us-iad",
- "cluster": "us-iad-1", "size": 0, "objects": 0}'
+ "cluster": "us-iad-1", "size": 0, "objects": 0, "endpoint_type": "E1", "s3_endpoint":
+ "us-iad-1.linodeobjects.com"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -354,13 +382,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "194"
+ - "262"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 14:24:55 GMT
+ - Wed, 08 Jan 2025 06:04:13 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -377,14 +405,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-test-def","bucket_access":[{"region":"us-iad","bucket_name":"go-bucket-test-def","permissions":"read_only"}],"regions":["us-east"]}'
+ body: '{"label":"go-test-def","bucket_access":[{"region":"us-iad","bucket_name":"go-bucket-test-def","permissions":"read_only"}],"regions":["us-iad"]}'
form: {}
headers:
Accept:
@@ -396,11 +424,11 @@ interactions:
url: https://api.linode.com/v4beta/object-storage/keys
method: POST
response:
- body: '{"id": 1174004, "label": "go-test-def", "access_key": "[SANITIZED]", "secret_key":
+ body: '{"id": 1654587, "label": "go-test-def", "access_key": "[SANITIZED]", "secret_key":
"[SANITIZED]", "limited": true, "bucket_access": [{"cluster": "us-iad-1", "bucket_name":
"go-bucket-test-def", "permissions": "read_only", "region": "us-iad"}], "regions":
- [{"id": "us-iad", "s3_endpoint": "us-iad-1.linodeobjects.com"}, {"id": "us-east",
- "s3_endpoint": "us-east-1.linodeobjects.com"}]}'
+ [{"id": "us-iad", "s3_endpoint": "us-iad-1.linodeobjects.com", "endpoint_type":
+ "E1"}]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -419,13 +447,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "422"
+ - "380"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 14:24:56 GMT
+ - Wed, 08 Jan 2025 06:04:14 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -442,14 +470,14 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
code: 200
duration: ""
- request:
- body: '{"regions":["us-east"]}'
+ body: '{"regions":["us-iad","us-mia"]}'
form: {}
headers:
Accept:
@@ -458,13 +486,15 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/object-storage/keys/1174004
+ url: https://api.linode.com/v4beta/object-storage/keys/1654587
method: PUT
response:
- body: '{"id": 1174004, "label": "go-test-def", "access_key": "[SANITIZED]", "secret_key":
+ body: '{"id": 1654587, "label": "go-test-def", "access_key": "[SANITIZED]", "secret_key":
"[REDACTED]", "limited": true, "bucket_access": [{"cluster": "us-iad-1", "bucket_name":
"go-bucket-test-def", "permissions": "read_only", "region": "us-iad"}], "regions":
- [{"id": "us-east", "s3_endpoint": "us-east-1.linodeobjects.com"}]}'
+ [{"id": "us-iad", "s3_endpoint": "us-iad-1.linodeobjects.com", "endpoint_type":
+ "E1"}, {"id": "us-mia", "s3_endpoint": "us-mia-1.linodeobjects.com", "endpoint_type":
+ "E1"}]}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -483,13 +513,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "329"
+ - "436"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 14:24:57 GMT
+ - Wed, 08 Jan 2025 06:04:15 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -506,7 +536,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -522,7 +552,7 @@ interactions:
- application/json
User-Agent:
- linodego/dev https://github.com/linode/linodego
- url: https://api.linode.com/v4beta/object-storage/keys/1174004
+ url: https://api.linode.com/v4beta/object-storage/keys/1654587
method: DELETE
response:
body: '{}'
@@ -550,7 +580,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 14:24:58 GMT
+ - Wed, 08 Jan 2025 06:04:16 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -567,7 +597,7 @@ interactions:
X-Oauth-Scopes:
- '*'
X-Ratelimit-Limit:
- - "400"
+ - "1600"
X-Xss-Protection:
- 1; mode=block
status: 200 OK
@@ -611,7 +641,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Thu, 11 Jul 2024 14:25:02 GMT
+ - Wed, 08 Jan 2025 06:04:29 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -628,7 +658,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/TestObjectStorageObject_ACLConfig_Bucket_Delete.yaml b/test/integration/fixtures/TestObjectStorageObject_ACLConfig_Bucket_Delete.yaml
index 1e614680e..868fe0b01 100644
--- a/test/integration/fixtures/TestObjectStorageObject_ACLConfig_Bucket_Delete.yaml
+++ b/test/integration/fixtures/TestObjectStorageObject_ACLConfig_Bucket_Delete.yaml
@@ -5,7 +5,7 @@ interactions:
body: ""
form: {}
headers: {}
- url: https://us-east-1.linodeobjects.com:443/go-bucket-test-def/test?Signature=IRuyHRdpyXWhh2aQjNZwsCI4Zw0%3D&Expires=1732717668&AWSAccessKeyID=SANITIZED
+ url: https://us-east-1.linodeobjects.com:443/go-bucket-test-def/test?Signature=q40b1QCD%2FE5YyfsAW%2Fl5vZNfiRs%3D&Expires=1736322799&AWSAccessKeyID=SANITIZED
method: DELETE
response:
body: ""
@@ -13,7 +13,7 @@ interactions:
Connection:
- keep-alive
X-Amz-Request-Id:
- - tx00000a853072ba4ae0eeb-0067472afc-ef83577d-default
+ - tx000003f312b97ed86260d-00677e2d87-f1a4821b-default
status: 204 No Content
code: 204
duration: ""
diff --git a/test/integration/fixtures/TestObjectStorageObject_ACLConfig_Bucket_Put.yaml b/test/integration/fixtures/TestObjectStorageObject_ACLConfig_Bucket_Put.yaml
index 45a2386ef..5d7ccf6ad 100644
--- a/test/integration/fixtures/TestObjectStorageObject_ACLConfig_Bucket_Put.yaml
+++ b/test/integration/fixtures/TestObjectStorageObject_ACLConfig_Bucket_Put.yaml
@@ -7,7 +7,7 @@ interactions:
headers:
Content-Type:
- text/plain
- url: https://us-east-1.linodeobjects.com:443/go-bucket-test-def/test?Signature=k0XyLLvzmzaHLogj2FDHySorg6E%3D&Expires=1732717660&AWSAccessKeyID=SANITIZED
+ url: https://us-east-1.linodeobjects.com:443/go-bucket-test-def/test?Signature=UZqhNnak%2FwLVHy0HB2TW87rl%2Baw%3D&Expires=1736322791&AWSAccessKeyID=SANITIZED
method: PUT
response:
body: ""
@@ -21,7 +21,7 @@ interactions:
Etag:
- '"7f2ababa423061c509f4923dd04b6cf1"'
X-Amz-Request-Id:
- - tx00000640ed2ef823b369b-0067472af5-f0b7e689-default
+ - tx000003d8b04716d761fbb-00677e2d7f-ef83577d-default
status: 200 OK
code: 200
duration: ""
diff --git a/test/integration/fixtures/TestObjectStorageObject_Smoke.yaml b/test/integration/fixtures/TestObjectStorageObject_Smoke.yaml
index e450f6128..5898e1fd9 100644
--- a/test/integration/fixtures/TestObjectStorageObject_Smoke.yaml
+++ b/test/integration/fixtures/TestObjectStorageObject_Smoke.yaml
@@ -2,7 +2,7 @@
version: 1
interactions:
- request:
- body: '{"cluster":"us-east-1","label":"go-bucket-test-def"}'
+ body: '{"region":"us-east","label":"go-bucket-test-def"}'
form: {}
headers:
Accept:
@@ -16,7 +16,8 @@ interactions:
response:
body: '{"hostname": "go-bucket-test-def.us-east-1.linodeobjects.com", "label":
"go-bucket-test-def", "created": "2018-01-02T03:04:05", "region": "us-east",
- "cluster": "us-east-1", "size": 0, "objects": 0}'
+ "cluster": "us-east-1", "size": 0, "objects": 0, "endpoint_type": "E0", "s3_endpoint":
+ "us-east-1.linodeobjects.com"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -35,13 +36,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "197"
+ - "266"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Wed, 27 Nov 2024 14:21:38 GMT
+ - Wed, 08 Jan 2025 07:47:09 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -77,7 +78,7 @@ interactions:
url: https://api.linode.com/v4beta/object-storage/buckets/us-east-1/go-bucket-test-def/object-url
method: POST
response:
- body: '{"url": "https://us-east-1.linodeobjects.com:443/go-bucket-test-def/test?Signature=k0XyLLvzmzaHLogj2FDHySorg6E%3D&Expires=1732717660&AWSAccessKeyID=SANITIZED",
+ body: '{"url": "https://us-east-1.linodeobjects.com:443/go-bucket-test-def/test?Signature=UZqhNnak%2FwLVHy0HB2TW87rl%2Baw%3D&Expires=1736322791&AWSAccessKeyID=SANITIZED",
"exists": false}'
headers:
Access-Control-Allow-Credentials:
@@ -97,13 +98,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "187"
+ - "191"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Wed, 27 Nov 2024 14:21:40 GMT
+ - Wed, 08 Jan 2025 07:47:11 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -139,8 +140,8 @@ interactions:
url: https://api.linode.com/v4beta/object-storage/buckets/us-east-1/go-bucket-test-def/object-acl?name=test
method: GET
response:
- body: '{"acl": "private", "acl_xml": "640757b5-ebe9-45b1-abd5-581f215ef89e640757b5-ebe9-45b1-abd5-581f215ef89e640757b5-ebe9-45b1-abd5-581f215ef89e640757b5-ebe9-45b1-abd5-581f215ef89eFULL_CONTROL"}'
+ body: '{"acl": "private", "acl_xml": "c9539a32-3ece-47dd-a9a4-40bbfa5a2936c9539a32-3ece-47dd-a9a4-40bbfa5a2936c9539a32-3ece-47dd-a9a4-40bbfa5a2936c9539a32-3ece-47dd-a9a4-40bbfa5a2936FULL_CONTROL"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -165,7 +166,70 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 27 Nov 2024 14:21:42 GMT
+ - Wed, 08 Jan 2025 07:47:12 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - object_storage:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/object-storage/buckets/us-east-1/go-bucket-test-def/object-acl?name=test
+ method: GET
+ response:
+ body: '{"acl": "private", "acl_xml": "c9539a32-3ece-47dd-a9a4-40bbfa5a2936c9539a32-3ece-47dd-a9a4-40bbfa5a2936c9539a32-3ece-47dd-a9a4-40bbfa5a2936c9539a32-3ece-47dd-a9a4-40bbfa5a2936FULL_CONTROL"}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - "550"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 08 Jan 2025 07:47:13 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -202,8 +266,8 @@ interactions:
url: https://api.linode.com/v4beta/object-storage/buckets/us-east-1/go-bucket-test-def/object-list
method: GET
response:
- body: '{"data": [{"name": "test", "size": 10, "last_modified": "2018-01-02T03:04:05.263Z",
- "etag": "7f2ababa423061c509f4923dd04b6cf1", "owner": "640757b5-ebe9-45b1-abd5-581f215ef89e"}],
+ body: '{"data": [{"name": "test", "size": 10, "last_modified": "2018-01-02T03:04:05.723Z",
+ "etag": "7f2ababa423061c509f4923dd04b6cf1", "owner": "c9539a32-3ece-47dd-a9a4-40bbfa5a2936"}],
"next_marker": null, "is_truncated": false}'
headers:
Access-Control-Allow-Credentials:
@@ -229,7 +293,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 27 Nov 2024 14:21:43 GMT
+ - Wed, 08 Jan 2025 07:47:14 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -291,7 +355,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 27 Nov 2024 14:21:44 GMT
+ - Wed, 08 Jan 2025 07:47:15 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -314,6 +378,131 @@ interactions:
status: 200 OK
code: 200
duration: ""
+- request:
+ body: '{"name":"test","acl":"public-read"}'
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/object-storage/buckets/us-east-1/go-bucket-test-def/object-acl
+ method: PUT
+ response:
+ body: '{}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-Methods:
+ - HEAD, GET, OPTIONS, POST, PUT, DELETE
+ Access-Control-Allow-Origin:
+ - '*'
+ Access-Control-Expose-Headers:
+ - X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Status
+ Akamai-Internal-Account:
+ - '*'
+ Cache-Control:
+ - max-age=0, no-cache, no-store
+ Connection:
+ - keep-alive
+ Content-Length:
+ - "2"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 08 Jan 2025 07:47:16 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - object_storage:read_write
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
+- request:
+ body: ""
+ form: {}
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - linodego/dev https://github.com/linode/linodego
+ url: https://api.linode.com/v4beta/object-storage/buckets/us-east-1/go-bucket-test-def/object-acl?name=test
+ method: GET
+ response:
+ body: '{"acl": "public-read", "acl_xml": "c9539a32-3ece-47dd-a9a4-40bbfa5a2936c9539a32-3ece-47dd-a9a4-40bbfa5a2936http://acs.amazonaws.com/groups/global/AllUsersREADc9539a32-3ece-47dd-a9a4-40bbfa5a2936c9539a32-3ece-47dd-a9a4-40bbfa5a2936FULL_CONTROL"}'
+ headers:
+ Access-Control-Allow-Credentials:
+ - "true"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - "750"
+ Content-Security-Policy:
+ - default-src 'none'
+ Content-Type:
+ - application/json
+ Expires:
+ - Wed, 08 Jan 2025 07:47:17 GMT
+ Pragma:
+ - no-cache
+ Strict-Transport-Security:
+ - max-age=31536000
+ Vary:
+ - Authorization, X-Filter
+ - Authorization, X-Filter
+ X-Accepted-Oauth-Scopes:
+ - object_storage:read_only
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ - DENY
+ X-Oauth-Scopes:
+ - '*'
+ X-Ratelimit-Limit:
+ - "1600"
+ X-Xss-Protection:
+ - 1; mode=block
+ status: 200 OK
+ code: 200
+ duration: ""
- request:
body: ""
form: {}
@@ -327,9 +516,9 @@ interactions:
url: https://api.linode.com/v4beta/object-storage/buckets/us-east-1/go-bucket-test-def/object-acl?name=test
method: GET
response:
- body: '{"acl": "public-read", "acl_xml": "640757b5-ebe9-45b1-abd5-581f215ef89e640757b5-ebe9-45b1-abd5-581f215ef89ec9539a32-3ece-47dd-a9a4-40bbfa5a2936c9539a32-3ece-47dd-a9a4-40bbfa5a2936http://acs.amazonaws.com/groups/global/AllUsersREAD640757b5-ebe9-45b1-abd5-581f215ef89e640757b5-ebe9-45b1-abd5-581f215ef89eFULL_CONTROL"}'
+ xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:type=\"CanonicalUser\">c9539a32-3ece-47dd-a9a4-40bbfa5a2936c9539a32-3ece-47dd-a9a4-40bbfa5a2936FULL_CONTROL"}'
headers:
Access-Control-Allow-Credentials:
- "true"
@@ -354,7 +543,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 27 Nov 2024 14:21:46 GMT
+ - Wed, 08 Jan 2025 07:47:17 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -391,7 +580,7 @@ interactions:
url: https://api.linode.com/v4beta/object-storage/buckets/us-east-1/go-bucket-test-def/object-url
method: POST
response:
- body: '{"url": "https://us-east-1.linodeobjects.com:443/go-bucket-test-def/test?Signature=IRuyHRdpyXWhh2aQjNZwsCI4Zw0%3D&Expires=1732717668&AWSAccessKeyID=SANITIZED",
+ body: '{"url": "https://us-east-1.linodeobjects.com:443/go-bucket-test-def/test?Signature=q40b1QCD%2FE5YyfsAW%2Fl5vZNfiRs%3D&Expires=1736322799&AWSAccessKeyID=SANITIZED",
"exists": true}'
headers:
Access-Control-Allow-Credentials:
@@ -411,13 +600,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - "186"
+ - "190"
Content-Security-Policy:
- default-src 'none'
Content-Type:
- application/json
Expires:
- - Wed, 27 Nov 2024 14:21:48 GMT
+ - Wed, 08 Jan 2025 07:47:19 GMT
Pragma:
- no-cache
Strict-Transport-Security:
@@ -478,7 +667,7 @@ interactions:
Content-Type:
- application/json
Expires:
- - Wed, 27 Nov 2024 14:21:54 GMT
+ - Wed, 08 Jan 2025 07:47:22 GMT
Pragma:
- no-cache
Strict-Transport-Security:
diff --git a/test/integration/fixtures/TestRegions_kubernetesEnterprise.yaml b/test/integration/fixtures/TestRegions_kubernetesEnterprise.yaml
new file mode 100644
index 000000000..56cb8ef60
--- /dev/null
+++ b/test/integration/fixtures/TestRegions_kubernetesEnterprise.yaml
@@ -0,0 +1,306 @@
+---
+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/regions?page=1
+ method: GET
+ response:
+ body: '{"data": [{"id": "ap-west", "label": "Mumbai, IN", "country": "in", "capabilities":
+ ["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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "Metadata", "Premium 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", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "GPU Linodes",
+ "Kubernetes", "Kubernetes Enterprise", "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", "Kubernetes Enterprise", "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", "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed
+ Databases", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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", "Block Storage Encryption", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Object Storage", "Kubernetes",
+ "Kubernetes Enterprise", "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",
+ "Kubernetes Enterprise", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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",
+ "Kubernetes Enterprise", "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", "Kubernetes Enterprise", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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",
+ "Kubernetes Enterprise", "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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",
+ "Kubernetes Enterprise", "Cloud Firewall", "Vlans", "VPCs", "Managed Databases",
+ "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", "Kubernetes Enterprise",
+ "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", "Kubernetes Enterprise",
+ "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", "GPU Linodes", "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", "Kubernetes
+ Enterprise", "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", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Managed Databases", "Metadata", "Placement
+ Group", "StackScripts"], "status": "ok", "resolvers": {"ipv4": "66.228.42.5,
+ 96.126.106.5, 50.116.53.5, 50.116.58.5, 50.116.61.5, 50.116.62.5, 66.175.211.5,
+ 97.107.133.4, 207.192.69.4, 207.192.69.5", "ipv6": "1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678"}, "placement_group_limits": {"maximum_pgs_per_customer":
+ null, "maximum_linodes_per_pg": 5}, "site_type": "core"}, {"id": "eu-west",
+ "label": "London, UK", "country": "gb", "capabilities": ["Linodes", "Disk Encryption",
+ "Backups", "NodeBalancers", "Block Storage", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "178.79.182.5, 176.58.107.5, 176.58.116.5,
+ 176.58.121.5, 151.236.220.5, 212.71.252.5, 212.71.253.5, 109.74.192.20, 109.74.193.20,
+ 109.74.194.20", "ipv6": "1234::5678, 1234::5678, 1234::5678, 1234::5678,
+ 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678, 1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "ap-south", "label": "Singapore, SG", "country":
+ "sg", "capabilities": ["Linodes", "Disk Encryption", "Backups", "NodeBalancers",
+ "Block Storage", "Object Storage", "GPU Linodes", "Kubernetes", "Cloud Firewall",
+ "Vlans", "Block Storage Migrations", "Metadata", "Placement Group", "StackScripts"],
+ "status": "ok", "resolvers": {"ipv4": "139.162.11.5,139.162.13.5,139.162.14.5,139.162.15.5,139.162.16.5,139.162.21.5,139.162.27.5,103.3.60.18,103.3.60.19,103.3.60.20",
+ "ipv6": "1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678,1234::5678"},
+ "placement_group_limits": {"maximum_pgs_per_customer": null, "maximum_linodes_per_pg":
+ 5}, "site_type": "core"}, {"id": "eu-central", "label": "Frankfurt, DE", "country":
+ "de", "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": "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"
+ Access-Control-Allow-Headers:
+ - Authorization, Origin, X-Requested-With, Content-Type, Accept, X-Filter
+ Access-Control-Allow-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:
+ - Tue, 07 Jan 2025 18:18:17 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: ""
diff --git a/test/integration/instances_test.go b/test/integration/instances_test.go
index ac3ec828a..395e25817 100644
--- a/test/integration/instances_test.go
+++ b/test/integration/instances_test.go
@@ -869,6 +869,24 @@ func TestInstance_withBlockStorageEncryption(t *testing.T) {
require.True(t, slices.Contains(inst.Capabilities, "Block Storage Encryption"))
}
+func TestInstance_withVPU(t *testing.T) {
+ client, clientTeardown := createTestClient(t, "fixtures/TestInstance_withVPU")
+
+ inst, err := createInstance(t, client, true, func(client *linodego.Client, options *linodego.InstanceCreateOptions) {
+ options.Region = "us-lax"
+ options.Type = "g1-accelerated-netint-vpu-t1u1-s"
+ options.Label = "go-inst-test-create-vpu"
+ })
+ require.NoError(t, err)
+
+ defer func() {
+ client.DeleteInstance(context.Background(), inst.ID)
+ clientTeardown()
+ }()
+
+ require.NotNil(t, inst.Specs.AcceleratedDevices)
+}
+
func TestInstance_withPG(t *testing.T) {
client, clientTeardown := createTestClient(t, "fixtures/TestInstance_withPG")
diff --git a/test/integration/lke_clusters_test.go b/test/integration/lke_clusters_test.go
index 9490136c6..1e7cdbb74 100644
--- a/test/integration/lke_clusters_test.go
+++ b/test/integration/lke_clusters_test.go
@@ -63,6 +63,25 @@ func TestLKECluster_GetFound_smoke(t *testing.T) {
}
}
+func TestLKECluster_Enterprise_smoke(t *testing.T) {
+ client, lkeCluster, teardown, err := setupLKECluster(t, []clusterModifier{func(createOpts *linodego.LKEClusterCreateOptions) {
+ createOpts.Tier = "enterprise"
+ createOpts.Region = "us-lax"
+ createOpts.K8sVersion = "v1.31.1+lke1"
+ }}, "fixtures/TestLKECluster_Enterprise_smoke")
+ defer teardown()
+ i, err := client.GetLKECluster(context.Background(), lkeCluster.ID)
+ if err != nil {
+ t.Errorf("Error getting lkeCluster, expected struct, got %v and error %v", i, err)
+ }
+ if i.ID != lkeCluster.ID {
+ t.Errorf("Expected a specific lkeCluster, but got a different one %v", i)
+ }
+ if i.Tier != "enterprise" {
+ t.Errorf("Expected a lkeCluster to have enterprise tier")
+ }
+}
+
func TestLKECluster_Update(t *testing.T) {
client, cluster, teardown, err := setupLKECluster(t, []clusterModifier{func(createOpts *linodego.LKEClusterCreateOptions) {
createOpts.Label = "go-lke-test-update"
diff --git a/test/integration/mysql_test.go b/test/integration/mysql_test.go
index d1fbbaa06..773029fd8 100644
--- a/test/integration/mysql_test.go
+++ b/test/integration/mysql_test.go
@@ -43,14 +43,12 @@ 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,
+ Pending: []linodego.DatabaseMaintenanceWindowPending{},
}
allowList := []string{"128.173.205.21", "123.177.200.20"}
@@ -130,45 +128,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 +138,12 @@ 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",
+ ClusterSize: 3,
+ AllowList: []string{"203.0.113.1", "192.0.1.0/24"},
}
for _, modifier := range databaseMofidiers {
@@ -242,7 +198,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/object_storage_bucket_certs_test.go b/test/integration/object_storage_bucket_certs_test.go
index bf2fec77e..20a0ca295 100644
--- a/test/integration/object_storage_bucket_certs_test.go
+++ b/test/integration/object_storage_bucket_certs_test.go
@@ -2,6 +2,7 @@ package integration
import (
"context"
+ "slices"
"testing"
"github.com/linode/linodego"
@@ -101,16 +102,22 @@ HMuBpZsWkNKLh0hjC5i7YBZYtXGYPG2JCEE4mpiV8ClxTvmijsr8sYUOtnmIBXfG
func TestObjectStorageBucketCert_smoke(t *testing.T) {
client, fixtureTeardown := createTestClient(t, "fixtures/TestObjectStorageBucketCert")
+ endpoints, err := client.ListObjectStorageEndpoints(context.Background(), nil)
+ selectedEndpoint := endpoints[slices.IndexFunc(endpoints, func(e linodego.ObjectStorageEndpoint) bool {
+ return e.EndpointType == linodego.ObjectStorageEndpointE1
+ })]
+
bucket, err := client.CreateObjectStorageBucket(context.Background(), linodego.ObjectStorageBucketCreateOptions{
- Cluster: "us-east-1",
- Label: "linode-obj-bucket-cert-test.xyz",
+ Region: selectedEndpoint.Region,
+ EndpointType: selectedEndpoint.EndpointType,
+ Label: "linode-obj-bucket-cert-test.xyz",
})
if err != nil {
t.Fatalf("failed to create bucket: %s", err)
}
defer func() {
- if err := client.DeleteObjectStorageBucket(context.Background(), bucket.Cluster, bucket.Label); err != nil {
+ if err := client.DeleteObjectStorageBucket(context.Background(), bucket.Region, bucket.Label); err != nil {
if t != nil {
t.Errorf("Error deleting test Bucket: %s", err)
}
@@ -118,7 +125,20 @@ func TestObjectStorageBucketCert_smoke(t *testing.T) {
fixtureTeardown()
}()
- _, err = client.UploadObjectStorageBucketCert(context.TODO(), bucket.Cluster, bucket.Label, linodego.ObjectStorageBucketCertUploadOptions{
+ _, err = client.UploadObjectStorageBucketCert(context.TODO(), bucket.Region, bucket.Label, linodego.ObjectStorageBucketCertUploadOptions{
+ Certificate: testCertifcate,
+ PrivateKey: testPrivateKey,
+ })
+ if err != nil {
+ t.Fatalf("failed to upload bucket cert: %s", err)
+ }
+
+ err = client.DeleteObjectStorageBucketCert(context.TODO(), bucket.Region, bucket.Label)
+ if err != nil {
+ t.Fatalf("failed to upload bucket cert: %s", err)
+ }
+
+ _, err = client.UploadObjectStorageBucketCertV2(context.TODO(), bucket.Region, bucket.Label, linodego.ObjectStorageBucketCertUploadOptions{
Certificate: testCertifcate,
PrivateKey: testPrivateKey,
})
@@ -127,12 +147,12 @@ func TestObjectStorageBucketCert_smoke(t *testing.T) {
}
defer func() {
- if err := client.DeleteObjectStorageBucketCert(context.TODO(), bucket.Cluster, bucket.Label); err != nil {
+ if err := client.DeleteObjectStorageBucketCert(context.TODO(), bucket.Region, bucket.Label); err != nil {
t.Errorf("failed to delete bucket cert: %s", err)
}
}()
- cert, err := client.GetObjectStorageBucketCert(context.TODO(), bucket.Cluster, bucket.Label)
+ cert, err := client.GetObjectStorageBucketCert(context.TODO(), bucket.Region, bucket.Label)
if err != nil {
t.Fatalf("failed to get bucket cert: %s", err)
}
@@ -140,4 +160,13 @@ func TestObjectStorageBucketCert_smoke(t *testing.T) {
if !cert.SSL {
t.Fatalf("expected cert.SSL to be true; got false")
}
+
+ certv2, err := client.GetObjectStorageBucketCertV2(context.TODO(), bucket.Region, bucket.Label)
+ if err != nil {
+ t.Fatalf("failed to get bucket cert: %s", err)
+ }
+
+ if certv2 == nil || !*certv2.SSL {
+ t.Fatalf("expected cert.SSL to be true; got false")
+ }
}
diff --git a/test/integration/object_storage_buckets_test.go b/test/integration/object_storage_buckets_test.go
index 0eadeac96..6bdcef9f0 100644
--- a/test/integration/object_storage_buckets_test.go
+++ b/test/integration/object_storage_buckets_test.go
@@ -2,25 +2,29 @@ package integration
import (
"context"
+ "slices"
"testing"
+ "github.com/linode/linodego"
. "github.com/linode/linodego"
)
+var objectStorageBucketTestLabel = "go-bucket-test-def"
+
var testObjectStorageBucketCreateOpts = ObjectStorageBucketCreateOptions{
Cluster: "us-east-1",
- Label: "go-bucket-test-def",
+ Label: objectStorageBucketTestLabel,
}
var testRegionalObjectStorageBucketCreateOpts = ObjectStorageBucketCreateOptions{
Region: "us-east",
- Label: "go-bucket-test-def",
+ Label: objectStorageBucketTestLabel,
}
func TestObjectStorageBucket_Create_smoke(t *testing.T) {
_, bucket, teardown, err := setupObjectStorageBucket(t,
nil,
- "fixtures/TestObjectStorageBucket_Create", nil, nil)
+ "fixtures/TestObjectStorageBucket_Create", nil, nil, nil)
defer teardown()
if err != nil {
@@ -55,7 +59,7 @@ func TestObjectStorageBucket_Regional(t *testing.T) {
},
},
"fixtures/TestObjectStorageBucket_Regional",
- client, teardown,
+ client, teardown, nil,
)
defer teardown()
@@ -82,7 +86,7 @@ func TestObjectStorageBucket_Regional(t *testing.T) {
func TestObjectStorageBucket_GetMissing(t *testing.T) {
client, bucket, teardown, err := setupObjectStorageBucket(t,
nil,
- "fixtures/TestObjectStorageBucket_GetMissing", nil, nil)
+ "fixtures/TestObjectStorageBucket_GetMissing", nil, nil, nil)
defer teardown()
sameLabel := bucket.Label
@@ -105,7 +109,7 @@ func TestObjectStorageBucket_GetMissing(t *testing.T) {
func TestObjectStorageBucket_GetFound(t *testing.T) {
client, bucket, teardown, err := setupObjectStorageBucket(t,
nil,
- "fixtures/TestObjectStorageBucket_GetFound", nil, nil)
+ "fixtures/TestObjectStorageBucket_GetFound", nil, nil, nil)
defer teardown()
if err != nil {
t.Error(err)
@@ -130,7 +134,7 @@ func TestObjectStorageBucket_GetFound(t *testing.T) {
func TestObjectStorageBuckets_List_smoke(t *testing.T) {
client, _, teardown, err := setupObjectStorageBucket(t,
nil,
- "fixtures/TestObjectStorageBuckets_List", nil, nil)
+ "fixtures/TestObjectStorageBuckets_List", nil, nil, nil)
defer teardown()
i, err := client.ListObjectStorageBuckets(context.Background(), nil)
@@ -148,7 +152,7 @@ func TestObjectStorageBuckets_List_smoke(t *testing.T) {
func TestObjectStorageBucketsInCluster_List(t *testing.T) {
client, bucket, teardown, err := setupObjectStorageBucket(t,
nil,
- "fixtures/TestObjectStorageBucketsInCluster_List", nil, nil)
+ "fixtures/TestObjectStorageBucketsInCluster_List", nil, nil, nil)
defer teardown()
i, err := client.ListObjectStorageBucketsInCluster(context.Background(), nil, bucket.Cluster)
@@ -170,7 +174,7 @@ func TestObjectStorageBucket_Access_Get(t *testing.T) {
ACL: ACLAuthenticatedRead,
CorsEnabled: &corsEnabled,
}
-
+ endpointType := linodego.ObjectStorageEndpointE1
client, bucket, teardown, err := setupObjectStorageBucket(t,
[]objectStorageBucketModifier{
func(opts *ObjectStorageBucketCreateOptions) {
@@ -178,10 +182,17 @@ func TestObjectStorageBucket_Access_Get(t *testing.T) {
opts.CorsEnabled = createOpts.CorsEnabled
},
},
- "fixtures/TestObjectStorageBucket_Access_Get", nil, nil)
+ "fixtures/TestObjectStorageBucket_Access_Get", nil, nil,
+ &endpointType,
+ )
defer teardown()
- newBucket, err := client.GetObjectStorageBucketAccess(context.Background(), bucket.Cluster, bucket.Label)
+ newBucket, err := client.GetObjectStorageBucketAccess(context.Background(), bucket.Region, bucket.Label)
+ if err != nil {
+ t.Errorf("Error getting ObjectStorageBucket access, got error %s", err)
+ }
+
+ newBucketv2, err := client.GetObjectStorageBucketAccessV2(context.Background(), bucket.Region, bucket.Label)
if err != nil {
t.Errorf("Error getting ObjectStorageBucket access, got error %s", err)
}
@@ -190,17 +201,33 @@ func TestObjectStorageBucket_Access_Get(t *testing.T) {
t.Errorf("ObjectStorageBucket access CORS does not match update, expected %t, got %t", corsEnabled, newBucket.CorsEnabled)
}
+ if newBucketv2.CorsEnabled == nil {
+ t.Errorf("ObjectStorageBucket access CORS does not match update, expected %t, got nil", corsEnabled)
+ }
+
+ if newBucketv2.CorsEnabled != nil && *newBucketv2.CorsEnabled != corsEnabled {
+ t.Errorf("ObjectStorageBucket access CORS does not match update, expected %t, got %t", corsEnabled, *newBucketv2.CorsEnabled)
+ }
+
if newBucket.ACL != createOpts.ACL {
t.Errorf("ObjectStorageBucket access ACL does not match update, expected %s, got %s",
createOpts.ACL,
newBucket.ACL)
}
+ if newBucketv2.ACL != createOpts.ACL {
+ t.Errorf("ObjectStorageBucket access ACL does not match update, expected %s, got %s",
+ createOpts.ACL,
+ newBucketv2.ACL)
+ }
}
func TestObjectStorageBucket_Access_Update(t *testing.T) {
+ endpointType := linodego.ObjectStorageEndpointE1
client, bucket, teardown, err := setupObjectStorageBucket(t,
nil,
- "fixtures/TestObjectStorageBucket_Access_Update", nil, nil)
+ "fixtures/TestObjectStorageBucket_Access_Update",
+ nil, nil, &endpointType,
+ )
defer teardown()
corsEnabled := false
@@ -210,12 +237,12 @@ func TestObjectStorageBucket_Access_Update(t *testing.T) {
CorsEnabled: &corsEnabled,
}
- err = client.UpdateObjectStorageBucketAccess(context.Background(), bucket.Cluster, bucket.Label, opts)
+ err = client.UpdateObjectStorageBucketAccess(context.Background(), bucket.Region, bucket.Label, opts)
if err != nil {
t.Errorf("Error updating ObjectStorageBucket access, got error %s", err)
}
- newBucket, err := client.GetObjectStorageBucketAccess(context.Background(), bucket.Cluster, bucket.Label)
+ newBucket, err := client.GetObjectStorageBucketAccess(context.Background(), bucket.Region, bucket.Label)
if err != nil {
t.Errorf("Error getting ObjectStorageBucket access, got error %s", err)
}
@@ -231,17 +258,18 @@ func TestObjectStorageBucket_Access_Update(t *testing.T) {
type objectStorageBucketModifier func(*ObjectStorageBucketCreateOptions)
-func setupObjectStorageBucket(t *testing.T, bucketModifiers []objectStorageBucketModifier, fixturesYaml string, client *Client, teardown func()) (*Client, *ObjectStorageBucket, func(), error) {
+func setupObjectStorageBucket(
+ t *testing.T,
+ bucketModifiers []objectStorageBucketModifier,
+ fixturesYaml string,
+ client *Client,
+ teardown func(),
+ endpointType *linodego.ObjectStorageEndpointType,
+) (*Client, *ObjectStorageBucket, func(), error) {
t.Helper()
- createOpts := testObjectStorageBucketCreateOpts
-
- for _, modifier := range bucketModifiers {
- modifier(&createOpts)
- }
-
if (client == nil) != (teardown == nil) {
- t.Error(
+ t.Fatalf(
"The client and fixtureTeardown variables must either both be nil or both " +
"have a value. They cannot have one set to nil and the other set to a non-nil value.",
)
@@ -251,9 +279,29 @@ func setupObjectStorageBucket(t *testing.T, bucketModifiers []objectStorageBucke
client, teardown = createTestClient(t, fixturesYaml)
}
+ createOpts := testRegionalObjectStorageBucketCreateOpts
+
+ if endpointType != nil {
+ endpoints, err := client.ListObjectStorageEndpoints(context.Background(), nil)
+ if err != nil {
+ t.Fatalf("Error listing endpoints: %s", err)
+ } else {
+ selectedEndpoint := endpoints[slices.IndexFunc(endpoints, func(e linodego.ObjectStorageEndpoint) bool {
+ return e.EndpointType == linodego.ObjectStorageEndpointE1
+ })]
+ createOpts.Region = selectedEndpoint.Region
+ createOpts.EndpointType = selectedEndpoint.EndpointType
+ }
+
+ }
+
+ for _, modifier := range bucketModifiers {
+ modifier(&createOpts)
+ }
+
bucket, err := client.CreateObjectStorageBucket(context.Background(), createOpts)
if err != nil {
- t.Errorf("Error creating test Bucket: %s", err)
+ t.Fatalf("Error creating test Bucket: %s", err)
}
newTeardown := func() {
diff --git a/test/integration/object_storage_keys_test.go b/test/integration/object_storage_keys_test.go
index 11b6b532f..5ecb94671 100644
--- a/test/integration/object_storage_keys_test.go
+++ b/test/integration/object_storage_keys_test.go
@@ -2,11 +2,13 @@ package integration
import (
"context"
+ "slices"
"strings"
"testing"
"github.com/google/go-cmp/cmp"
+ "github.com/linode/linodego"
. "github.com/linode/linodego"
)
@@ -106,7 +108,10 @@ func TestObjectStorageKeys_List(t *testing.T) {
}
func TestObjectStorageKeys_Limited(t *testing.T) {
- _, bucket, teardown, err := setupObjectStorageBucket(t, nil, "fixtures/TestObjectStorageKeys_Limited_Bucket", nil, nil)
+ _, bucket, teardown, err := setupObjectStorageBucket(
+ t, nil, "fixtures/TestObjectStorageKeys_Limited_Bucket",
+ nil, nil, nil,
+ )
defer teardown()
createOpts := testBasicObjectStorageKeyCreateOpts
@@ -166,7 +171,8 @@ func TestObjectStorageKeys_Regional_Limited(t *testing.T) {
createOpts.Cluster = ""
createOpts.Region = region
},
- }, "fixtures/TestObjectStorageKeys_Regional_Limited", client, teardown)
+ }, "fixtures/TestObjectStorageKeys_Regional_Limited",
+ client, teardown, nil)
if err != nil {
t.Error(err)
}
@@ -179,8 +185,10 @@ func TestObjectStorageKeys_Regional_Limited(t *testing.T) {
Permissions: "read_only",
},
}
- initialRegion := "us-east"
+
+ initialRegion := bucket.Region
createOpts.Regions = []string{initialRegion}
+
_, key, teardown, err := setupObjectStorageKey(t, createOpts, "fixtures/TestObjectStorageKeys_Regional_Limited", client, teardown)
defer teardown()
if err != nil {
@@ -204,16 +212,24 @@ func TestObjectStorageKeys_Regional_Limited(t *testing.T) {
t.Errorf("Unexpected key regions, expected regions: %v, actual regions: %v", createOpts.Regions, key.Regions)
}
- updatedRegion := "us-east"
+ var addedRegion string
+ if initialRegion != "us-mia" {
+ addedRegion = "us-mia"
+ } else {
+ addedRegion = "us-iad"
+ }
+
updateOpts := ObjectStorageKeyUpdateOptions{
- Regions: []string{updatedRegion},
+ Regions: []string{initialRegion, addedRegion},
}
key, err = client.UpdateObjectStorageKey(context.Background(), key.ID, updateOpts)
if err != nil {
t.Fatalf("error updating the obj regional key: %v", err)
}
- if len(key.Regions) == 0 || key.Regions[0].ID != updatedRegion {
+ if !slices.ContainsFunc(key.Regions, func(r linodego.ObjectStorageKeyRegion) bool {
+ return r.ID == addedRegion
+ }) {
t.Errorf("Unexpected key regions, expected regions: %v, actual regions: %v", updateOpts.Regions, key.Regions)
}
}
diff --git a/test/integration/object_storage_object_test.go b/test/integration/object_storage_object_test.go
index 90788464d..14166b734 100644
--- a/test/integration/object_storage_object_test.go
+++ b/test/integration/object_storage_object_test.go
@@ -74,7 +74,10 @@ func deleteObjectStorageObject(t *testing.T, client *linodego.Client, bucket *li
}
func TestObjectStorageObject_Smoke(t *testing.T) {
- client, bucket, teardown, err := setupObjectStorageBucket(t, nil, "fixtures/TestObjectStorageObject_Smoke", nil, nil)
+ client, bucket, teardown, err := setupObjectStorageBucket(
+ t, nil, "fixtures/TestObjectStorageObject_Smoke",
+ nil, nil, nil,
+ )
if err != nil {
t.Fatalf("failed to create Object Storage Object: %s", err)
}
@@ -92,10 +95,24 @@ func TestObjectStorageObject_Smoke(t *testing.T) {
if config.ACL != "private" {
t.Errorf("expected ACL to be private; got %s", config.ACL)
}
+
if config.ACLXML == "" {
t.Error("expected ACL XML to be included")
}
+ configv2, err := client.GetObjectStorageObjectACLConfigV2(context.TODO(), bucket.Cluster, bucket.Label, object)
+ if err != nil {
+ t.Errorf("failed to get ACL config: %s", err)
+ }
+
+ if configv2.ACL == nil {
+ t.Errorf("expected ACL to be private; got nil")
+ }
+
+ if configv2.ACL != nil && *configv2.ACL != "private" {
+ t.Errorf("expected ACL to be private; got %s", *configv2.ACL)
+ }
+
content, err := client.ListObjectStorageBucketContents(context.TODO(), bucket.Cluster, bucket.Label, nil)
if err != nil {
t.Errorf("failed to get bucket contents: %s", err)
@@ -110,6 +127,10 @@ func TestObjectStorageObject_Smoke(t *testing.T) {
t.Errorf("failed to update ACL config: %s", err)
}
+ if _, err = client.UpdateObjectStorageObjectACLConfigV2(context.TODO(), bucket.Cluster, bucket.Label, updateOpts); err != nil {
+ t.Errorf("failed to update ACL config: %s", err)
+ }
+
config, err = client.GetObjectStorageObjectACLConfig(context.TODO(), bucket.Cluster, bucket.Label, object)
if err != nil {
t.Errorf("failed to get updated ACL config: %s", err)
@@ -121,4 +142,25 @@ func TestObjectStorageObject_Smoke(t *testing.T) {
if config.ACLXML == "" {
t.Error("expected ACL XML to be included")
}
+
+ configv2, err = client.GetObjectStorageObjectACLConfigV2(context.TODO(), bucket.Cluster, bucket.Label, object)
+ if err != nil {
+ t.Errorf("failed to get ACL config: %s", err)
+ }
+
+ if configv2.ACL == nil {
+ t.Errorf("expected ACL config to be %s; got nil", updateOpts.ACL)
+ }
+
+ if configv2.ACL != nil && *configv2.ACL != updateOpts.ACL {
+ t.Errorf("expected ACL config to be %s; got nil", updateOpts.ACL)
+ }
+
+ if configv2.ACLXML == nil {
+ t.Error("expected ACL XML to be included")
+ }
+
+ if configv2.ACLXML != nil && *configv2.ACLXML == "" {
+ t.Error("expected ACL XML to be included")
+ }
}
diff --git a/test/integration/postgres_test.go b/test/integration/postgres_test.go
index b7be2ae8d..844fe0434 100644
--- a/test/integration/postgres_test.go
+++ b/test/integration/postgres_test.go
@@ -43,14 +43,12 @@ 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,
+ Pending: []linodego.DatabaseMaintenanceWindowPending{},
}
allowList := []string{"128.173.205.21", "123.177.200.20"}
@@ -134,41 +132,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 +142,12 @@ 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",
+ ClusterSize: 3,
+ AllowList: []string{"203.0.113.1", "192.0.1.0/24"},
}
for _, modifier := range databaseMofidiers {
modifier(&createOpts)
diff --git a/test/integration/regions_test.go b/test/integration/regions_test.go
index a05f41dab..44cbc9838 100644
--- a/test/integration/regions_test.go
+++ b/test/integration/regions_test.go
@@ -59,3 +59,17 @@ func TestRegions_blockStorageEncryption(t *testing.T) {
})
require.NotZero(t, regionIdx)
}
+
+func TestRegions_kubernetesEnterprise(t *testing.T) {
+ client, teardown := createTestClient(t, "fixtures/TestRegions_kubernetesEnterprise")
+ defer teardown()
+
+ regions, err := client.ListRegions(context.Background(), nil)
+ require.NoError(t, err)
+
+ // Filtering is not currently supported on capabilities
+ regionIdx := slices.IndexFunc(regions, func(region linodego.Region) bool {
+ return slices.Contains(region.Capabilities, "Kubernetes Enterprise")
+ })
+ require.NotZero(t, regionIdx)
+}
diff --git a/test/unit/fixtures/linode_type_get.json b/test/unit/fixtures/linode_type_get.json
new file mode 100644
index 000000000..040207e0a
--- /dev/null
+++ b/test/unit/fixtures/linode_type_get.json
@@ -0,0 +1,26 @@
+{
+ "id": "g6-standard-2",
+ "disk": 4000,
+ "class": "standard",
+ "price": {
+ "hourly": 0.015,
+ "monthly": 10
+ },
+ "label": "Linode 2GB",
+ "addons": {
+ "backups": {
+ "price": {
+ "hourly": 0.003,
+ "monthly": 2
+ },
+ "region_prices": []
+ }
+ },
+ "region_prices": [],
+ "network_out": 2000,
+ "memory": 4000,
+ "transfer": 500,
+ "vcpus": 2,
+ "gpus": 0,
+ "successor": null
+}
diff --git a/test/unit/fixtures/linode_types_list.json b/test/unit/fixtures/linode_types_list.json
new file mode 100644
index 000000000..67eec4707
--- /dev/null
+++ b/test/unit/fixtures/linode_types_list.json
@@ -0,0 +1,44 @@
+{
+ "data": [
+ {
+ "id": "g6-nanode-1",
+ "disk": 25600,
+ "class": "nanode",
+ "price": {
+ "hourly": 0.0075,
+ "monthly": 5
+ },
+ "label": "Nanode 1GB",
+ "addons": null,
+ "region_prices": [],
+ "network_out": 1000,
+ "memory": 1024,
+ "transfer": 250,
+ "vcpus": 1,
+ "gpus": 0,
+ "successor": null
+ },
+ {
+ "id": "g6-standard-2",
+ "disk": 51200,
+ "class": "standard",
+ "price": {
+ "hourly": 0.015,
+ "monthly": 10
+ },
+ "label": "Linode 2GB",
+ "addons": null,
+ "region_prices": [],
+ "network_out": 2000,
+ "memory": 2048,
+ "transfer": 500,
+ "vcpus": 2,
+ "gpus": 0,
+ "successor": null
+ }
+ ],
+ "page": 1,
+ "pages": 1,
+ "results": 2
+ }
+
\ No newline at end of file
diff --git a/test/unit/fixtures/tag_create.json b/test/unit/fixtures/tag_create.json
new file mode 100644
index 000000000..fa35f0e97
--- /dev/null
+++ b/test/unit/fixtures/tag_create.json
@@ -0,0 +1,3 @@
+{
+ "label": "new-tag"
+}
diff --git a/test/unit/fixtures/tagged_objects_list.json b/test/unit/fixtures/tagged_objects_list.json
new file mode 100644
index 000000000..5a1abd60a
--- /dev/null
+++ b/test/unit/fixtures/tagged_objects_list.json
@@ -0,0 +1,15 @@
+{
+ "data": [
+ {
+ "type": "linode",
+ "data": {
+ "id": 12345,
+ "label": "example-instance",
+ "region": "us-east"
+ }
+ }
+ ],
+ "page": 1,
+ "pages": 1,
+ "results": 1
+ }
\ No newline at end of file
diff --git a/test/unit/fixtures/tags_list.json b/test/unit/fixtures/tags_list.json
new file mode 100644
index 000000000..3d7318819
--- /dev/null
+++ b/test/unit/fixtures/tags_list.json
@@ -0,0 +1,10 @@
+{
+ "data": [
+ {
+ "label": "example-tag"
+ }
+ ],
+ "page": 1,
+ "pages": 1,
+ "results": 1
+ }
\ No newline at end of file
diff --git a/test/unit/fixtures/vlan_get_ipam_address.json b/test/unit/fixtures/vlan_get_ipam_address.json
new file mode 100644
index 000000000..d294d9f8f
--- /dev/null
+++ b/test/unit/fixtures/vlan_get_ipam_address.json
@@ -0,0 +1,15 @@
+{
+ "data": [
+ {
+ "interfaces": [
+ {
+ "label": "test-vlan",
+ "ipam_address": "10.0.0.1/24"
+ }
+ ]
+ }
+ ],
+ "page": 1,
+ "pages": 1,
+ "results": 1
+}
diff --git a/test/unit/fixtures/vlans_list.json b/test/unit/fixtures/vlans_list.json
new file mode 100644
index 000000000..5572e8074
--- /dev/null
+++ b/test/unit/fixtures/vlans_list.json
@@ -0,0 +1,13 @@
+{
+ "data": [
+ {
+ "label": "test-vlan",
+ "linodes": [12345],
+ "region": "us-east",
+ "created": "2024-12-01T12:00:00"
+ }
+ ],
+ "page": 1,
+ "pages": 1,
+ "results": 1
+}
diff --git a/test/unit/tag_test.go b/test/unit/tag_test.go
new file mode 100644
index 000000000..3cfaef762
--- /dev/null
+++ b/test/unit/tag_test.go
@@ -0,0 +1,122 @@
+package unit
+
+import (
+ "context"
+ "fmt"
+ "testing"
+
+ "github.com/linode/linodego"
+ "github.com/stretchr/testify/assert"
+ "golang.org/x/exp/slices"
+)
+
+func TestListTags(t *testing.T) {
+ // Load the fixture data for tags
+ fixtureData, err := fixtures.GetFixture("tags_list")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ base.MockGet("tags", fixtureData)
+
+ tags, err := base.Client.ListTags(context.Background(), &linodego.ListOptions{})
+ assert.NoError(t, err)
+
+ assert.NotEmpty(t, tags, "Expected non-empty tag list")
+
+ // Check if a specific tag exists using slices.ContainsFunc
+ exists := slices.ContainsFunc(tags, func(tag linodego.Tag) bool {
+ return tag.Label == "example-tag"
+ })
+
+ assert.True(t, exists, "Expected tag list to contain 'example-tag'")
+}
+
+
+func TestCreateTag(t *testing.T) {
+ // Load the fixture data for tag creation
+ fixtureData, err := fixtures.GetFixture("tag_create")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ base.MockPost("tags", fixtureData)
+
+ opts := linodego.TagCreateOptions{
+ Label: "new-tag",
+ }
+
+ tag, err := base.Client.CreateTag(context.Background(), opts)
+ assert.NoError(t, err, "Expected no error when creating tag")
+
+ // Verify the created tag's label
+ assert.Equal(t, "new-tag", tag.Label, "Expected created tag label to match input")
+}
+
+
+func TestDeleteTag(t *testing.T) {
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ tagLabel := "delete-tag"
+ base.MockDelete(fmt.Sprintf("tags/%s", tagLabel), nil)
+
+ err := base.Client.DeleteTag(context.Background(), tagLabel)
+ assert.NoError(t, err, "Expected no error when deleting tag")
+}
+
+func TestListTaggedObjects(t *testing.T) {
+ // Load the fixture data for tagged objects
+ fixtureData, err := fixtures.GetFixture("tagged_objects_list")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ tagLabel := "example-tag"
+ base.MockGet(fmt.Sprintf("tags/%s", tagLabel), fixtureData)
+
+ taggedObjects, err := base.Client.ListTaggedObjects(context.Background(), tagLabel, &linodego.ListOptions{})
+ assert.NoError(t, err)
+
+ assert.NotEmpty(t, taggedObjects, "Expected non-empty tagged objects list")
+
+ // Find the specific tagged object using slices.IndexFunc
+ index := slices.IndexFunc(taggedObjects, func(obj linodego.TaggedObject) bool {
+ return obj.Type == "linode"
+ })
+
+ assert.NotEqual(t, -1, index, "Expected to find a tagged object of type 'linode'")
+ if index != -1 {
+ assert.Equal(t, "linode", taggedObjects[index].Type, "Expected tagged object type to be 'linode'")
+ }
+}
+
+
+func TestSortedObjects(t *testing.T) {
+ // Load the fixture data for tagged objects
+ fixtureData, err := fixtures.GetFixture("tagged_objects_list")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ tagLabel := "example-tag"
+ base.MockGet(fmt.Sprintf("tags/%s", tagLabel), fixtureData)
+
+ taggedObjects, err := base.Client.ListTaggedObjects(context.Background(), tagLabel, &linodego.ListOptions{})
+ assert.NoError(t, err)
+
+ sortedObjects, err := taggedObjects.SortedObjects()
+ assert.NoError(t, err)
+
+ assert.NotEmpty(t, sortedObjects.Instances, "Expected non-empty instances list in sorted objects")
+ assert.Equal(t, "example-instance", sortedObjects.Instances[0].Label, "Expected instance label to be 'example-instance'")
+}
diff --git a/test/unit/types_test.go b/test/unit/types_test.go
new file mode 100644
index 000000000..25e1623cf
--- /dev/null
+++ b/test/unit/types_test.go
@@ -0,0 +1,75 @@
+package unit
+
+import (
+ "context"
+ "fmt"
+ "github.com/linode/linodego"
+ "github.com/stretchr/testify/assert"
+ "testing"
+ "golang.org/x/exp/slices"
+
+)
+
+func TestLinodeTypes_List(t *testing.T) {
+ // Load the fixture data for types
+ fixtureData, err := fixtures.GetFixture("linode_types_list")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ base.MockGet("linode/types", fixtureData)
+
+ types, err := base.Client.ListTypes(context.Background(), &linodego.ListOptions{})
+ assert.NoError(t, err)
+
+ // Use slices.IndexFunc to find the index of the specific type
+ index := slices.IndexFunc(types, func(t linodego.LinodeType) bool {
+ return t.ID == "g6-nanode-1"
+ })
+
+ if index == -1 {
+ t.Errorf("Expected type 'g6-nanode-1' to be in the response, but it was not found")
+ } else {
+ nanodeType := types[index]
+ assert.Equal(t, "nanode", string(nanodeType.Class), "Expected class to be 'nanode'")
+ assert.Equal(t, 1, nanodeType.VCPUs, "Expected VCPUs for 'g6-nanode-1' to be 1")
+ assert.Equal(t, 250, nanodeType.Transfer, "Expected transfer for 'g6-nanode-1' to be 250GB")
+ assert.NotNil(t, nanodeType.Price, "Expected 'g6-nanode-1' to have a price object")
+ if nanodeType.Price != nil {
+ assert.Equal(t, float32(5), nanodeType.Price.Monthly, "Expected monthly price for 'g6-nanode-1' to be $5")
+ }
+ }
+}
+
+func TestLinodeType_Get(t *testing.T) {
+ // Load the fixture data for a specific type
+ fixtureData, err := fixtures.GetFixture("linode_type_get")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ typeID := "g6-standard-2"
+ base.MockGet(fmt.Sprintf("linode/types/%s", typeID), fixtureData)
+
+ typeObj, err := base.Client.GetType(context.Background(), typeID)
+ assert.NoError(t, err)
+
+ assert.Equal(t, typeID, typeObj.ID, "Expected type ID to match")
+ assert.Equal(t, "standard", string(typeObj.Class), "Expected class to be 'standard'")
+ assert.Equal(t, 2, typeObj.VCPUs, "Expected VCPUs to be 2")
+ assert.Equal(t, 4000, typeObj.Disk, "Expected disk to be 4000MB")
+ assert.Equal(t, 4000, typeObj.Memory, "Expected memory to be 4000MB")
+ assert.NotNil(t, typeObj.Price, "Expected type to have a price object")
+ if typeObj.Price != nil {
+ assert.Equal(t, float32(10), typeObj.Price.Monthly, "Expected monthly price to be $10")
+ }
+
+ assert.NotNil(t, typeObj.Addons, "Expected type to have addons")
+ if typeObj.Addons != nil && typeObj.Addons.Backups != nil {
+ assert.NotNil(t, typeObj.Addons.Backups.Price, "Expected backups to have a price object")
+ }
+}
diff --git a/test/unit/vlan_test.go b/test/unit/vlan_test.go
new file mode 100644
index 000000000..8fcfd680e
--- /dev/null
+++ b/test/unit/vlan_test.go
@@ -0,0 +1,63 @@
+package unit
+
+import (
+ "context"
+ "fmt"
+ "github.com/linode/linodego"
+ "github.com/stretchr/testify/assert"
+ "golang.org/x/exp/slices"
+ "testing"
+)
+
+func TestVLAN_List(t *testing.T) {
+ // Load the fixture data for VLANs
+ fixtureData, err := fixtures.GetFixture("vlans_list")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ // Mock the GET request
+ base.MockGet("networking/vlans", fixtureData)
+
+ vlans, err := base.Client.ListVLANs(context.Background(), &linodego.ListOptions{})
+ assert.NoError(t, err)
+ assert.NotEmpty(t, vlans, "Expected non-empty VLAN list")
+
+ // Use slices.IndexFunc to find the index of the specific VLAN
+ index := slices.IndexFunc(vlans, func(v linodego.VLAN) bool {
+ return v.Label == "test-vlan"
+ })
+
+ if index == -1 {
+ t.Errorf("Expected VLAN 'test-vlan' to be in the response, but it was not found")
+ } else {
+ testVLAN := vlans[index]
+ assert.Equal(t, "us-east", testVLAN.Region, "Expected region to be 'us-east'")
+ assert.Contains(t, testVLAN.Linodes, 12345, "Expected Linodes to include 12345")
+ assert.NotNil(t, testVLAN.Created, "Expected 'test-vlan' to have a created timestamp")
+ }
+}
+
+func TestVLAN_GetIPAMAddress(t *testing.T) {
+ // Load the fixture data for VLAN IPAM address
+ fixtureData, err := fixtures.GetFixture("vlan_get_ipam_address")
+ assert.NoError(t, err)
+
+ var base ClientBaseCase
+ base.SetUp(t)
+ defer base.TearDown(t)
+
+ linodeID := 12345
+ vlanLabel := "test-vlan"
+ // Mock the GET request
+ base.MockGet(fmt.Sprintf("linode/instances/%d/configs", linodeID), fixtureData)
+
+ ipamAddress, err := base.Client.GetVLANIPAMAddress(context.Background(), linodeID, vlanLabel)
+ assert.NoError(t, err)
+ assert.NotEmpty(t, ipamAddress, "Expected non-empty IPAM address")
+
+ // Verify the returned IPAM address
+ assert.Equal(t, "10.0.0.1/24", ipamAddress, "Expected IPAM address to be '10.0.0.1/24'")
+}
diff --git a/types.go b/types.go
index bd9b801c9..06b9b8cd0 100644
--- a/types.go
+++ b/types.go
@@ -7,19 +7,20 @@ import (
// LinodeType represents a linode type object
type LinodeType struct {
- ID string `json:"id"`
- Disk int `json:"disk"`
- Class LinodeTypeClass `json:"class"` // enum: nanode, standard, highmem, dedicated, gpu
- Price *LinodePrice `json:"price"`
- Label string `json:"label"`
- Addons *LinodeAddons `json:"addons"`
- RegionPrices []LinodeRegionPrice `json:"region_prices"`
- NetworkOut int `json:"network_out"`
- Memory int `json:"memory"`
- Transfer int `json:"transfer"`
- VCPUs int `json:"vcpus"`
- GPUs int `json:"gpus"`
- Successor string `json:"successor"`
+ ID string `json:"id"`
+ Disk int `json:"disk"`
+ Class LinodeTypeClass `json:"class"` // enum: nanode, standard, highmem, dedicated, gpu
+ Price *LinodePrice `json:"price"`
+ Label string `json:"label"`
+ Addons *LinodeAddons `json:"addons"`
+ RegionPrices []LinodeRegionPrice `json:"region_prices"`
+ NetworkOut int `json:"network_out"`
+ Memory int `json:"memory"`
+ Transfer int `json:"transfer"`
+ VCPUs int `json:"vcpus"`
+ GPUs int `json:"gpus"`
+ Successor string `json:"successor"`
+ AcceleratedDevices int `json:"accelerated_devices"`
}
// LinodePrice represents a linode type price object
diff --git a/waitfor.go b/waitfor.go
index 3d709a041..c31f83d8b 100644
--- a/waitfor.go
+++ b/waitfor.go
@@ -477,6 +477,8 @@ func (client Client) WaitForImageRegionStatus(ctx context.Context, imageID, regi
}
// WaitForMySQLDatabaseBackup waits for the backup with the given label to be available.
+// Deprecated: WaitForMySQLDatabaseBackup is a deprecated method, as the backup endpoints are no longer supported in DBaaS V2.
+// In DBaaS V2, databases can be backed up via database forking.
func (client Client) WaitForMySQLDatabaseBackup(ctx context.Context, dbID int, label string, timeoutSeconds int) (*MySQLDatabaseBackup, error) {
ctx, cancel := context.WithTimeout(ctx, time.Duration(timeoutSeconds)*time.Second)
defer cancel()
@@ -504,6 +506,8 @@ func (client Client) WaitForMySQLDatabaseBackup(ctx context.Context, dbID int, l
}
// WaitForPostgresDatabaseBackup waits for the backup with the given label to be available.
+// Deprecated: WaitForPostgresDatabaseBackup is a deprecated method, as the backup endpoints are no longer supported in DBaaS V2.
+// In DBaaS V2, databases can be backed up via database forking.
func (client Client) WaitForPostgresDatabaseBackup(ctx context.Context, dbID int, label string, timeoutSeconds int) (*PostgresDatabaseBackup, error) {
ctx, cancel := context.WithTimeout(ctx, time.Duration(timeoutSeconds)*time.Second)
defer cancel()